/* ========================================================
   Kiara Systems — AI Voice Receptionist
   Full stylesheet. No Tailwind runtime. Brand-locked.
   Colours: Deep Navy #1B2A4A · Teal #0B7285 · Off-White #F7F9FC
            Teal Light #E1F5EE · White #FFFFFF
   Type:    Fraunces (display) + Inter (body)
   ======================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #1B2A4A;
  --teal:     #0B7285;
  --teal-700: #0a647a;
  --teal-800: #09556b;
  --offwhite: #F7F9FC;
  --teal-lt:  #E1F5EE;
  --white:    #FFFFFF;
  --ink-60:   rgba(27,42,74,.6);
  --ink-70:   rgba(27,42,74,.7);
  --ink-80:   rgba(27,42,74,.8);
  --border:   #E2E8F0;
  --border-hi:#BEE7DE;
  --shadow-sm: 0 2px 8px -2px rgba(27,42,74,.08);
  --shadow-md: 0 12px 32px -16px rgba(27,42,74,.18);
  --shadow-lg: 0 24px 60px -28px rgba(27,42,74,.32);
  --shadow-teal: 0 20px 48px -20px rgba(11,114,133,.42);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-700); }

/* ── TYPOGRAPHY — Fraunces display, Inter body ─────────── */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
  font-size: clamp(36px, 5.4vw, 68px);
}
.display .accent { color: var(--teal); }
.display-light { color: var(--white); }
.display-light .accent { color: var(--teal-lt); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--teal-lt); }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-80);
  line-height: 1.65;
  max-width: 58ch;
  margin-top: 20px;
  margin-bottom: 32px;
}
.lede-light { color: var(--teal-lt); max-width: 58ch; margin-top: 20px; margin-bottom: 36px; }

.accent { color: var(--teal); }
.muted  { color: var(--ink-60); }

.max-w-prose { max-width: 62ch; }
.max-w-3xl   { max-width: 760px; }
.mx-auto     { margin-left: auto; margin-right: auto; }
.center      { text-align: center; }

.container        { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.section        { padding: clamp(72px, 10vw, 120px) 0; }
.section-light  { background: var(--white); }
.section-problem{ padding: clamp(72px, 10vw, 120px) 0; background: var(--offwhite); }
.section-features{ background: var(--offwhite); padding: clamp(72px, 10vw, 120px) 0; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(27,42,74,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  padding: 7px 7px 6px;
  box-shadow: 0 6px 18px -6px rgba(11,114,133,.5);
}
.bar        { width: 6px; border-radius: 2px 2px 0 0; }
.bar-tall   { height: 18px; background: var(--navy); }
.bar-short  { height: 11px; background: var(--white); }
.brand-text { color: var(--white); line-height: 1.1; }
.brand-name { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 17px; display: block; letter-spacing: -0.01em; }
.brand-name-light { color: var(--white); }
.brand-tagline { font-size: 11px; color: var(--teal-lt); display: block; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; }
.nav-link:hover { color: var(--white); }
@media (max-width: 720px) { .nav-link:not(.btn) { display: none; } }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 10px 24px -12px rgba(11,114,133,.6); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(11,114,133,.7); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #14213b; transform: translateY(-2px); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 18px 34px; font-size: 17px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(11,114,133,.25), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(11,114,133,.18), transparent 45%),
    linear-gradient(180deg, #14213b, var(--navy));
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
}
.hero-copy .display { color: var(--white); max-width: 14ch; }
.hero-copy .display .accent { color: var(--teal-lt); }
.hero-copy .lede { color: var(--teal-lt); max-width: 52ch; margin-bottom: 34px; }

.live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: var(--teal-lt);
  font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
}
.live-dot { position: relative; display: inline-flex; width: 8px; height: 8px; border-radius: 999px; background: var(--teal); }
.live-ring {
  position: absolute; inset: 0; border-radius: 999px; background: var(--teal);
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .75; } 80%,100% { transform: scale(2.4); opacity: 0; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-trust { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.55); font-size: 13px; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 7px; }
.icon-check { color: var(--teal); }

/* ── LIVE CALL FEED (hero right column) ────────────────── */
.call-feed {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
  animation: feedIn .8s cubic-bezier(.22,.61,.36,1) .3s both;
}
@keyframes feedIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

.call-feed-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 12px;
}
.call-feed-title { color: var(--white); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.call-feed-live { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-lt); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }

.call-feed-list { display: flex; flex-direction: column; gap: 8px; min-height: 240px; }
.call-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  animation: rowIn .45s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); background: rgba(11,114,133,.16); }
  50%  { background: rgba(11,114,133,.14); }
  to   { opacity: 1; transform: none; background: rgba(255,255,255,.04); }
}
.call-row-avatar {
  width: 34px; height: 34px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #14213b);
  color: var(--white); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-row-name { color: var(--white); font-size: 13px; font-weight: 600; line-height: 1.3; }
.call-row-task { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.35; margin-top: 2px; }
.call-row-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; white-space: nowrap;
}
.call-row--booked  .call-row-tag { background: rgba(11,114,133,.25); color: #7EDACF; }
.call-row--urgent  .call-row-tag { background: rgba(239,68,68,.22); color: #FCA5A5; }
.call-row--patched .call-row-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

.call-feed-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 6px 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 12px;
  color: rgba(255,255,255,.6); font-size: 12px;
}
.call-feed-foot strong { color: var(--white); font-weight: 700; }
.feed-time { font-variant-numeric: tabular-nums; font-family: 'Inter', monospace; }

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 48px);
}
.stats-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 36px);
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stat { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.stat-icon {
  grid-row: span 2;
  color: var(--teal);
  width: 44px; height: 44px;
  background: var(--teal-lt);
  border-radius: 10px;
  padding: 11px;
  flex-shrink: 0;
}
.stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; color: var(--ink-70); line-height: 1.3; }

/* ── TRUST STRIP / MARQUEE ─────────────────────────────── */
.trust-strip {
  background: var(--offwhite);
  padding: 36px 0 44px;
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 12px; font-weight: 600; color: var(--ink-60);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 26px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.marquee-track span { white-space: nowrap; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--teal); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROBLEM SECTION ───────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; gap: 32px; } }
.problem-prose p { font-size: 17px; color: var(--ink-80); margin-bottom: 16px; }
.problem-callout {
  margin-top: 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.problem-callout-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(46px, 6vw, 64px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.problem-callout-text { font-size: 15px; line-height: 1.55; color: var(--navy); }

/* ── STEPS ─────────────────────────────────────────────── */
.steps {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: stretch;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 20px; } .step-connector { display: none; } }

.step {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hi);
}
.step h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 20px; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.step p  { font-size: 15px; color: var(--ink-80); line-height: 1.6; }
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 4px;
}
.step-num::before {
  content: '';
  width: 36px; height: 2px; background: var(--teal);
  display: inline-block; margin-right: 10px; align-self: center;
  transform: translateY(-2px);
}
.step-connector {
  align-self: center; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--border), var(--teal), var(--border));
  opacity: .3;
}

/* ── FEATURES ──────────────────────────────────────────── */
.features-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-hero { grid-column: span 2; grid-row: span 2; }
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .feature-hero { grid-column: span 2; grid-row: auto; } }
@media (max-width: 640px)  { .features-grid { grid-template-columns: 1fr; } .feature-hero { grid-column: auto; } }

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-hi); }
.feature h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 19px; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature p  { font-size: 15px; color: var(--ink-80); line-height: 1.6; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-lt); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.feature-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--white), var(--teal-lt));
  border-color: var(--border-hi);
}
@media (max-width: 720px) { .feature-hero { grid-template-columns: 1fr; } }
.feature-hero h3 { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 14px; }
.feature-hero p { font-size: 16px; line-height: 1.65; }
.feature-visual { display: flex; align-items: center; justify-content: center; }
.feature-visual svg { width: 100%; max-width: 260px; }
.feature-visual svg .wave { animation: waveFade 2.2s ease-in-out infinite; transform-origin: center; }
.feature-visual svg .wave-1 { animation-delay: 0s; }
.feature-visual svg .wave-2 { animation-delay: .35s; }
.feature-visual svg .wave-3 { animation-delay: .35s; }
@keyframes waveFade { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

/* ── DEMO DARK SECTION ─────────────────────────────────── */
.section-dark {
  position: relative;
  background: linear-gradient(180deg, #14213b, var(--navy));
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
}
.dark-glow {
  position: absolute; border-radius: 999px; filter: blur(80px); opacity: .45; pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
.dark-glow-1 { top: -120px; left: 10%; width: 380px; height: 380px; background: rgba(11,114,133,.5); }
.dark-glow-2 { bottom: -120px; right: 5%; width: 420px; height: 420px; background: rgba(11,114,133,.3); animation-delay: 2.5s; }
@keyframes glowPulse { 0%,100% { opacity: .25; transform: scale(1); } 50% { opacity: .55; transform: scale(1.08); } }

.demo-visual { margin-top: 48px; position: relative; }
.demo-orb-outer {
  position: relative;
  width: 140px; height: 140px; margin: 0 auto;
}
.demo-orb-outer::before,
.demo-orb-outer::after {
  content: '';
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(11,114,133,.45);
  animation: orbPing 2.4s cubic-bezier(0,0,.2,1) infinite;
}
.demo-orb-outer::after { animation-delay: 1.2s; }
.demo-orb-inner {
  position: relative; width: 100%; height: 100%;
  background: var(--teal);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px -20px rgba(11,114,133,.7);
}
@keyframes orbPing { 0% { transform: scale(1); opacity: .6; } 80%,100% { transform: scale(1.8); opacity: 0; } }
.demo-orb-link { display: block; cursor: pointer; text-decoration: none; transition: transform .25s; }
.demo-orb-link:hover { transform: scale(1.08); }
.demo-orb-link:hover .demo-orb-inner { box-shadow: 0 30px 70px -16px rgba(11,114,133,.85); }
.demo-hint { color: var(--teal-lt); margin-top: 32px; font-size: 15px; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; } }

.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px; line-height: 1;
  color: var(--teal-lt);
  pointer-events: none;
  user-select: none;
}
.testimonial blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  position: relative; z-index: 1;
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #14213b);
  color: var(--white);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.avatar::before { content: attr(data-monogram); }
.author { font-weight: 600; color: var(--navy); font-size: 15px; }
.author-role { font-size: 13px; color: var(--ink-60); }

/* ── PRICING ───────────────────────────────────────────── */
.plans {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  text-align: left;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 440px; } }

.plan {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-hi); }
.plan-featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: scale(1.04);
}
.plan-featured:hover { transform: translateY(-4px) scale(1.04); }
@media (max-width: 960px) { .plan-featured { transform: none; } .plan-featured:hover { transform: translateY(-4px); } }

.popular-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-700));
  color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(11,114,133,.6);
}

.plan-tier { font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 8px; }
.plan-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.plan-price .currency { font-size: 28px; vertical-align: top; margin-right: 2px; color: var(--ink-60); font-weight: 500; }
.plan-price .period   { font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400; color: var(--ink-60); letter-spacing: 0; margin-left: 4px; }
.plan-desc { font-size: 14px; color: var(--ink-70); margin-bottom: 28px; line-height: 1.5; }

.plan-features { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-features li {
  position: relative; padding: 10px 0 10px 28px;
  font-size: 14.5px; color: var(--navy);
  border-bottom: 1px solid #F1F5F9;
  line-height: 1.5;
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  background:
    linear-gradient(135deg, var(--teal), var(--teal-700)) padding-box;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.plan-features li::after {
  content: '';
  position: absolute; left: 4px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.plan-foot { font-size: 12px; color: var(--ink-60); text-align: center; margin-top: 14px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 16px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--teal-lt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none' stroke='%230B7285' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M1 5h8M5 1v8'/%3E%3C/svg%3E") no-repeat center / 10px;
  transition: transform .2s ease, background-image .2s ease;
}
.faq-item[open] summary::after {
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='2' viewBox='0 0 10 2' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M1 1h8'/%3E%3C/svg%3E") no-repeat center / 10px 2px;
}
.faq-item p {
  margin-top: 14px;
  font-size: 15px; color: var(--ink-80); line-height: 1.65;
}

/* ── FINAL CTA ─────────────────────────────────────────── */
.section-cta .display-light { max-width: 14ch; margin: 0 auto 20px; }
.section-cta .lede-light { margin: 0 auto 36px; }
.section-cta .hero-ctas { justify-content: center; }
.cta-trust { margin-top: 28px; color: rgba(255,255,255,.55); font-size: 13px; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 40px 0;
}
.footer .container {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-meta { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-meta a { color: rgba(255,255,255,.55); }
.footer-meta a:hover { color: var(--white); }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── WHY KIARA ─────────────────────────────────────────── */
.why-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-hi); }
.why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--teal-lt); color: var(--teal);
  border-radius: 10px;
  padding: 10px;
}
.why-item h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.why-item p { font-size: 14px; color: var(--ink-80); line-height: 1.55; }

/* ── DEMO PHONE BLOCK ─────────────────────────────────── */
.section-demo-hero { padding: clamp(80px, 12vw, 140px) 0; }
.demo-phone-block {
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(11,114,133,.18);
  border: 2px solid rgba(11,114,133,.4);
  border-radius: 20px;
  display: inline-block;
}
.demo-phone-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color .2s;
}
.demo-phone-number:hover { color: var(--teal-lt); }
.demo-phone-label {
  margin-top: .5rem;
  font-size: 1rem;
  color: var(--teal-lt);
  font-weight: 500;
}

/* ── TESTIMONIAL STARS ────────────────────────────────── */
.stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-top: 2px; }

/* ── CASE STUDIES ─────────────────────────────────────── */
.case-studies {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 960px) { .case-studies { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; } }
.case-study {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-study:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-study h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600; font-size: 18px; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.case-study-grid { display: flex; flex-direction: column; gap: 16px; }
.case-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--ink-60); margin-bottom: 4px;
}
.case-label-after { color: var(--teal); }
.case-before p, .case-after p { font-size: 14px; color: var(--ink-80); line-height: 1.55; }
.case-after {
  background: var(--teal-lt);
  border-radius: 12px;
  padding: 16px;
}
.case-study-metric {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.case-study-metric span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-70);
  letter-spacing: 0;
  display: block;
}

/* ── PLAN TRIAL ───────────────────────────────────────── */
.plan-trial {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; animation-delay: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ── MOBILE TUNING ─────────────────────────────────────── */
@media (max-width: 560px) {
  .nav { padding: 12px 18px; }
  .brand-name { font-size: 16px; }
  .brand-tagline { font-size: 10px; }
  .hero { padding: 48px 18px 60px; }
  .hero-copy .display { max-width: 100%; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn-hero { width: 100%; }        /* full-width thumb-friendly CTAs on phones */
  .call-feed { padding: 16px; }
  .call-row { padding: 10px 12px; gap: 10px; }
  .call-feed-list { min-height: 200px; }
  .stat-icon { width: 38px; height: 38px; padding: 9px; }
  .stat-value { font-size: 26px; }
  .section, .section-problem, .section-features { padding: 60px 0; }
  .plan { padding: 28px 24px; }
  .plan-price { font-size: 44px; }
  .testimonial blockquote { font-size: 17px; }
  .problem-callout { padding: 22px; gap: 16px; }
  .problem-callout-number { font-size: 42px; }
  .marquee-track { font-size: 18px; gap: 20px; }
  .footer .container { justify-content: center; text-align: center; }
}
