/* ═══════════════════════════════════════════════════
   MediPath China — Modern Responsive Stylesheet
   Apple-inspired · 7 distinct visual sections
   ═══════════════════════════════════════════════════ */

/* ─────────── design tokens ─────────── */
:root {
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --surface-2: #F4EFE6;
  --ink: #1A1A1A;
  --ink-2: #4A4A4A;
  --muted: #6B6B6B;
  --border: #E6E1D6;
  --border-strong: #C9C2B0;

  --brand: #0E7C6B;
  --brand-ink: #064038;
  --brand-soft: #E0F0EC;

  --cta: #E85D4C;
  --cta-hover: #D14535;

  --australia: #B85450;
  --china: #0E7C6B;

  --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 1px 1px rgba(20,20,20,.03);
  --shadow-md: 0 4px 12px rgba(20,20,20,.06), 0 2px 4px rgba(20,20,20,.04);
  --shadow-lg: 0 12px 32px rgba(20,20,20,.08), 0 4px 12px rgba(20,20,20,.05);
  --shadow-xl: 0 20px 48px rgba(20,20,20,.1), 0 8px 16px rgba(20,20,20,.06);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --font-display: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --maxw: 1180px;

  /* transition presets */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  /* section-specific accent colors */
  --sec1-accent: #0E7C6B;
  --sec2-accent: #2D6A9F;
  --sec3-accent: #8B5CF6;
  --sec4-accent: #D97706;
  --sec5-accent: #DC2626;
  --sec6-accent: #0891B2;
  --sec7-accent: #E85D4C;
}

/* ─────────── reset ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 17px;
  text-wrap: pretty;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ─────────── utility ─────────── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────── scroll-reveal ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─────────── decorative section number ─────────── */
.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  text-stroke: 1.5px var(--border);
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 0;
}
.section-num-light {
  -webkit-text-stroke-color: rgba(255,255,255,.12);
  text-stroke-color: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
nav.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
nav.topnav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity .2s ease;
  flex-shrink: 0;
}
.logo:hover { opacity: .8; }
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(0,0,0,.04);
}
.nav-links a.active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 600;
}
.nav-cta {
  background: var(--ink) !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px !important;
  transition: background .2s ease, transform .2s ease !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--brand-ink) !important;
  transform: translateY(-1px);
}

/* mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(251,250,247,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 45;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s var(--ease-out);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.mobile-menu a:hover { color: var(--brand); }

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hamburger { display: flex; }
  .nav-cta { font-size: 12px !important; padding: 7px 14px; }
}

/* ═══════════════════════════════════════════════════
   SECTION 1 — WHY CHINA (Hero)
   Warm cream bg + teal/coral gradient orbs
   ═══════════════════════════════════════════════════ */
section.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: #E8F5F0;
}
section.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 75% -5%, rgba(14,124,107,.14), transparent 60%),
    radial-gradient(ellipse 700px 400px at -5% 110%, rgba(232,93,76,.08), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(14,124,107,.06), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.section-why-china .section-num {
  -webkit-text-stroke-color: rgba(14,124,107,.2);
  text-stroke-color: rgba(14,124,107,.2);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 28px;
  animation: fadeInUp .6s var(--ease-out) both;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

h1.h-display {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 24px;
  max-width: 900px;
  animation: fadeInUp .6s var(--ease-out) .1s both;
}
h1.h-display .accent { color: var(--brand); }
h1.h-display .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(184,84,80,.4);
  text-decoration-thickness: 4px;
  color: var(--australia);
}
.hero-sub {
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 640px;
  margin: 0 0 40px;
  animation: fadeInUp .6s var(--ease-out) .2s both;
}

/* price tabs */
.tabs {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp .6s var(--ease-out) .3s both;
}
.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  transition: all .2s var(--ease-out);
}
.tab:hover { color: var(--ink); background: rgba(0,0,0,.03); }
.tab.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* price comparison cards */
.price-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 760px;
  margin-bottom: 32px;
  animation: fadeInUp .6s var(--ease-out) .4s both;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.price-card.china {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(180deg, #fff, #f6fcfb);
  box-shadow: 0 8px 24px rgba(14,124,107,.10);
}
.price-card.china:hover {
  box-shadow: 0 12px 32px rgba(14,124,107,.15);
}
.price-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.price-flag.china { color: var(--brand); }
.price-procedure {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 14px;
  min-height: 38px;
}
.price-amount {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.price-amount.strike {
  color: var(--australia);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
.price-fee {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 13.5px;
  color: var(--ink-2);
}
.arrow {
  align-self: center;
  color: var(--muted);
  font-size: 28px;
  user-select: none;
  transition: transform .3s var(--ease-out);
}
.savings {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, #0a5d51 100%);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 36px;
  box-shadow: 0 4px 14px rgba(14,124,107,.18);
  transition: transform .2s var(--ease-out), box-shadow .2s ease;
}
.savings:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14,124,107,.25);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  text-decoration: none;
  transition: all .2s var(--ease-out);
}
.btn-primary {
  background: var(--cta);
  color: white;
  box-shadow: 0 6px 18px rgba(232,93,76,.28);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,93,76,.36);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-arrow { transition: transform .2s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
}
.reddit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease;
}
.reddit-badge:hover { color: var(--ink); }
.reddit-badge .star { color: #FF4500; }
.check { color: var(--brand); font-weight: 700; }

@media (max-width: 760px) {
  .price-cards { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
  section.hero { padding: 48px 0 64px; }
  .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 8px 16px; font-size: 12.5px; }
}

/* ═══════════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════════ */
section.block {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
h2.h-section {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 800;
  margin: 0 0 20px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.section-sub {
  color: var(--ink-2);
  max-width: 640px;
  font-size: 17px;
  margin: 0 0 52px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  section.block { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════
   SECTION 2 — HOW IT WORKS
   Clean white · blue accent · connected steps
   ═══════════════════════════════════════════════════ */
.section-how {
  background: #E6EEF6;
  border-top: 1px solid #C8D6E5;
  border-bottom: 1px solid #C8D6E5;
}
.section-how .section-num {
  -webkit-text-stroke-color: rgba(45,106,159,.18);
  text-stroke-color: rgba(45,106,159,.18);
}
.section-how .section-eyebrow { color: var(--sec2-accent); }
.section-how::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse 600px 600px at 90% 40%, rgba(45,106,159,.1), transparent 70%);
  pointer-events: none;
}

.section-header-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* connector line between steps */
.steps::before {
  content: "";
  position: absolute;
  top: 47px;
  left: calc(12.5% + 17px);
  right: calc(12.5% + 17px);
  height: 2px;
  background: linear-gradient(90deg, rgba(45,106,159,.2), rgba(45,106,159,.1));
  z-index: 0;
}
.step {
  background: var(--surface);
  border: 1px solid #C8D6E5;
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
  position: relative;
  z-index: 1;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sec2-accent), #5B9BD5);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,106,159,.1);
}
.step:hover::before { opacity: 1; }
.step-num {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(45,106,159,.08);
  color: var(--sec2-accent);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
  transition: background .2s ease, color .2s ease;
}
.step:hover .step-num {
  background: var(--sec2-accent);
  color: white;
}
.step-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(45,106,159,.06);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 20px;
  transition: transform .2s var(--ease-bounce);
}
.step:hover .step-icon { transform: scale(1.1); }
.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps::before { display: none; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   SECTION 3 — WHO YOU'LL WORK WITH
   Soft lavender tint · purple accent · personal
   ═══════════════════════════════════════════════════ */
.section-team {
  background: #EDE8F6;
  border-top: 1px solid #D5CCE8;
  border-bottom: 1px solid #D5CCE8;
}
.section-team .section-num {
  -webkit-text-stroke-color: rgba(139,92,246,.18);
  text-stroke-color: rgba(139,92,246,.18);
}
.section-team .section-eyebrow { color: var(--sec3-accent); }
.section-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 500px at 10% 60%, rgba(139,92,246,.09), transparent 70%);
  pointer-events: none;
}

.coordinators {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 44px;
}
.coordinator-card {
  background: var(--surface);
  border: 1px solid #D5CCE8;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.coordinator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139,92,246,.08);
}
.avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -.02em;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-bounce);
}
.coordinator-card:hover .avatar { transform: scale(1.06); }
.avatar.s { background: linear-gradient(135deg, #0E7C6B, #1AA48E); }
.avatar.m { background: linear-gradient(135deg, #C26B3B, #E89556); }
.avatar.l { background: linear-gradient(135deg, #5C4396, #8867BC); }
.coordinator-card h3 {
  font-size: 17px;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.coordinator-role {
  color: var(--sec3-accent);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.coordinator-quote {
  color: var(--ink-2);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.promises {
  background: var(--surface);
  border: 1px solid #D5CCE8;
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.promises:hover { box-shadow: var(--shadow-md); }
.promises h4 {
  margin: 0 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid #D5CCE8;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.promise:first-of-type { border-top: 0; padding-top: 0; }
.promise-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sec3-accent);
  color: white;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 820px) { .coordinators { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   SECTION 4 — PRICING
   Warm amber tint · golden accent · premium feel
   ═══════════════════════════════════════════════════ */
.section-pricing {
  background: #FBF0DB;
  border-top: 1px solid #E8D5B0;
  border-bottom: 1px solid #E8D5B0;
}
.section-pricing .section-num {
  -webkit-text-stroke-color: rgba(217,119,6,.2);
  text-stroke-color: rgba(217,119,6,.2);
}
.section-pricing .section-eyebrow { color: var(--sec4-accent); }
.section-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 85% 20%, rgba(217,119,6,.09), transparent 60%),
    radial-gradient(ellipse 400px 300px at 15% 80%, rgba(14,124,107,.06), transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid #E8D5B0;
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(217,119,6,.1);
}
.plan.featured {
  border: 2px solid var(--sec4-accent);
  box-shadow: 0 10px 30px rgba(217,119,6,.1);
}
.plan.featured::before {
  content: "★ Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sec4-accent), #F59E0B);
  color: white;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(217,119,6,.3);
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sec4-accent);
  margin: 0 0 10px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price .amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-price .currency {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}
.plan-tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.feat-check {
  flex-shrink: 0;
  color: var(--sec4-accent);
  font-weight: 700;
  margin-top: 1px;
}
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s ease, transform .2s var(--ease-out);
}
.plan-cta:hover { background: var(--brand-ink); transform: translateY(-1px); }
.plan.featured .plan-cta { background: var(--cta); }
.plan.featured .plan-cta:hover { background: var(--cta-hover); }

.pricing-note {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid #E8D5B0;
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.pricing-note h4 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.pricing-note p {
  margin: 0 0 8px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pricing-note ul {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  list-style: disc;
}
.pricing-note ul li { padding: 4px 0; }

@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan.featured { order: -1; }
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — STORIES
   Soft rose tint · warm accent · social proof
   ═══════════════════════════════════════════════════ */
.section-stories {
  background: #F8E4E4;
  border-top: 1px solid #E5C5C5;
  border-bottom: 1px solid #E5C5C5;
}
.section-stories .section-num {
  -webkit-text-stroke-color: rgba(220,38,38,.15);
  text-stroke-color: rgba(220,38,38,.15);
}
.section-stories .section-eyebrow { color: var(--sec5-accent); }
.section-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 500px at 80% 70%, rgba(220,38,38,.08), transparent 70%);
  pointer-events: none;
}

.reddit-feature {
  background: var(--surface);
  border: 1px solid #E5C5C5;
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.reddit-feature:hover { box-shadow: var(--shadow-md); }
.reddit-feature::before {
  content: "";
  position: absolute;
  left: 0; top: 34px; bottom: 34px;
  width: 4px;
  background: linear-gradient(180deg, #FF4500, #FF6B35);
  border-radius: 0 4px 4px 0;
}
.reddit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.reddit-icon {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #FF4500, #FF6B35);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
}
.reddit-feature blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}
.reddit-stats {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #E5C5C5;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.reddit-stats a {
  margin-left: auto;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.reddit-stats a:hover { color: var(--brand-ink); text-decoration: underline; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid #E5C5C5;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220,38,38,.06);
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.testimonial-attr {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.small-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: white;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.small-avatar.r { background: linear-gradient(135deg, #B85450, #DB7B6F); }
.small-avatar.l { background: linear-gradient(135deg, #4A6FA5, #6E92C7); }
.small-avatar.k { background: linear-gradient(135deg, #5C8C50, #7CAF6F); }
.testimonial-name {
  font-weight: 600;
  font-size: 14.5px;
  margin: 0;
}
.testimonial-role {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.procedure-tag {
  display: inline-block;
  background: rgba(220,38,38,.06);
  color: #991B1B;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.placeholder-note {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  color: #B8B0A0;
  font-style: italic;
  opacity: .65;
}

@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   SECTION 6 — FAQ
   Cool cyan tint · clean minimal · trustworthy
   ═══════════════════════════════════════════════════ */
.section-faq {
  background: #DBEFF5;
  border-top: 1px solid #B5D8E3;
  border-bottom: 1px solid #B5D8E3;
}
.section-faq .section-num {
  -webkit-text-stroke-color: rgba(8,145,178,.18);
  text-stroke-color: rgba(8,145,178,.18);
}
.section-faq .section-eyebrow { color: var(--sec6-accent); }
.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 20% 30%, rgba(8,145,178,.09), transparent 70%);
  pointer-events: none;
}

.faqs { max-width: 780px; }
details.faq {
  background: var(--surface);
  border: 1px solid #B5D8E3;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
details.faq:hover {
  border-color: var(--sec6-accent);
}
details.faq[open] {
  border-color: var(--sec6-accent);
  box-shadow: 0 2px 8px rgba(8,145,178,.08);
}
details.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--ink);
  transition: color .2s ease;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--muted);
  font-weight: 300;
  transition: transform .25s var(--ease-out), color .2s ease;
  margin-left: 16px;
  flex-shrink: 0;
}
details.faq[open] summary::after {
  content: "−";
  color: var(--sec6-accent);
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
  animation: faqOpen .3s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-body strong { color: var(--ink); }
.faq-body ul { padding-left: 18px; margin: 10px 0; list-style: disc; }

/* ═══════════════════════════════════════════════════
   SECTION 7 — GET A QUOTE (Final CTA)
   Dark dramatic · coral accent · high contrast
   ═══════════════════════════════════════════════════ */
section.final-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(160deg, #1A1A1A 0%, #0F1F1D 50%, #1A1215 100%);
  color: white;
  position: relative;
}
section.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 30% 80%, rgba(14,124,107,.15), transparent 60%),
    radial-gradient(600px 300px at 80% 20%, rgba(232,93,76,.1), transparent 60%);
  pointer-events: none;
}
section.final-cta .container { position: relative; }
section.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 800;
  margin: 0 0 28px;
}
section.final-cta h2 .accent { color: #FFB088; }
.stop-googling-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.google-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 24px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
  transition: box-shadow .2s ease, transform .2s ease;
}
.google-search:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.gs-icon {
  flex-shrink: 0;
  color: #5f6368;
}
.gs-text {
  color: #5f6368;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
section.final-cta p {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
section.final-cta .btn-primary {
  margin-bottom: 20px;
  padding: 18px 32px;
  font-size: 17px;
}
.final-meta {
  color: rgba(255,255,255,.45);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════
   INQUIRY MODAL
   ═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
  animation: modalFadeIn .25s ease forwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.modal-close:hover {
  color: var(--ink);
  background: rgba(0,0,0,.05);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.required { color: #DC2626; }
.form-group input[type="text"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fafafa;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.form-group input[type="text"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14,124,107,.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.contact-row {
  display: flex;
  gap: 10px;
}
.contact-row select {
  width: 170px;
  flex-shrink: 0;
}
.contact-row input[type="text"] {
  flex: 1;
  min-width: 0;
}
.form-error {
  display: none;
  color: #DC2626;
  font-size: 13px;
  margin-top: 4px;
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #DC2626;
}
.form-group.has-error .form-error {
  display: block;
}
.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success .success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #1AA48E);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 28px;
  font-weight: 700;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.form-success p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 520px) {
  .modal { padding: 28px 20px 24px; }
  .contact-row { flex-direction: column; }
  .contact-row select { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  padding: 48px 0;
  color: var(--muted);
  font-size: 13.5px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .25s var(--ease-bounce), box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ═══════════════════════════════════════════════════
   LIVE ACTIVITY BADGE
   ═══════════════════════════════════════════════════ */
.live-activity {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 99;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  animation: slideUp .5s var(--ease-out);
  transition: opacity .3s ease;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pulse 1.6s infinite;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .live-activity { display: none !important; }
  section.final-cta { padding: 80px 0; }
  .reddit-feature { padding: 24px 20px; }
  .reddit-feature::before { top: 24px; bottom: 24px; }
  .promises { padding: 24px 20px; }
  .section-num { font-size: 64px; margin-bottom: -12px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  section.hero { padding: 36px 0 48px; }
  .tabs { flex-wrap: wrap; }
  .tab { font-size: 13px; padding: 8px 14px; }
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════ */
@media print {
  nav.topnav,
  .whatsapp-float,
  .live-activity { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  section.block { padding: 24pt 0; border-top: 1px solid #ccc; }
}
