/* ============================================================
   Voice Bonsai — Shared Brand Stylesheet v2.0
   Source of truth for all pages. Page-specific styles go inline.
   ============================================================ */

:root {
  --teal:          #00D4E8;
  --teal-bright:   #00EEFF;
  --teal-dark:     #00A3B8;
  --coral:         #FF5A6E;
  --coral-bright:  #FF7A8A;
  --purple:        #6B4FE8;
  --purple-mid:    #8B6FFF;
  --navy:          #050D1F;
  --navy-mid:      #081426;
  --navy-card:     #0A1830;
  --navy-light:    #0D1F3C;
  --border:        rgba(0,212,232,.15);
  --border-soft:   rgba(255,255,255,.07);
  --text:          #FFFFFF;
  --text-secondary:#B8C8E0;
  --text-muted:    #6B82A0;
  --grad-brand:    linear-gradient(135deg, #00D4E8, #6B4FE8, #FF5A6E);
  --grad-teal:     linear-gradient(135deg, #00D4E8, #00A3B8);
  --grad-coral:    linear-gradient(135deg, #FF5A6E, #FF9A6E);
  --grad-purple:   linear-gradient(135deg, #6B4FE8, #9B6FFF);
  --grad-hero-bg:  radial-gradient(ellipse 100% 80% at 20% 50%, rgba(0,212,232,.12) 0%, transparent 60%),
                   radial-gradient(ellipse 80% 60% at 80% 60%, rgba(107,79,232,.15) 0%, transparent 55%),
                   radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,90,110,.1) 0%, transparent 50%);
  --radius:        12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --max-w:         1200px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--navy); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.bg-mid { background: var(--navy-mid); }
.bg-card { background: var(--navy-card); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Gradient text ── */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-teal {
  background: linear-gradient(90deg, var(--teal-bright), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: 10px;
  font-weight: 700; font-size: .95rem; font-family: var(--font);
  cursor: pointer; border: none; transition: all .2s; white-space: nowrap;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 0 20px rgba(0,212,232,.35), 0 4px 16px rgba(0,0,0,.3);
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(0,212,232,.55), 0 8px 24px rgba(0,0,0,.3); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,212,232,.05); }
.btn-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-bright));
  color: #fff; box-shadow: 0 0 20px rgba(255,90,110,.3), 0 4px 16px rgba(0,0,0,.3);
}
.btn-coral:hover { box-shadow: 0 0 32px rgba(255,90,110,.5), 0 8px 24px rgba(0,0,0,.3); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid rgba(0,212,232,.4); }
.btn-outline-teal:hover { background: rgba(0,212,232,.1); border-color: var(--teal); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; border-radius: 12px; }
.btn-xl { padding: 1.15rem 2.4rem; font-size: 1.1rem; border-radius: 14px; }

/* ── Nav ── */
nav.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5,13,31,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 140px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { height: 130px; width: auto; max-width: 340px; border-radius: 0; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: .9rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a.active { color: var(--teal); }
.nav-ctas { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; cursor: pointer; color: var(--text-secondary); font-size: 1.4rem; padding: .3rem .65rem; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links-wrap {
    display: none; position: absolute; top: 140px; left: 0; right: 0; z-index: 99;
    background: var(--navy-mid); border-bottom: 1px solid var(--border-soft); padding: 1.5rem;
  }
  .nav-links-wrap.is-open { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nav-ctas { margin-top: 1.25rem; flex-direction: column; width: 100%; }
  .nav-ctas .btn { width: 100%; justify-content: center; }
  .nav-cta-desk { display: none; }
}

/* ── Stars / particles ── */
.stars-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle { 0%, 100% { opacity: var(--op, .4); } 50% { opacity: .05; } }

/* ── Pulse dot ── */
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: pulse 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,232,.4); } 50% { opacity: .7; box-shadow: 0 0 0 6px rgba(0,212,232,0); } }

/* ── Float animation ── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ── Wave animation ── */
@keyframes wave { 0% { transform: scaleY(.3); } 100% { transform: scaleY(1); } }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem; min-height: 100vh;
  display: flex; align-items: center; background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--grad-hero-bg); }
.hero-arc {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; border: 1px solid;
}
.hero-arc-1 { width: 900px; height: 900px; top: -200px; right: -200px; border-color: rgba(0,212,232,.06); }
.hero-arc-2 { width: 650px; height: 650px; top: -50px; right: 50px; border-color: rgba(107,79,232,.08); }
.hero-arc-3 { width: 400px; height: 400px; top: 100px; right: 200px; border-color: rgba(0,212,232,.05); }
.hero-glow-left {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,110,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,212,232,.08); border: 1px solid rgba(0,212,232,.2);
  color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; color: #fff; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary); max-width: 520px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.hero-badge { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }
.hero-badge::before { content: "●"; color: var(--teal); font-size: .55rem; }
.hero-badge + .hero-badge::before { color: var(--text-muted); content: "·"; font-size: 1rem; }

/* ── Hero banner overlay ── */
.hero-banner-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/images/voice-bonsai-banner.png') center/cover no-repeat;
  opacity: 0.06; pointer-events: none; mix-blend-mode: luminosity;
}

/* ── Section headings ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.section-eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: #fff; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.75; }
.section-cta-block { text-align: center; }
.cta-flex { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Features strip ── */
.features-strip { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: rgba(8,20,38,.6); padding: 1.5rem 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .5rem 2.5rem; }
.strip-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--text-secondary); }
.strip-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.strip-item:nth-child(even) .dot { background: var(--coral); }
.strip-item:nth-child(3n) .dot { background: var(--purple-mid); }

/* ── Feature cards ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }
.feat-card { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; transition: border-color .2s, transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.feat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-brand); opacity: 0; transition: opacity .2s; }
.feat-card:hover { border-color: rgba(0,212,232,.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--navy-light); border: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.feat-icon::after { content: ""; position: absolute; inset: 0; background: var(--icon-grad, var(--grad-teal)); opacity: .12; border-radius: inherit; }
.feat-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.feat-card p { font-size: .855rem; color: var(--text-muted); line-height: 1.65; }

/* ── How It Works ── */
.hiw-header { text-align: center; margin-bottom: 4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.steps-container { position: relative; }
.steps-connector { display: none; }
@media (min-width: 901px) {
  .steps-connector { display: block; position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 1px; z-index: 0; background: linear-gradient(90deg, transparent, rgba(0,212,232,.2), rgba(107,79,232,.2), rgba(0,212,232,.2), transparent); }
}
.step-card { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 2rem 1.5rem 1.75rem; text-align: center; position: relative; z-index: 1; transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: rgba(0,212,232,.2); transform: translateY(-4px); }
.step-num-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); border: 2px solid rgba(0,212,232,.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: var(--teal); position: relative; }
.step-num::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--grad-teal); opacity: .1; }
.step-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.step-card p { font-size: .855rem; color: var(--text-muted); line-height: 1.65; }

/* ── Product split sections ── */
.product-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .product-split { grid-template-columns: 1fr; gap: 3rem; } }
.product-split.reverse .product-copy { order: 2; }
.product-split.reverse .product-visual { order: 1; }
@media (max-width: 768px) { .product-split.reverse .product-copy { order: 1; } .product-split.reverse .product-visual { order: 2; } }
.product-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.product-tag.teal { background: rgba(0,212,232,.08); border: 1px solid rgba(0,212,232,.2); color: var(--teal); }
.product-tag.coral { background: rgba(255,90,110,.08); border: 1px solid rgba(255,90,110,.2); color: var(--coral-bright); }
.product-tag.purple { background: rgba(107,79,232,.08); border: 1px solid rgba(107,79,232,.2); color: var(--purple-mid); }
.product-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: #fff; margin-bottom: 1rem; }
.product-copy p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.product-visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* ── Check list ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--text-secondary); }
.check-list li::before { content: "✓"; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; }
.check-list.teal li::before { background: rgba(0,212,232,.15); color: var(--teal); border: 1px solid rgba(0,212,232,.3); }
.check-list.coral li::before { background: rgba(255,90,110,.15); color: var(--coral-bright); border: 1px solid rgba(255,90,110,.3); }
.check-list.purple li::before { background: rgba(107,79,232,.15); color: var(--purple-mid); border: 1px solid rgba(107,79,232,.3); }
/* Default check color */
.check-list li::before { background: rgba(0,212,232,.15); color: var(--teal); border: 1px solid rgba(0,212,232,.3); }

/* ── Product card mockups ── */
.product-card-mock { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 2rem; width: 100%; max-width: 400px; position: relative; }
.product-card-mock::before { content: ""; position: absolute; inset: -1px; border-radius: calc(var(--radius-xl) + 1px); background: var(--mock-grad, var(--grad-teal)); opacity: .12; pointer-events: none; }
.mock-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--glow-color, rgba(0,212,232,.12)); filter: blur(60px); pointer-events: none; z-index: -1; }
.mock-header { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-soft); }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.teal { background: var(--teal); box-shadow: 0 0 8px rgba(0,212,232,.6); }
.mock-dot.coral { background: var(--coral); box-shadow: 0 0 8px rgba(255,90,110,.6); }
.mock-dot.purple { background: var(--purple-mid); box-shadow: 0 0 8px rgba(107,79,232,.6); }
.mock-label { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.mock-stat { margin-bottom: .65rem; }
.mock-stat-label { font-size: .7rem; color: var(--text-muted); margin-bottom: .2rem; }
.mock-stat-val { font-size: 1.5rem; font-weight: 800; }
.mock-stat-val.teal { color: var(--teal); }
.mock-stat-val.coral { color: var(--coral-bright); }
.mock-bar-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.mock-bar-label { font-size: .7rem; color: var(--text-muted); width: 60px; flex-shrink: 0; }
.mock-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 3px; }
.mock-bar-fill.teal { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); }
.mock-bar-fill.coral { background: linear-gradient(90deg, #c0364a, var(--coral)); }
.mock-bar-fill.purple { background: linear-gradient(90deg, #4a3ab8, var(--purple-mid)); }
.mock-bar-pct { font-size: .7rem; color: var(--text-secondary); width: 32px; text-align: right; }

/* ── Bundle section ── */
.bundle-section { background: var(--navy-mid); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.bundle-section::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(0,212,232,.07) 0%, transparent 65%); pointer-events: none; }
.bundle-card { background: linear-gradient(135deg, rgba(0,212,232,.07), rgba(107,79,232,.07), rgba(255,90,110,.07)); border: 1px solid rgba(0,212,232,.2); border-radius: var(--radius-xl); padding: 4rem 3rem; text-align: center; max-width: 900px; margin: 0 auto; position: relative; }
.bundle-badge { display: inline-block; background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1.2rem; border-radius: 999px; margin-bottom: 1.75rem; }
.bundle-card h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; color: #fff; margin-bottom: 1rem; }
.bundle-card p { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.75; }
.bundle-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; align-items: center; }
.bundle-pill { background: rgba(255,255,255,.05); border: 1px solid var(--border-soft); border-radius: 999px; padding: .6rem 1.4rem; font-size: .9rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: .5rem; }
.bundle-plus { font-size: 1.4rem; font-weight: 300; color: var(--teal); opacity: .6; }
.bundle-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Stats ── */
.stats-section { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: rgba(8,20,38,.6); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 3rem 0; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2.5rem 0; } }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .855rem; color: var(--text-muted); margin-top: .5rem; font-weight: 500; }

/* ── Use cases ── */
.use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .use-cases-grid { grid-template-columns: 1fr; } }
.use-case-card { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color .2s, transform .2s; }
.use-case-card:hover { border-color: rgba(0,212,232,.25); transform: translateY(-3px); }
.use-case-emoji { font-size: 2.2rem; margin-bottom: .85rem; }
.use-case-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.use-case-card p { font-size: .855rem; color: var(--text-muted); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 2rem; }
.testimonial-stars { color: #F59E0B; font-size: .95rem; letter-spacing: .06em; margin-bottom: 1rem; }
.testimonial-body { font-size: .925rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; color: #fff; }
.t-author-info { display: flex; flex-direction: column; gap: .1rem; }
.t-author-name { font-size: .9rem; font-weight: 700; color: #fff; }
.t-author-title { font-size: .78rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.price-card { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 2.5rem; position: relative; transition: border-color .2s, transform .2s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: rgba(0,212,232,.4); background: linear-gradient(160deg, rgba(0,212,232,.07), var(--navy-card)); box-shadow: 0 0 40px rgba(0,212,232,.1); }
.price-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--grad-brand); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.plan-name { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .5rem; }
.plan-price { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: .25rem; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.plan-price sub { font-size: .95rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: .855rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; border-bottom: 1px solid var(--border-soft); padding-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--text-secondary); line-height: 1.55; }
.plan-features li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: .1rem; }
.plan-savings { font-size: .82rem; color: var(--coral-bright); font-weight: 700; text-align: center; margin-bottom: 1rem; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(0,212,232,.25); }
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: .95rem; font-weight: 700; font-family: var(--font); gap: 1rem; transition: color .15s; }
.faq-btn:hover { color: var(--teal); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--teal); font-size: 1.1rem; line-height: 1; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 1.5rem; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { font-size: .875rem; color: var(--text-secondary); line-height: 1.8; }

/* ── Demo form ── */
.demo-section { position: relative; overflow: hidden; }
.demo-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,212,232,.08) 0%, rgba(107,79,232,.06) 40%, transparent 70%); pointer-events: none; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .demo-grid { grid-template-columns: 1fr; gap: 3rem; } }
.demo-copy h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; color: #fff; margin-bottom: 1rem; }
.demo-copy p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }
.demo-form { background: var(--navy-card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 2.5rem; }
.demo-form h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 1.5rem; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-row.full { grid-template-columns: 1fr; }
.field label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.field input, .field select { width: 100%; background: var(--navy); border: 1px solid rgba(255,255,255,.1); border-radius: 9px; padding: .7rem 1rem; color: var(--text); font-size: .9rem; font-family: var(--font); transition: border-color .15s; }
.field input::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,232,.1); }
.field select option { background: var(--navy-card); }
.form-submit { width: 100%; margin-top: 1rem; justify-content: center; padding: 1rem; font-size: 1rem; border-radius: 12px; }

/* ── Footer ── */
footer.site-footer { background: var(--navy-mid); border-top: 1px solid var(--border-soft); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 160px; width: auto; max-width: 340px; margin-bottom: 1rem; border-radius: 0; object-fit: contain; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-secondary); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .875rem; color: var(--text-muted); transition: color .15s; }
.footer-col ul a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--teal); text-decoration: none; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.from-left { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }
