/* ============================================================
   Glinto — Marketing Site
   Brand colors pulled from the live customer app (main.dart):
   seed teal #00897B, plan teal #0D9488, scaffold mint #F0FAF9
   ============================================================ */

:root {
  --teal-50:  #F0FAF9;
  --teal-100: #DCF3EF;
  --teal-200: #B7E4DC;
  --teal-500: #0D9488;
  --teal-600: #00897B;
  --teal-700: #065F55;
  --teal-900: #073B34;

  --orange: #FF6B35;
  --purple: #6B21A8;

  --ink-900: #0B1720;
  --ink-700: #3A4A52;
  --ink-500: #64767E;
  --line:    #E3EDEB;

  --bg:      #FFFFFF;
  --bg-soft: #F7FDFB;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(11, 23, 32, 0.06), 0 1px 1px rgba(11, 23, 32, 0.04);
  --shadow-md: 0 12px 24px -8px rgba(7, 59, 52, 0.16);
  --shadow-lg: 0 24px 48px -12px rgba(7, 59, 52, 0.22);

  --container: 1180px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Decorative background blobs ---------- */
#why::before, #life::after, #areas::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
#why::before {
  width: 380px; height: 380px;
  top: -120px; right: -140px;
  background: radial-gradient(circle, var(--teal-100), transparent 70%);
}
#life::after {
  width: 320px; height: 320px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(255,179,71,0.18), transparent 70%);
}
#areas::before {
  width: 340px; height: 340px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--teal-100), transparent 70%);
}

section { position: relative; }
.section-pad { padding: 96px 0; }
@media (max-width: 720px) { .section-pad { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 6px 14px;
  border-radius: 999px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
  color: var(--ink-900);
}
.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ink-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-200);
}
.btn-ghost:hover { background: var(--teal-50); }
.btn-light {
  background: #fff;
  color: var(--teal-700);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ---------- App download dropdown ---------- */
.app-download { position: relative; }
.app-download summary { cursor: pointer; list-style: none; }
.app-download summary::-webkit-details-marker { display: none; }
.app-download[open] summary { box-shadow: var(--shadow-lg); }
.app-download-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 110;
}
.app-download-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  color: var(--ink-900);
}
.app-download-option:hover { background: var(--teal-50); }
.app-download-option svg { width: 14px; height: 14px; color: var(--teal-600); flex-shrink: 0; }
.app-download-option span { display: flex; flex-direction: column; gap: 1px; }
.app-download-option strong { font-size: 12.5px; font-weight: 600; }
.app-download-option small { font-size: 10.5px; color: var(--ink-500); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(11,23,32,0.03); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--teal-700);
}
.brand img { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--teal-700); }
.nav-links a:hover::after,
.nav-links a.active-link::after { transform: scaleX(1); }
.nav-links a.active-link { color: var(--teal-700); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  margin: 5px 0;
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 68px 0 0 0; background: #fff; flex-direction: column;
    padding: 32px 24px; gap: 24px; transform: translateY(-110%); transition: transform 0.25s ease;
    border-top: 1px solid var(--line); }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(1200px 480px at 85% -10%, var(--teal-100), transparent 60%),
    var(--bg-soft);
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-top: 18px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--teal-600); }
.hero-punch {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--teal-700);
}
.hero .lede {
  margin-top: 14px;
  font-size: 18px;
  color: var(--ink-700);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.trust-strip .item svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

/* ---------- Hero art (video card) ---------- */
.hero-art { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; perspective: 1200px; }
.hero-card {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  background: linear-gradient(160deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.hero-card::before, .hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
  z-index: 2;
}
.hero-card::before { width: 220px; height: 220px; top: -60px; right: -60px; }
.hero-card::after { width: 160px; height: 160px; bottom: -50px; left: -40px; background: rgba(255,255,255,0.08); }
.hero-card svg.car-illustration { width: 62%; height: auto; position: relative; z-index: 1; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-video-caption {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.01em;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-card { transition: none; }
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  color: var(--teal-600);
  opacity: 0.7;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-600); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Why Glinto ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.why-card:hover .icon-circle { transform: scale(1.08) rotate(-4deg); }
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-100), #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}
.icon-circle svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--ink-500); }
.why-card .punchline {
  margin-top: 14px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal-700);
}

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 940px) { .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.plan-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--teal-50), #fff 30%);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--teal-600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--teal-700); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 12px; }
.plan-price .amount { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--ink-900); }
.plan-price .period { font-size: 14px; color: var(--ink-500); }
.plan-tax { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.plan-desc { font-size: 14.5px; color: var(--ink-700); margin-top: 14px; }
.plan-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-700); }
.plan-features svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.plan-card .btn { margin-top: 28px; }
.plans-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--ink-500); }

/* ---------- Services (what's included) ---------- */
.services-label {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 28px auto 0;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 420px; } }

.service-card { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.service-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--teal-50);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.07); }
.service-card span { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }

/* ---------- How it works ---------- */
.how-showcase {
  position: relative;
  background: linear-gradient(150deg, var(--teal-900) 0%, var(--teal-700) 55%, var(--teal-600) 100%);
  border-radius: 36px;
  padding: 76px 40px 56px;
  overflow: hidden;
}
.how-showcase::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  top: -160px; left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.how-showcase::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  bottom: -160px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,71,0.14), transparent 70%);
  pointer-events: none;
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 64px; max-width: 300px; margin-inline: auto; } }

.step { position: relative; text-align: center; }
.step:nth-child(1) .phone-mock { transform: rotate(-5deg); }
.step:nth-child(2) .phone-mock { transform: rotate(0deg) translateY(-14px); }
.step:nth-child(3) .phone-mock { transform: rotate(5deg); }
.step:hover .phone-mock { transform: rotate(0deg) translateY(-6px); }

.step-ghost-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.14);
  margin-bottom: -30px;
}
.step h3 { font-size: 19px; margin: 24px 0 8px; color: #fff; }
.step p { font-size: 14.5px; color: rgba(255,255,255,0.68); max-width: 260px; margin-inline: auto; }

/* Dummy app-screen phone mockups (pure CSS — no images, nothing to load) */
.phone-mock {
  position: relative;
  width: 230px;
  aspect-ratio: 9 / 19;
  margin-inline: auto;
  background: var(--ink-900);
  border-radius: 22px;
  padding: 4px;
  box-shadow: 0 30px 50px -14px rgba(0,0,0,0.45);
  transition: transform 0.35s ease;
}
.phone-mock .notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 9px;
  background: var(--ink-900);
  border-radius: 6px;
  z-index: 5;
}
@media (prefers-reduced-motion: reduce) {
  .step:nth-child(1) .phone-mock, .step:nth-child(3) .phone-mock { transform: none; }
  .phone-mock { transition: none; }
}
@media (max-width: 780px) {
  .step:nth-child(1) .phone-mock, .step:nth-child(2) .phone-mock, .step:nth-child(3) .phone-mock { transform: none; }
}
.phone-mock .screen {
  width: 100%;
  height: 100%;
  background: var(--bg-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mock-appbar {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 22px 14px 10px;
  text-align: left;
}
.mock-content { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.mock-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-700);
}
.mock-plan-row.selected { border-color: var(--teal-500); background: var(--teal-50); position: relative; }
.mock-price { color: var(--ink-500); font-weight: 500; }
.mock-check {
  position: absolute; right: -5px; top: -5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal-600); color: #fff;
  font-size: 8px; display: flex; align-items: center; justify-content: center;
}
.mock-btn {
  margin-top: auto;
  background: var(--teal-600);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 9px;
  font-size: 10.5px;
  font-weight: 700;
}

.mock-status-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-100); flex-shrink: 0; }
.mock-lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.mock-line { display: block; height: 6px; border-radius: 4px; background: var(--line); }
.mock-line.w80 { width: 80%; } .mock-line.w60 { width: 60%; } .mock-line.w50 { width: 50%; } .mock-line.w40 { width: 40%; }
.mock-badge {
  align-self: flex-start;
  background: rgba(255,179,71,0.2);
  color: #B45309;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.mock-map {
  height: 44px;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, var(--teal-50) 0 6px, #fff 6px 12px);
  border: 1px solid var(--line);
}

.mock-photos { display: flex; gap: 6px; }
.mock-photo {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--ink-500);
}
.mock-photo.after { background: linear-gradient(135deg, var(--teal-100), var(--teal-50)); color: var(--teal-700); }
.mock-stars { color: var(--orange); font-size: 14px; text-align: center; letter-spacing: 2px; }

/* ---------- Eco band ---------- */
.eco-band {
  background: linear-gradient(120deg, var(--teal-700), var(--teal-900));
  color: #fff;
  padding: 56px 0;
}
.eco-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.eco-copy { max-width: 560px; }
.eco-copy .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.eco-copy h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-top: 14px; }
.eco-copy p { color: rgba(255,255,255,0.82); margin-top: 12px; font-size: 15.5px; }
.eco-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  min-width: 220px;
}
.eco-stat .num { font-family: var(--font-head); font-size: 44px; font-weight: 700; color: var(--orange); }
.eco-stat .label { font-size: 13.5px; color: rgba(255,255,255,0.82); margin-top: 6px; }

/* ---------- Areas ---------- */
.areas-city {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 8px;
}
.areas-city svg { width: 20px; height: 20px; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.area-chip svg { width: 15px; height: 15px; color: var(--teal-600); }
.area-chip:hover { border-color: var(--teal-500); background: var(--teal-50); color: var(--teal-700); }
.areas-note {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--ink-500);
}
.areas-note a { color: var(--teal-700); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; color: var(--ink-500); font-size: 14.5px; max-width: 640px; }

/* ---------- Final CTA ---------- */
.cta-panel {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 15% 0%, rgba(255,255,255,0.16), transparent 60%);
}
.cta-panel h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); position: relative; }
.cta-panel p { color: rgba(255,255,255,0.86); margin-top: 12px; font-size: 16px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; position: relative; }
@media (max-width: 620px) { .cta-panel { padding: 48px 24px; border-radius: 24px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; }
.footer-tagline { margin-top: 14px; font-size: 14px; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 18px; font-family: var(--font-body); }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a, .footer li { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-secure { display: flex; align-items: center; gap: 8px; }
.footer-secure svg { width: 16px; height: 16px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Staggered entrance for card grids */
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: .08s; }
.why-grid .why-card:nth-child(3) { transition-delay: .16s; }
.why-grid .why-card:nth-child(4) { transition-delay: .24s; }
.why-grid .why-card:nth-child(5) { transition-delay: .32s; }
.why-grid .why-card:nth-child(6) { transition-delay: .4s; }

.plans-grid .plan-card:nth-child(1) { transition-delay: 0s; }
.plans-grid .plan-card:nth-child(2) { transition-delay: .1s; }
.plans-grid .plan-card:nth-child(3) { transition-delay: .2s; }

.steps .step:nth-child(1) { transition-delay: 0s; }
.steps .step:nth-child(2) { transition-delay: .12s; }
.steps .step:nth-child(3) { transition-delay: .24s; }

.area-chips .area-chip:nth-child(1) { transition-delay: 0s; }
.area-chips .area-chip:nth-child(2) { transition-delay: .04s; }
.area-chips .area-chip:nth-child(3) { transition-delay: .08s; }
.area-chips .area-chip:nth-child(4) { transition-delay: .12s; }
.area-chips .area-chip:nth-child(5) { transition-delay: .16s; }
.area-chips .area-chip:nth-child(6) { transition-delay: .2s; }
.area-chips .area-chip:nth-child(7) { transition-delay: .24s; }
.area-chips .area-chip:nth-child(8) { transition-delay: .28s; }
.area-chips .area-chip:nth-child(9) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-delay: 0s !important; }
}

/* ---------- Featured plan glow ---------- */
.plan-card.featured {
  animation: glow-pulse 3.4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: 0 24px 56px -10px rgba(13,148,136,0.35); }
}
@media (prefers-reduced-motion: reduce) {
  .plan-card.featured { animation: none; }
}
