/* ==========================================================================
   Shared design system — used by two different pages/brands in this repo:
   1. The 6-page "Horizon AI" GHL template (index.html + friends). Colors/
      fonts live in the :root variables below — swap those per client.
      Brand facts there (name, phone, email, city/state, hours, booking
      link, logo image URL) are GHL Custom Value merge tags in the HTML, not
      literal text — see the setup comment at the top of index.html for the
      full key list and required page slugs. Never hardcode a brand fact
      there or build one via JS; that's what caused values to drift out of
      sync before.
   2. voice-ai-agent.html (Smarter Biz AI) — a single, specific-brand page,
      not a per-client template, so its brand facts are hardcoded in the
      HTML rather than using merge tags. Added sections (pricing card,
      intake form) live further down this file.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* brand palette */
  --bg: #050507;
  --bg-raised: #0b0b10;
  --cyan: #00d9ff;
  --violet: #6a00e8;
  --magenta: #ff2d8f;
  --aurora: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--magenta) 100%);
  --aurora-soft: linear-gradient(135deg, rgba(0, 217, 255, 0.35) 0%, rgba(106, 0, 232, 0.35) 50%, rgba(255, 45, 143, 0.35) 100%);
  --link: #188bf6;
  --violet-light: #a48bff;

  /* text */
  --text-high: #ffffff;
  --text-mid: rgba(255, 255, 255, 0.72);
  --text-low: rgba(255, 255, 255, 0.5);

  /* surfaces */
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);

  /* type */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --nav-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-high);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* GHL's Website builder injects a fixed, full-viewport white page-background
   layer (.bgCover.bg-fixed) that visually sits on top of a plain `body`
   background even at z-index -1. Force it to match ours so the dark design
   isn't hidden behind GHL's own default. */
.bgCover.bg-fixed { background: var(--bg) !important; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 120px 0; }

@media (max-width: 768px) {
  section { padding: 80px 0; }
}

/* ---- background glow blobs ---- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.glow-cyan { background: var(--cyan); }
.glow-violet { background: var(--violet); }
.glow-magenta { background: var(--magenta); }

/* ---- section label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(34px, 4.4vw, 52px); font-style: italic; }
h3 { font-size: 22px; font-style: normal; font-family: var(--font-body); font-weight: 600; }

.accent { font-style: italic; background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent-cyan { color: var(--cyan); font-style: italic; }
.accent-magenta { color: var(--magenta); font-style: italic; }
.accent-violet { color: var(--violet-light); font-style: italic; }

p { color: var(--text-mid); }

.eyebrow-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.eyebrow-link:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--aurora);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(106, 0, 232, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(106, 0, 232, 0.75); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-high);
}
.btn-ghost:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.24); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--aurora);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-icon svg { width: 10px; height: 10px; }

/* ---- nav ---- */
.nav-wrap { position: fixed; top: 18px; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; padding: 0 20px; }
.nav {
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.brand-mark {
  height: 34px; width: auto; max-width: 160px;
  object-fit: contain; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--text-mid); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-high); }
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); }
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 82px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(8,8,12,0.96); border: 1px solid var(--border); border-radius: 20px; padding: 10px; backdrop-filter: blur(16px); transform-origin: top; transform: scaleY(0); opacity: 0; pointer-events: none; transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-links.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: var(--surface); }
  .nav-toggle { display: inline-flex; }
  .nav .btn-primary { padding: 11px 16px; font-size: 13px; }
}
@media (max-width: 400px) {
  .nav .btn-primary { display: none; }
}

/* ---- hero ---- */
.hero { padding-top: calc(var(--nav-h) + 80px); text-align: center; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-mid);
  margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #37ca37; box-shadow: 0 0 8px #37ca37; }
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-style: italic;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 17px; max-width: 620px; margin: 0 auto 34px; color: var(--text-mid); }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 640px; margin: 0 auto 64px; }
.hero-stat { padding: 20px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); }
.hero-stat strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 30px; margin-bottom: 4px; }
.hero-stat span { font-size: 13px; color: var(--text-low); }

.built-for { font-size: 13px; color: var(--text-low); margin-bottom: 16px; font-family: var(--font-mono); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.tag { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 13px; color: var(--text-mid); }

/* ---- marquee (integrations) ---- */
.marquee-section { padding: 60px 0; text-align: center; }
.marquee-section p { margin-bottom: 34px; }
.marquee-track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: scroll-left 34s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-low); white-space: nowrap; }
.marquee-item .logo-chip { width: 26px; height: 26px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- demo cards (see it work) ---- */
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.demo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.demo-card:hover { border-color: rgba(255,255,255,0.24); transform: translateY(-4px); }
.demo-tag { font-family: var(--font-mono); font-size: 12px; color: var(--text-low); margin-bottom: 16px; }
.demo-body { background: var(--bg-raised); border-radius: var(--radius-md); padding: 18px; min-height: 200px; }
.chat-bubble { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; margin-bottom: 10px; }
.chat-bubble.them { background: var(--surface); border: 1px solid var(--border); }
.chat-bubble.us { background: var(--aurora-soft); margin-left: auto; }
.demo-foot { display: flex; justify-content: space-between; margin-top: 14px; font-size: 12px; color: var(--text-low); font-family: var(--font-mono); }

/* ---- steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 40px; background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.step-card h3 { margin-bottom: 10px; font-size: 19px; }
.step-card p { font-size: 14.5px; }
.setup-strip { display: flex; align-items: center; justify-content: space-between; padding: 18px 26px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 14px; color: var(--text-mid); flex-wrap: wrap; gap: 10px; }

/* ---- services grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: rgba(255,255,255,0.24); transform: translateY(-4px); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.chip { font-size: 11.5px; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--text-low); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14.5px; }

/* ---- stats band ---- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; }
.stat-card { text-align: center; padding: 28px 12px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-style: italic; font-size: 40px; }
.stat-num .grad { color: var(--cyan); }
.stat-card span { display: block; margin-top: 8px; font-size: 13px; color: var(--text-low); }
.stats-note { text-align: center; font-size: 13.5px; color: var(--text-low); max-width: 600px; margin: 0 auto 50px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.testimonial-card p { font-style: italic; font-size: 15px; color: var(--text-high); margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--aurora); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 12.5px; color: var(--text-low); }

/* ---- comparison table ---- */
.compare-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }
.compare-row.head { background: rgba(255,255,255,0.03); font-family: var(--font-mono); font-size: 12.5px; color: var(--text-low); text-transform: uppercase; letter-spacing: .04em; }
.compare-cell { padding: 20px 24px; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.compare-cell.label { font-weight: 600; color: var(--text-high); font-family: var(--font-body); font-size: 14.5px; }
.compare-cell.without { color: var(--text-low); }
.compare-cell.with { color: var(--text-high); }
.dot-x, .dot-check { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.dot-x { background: rgba(233,61,61,0.18); color: #e93d3d; }
.dot-check { background: var(--aurora); color: #fff; }
.compare-cta { text-align: center; margin-top: 40px; }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-copy p { margin-bottom: 18px; font-size: 15.5px; }
.about-links { display: flex; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .value-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .value-grid-4 { grid-template-columns: 1fr; } }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.value-card h4 { font-size: 15.5px; font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; }

/* ---- faq ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 4px; text-align: left; font-size: 16px; font-weight: 500; }
.faq-q .icon { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s ease, background 0.2s; }
.faq-q .icon svg { width: 10px; height: 10px; }
.faq-item.open .faq-q .icon { background: var(--aurora); border-color: transparent; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 24px; font-size: 14.5px; max-width: 640px; }

/* ---- cta band ---- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { max-width: 520px; margin: 0 auto 34px; }
.cta-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; font-size: 13px; color: var(--text-low); }
.cta-trust span { display: flex; align-items: center; gap: 8px; }
.cta-trust .dot-check { width: 14px; height: 14px; }

/* ---- footer ---- */
footer { border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand p { margin: 16px 0 20px; font-size: 14px; max-width: 320px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.social-row a:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.24); }
.social-row svg { width: 15px; height: 15px; }
.footer-col h5 { font-size: 13px; color: var(--text-low); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; font-weight: 400; }
.footer-col ul li { margin-bottom: 12px; font-size: 14.5px; color: var(--text-mid); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-col ul li { display: flex; align-items: center; gap: 8px; }
.footer-col ul li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--text-low); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-low); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--text-high); }

/* ---- service detail rows (services.html) ---- */
.service-detail-list { margin-top: 20px; }
.service-detail { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 44px 0; border-top: 1px solid var(--border); }
.service-detail:last-child { border-bottom: 1px solid var(--border); }
.service-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 26px; height: 26px; color: var(--cyan); }
.service-detail h3 { font-size: 26px; margin-bottom: 10px; }
.service-detail > div > p.desc { font-size: 15px; max-width: 620px; margin-bottom: 22px; }
.service-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-points li { font-size: 13.5px; color: var(--text-mid); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
@media (max-width: 700px) { .service-detail { grid-template-columns: 1fr; } .service-points { grid-template-columns: 1fr; } }

/* ---- timeline (how-it-works.html) ---- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 1px; background: var(--border); }
.timeline-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-raised); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 20px; z-index: 1; }
.timeline-item.active .timeline-num { background: var(--aurora); border-color: transparent; }
.timeline-item h3 { margin-bottom: 8px; font-size: 19px; }
.timeline-item p { font-size: 14.5px; max-width: 540px; }
.timeline-meta { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); margin-bottom: 6px; display: block; }

/* ---- case studies (results.html) ---- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; }
.case-card .chip-row { margin-bottom: 18px; }
.case-card p.quote { font-style: italic; font-size: 14.5px; color: var(--text-high); margin-bottom: 20px; flex-grow: 1; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.case-metric strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--cyan); }
.case-metric span { font-size: 11px; color: var(--text-low); }
@media (max-width: 980px) { .case-grid { grid-template-columns: 1fr; } }

/* ---- faq groups (faq.html) ---- */
.faq-group { margin-bottom: 50px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-size: 13px; font-family: var(--font-mono); color: var(--text-low); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }

/* ---- mini stat row (about.html) ---- */
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 56px 0; }
.mini-stat { text-align: center; }
.mini-stat strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 30px; }
.mini-stat span { font-size: 12.5px; color: var(--text-low); }
@media (max-width: 640px) { .mini-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- page hero (subpages) ---- */
.page-hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 60px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ---- pricing card ---- */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; max-width: 420px; width: 100%; text-align: center; }
.pricing-card .price-amount { font-family: var(--font-display); font-size: 56px; line-height: 1; margin: 18px 0 4px; }
.pricing-card .price-amount span { font-family: var(--font-body); font-size: 16px; color: var(--text-low); }
.pricing-features { list-style: none; text-align: left; margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-mid); }
.pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cyan); }
.pricing-note { font-size: 12.5px; color: var(--text-low); margin-top: 16px; }

/* ---- intake form ---- */
.intake-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; max-width: 640px; margin: 0 auto; text-align: left; }
.form-row { margin-bottom: 18px; }
.form-row > label { display: block; font-size: 13px; color: var(--text-mid); margin-bottom: 6px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .03em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text-high); font-family: var(--font-body); font-size: 14.5px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--cyan); }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-checks { display: flex; flex-direction: column; gap: 10px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); font-weight: 400; text-transform: none; font-family: var(--font-body); letter-spacing: normal; }
.form-check input { width: auto; margin-top: 3px; }
.form-submit-note { font-size: 12.5px; color: var(--text-low); margin-top: 14px; text-align: center; }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- particle canvas ---- */
#particles { position: absolute; inset: 0; z-index: 0; opacity: 0.55; pointer-events: none; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .demo-grid, .services-grid, .stats-grid, .testimonial-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .compare-row { grid-template-columns: 1.1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .steps-grid, .demo-grid, .services-grid, .stats-grid, .testimonial-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { padding: 12px 20px; }
  .compare-row.head { display: none; }
  .compare-cell.without::before { content: 'Without: '; color: var(--text-low); }
  .compare-cell.with::before { content: 'With: '; color: var(--text-low); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .form-row-grid { grid-template-columns: 1fr; }
  .intake-form { padding: 26px 20px; }
}
