/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #16A34A;
  --green-light: #DCFCE7;
  --green-dark: #15803D;
  --black: #111111;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 32px rgba(22,163,74,0.18);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--gray-50);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--black);
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(22,163,74,0.28);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
}

.btn--secondary:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--green);
}

.btn--outline:hover {
  background: var(--green-light);
}

.btn--lg {
  font-size: 1.125rem;
  padding: 20px 40px;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
}

.btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge svg {
  width: 14px;
  height: 14px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--green);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.hero__trust svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-400);
}

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Rating preview card */
.rating-preview {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
}

.rating-preview__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rating-preview__avatar {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
}

.rating-preview__info h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.rating-preview__info p {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.rating-preview__score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.rating-preview__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.rating-preview__stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.rating-preview__count {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.rating-preview__progress {
  background: var(--gray-100);
  border-radius: 100px;
  height: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.rating-preview__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #22C55E);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rating-preview__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.rating-preview__goal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

/* Mini examples */
.mini-examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.mini-example {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.mini-example__arrow {
  color: var(--green);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}

.step__number {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
}

/* ===== WHAT SHOWS ===== */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shows-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.shows-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shows-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
}

.shows-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.shows-card p {
  font-size: 0.8125rem;
}

/* ===== WHY RATING ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  margin-bottom: 16px;
}

.why-text p {
  font-size: 1.0625rem;
  margin-bottom: 24px;
}

.why-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.why-stat__label {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.why-visual {
  display: flex;
  justify-content: center;
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
}

.comparison-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-item__name {
  font-size: 0.9375rem;
  font-weight: 500;
}

.comparison-item__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-item__score {
  font-size: 1.125rem;
  font-weight: 700;
}

.comparison-item__score--highlight {
  color: var(--green);
}

.comparison-item__star {
  color: #F59E0B;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  margin: 0 20px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  margin-bottom: 36px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: all 0.25s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--gray-600);
}

.modal__close:hover {
  background: var(--gray-200);
}

.modal__icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal .modal__desc {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

.form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.form-group input.is-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.field-error {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #EF4444;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.form-privacy {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy svg {
  display: inline;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.form-privacy a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== LOADING STATE ===== */
.loading-state {
  display: none;
  text-align: center;
  padding: 8px 0;
}

.loading-state.is-visible {
  display: block;
}

.loading-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--green-light);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-state h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.loading-step {
  font-size: 0.9375rem;
  color: var(--green);
  font-weight: 500;
  min-height: 1.5em;
  transition: opacity 0.3s ease;
}

.loading-progress {
  height: 4px;
  background: var(--gray-100);
  border-radius: 100px;
  margin: 20px 0 0;
  overflow: hidden;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #22C55E);
  border-radius: 100px;
  transition: width 0.5s ease;
  width: 0%;
}

/* ===== ERROR STATE ===== */
.error-state {
  display: none;
  text-align: center;
  padding: 8px 0;
}

.error-state.is-visible {
  display: block;
}

.error-state__icon {
  width: 56px;
  height: 56px;
  background: #FEF2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.error-state h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 8px;
}

.error-state p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 32px 0;
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ===== RESULT PAGE ===== */
.result-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.result-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.result-hero p {
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Company card */
.company-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.company-card__photo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.company-card__photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green), #22C55E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.5rem;
  color: white;
}

.company-card__info {
  flex: 1;
}

.company-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.company-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.company-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
  overflow-wrap: anywhere;
}

.company-card__meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-400);
  flex-shrink: 0;
}

/* Main stats */
.main-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.stat-card--green {
  background: linear-gradient(135deg, var(--green), #22C55E);
  border: none;
}

.stat-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.stat-card--green .stat-card__label {
  color: rgba(255,255,255,0.75);
}

.stat-card__value {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card--green .stat-card__value {
  color: var(--white);
}

.stat-card__stars {
  color: #F59E0B;
  font-size: 1.125rem;
  letter-spacing: 3px;
}

.stat-card__sub {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.stat-card--green .stat-card__sub {
  color: rgba(255,255,255,0.7);
}

/* Goal cards */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.goal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.goal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.goal-card--highlight {
  border: 2px solid var(--green);
  background: var(--green-light);
}

.goal-card__target {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.goal-card--highlight .goal-card__target {
  color: var(--green);
}

.goal-card__star {
  color: #F59E0B;
  font-size: 1rem;
}

.goal-card__label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 14px;
}

.goal-card__count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.goal-card--highlight .goal-card__count {
  color: var(--green);
}

.goal-card__count-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.goal-card__badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 12px;
}

/* Scenarios */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.scenario-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-card__add {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.scenario-card__reviews {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.scenario-card__reviews span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
}

.scenario-card__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.scenario-card__arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--green);
  flex-shrink: 0;
}

.scenario-card__result {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scenario-card__result span {
  font-size: 1rem;
  color: #F59E0B;
}

.high-need-note {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.high-need-note h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.high-need-note p {
  font-size: 0.95rem;
  color: #7C2D12;
}

.high-need-note p + p {
  margin-top: 8px;
}

/* Motivational block */
.motive-block {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}

.motive-block__content h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.motive-block__content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.motive-block__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.motive-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.motive-stat__icon {
  font-size: 1.5rem;
}

.motive-stat__text {
  flex: 1;
}

.motive-stat__number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.motive-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* CTA block result */
.cta-result {
  background: var(--green-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-result h2 {
  margin-bottom: 12px;
}

.cta-result p {
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-result__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .rating-preview {
    max-width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-visual {
    display: none;
  }

  .cta-section {
    padding: 40px 24px;
    margin: 0;
    border-radius: 0;
  }

  .main-stats {
    grid-template-columns: 1fr;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .motive-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .company-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .company-card__photo,
  .company-card__photo-placeholder {
    width: 80px;
    height: 80px;
  }

  .modal {
    padding: 28px 20px;
  }

  .cta-result {
    padding: 32px 20px;
  }

  .btn {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .btn--lg {
    font-size: 1rem;
    padding: 16px 28px;
  }
}
