/* =========================================================
   Circle Family Locator – Static template stylesheet
   ========================================================= */

:root {
  --background: #f8fafc;
  --foreground: #16243a;
  --card: #ffffff;
  --muted: #eef4f8;
  --muted-foreground: #607089;
  --border: #e1e9f0;
  --primary: #0ea5e9;
  --primary-glow: #2dd4bf;
  --primary-foreground: #ffffff;
  --secondary: #2bb389;
  --secondary-foreground: #ffffff;
  --accent: #d6f5f0;
  --accent-foreground: #075985;
  --destructive: #ef4444;

  --radius: 1.25rem;

  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #2dd4bf 100%);
  --gradient-cta: linear-gradient(135deg, #0ea5e9, #2dd4bf);
  --gradient-soft: linear-gradient(180deg, #f1fbfd 0%, #f0fbf7 100%);
  --gradient-hero:
    radial-gradient(ellipse at top right, rgba(167, 243, 232, 0.55), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(186, 224, 247, 0.5), transparent 60%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f3f9fc 100%);

  --shadow-sm: 0 2px 8px -2px rgba(13, 71, 109, 0.06);
  --shadow-card: 0 4px 16px -4px rgba(13, 71, 109, 0.1);
  --shadow-lg: 0 20px 50px -12px rgba(13, 71, 109, 0.18);
  --shadow-glow: 0 10px 40px -10px rgba(14, 165, 233, 0.4);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--foreground);
}
p { margin: 0; }

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: 760px; }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.gradient-soft { background: var(--gradient-soft); }
.gradient-hero { background: var(--gradient-hero); }
.gradient-cta-bg { background: var(--gradient-cta); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 0 1.25rem;
  height: 2.5rem;
  font-size: 0.875rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-sm { height: 2.25rem; padding: 0 1rem; font-size: 0.875rem; }
.btn-lg { height: 3rem; padding: 0 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-hero {
  background: var(--gradient-cta);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-soft {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-soft:hover { background: #c5ede5; }

.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--muted); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.brand-badge {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.85rem;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.brand-badge svg { width: 1.1rem; height: 1.1rem; }

.nav-links { display: none; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(22, 36, 58, 0.75);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: none; gap: 0.75rem; align-items: center; }

.nav-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--foreground);
}
.nav-toggle:hover { background: var(--muted); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: rgba(22, 36, 58, 0.85);
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-menu .btn { margin-top: 0.5rem; height: 2.75rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
}
@media (min-width: 768px) {
  .hero { padding: 9rem 0 6rem; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.hero-copy { text-align: center; }
@media (min-width: 1024px) { .hero-copy { text-align: left; } }

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(225, 233, 240, 0.7);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.eyebrow-chip svg { width: 14px; height: 14px; color: var(--primary); }

.display-1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
}
.display-2 {
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.6;
}
.hero-copy .lead { margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .hero-copy .lead { margin-left: 0; } }

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 1024px) { .cta-row { justify-content: flex-start; } }

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.hero-note svg { width: 16px; height: 16px; color: var(--secondary); }
@media (min-width: 1024px) { .hero-note { display: flex; justify-content: flex-start; } }

/* Store badges */
.store-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 1024px) { .store-badges { justify-content: flex-start; } }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.store-badge:hover { opacity: 0.9; }
.store-badge svg { width: 28px; height: 28px; }
.badge-top { font-size: 10px; opacity: 0.8; line-height: 1; margin: 0; }
.badge-bot { font-size: 1rem; font-weight: 600; line-height: 1.1; margin: 2px 0 0; }

.store-badge-light {
  background: var(--background);
  color: var(--foreground);
}

/* ===== Phone Mockup ===== */
.phone-wrap {
  position: relative;
  margin: 0 auto;
  width: 280px;
}
@media (min-width: 640px) { .phone-wrap { width: 320px; } }
@media (min-width: 768px) { .phone-wrap { width: 360px; } }

.phone-glow {
  position: absolute;
  inset: -2rem;
  background: var(--gradient-primary);
  opacity: 0.2;
  filter: blur(50px);
  border-radius: 50%;
}
.phone {
  position: relative;
  background: var(--foreground);
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.phone-screen {
  background: var(--background);
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  position: relative;
}
.notch {
  position: absolute;
  top: 0.5rem; left: 50%;
  transform: translateX(-50%);
  width: 6rem; height: 1.5rem;
  background: var(--foreground);
  border-radius: 9999px;
  z-index: 2;
}
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem 0;
  font-size: 10px;
  font-weight: 600;
  color: rgba(22, 36, 58, 0.8);
  position: relative;
}
.status-right { display: inline-flex; align-items: center; gap: 0.25rem; }
.status-right svg { width: 12px; height: 12px; }

.map-area {
  position: relative;
  height: 58%;
  margin: 1rem 0.75rem 0;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), var(--accent), rgba(43,179,137,0.15));
}
.grid-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; }
.roads { position: absolute; inset: 0; width: 100%; height: 100%; }
.safe-zone {
  position: absolute;
  top: 2rem; right: 1.5rem;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 2px dashed rgba(43, 179, 137, 0.6);
  background: rgba(43, 179, 137, 0.1);
}
.pin {
  position: absolute;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--card);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.pin-primary { background: var(--primary); color: var(--primary-foreground); }
.pin-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.pulse-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}
.map-place {
  position: absolute;
  top: 2.5rem; right: 2.5rem;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.map-place svg { width: 14px; height: 14px; }

.bottom-cards {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.bottom-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 0.625rem 0.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(225, 233, 240, 0.5);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.bc-title { font-size: 11px; font-weight: 600; line-height: 1.2; }
.bc-sub { font-size: 9px; color: var(--muted-foreground); margin-top: 2px; }
.bottom-card-body { flex: 1; min-width: 0; }
.ic-shield { width: 16px; height: 16px; color: var(--secondary); }
.avatar-grad {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem;
}
.avatar-soft {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.avatar-soft svg { width: 14px; height: 14px; }
.grade { font-size: 10px; font-weight: 700; color: var(--secondary); }

.floating-chip {
  position: absolute;
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(225, 233, 240, 0.5);
  border-radius: 1rem;
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 640px) { .floating-chip { display: flex; } }
.chip-left { left: -1.5rem; top: 33%; animation-delay: 1s; }
.chip-right { right: -1rem; bottom: 6rem; animation-delay: 2s; }

.chip-ic {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chip-ic svg { width: 16px; height: 16px; }
.chip-ic-soft { background: rgba(43, 179, 137, 0.15); color: var(--secondary); }
.chip-ic-grad { background: var(--gradient-primary); color: var(--primary-foreground); }
.chip-t { font-size: 0.75rem; font-weight: 600; line-height: 1.1; }
.chip-s { font-size: 10px; color: var(--muted-foreground); }

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(225, 233, 240, 0.6);
  border-bottom: 1px solid rgba(225, 233, 240, 0.6);
  background: rgba(255,255,255,0.5);
}
.overline {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stat { text-align: center; }
.stat-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
}
@media (min-width: 768px) { .stat-v { font-size: 2.25rem; } }
.stat-l { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.chips-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  opacity: 0.8;
}
.chip-pill {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  background: var(--card);
}

/* ===== Section heads ===== */
.section-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.kicker {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.section-head h2 { margin-top: 0.75rem; }
.section-sub {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* ===== Grids ===== */
.grid-3, .grid-4 {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Feature cards ===== */
.feature-card {
  background: var(--gradient-card);
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.feature-ic {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  margin-bottom: 1.25rem;
}
.feature-ic svg { width: 28px; height: 28px; }
.grad-1 { background: linear-gradient(135deg, var(--primary), var(--primary-glow)); }
.grad-2 { background: linear-gradient(135deg, var(--secondary), var(--primary-glow)); }
.grad-3 { background: linear-gradient(135deg, var(--primary-glow), var(--secondary)); }
.grad-4 { background: linear-gradient(135deg, var(--destructive), var(--primary)); }
.grad-5 { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.grad-6 { background: linear-gradient(135deg, var(--secondary), var(--primary)); }

/* ===== Step cards ===== */
.step-card {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted-foreground); line-height: 1.6; }
.step-num {
  position: absolute;
  top: -1.25rem; left: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.1);
}

/* ===== Use cases ===== */
.usecase {
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  transition: var(--transition);
}
.usecase:hover { transform: translateY(-4px); }
.uc-1 { background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(45,212,191,0.1)); }
.uc-2 { background: linear-gradient(135deg, rgba(43,179,137,0.15), rgba(14,165,233,0.1)); }
.uc-3 { background: linear-gradient(135deg, rgba(45,212,191,0.15), rgba(43,179,137,0.1)); }
.uc-4 { background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(43,179,137,0.15)); }
.uc-ic {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.uc-ic svg { width: 24px; height: 24px; }
.usecase h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.usecase p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ===== Privacy ===== */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .privacy-grid { grid-template-columns: 1fr 1fr; } }

.check-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(22, 36, 58, 0.85);
}
.check-ic {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(43, 179, 137, 0.15);
  color: var(--secondary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-ic svg { width: 14px; height: 14px; }
.check-primary { background: rgba(14, 165, 233, 0.15); color: var(--primary); }
.check-secondary { background: rgba(43, 179, 137, 0.15); color: var(--secondary); }

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.privacy-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-card);
}
.privacy-card.offset { margin-top: 2rem; }
.privacy-card h4 { font-weight: 700; margin-bottom: 0.25rem; }
.privacy-card p { font-size: 0.875rem; color: var(--muted-foreground); }
.privacy-card .feature-ic {
  width: 3rem; height: 3rem; margin-bottom: 1rem;
  border-radius: 1rem;
}
.privacy-card .feature-ic svg { width: 24px; height: 24px; }

/* ===== Testimonials ===== */
.testimonial {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-lg); }
.stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.95rem; }
.quote { color: rgba(22, 36, 58, 0.85); font-style: italic; line-height: 1.6; }
.testimonial-foot {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(225, 233, 240, 0.6);
  display: flex; align-items: center; gap: 0.75rem;
}
.avatar-grad-lg {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-foot .avatar-grad { width: 2.75rem; height: 2.75rem; font-size: 1rem; }
.t-name { font-weight: 600; font-size: 0.875rem; }
.t-role { font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== Pricing ===== */
.pricing-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }

.price-card {
  position: relative;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(225, 233, 240, 0.6);
  box-shadow: var(--shadow-card);
}
.price-popular {
  background: var(--gradient-card);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: -0.75rem; right: 2rem;
  background: var(--gradient-cta);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-glow);
}
.price-card h3 { font-size: 1.25rem; font-weight: 700; }
.price-sub { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.price-row { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
}
.price-per { color: var(--muted-foreground); }
.price-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.price-card .btn-block { margin-top: 1.5rem; }

/* ===== FAQ ===== */
.faq {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid rgba(225, 233, 240, 0.6);
  border-radius: 1rem;
  padding: 0 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary);
  transition: transform 0.25s ease;
  margin-left: 1rem;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-body {
  color: var(--muted-foreground);
  line-height: 1.65;
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--gradient-cta);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .final-cta { padding: 4rem; } }
.blob {
  position: absolute;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  filter: blur(50px);
}
.blob-tr { top: -5rem; right: -5rem; }
.blob-bl { bottom: -5rem; left: -5rem; }
.final-cta-inner {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  color: var(--primary-foreground);
}
.cta-spark { width: 40px; height: 40px; margin: 0 auto; opacity: 0.9; }
.cta-title { margin-top: 1rem; color: var(--primary-foreground); }
.cta-sub { margin-top: 1.25rem; font-size: 1.125rem; opacity: 0.9; }
.store-badges-light { margin-top: 2rem; justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(225, 233, 240, 0.6);
  background: rgba(255, 255, 255, 0.5);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 22rem;
  line-height: 1.6;
}
.site-footer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.site-footer ul { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; color: var(--muted-foreground); }
.site-footer a:hover { color: var(--primary); transition: var(--transition); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(225, 233, 240, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .disclaimer { text-align: right; max-width: 36rem; }
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute; inset: 0;
  background: hsla(215, 35%, 10%, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade 0.2s ease-out;
}
.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -20px hsla(215, 60%, 20%, 0.35);
  overflow: hidden;
  animation: modalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-dialog-sm { max-width: 480px; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid hsl(210 30% 92%);
  background: var(--gradient-soft, linear-gradient(180deg, hsl(200 60% 98%), hsl(175 50% 97%)));
}
.modal-title-wrap { display: flex; align-items: center; gap: 14px; }
.modal-badge {
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-primary, linear-gradient(135deg, hsl(200 90% 50%), hsl(175 75% 50%)));
  color: #fff;
  flex-shrink: 0;
}
.modal-badge svg { width: 22px; height: 22px; }
.modal-header h2 {
  font-size: 1.35rem;
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: hsl(215 35% 15%);
}
.modal-meta {
  margin: 2px 0 0; font-size: 0.8rem;
  color: hsl(215 15% 50%);
}
.modal-close {
  background: hsl(210 30% 95%);
  border: none; width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: hsl(215 25% 30%); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: hsl(210 30% 90%); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body {
  padding: 22px 26px;
  overflow-y: auto;
  color: hsl(215 25% 28%);
  line-height: 1.7;
  font-size: 0.95rem;
}
.modal-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.05rem;
  margin: 22px 0 8px;
  color: hsl(200 90% 30%);
}
.modal-body p { margin: 0 0 12px; }
.modal-body ul { margin: 0 0 14px; padding-left: 22px; }
.modal-body li { margin-bottom: 6px; }
.modal-body a { color: hsl(200 90% 42%); text-decoration: underline; }
.modal-body strong { color: hsl(215 35% 18%); }
.modal-footer {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 26px;
  border-top: 1px solid hsl(210 30% 92%);
  background: hsl(210 40% 99%);
}
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .modal { padding: 0; align-items: flex-end; }
  .modal-dialog { border-radius: 24px 24px 0 0; max-height: 95vh; }
  .modal-header { padding: 18px 20px 14px; }
  .modal-body { padding: 18px 20px; font-size: 0.9rem; }
  .modal-footer { padding: 14px 20px; flex-direction: column-reverse; }
  .modal-footer .btn { width: 100%; justify-content: center; }
  .modal-header h2 { font-size: 1.15rem; }
  @keyframes modalPop {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
