/* =====================================================================
   VOCALIS — Premium AI Voice / Text-to-Speech Template (Themely)
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the brand look by editing the CSS variables in
   :root below. Swap --accent / --accent2 for your gradient pair, adjust
   --bg / --surface / --ink to retune the theme, and update --font-head /
   --font-body plus the Google Fonts <link> in each HTML file. Everything
   else cascades automatically.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #0b0a14;   /* near-black page background                  */
  --ink:      #f2eefb;   /* primary text / headings                    */
  --accent:   #8b5cf6;   /* violet (primary)                           */
  --accent2:  #22d3ee;   /* cyan (gradient partner)                    */
  --muted:    #9a90ad;   /* muted body / secondary text                */
  --surface:  #141221;   /* card / panel surface                       */
  --line:     rgba(255,255,255,.09); /* borders / dividers             */

  /* Derived helpers */
  --surface-2:  #1c1830;  /* slightly lighter panel                    */
  --accent-soft: rgba(139,92,246,.14);
  --grad: linear-gradient(135deg, var(--accent), var(--accent2));

  /* --- Fonts --- */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.6);
  --glow:      0 0 44px rgba(139,92,246,.45);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--ink); text-decoration: none; transition: color var(--ease); }
a:hover { color: #fff; }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; position: relative; }
.section--soft { background: linear-gradient(180deg, var(--bg), #0e0c1a); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.12rem; color: var(--muted); }
.muted { color: var(--muted); }

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

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 26px rgba(139,92,246,.4);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 36px rgba(139,92,246,.55), 0 0 30px rgba(34,211,238,.3); }

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; background: var(--accent-soft); }

.btn-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn-light:hover { background: #fff; color: var(--bg); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 20, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(139,92,246,.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   AURORA / GLOW BACKDROP (decorative)
   --------------------------------------------------------------------- */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.aurora::before {
  width: 540px; height: 540px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(139,92,246,.55), transparent 65%);
}
.aurora::after {
  width: 480px; height: 480px;
  bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(34,211,238,.4), transparent 65%);
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(900px 540px at 82% -10%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(720px 520px at 4% 116%, rgba(34,211,238,.14), transparent 55%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   WAVEFORM MOTIF (pure CSS bars, animated)
   --------------------------------------------------------------------- */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
}
.waveform i {
  flex: 1;
  min-width: 3px;
  border-radius: 4px;
  background: var(--grad);
  transform-origin: center;
  animation: wave 1.1s ease-in-out infinite;
}
.waveform i:nth-child(1)  { animation-delay: -1.0s; }
.waveform i:nth-child(2)  { animation-delay: -.9s; }
.waveform i:nth-child(3)  { animation-delay: -.8s; }
.waveform i:nth-child(4)  { animation-delay: -.7s; }
.waveform i:nth-child(5)  { animation-delay: -.6s; }
.waveform i:nth-child(6)  { animation-delay: -.5s; }
.waveform i:nth-child(7)  { animation-delay: -.4s; }
.waveform i:nth-child(8)  { animation-delay: -.3s; }
.waveform i:nth-child(9)  { animation-delay: -.2s; }
.waveform i:nth-child(10) { animation-delay: -.1s; }
.waveform i:nth-child(11) { animation-delay: 0s; }
.waveform i:nth-child(12) { animation-delay: -.55s; }
.waveform i:nth-child(13) { animation-delay: -.35s; }
.waveform i:nth-child(14) { animation-delay: -.75s; }
.waveform i:nth-child(15) { animation-delay: -.25s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.25); opacity: .7; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .waveform i { animation: none; transform: scaleY(.6); }
}

/* Play button (pure CSS) */
.play-btn {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(139,92,246,.5);
  transition: transform var(--ease), box-shadow var(--ease);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(139,92,246,.65); }
.play-btn::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.play-btn.sm { width: 40px; height: 40px; box-shadow: 0 6px 16px rgba(139,92,246,.45); }
.play-btn.sm::before { border-width: 7px 0 7px 12px; margin-left: 2px; }

/* ---------------------------------------------------------------------
   STUDIO MOCKUP (hero "text -> voice" visual)
   --------------------------------------------------------------------- */
.studio-mock {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.studio-mock::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(139,92,246,.6), rgba(34,211,238,.4), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.sm-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sm-dots { display: flex; gap: 6px; }
.sm-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.sm-dots i:first-child { background: rgba(139,92,246,.8); }
.sm-title { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--font-head); }
.sm-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); font-family: var(--font-head); font-weight: 600; margin-bottom: 8px; }
.sm-text {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.sm-text .cursor { display:inline-block; width:2px; height:1.05em; background: var(--accent2); margin-left:2px; vertical-align:-2px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.sm-arrow { text-align:center; color: var(--muted); font-size: 1.1rem; margin: 4px 0 10px; }
.sm-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.16), rgba(34,211,238,.1));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.sm-player .waveform { flex: 1; }
.sm-meta { display:flex; justify-content:space-between; margin-top: 12px; font-size: .8rem; color: var(--muted); }
.sm-meta b { color: var(--ink); font-family: var(--font-head); }

/* ---------------------------------------------------------------------
   TRUSTED-BY STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 46px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--ink); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(139,92,246,.4); }

.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; color: var(--ink); }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent2);
}
.card-link:hover { color: #fff; }
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   STEPS (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(139,92,246,.4);
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(700px 400px at 50% -40%, rgba(139,92,246,.18), transparent 60%),
    linear-gradient(180deg, #0e0c1a, var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band .section-head h2 { color: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent2); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: var(--grad);
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 420px at 88% 8%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(600px 420px at 6% 100%, rgba(139,92,246,.3), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 400px at 84% -30%, rgba(139,92,246,.22), transparent 60%),
    linear-gradient(180deg, #0e0c1a, var(--bg));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 620px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   FEATURE BLOCKS (features.html — alternating)
   --------------------------------------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 40px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-copy .eyebrow { margin-bottom: 14px; }
.feature-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.feature-copy .pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.feature-copy .pill-list li {
  font-size: .85rem; font-family: var(--font-head); font-weight: 500;
  color: var(--accent2); background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
}
.feature-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}
.feature-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 240px at 75% 18%, rgba(139,92,246,.22), transparent 60%);
  pointer-events: none;
}
.feature-visual .fv-emoji { font-size: 2.4rem; }
.feature-visual .fv-row { display:flex; align-items:center; gap: 14px; position: relative; z-index: 1; }
.feature-visual .waveform { height: 56px; }
.feature-visual .fv-caption { font-size: .82rem; color: var(--muted); position: relative; z-index: 1; }
.feature-visual .fv-chip {
  display:inline-flex; align-items:center; gap:8px;
  align-self:flex-start;
  font-family: var(--font-head); font-weight:600; font-size:.8rem;
  color: var(--ink); background: rgba(255,255,255,.05);
  border:1px solid var(--line); border-radius:999px; padding:6px 14px;
  position: relative; z-index: 1;
}

/* Integrations grid */
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.int-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.int-card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,.4); }
.int-card .int-ic { font-size: 1.8rem; margin-bottom: 10px; }
.int-card b { display:block; font-family: var(--font-head); color: var(--ink); font-size: .98rem; }
.int-card span { font-size: .82rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(139,92,246,.25);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--grad);
  padding: 5px 12px; border-radius: 999px;
}
.price-card .tier { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.15rem; }
.price-card .tier-sub { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.price-card .price {
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem;
  color: var(--ink); line-height: 1; margin-bottom: 6px;
}
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .price-note { font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.price-card .chars {
  font-family: var(--font-head); font-weight: 600; color: var(--accent2);
  font-size: .92rem; margin-bottom: 22px;
  background: var(--accent-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px 14px; text-align:center;
}
.price-card .btn { width: 100%; justify-content: center; margin-bottom: 24px; }
.price-list { display: grid; gap: 12px; margin-top: auto; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--ink); }
.price-list li.off { color: var(--muted); }
.price-list .ck {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem; color: #fff;
  background: var(--grad);
}
.price-list li.off .ck { background: rgba(255,255,255,.08); color: var(--muted); }

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
}
.faq h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.faq p { margin-bottom: 0; font-size: .96rem; }

/* ---------------------------------------------------------------------
   VOICES PAGE
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-bar button {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: rgba(139,92,246,.4); }
.filter-bar button.active {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(139,92,246,.4);
}

.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.voice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(139,92,246,.4); }
.voice-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.voice-avatar {
  width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: #fff; background: var(--grad);
}
.voice-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.08rem; line-height: 1.2; }
.voice-lang { font-size: .85rem; color: var(--muted); }
.voice-tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 500; font-size: .74rem;
  letter-spacing: .04em;
  color: var(--accent2); background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 999px;
  margin-bottom: 16px;
}
.voice-player { display: flex; align-items: center; gap: 14px; }
.voice-player .waveform { flex: 1; height: 34px; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h2 { color: var(--ink); }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field select { color: var(--ink); }
.field select option { background: var(--surface); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,92,246,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #fb7185; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #fb7185; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.45);
  color: var(--accent2);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: var(--accent-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }
.info-row a { color: var(--accent2); }
.info-row a:hover { color: #fff; }

/* Map placeholder (pure CSS grid) */
.map-placeholder {
  position: relative;
  border-radius: var(--radius);
  min-height: 240px;
  overflow: hidden;
  background:
    linear-gradient(rgba(139,92,246,.06), rgba(34,211,238,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg), #08070f);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: var(--ink); margin-bottom: 14px; }
.site-footer .brand:hover { color: var(--ink); }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: var(--ink); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--ink); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: var(--grad); border-color: transparent; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .int-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .studio-mock { max-width: 480px; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(11,10,20,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps, .int-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 480px) {
  .stats-grid, .steps, .int-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  .voice-grid { grid-template-columns: 1fr; }
}
