/* ═══════════════════════════════════════════════════
   Google Visual Style — Landing Page Diagnóstico
   Material Design 3 color tokens + Google typography
   ═══════════════════════════════════════════════════ */

/* ── Google Brand Colors ── */
:root {
  --g-blue: #4285F4;
  --g-red: #EA4335;
  --g-yellow: #FBBC04;
  --g-yellow-dark: #F9AB00;
  --g-green: #34A853;

  --g-blue-50: #e8f0fe;
  --g-blue-100: #d2e3fc;
  --g-red-50: #fce8e6;
  --g-yellow-50: #fef9e0;
  --g-green-50: #e6f4ea;

  --surface: #ffffff;
  --surface-2: #f8f9fa;
  --surface-3: #f1f3f4;
  --on-surface: #202124;
  --on-surface-2: #5f6368;
  --on-surface-3: #80868b;

  --border: #dadce0;

  /* Typography */
  --font-display: 'Google Sans Display', 'Roboto Slab', Georgia, serif;
  --font-body: 'Google Sans', 'Roboto', 'Inter', system-ui, sans-serif;

  /* Shadows (Material) */
  --shadow-1: 0 1px 2px rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  --shadow-2: 0 1px 2px rgba(60, 64, 67, .30), 0 2px 6px 2px rgba(60, 64, 67, .15);
  --shadow-3: 0 4px 8px 3px rgba(60, 64, 67, .15), 0 1px 3px rgba(60, 64, 67, .30);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 100px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--surface-2);
}

.section-white {
  background: var(--surface);
}

.section-blue-soft {
  background: var(--g-blue-50);
}

.section-cta {
  background: var(--on-surface);
}

/* ── Section header ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-3);
  color: var(--on-surface-2);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.tag-blue {
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.tag-green {
  background: var(--g-green-50);
  color: var(--g-green);
}

.tag-yellow {
  background: var(--g-yellow-50);
  color: var(--g-yellow-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--on-surface-2);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g-green);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(52, 168, 83, 0.3);
}

.btn-header-whatsapp:hover {
  background: #2d8f47;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.4);
}

.btn-header-whatsapp svg {
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .btn-header-whatsapp span {
    display: none;
  }

  .btn-header-whatsapp {
    padding: 10px;
  }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #1a73e8 0%, #185abc 50%, #1a73e8 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(66, 133, 244, .4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 67, 53, .2) 0%, transparent 40%),
    radial-gradient(circle at 60% 70%, rgba(52, 168, 83, .15) 0%, transparent 40%);
  pointer-events: none;
}

.g-logo {
  font-family: 'Product Sans', 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.5px;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC04;
}

.g-blue2 {
  color: #4285F4;
}

.g-green {
  color: #34A853;
}

.g-red2 {
  color: #EA4335;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 48px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  animation: fadeSlideDown .6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeSlideDown .7s .1s ease both;
}

.highlight-blue {
  color: #FBBC04;
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideDown .7s .2s ease both;
}

.hero-subtitle strong {
  color: white;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--g-blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-3);
  transition: all .2s ease;
  animation: fadeSlideDown .7s .3s ease both;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--g-blue);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 24px;
  border: 2px solid var(--g-blue);
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}

.btn-outline:hover {
  background: var(--g-blue-50);
  transform: translateY(-1px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn .8s .5s ease both;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FBBC04;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  margin: 0 24px;
}

/* Hero wave */
.hero-wave {
  display: block;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════
   QUIZ / DIAGNÓSTICO
═══════════════════════════════ */
.quiz-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.quiz-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.quiz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--g-blue);
  border-radius: 4px 0 0 4px;
}

.quiz-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

.quiz-number {
  width: 36px;
  height: 36px;
  background: var(--g-blue);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quiz-card p {
  font-size: .98rem;
  color: var(--on-surface);
  margin-bottom: 20px;
  line-height: 1.55;
}

.quiz-actions {
  display: flex;
  gap: 10px;
}

.quiz-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: white;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}

.quiz-yes:hover {
  background: var(--g-green-50);
  border-color: var(--g-green);
  color: var(--g-green);
}

.quiz-no:hover {
  background: var(--g-red-50);
  border-color: var(--g-red);
  color: var(--g-red);
}

.quiz-btn.selected-yes {
  background: var(--g-green-50);
  border-color: var(--g-green);
  color: var(--g-green);
}

.quiz-btn.selected-no {
  background: var(--g-red-50);
  border-color: var(--g-red);
  color: var(--g-red);
}

.quiz-result {
  display: none;
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border: 1.5px solid var(--g-yellow);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  animation: fadeIn .4s ease;
}

.quiz-result.visible {
  display: block;
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.quiz-result p {
  font-size: 1.05rem;
  color: var(--on-surface);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ═══════════════════════════════
   STORY FLOW
═══════════════════════════════ */
.story-flow {
  max-width: 800px;
  margin: 0 auto;
}

.story-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.story-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-icon-blue {
  background: var(--g-blue-50);
}

.story-content {
  flex: 1;
  padding-top: 8px;
}

.story-content h3 {
  font-size: 1.1rem;
  color: var(--on-surface);
  margin-bottom: 14px;
}

/* Fake Google search bar */
.fake-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  box-shadow: var(--shadow-1);
  max-width: 400px;
}

.search-text {
  flex: 1;
  font-size: .95rem;
  color: var(--on-surface-2);
}

.search-cursor {
  width: 2px;
  height: 18px;
  background: var(--g-blue);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}

.story-connector {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin: 8px 0 8px 27px;
}

/* Split comparison */
.story-step-split {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.split-bad,
.split-good {
  flex: 1;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-bad {
  border-color: #fad2cf;
  background: #fff8f7;
}

.split-good {
  border-color: #ceead6;
  background: #f8fff8;
}

.split-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--on-surface-3);
  flex-shrink: 0;
  width: 40px;
}

.split-label {
  font-weight: 700;
  font-size: .9rem;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  width: fit-content;
}

.split-label.bad {
  background: var(--g-red-50);
  color: var(--g-red);
}

.split-label.good {
  background: var(--g-green-50);
  color: var(--g-green);
}

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.split-list li {
  font-size: .9rem;
  color: var(--on-surface-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.split-list li::before {
  content: '·';
  color: var(--on-surface-3);
}

.split-result {
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: auto;
}

.bad-result {
  background: var(--g-red-50);
  color: var(--g-red);
}

.good-result {
  background: var(--g-green-50);
  color: var(--g-green);
}

/* ═══════════════════════════════
   ANALOGY CARD
═══════════════════════════════ */
.analogy-card {
  text-align: center;
  padding: 56px 48px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.analogy-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.analogy-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--on-surface);
}

.analogy-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--g-blue);
  border-left: 4px solid var(--g-blue);
  padding: 16px 24px;
  background: var(--g-blue-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 40px;
  text-align: left;
  line-height: 1.4;
}

.analogy-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.analogy-step {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.step-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.analogy-step p {
  font-size: .88rem;
  color: var(--on-surface-2);
  line-height: 1.4;
}

.analogy-arrow {
  font-size: 1.5rem;
  color: var(--g-blue);
  font-weight: 700;
}

/* ═══════════════════════════════
   SOLUTION GRID
═══════════════════════════════ */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.solution-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .25s;
}

.solution-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  background: white;
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.solution-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.solution-item p {
  font-size: .88rem;
  color: var(--on-surface-2);
  line-height: 1.5;
}

.solution-cta {
  text-align: center;
}

.solution-result-label {
  font-size: .85rem;
  color: var(--on-surface-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.solution-result-text {
  font-size: 1.3rem;
  color: var(--on-surface);
}

/* ═══════════════════════════════
   BENEFITS
═══════════════════════════════ */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all .2s;
}

.benefit-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-1);
  border-color: var(--g-green);
}

.benefit-check {
  width: 32px;
  height: 32px;
  background: var(--g-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-text strong {
  font-size: 1rem;
  color: var(--on-surface);
}

.benefit-text span {
  font-size: .88rem;
  color: var(--on-surface-2);
}

/* ═══════════════════════════════
   SIMPLE CARD
═══════════════════════════════ */
.simple-card {
  background: linear-gradient(135deg, var(--g-blue-50), white);
  border: 1.5px solid var(--g-blue-100);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.simple-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.simple-desc {
  font-size: 1.05rem;
  color: var(--on-surface-2);
  margin-bottom: 24px;
  line-height: 1.6;
}

.simple-desc strong {
  color: var(--on-surface);
}

.simple-focus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--g-blue);
  background: white;
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-1);
  line-height: 1.4;
}

.simple-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--on-surface-2);
  font-size: .85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════════
   NICHES
═══════════════════════════════ */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.niche-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: all .2s;
}

.niche-card:hover {
  border-color: var(--g-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.niche-emoji {
  font-size: 2rem;
}

.niche-card span:last-child {
  font-size: .88rem;
  font-weight: 500;
  color: var(--on-surface-2);
}

/* ═══════════════════════════════
   CTA FINAL
═══════════════════════════════ */
.section-cta {
  background: #202124;
}

.cta-card {
  text-align: center;
  padding: 64px 48px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-desc strong {
  color: white;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.cta-note {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 16px;
  letter-spacing: .02em;
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: var(--g-blue);
  background: linear-gradient(160deg, #f0f6ff 0%, white 60%);
  box-shadow: 0 0 0 2px var(--g-blue), var(--shadow-2);
}

.pricing-featured:hover {
  box-shadow: 0 0 0 2px var(--g-blue), var(--shadow-3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g-blue);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tag {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--on-surface-3);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-surface-2);
  padding-bottom: 6px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--g-blue);
}

.pricing-featured .price-value {
  color: var(--g-blue);
}

.pricing-price-custom {
  margin-bottom: 16px;
}

.price-value-custom {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-surface-2);
}

.pricing-desc {
  font-size: .9rem;
  color: var(--on-surface-2);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pricing-desc strong {
  color: var(--on-surface);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--on-surface-2);
  line-height: 1.5;
}

.pricing-features li strong {
  color: var(--on-surface);
}

.feat-check {
  color: var(--g-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-footer-note {
  font-size: .82rem;
  color: var(--on-surface-3);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pricing-footer-note strong {
  color: var(--on-surface-2);
}

.btn-pricing {
  display: block;
  text-align: center;
  background: var(--surface-3);
  color: var(--on-surface);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}

.btn-pricing:hover {
  background: var(--on-surface);
  color: white;
  transform: translateY(-2px);
}

.btn-pricing-featured {
  background: var(--g-blue);
  color: white;
}

.btn-pricing-featured:hover {
  background: #1a73e8;
  color: white;
}

/* ═══════════════════════════════
   BONUS
═══════════════════════════════ */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.bonus-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .25s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.bonus-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-content {
  flex: 1;
}

.bonus-duration {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--g-yellow-dark);
  background: var(--g-yellow-50);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.bonus-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 6px;
  line-height: 1.4;
}

.bonus-content p {
  font-size: .88rem;
  color: var(--on-surface-2);
  line-height: 1.55;
}

.bonus-result {
  background: linear-gradient(135deg, var(--g-yellow-50), white);
  border: 1.5px solid var(--g-yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 1rem;
  color: var(--on-surface-2);
  text-align: center;
  line-height: 1.55;
}

.bonus-result strong {
  color: var(--on-surface);
}

/* ═══════════════════════════════
   GUARANTEE
═══════════════════════════════ */
.guarantee-card {
  background: white;
  border: 2px solid var(--g-green);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 0 0 6px var(--g-green-50);
}

.guarantee-shield {
  display: inline-flex;
  margin-bottom: 16px;
}

.guarantee-days {
  display: inline-block;
  background: var(--g-green);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 12px;
  line-height: 1.2;
}

.guarantee-subtitle-inline {
  color: var(--on-surface-3);
  font-weight: 400;
  font-size: .85em;
}

.guarantee-text {
  font-size: 1rem;
  color: var(--on-surface-2);
  margin-bottom: 20px;
}

.guarantee-quote {
  background: var(--g-green-50);
  border-left: 4px solid var(--g-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 24px;
  font-size: 1rem;
  color: var(--on-surface);
  text-align: left;
  margin: 0 0 28px;
  line-height: 1.6;
}

.guarantee-quote strong {
  color: var(--g-green);
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  align-items: flex-start;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .98rem;
  color: var(--on-surface-2);
}

.guarantee-item strong {
  color: var(--on-surface);
}

.guarantee-check {
  width: 28px;
  height: 28px;
  background: var(--g-green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee-risk {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--g-green);
  letter-spacing: .01em;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
}

.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  border: 2px solid white;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.about-role {
  font-size: .88rem;
  color: var(--on-surface-3);
  margin-bottom: 16px;
  line-height: 1.4;
}

.about-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g-blue-50);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: 16px;
  font-size: .92rem;
  color: var(--on-surface-2);
}

.about-years {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--g-blue);
}

.about-desc {
  font-size: .92rem;
  color: var(--on-surface-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-desc strong {
  color: var(--on-surface);
}

.about-mindset {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--g-blue);
  background: var(--g-blue-50);
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin: 4px 0 12px;
}

.about-mindset strong {
  color: var(--g-blue);
}

/* ═══════════════════════════════
   WHY COSTS LESS
═══════════════════════════════ */
.why-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

/* ─ Intro block ─ */
.why-intro {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-intro p {
  font-size: .98rem;
  color: var(--on-surface-2);
  line-height: 1.65;
}

.why-intro p strong {
  color: var(--on-surface);
}

.why-tech-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--g-blue-50);
  border-left: 4px solid var(--g-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 4px;
}

.why-tech-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-1);
}

.why-tech-highlight p {
  font-size: .93rem;
  color: var(--on-surface);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.why-tech-highlight p strong {
  color: var(--g-blue);
}

/* ─ Divider ─ */
.why-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  margin: 4px 0;
}

.why-divider::before,
.why-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.why-divider span {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--on-surface-3);
  white-space: nowrap;
  background: white;
  padding: 0 8px;
}

/* ─ Model block ─ */
.why-model {
  padding: 24px 36px 28px;
  border-top: 1px solid var(--border);
}

.why-model-lead {
  font-size: 1rem;
  color: var(--on-surface);
  line-height: 1.6;
  margin-bottom: 12px;
}

.why-model-lead strong {
  color: var(--g-blue);
}

.why-model-sub {
  font-size: .88rem;
  color: var(--on-surface-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--on-surface-2);
  line-height: 1.55;
}

.why-list li strong {
  color: var(--on-surface);
}

.why-check {
  width: 26px;
  height: 26px;
  background: var(--g-green-50);
  color: var(--g-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-check-blue {
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.why-conclusion {
  font-size: .93rem;
  color: var(--on-surface-2);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

/* ─ Goal block ─ */
.why-goal {
  background: var(--on-surface);
  padding: 32px 36px;
  text-align: center;
}

.why-goal-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.why-goal>p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-goal blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .92);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

.why-goal blockquote strong {
  color: #FBBC04;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: white;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  line-height: 1.4;
}

.faq-question:hover {
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.faq-question[aria-expanded="true"] {
  background: var(--g-blue-50);
  color: var(--g-blue);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--on-surface-3);
  display: flex;
  align-items: center;
  transition: transform .3s ease, color .2s ease;
}

.faq-question:hover .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
  color: var(--g-blue);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  background: white;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--on-surface-2);
  line-height: 1.65;
  padding: 0 28px 6px;
}

.faq-answer p:first-child {
  padding-top: 4px;
}

.faq-answer p:last-child {
  padding-bottom: 22px;
}

.faq-answer p strong {
  color: var(--on-surface);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #17181a;
  color: rgba(255, 255, 255, .6);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 6px;
}

.footer-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  max-width: 400px;
  margin: 0 auto;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 24px auto;
  max-width: 200px;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .story-step-split {
    flex-direction: column;
  }

  .split-vs {
    display: none;
  }

  .analogy-steps {
    flex-direction: column;
    align-items: center;
  }

  .analogy-arrow {
    transform: rotate(90deg);
  }

  .analogy-card {
    padding: 36px 24px;
  }

  .simple-card {
    padding: 36px 24px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .quiz-cards {
    grid-template-columns: 1fr;
  }

  .niches-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    padding: 40px 24px;
  }

  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .about-highlight {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 40px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }
}