/* ===========================================
   CSS CUSTOM PROPERTIES
=========================================== */
:root {
  /* === ORANGE PALETTE === */
  --primary:       #F0A050;   /* warm orange — main CTA */
  --primary-dark:  #D07C28;   /* deeper orange */
  --primary-light: #F8C080;   /* lighter orange */
  --primary-bg:    #FEF6EC;   /* very light orange tint */

  --terra:         #C06820;   /* burnt orange */
  --terra-bg:      #FDF0E0;   /* very light terra tint */

  --green:         #10b981;   /* keep for checkmarks only */
  --orange:        #F0A050;
  --blue:          #C06820;

  /* Dark section backgrounds — deep warm black */
  --hero-bg:  #0E0804;
  --hero-bg2: #180D03;

  /* Light section backgrounds — warm cream */
  --white:    #ffffff;
  --bg-light: #FBF8F4;   /* warm cream */
  --bg-gray:  #F6EEE4;   /* warm beige */

  /* Typography */
  --text-dark:  #1A1208;
  --text-med:   #3A2810;
  --text-soft:  #7A6040;
  --text-muted: #B09870;

  /* Borders */
  --border:      #ECDDD0;
  --border-dark: rgba(255,200,140,0.10);

  /* Shadows — warm tint */
  --shadow-sm: 0 1px 3px rgba(160,80,0,0.07), 0 1px 2px rgba(160,80,0,0.04);
  --shadow-md: 0 4px 12px rgba(160,80,0,0.09), 0 2px 4px rgba(160,80,0,0.05);
  --shadow-lg: 0 10px 30px rgba(160,80,0,0.11), 0 4px 8px rgba(160,80,0,0.06);
  --shadow-amber: 0 8px 24px rgba(240,160,80,0.35);

  --radius-sm:  6px;
  --radius:     10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-full: 9999px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 68px;
  --transition: 0.2s ease;
}

/* ===========================================
   RESET & BASE
=========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--hero-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
img, svg { display: block; }

/* ===========================================
   CONTAINER
=========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   HEADER / NAVBAR
=========================================== */
:root {
  --nav-pill-bg: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Transparent wrapper — pill floats cleanly over the page */
.nav-wrapper {
  background: transparent;
  padding: 10px 20px;
}

.nav-pill-container {
  max-width: 1260px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  background: var(--nav-pill-bg);
  border-radius: 999px;
  padding: 0 8px 0 22px;
  height: 52px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.14);
  gap: 4px;
}

/* --- Logo: text only --- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 6px;
}

.logo-text {
  font-size: 21px;
  font-weight: 800;
  color: #0f0f0f;
  letter-spacing: -0.8px;
  font-style: italic;
}

/* --- Nav Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1f1f1f;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.nav-link:hover {
  background: #F5EDE2;
  color: #1E1408;
}

/* AI item with sparkle */
.nav-link-ai {
  color: #1f1f1f;
}

.ai-sparkle {
  flex-shrink: 0;
  color: #F0A050;
}

.nav-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  color: #9A7A60;
}

.nav-item.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* --- Dropdown --- */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 200;
}

.dropdown-sm {
  min-width: 240px;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.force-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 10px;
  transition: background var(--transition);
}

.dropdown-item:hover {
  background: #FAF7F3;
}

.d-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.d-icon-purple { background: #FEF2E4; }
.d-icon-blue   { background: #F9EAE0; }
.d-icon-green  { background: #F5F0EA; }
.d-icon-orange { background: #FEF0E0; }

.d-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.d-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1E1408;
  line-height: 1.3;
}

.d-desc {
  font-size: 12px;
  color: #B09878;
  line-height: 1.4;
}

/* --- Nav Actions --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-contact-sales {
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3D2B18;
  transition: color var(--transition);
  white-space: nowrap;
}

.btn-contact-sales:hover {
  color: #1E1408;
}

.btn-login {
  padding: 7px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1E1408;
  border: 1.5px solid #d1d5db;
  border-radius: 999px;
  background: var(--white);
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-login:hover {
  border-color: #C8A890;
  background: #FAF7F3;
}

.btn-nav-cta {
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  background: #1E1408;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: #2E1C0C;
  transform: translateY(-1px);
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-item {
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.mobile-item:last-child {
  border-bottom: none;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.mobile-link:hover {
  background: var(--bg-light);
}

.mobile-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-btn.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-accordion {
  display: none;
  flex-direction: column;
  background: var(--bg-light);
  padding: 4px 0;
}

.mobile-accordion.open {
  display: flex;
}

.mobile-sub {
  padding: 10px 40px;
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}

.mobile-sub:hover {
  color: #F0A050;
  background: rgba(234,88,12,0.04);
}

.mobile-cta-row {
  display: flex !important;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: none !important;
}

.btn-mobile-login {
  flex: 1;
  padding: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition);
}

.btn-mobile-login:hover {
  border-color: #C8A890;
  background: #FAF7F3;
}

.btn-mobile-cta {
  flex: 1;
  padding: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: #1E1408;
  border-radius: 999px;
  transition: background var(--transition);
}

.btn-mobile-cta:hover {
  background: #2E1C0C;
}

/* ===========================================
   HERO
=========================================== */
.hero {
  position: relative;
  background: var(--hero-bg);
  padding: 100px 0 96px;
  overflow: hidden;
}

/* Sound wave canvas */
#heroWave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(192, 112, 48, 0.22);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: rgba(139, 60, 28, 0.15);
  bottom: -120px;
  right: 8%;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(192, 112, 48, 0.14);
  border: 1px solid rgba(192, 112, 48, 0.30);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 28px;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #F8C080 0%, #C87838 50%, #B86428 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,160,80,0.42);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.stars {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 1px;
}

.trust-num {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.trust-sep {
  color: rgba(255,255,255,0.25);
  font-size: 18px;
}

/* ===========================================
   SECTION COMMON
=========================================== */
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-badge-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===========================================
   ANNOUNCEMENT BAR
=========================================== */
.announce-bar {
  width: 100%;
  background: #E8550A;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
}

.announce-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.announce-bar a:hover {
  opacity: 0.85;
}

/* ===========================================
   VOICE LIBRARY
=========================================== */
.section-voices {
  padding: 80px 0 60px;
  background: #111111;
}

/* ── Heading ── */
.voices-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.22;
  letter-spacing: -0.8px;
  margin-bottom: 36px;
}

/* ── Tab bar ── */
.voices-tab-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.voices-tab-bar {
  display: inline-flex;
  align-items: center;
  background: #1c1c1c;
  border-radius: 999px;
  padding: 5px;
  gap: 2px;
}

.v-tab {
  padding: 9px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
  transition: color 0.18s, background 0.18s;
}

.v-tab:hover:not(.active) {
  color: rgba(255,255,255,0.85);
}

.v-tab.active {
  background: #E8550A;
  color: #ffffff;
  font-weight: 600;
}

/* ── TTS Input Area ── */
.vc-tts-wrap {
  padding: 0 48px 44px;
}

.vc-tts-box {
  max-width: 860px;
  margin: 0 auto;
}

.vc-tts-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
  margin-bottom: 10px;
}

.vc-tts-inner {
  background: #1c1c1c;
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 18px 20px 14px;
  transition: border-color 0.2s;
}

.vc-tts-inner:focus-within {
  border-color: rgba(232, 85, 10, 0.45);
}

.vc-tts-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
  font-family: var(--font);
  line-height: 1.65;
  resize: none;
  caret-color: #E8550A;
}

.vc-tts-input::placeholder {
  color: rgba(255,255,255,0.22);
}

.vc-tts-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.vc-tts-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}

.vc-tts-hint.speaking {
  color: #E8550A;
}

.vc-tts-count {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  font-variant-numeric: tabular-nums;
}

/* ── Playing state on card ── */
.vc-card.is-speaking {
  border: 1.5px solid rgba(232,85,10,0.50);
  background: #222222;
}

.vc-card.is-speaking .vc-wave span {
  background: rgba(232,85,10,0.70);
  animation: wavebeat 0.5s ease-in-out infinite alternate;
}

.vc-card.is-speaking .vc-wave span:nth-child(2n)   { animation-delay: 0.10s; }
.vc-card.is-speaking .vc-wave span:nth-child(3n)   { animation-delay: 0.20s; }
.vc-card.is-speaking .vc-wave span:nth-child(5n)   { animation-delay: 0.15s; }
.vc-card.is-speaking .vc-wave span:nth-child(7n)   { animation-delay: 0.25s; }

@keyframes wavebeat {
  from { opacity: 0.45; transform: scaleY(0.85); }
  to   { opacity: 1.00; transform: scaleY(1.15); }
}

.vc-play.is-playing {
  background: #c43f06;
}

/* ── Carousel outer (full-bleed) ── */
.vc-outer {
  overflow: hidden;
  padding: 0 0 8px;
}

.vc-track {
  display: flex;
  gap: 14px;
  padding: 4px 48px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.vc-track:active { cursor: grabbing; }
.vc-track::-webkit-scrollbar { display: none; }

/* ── Voice Card ── */
.vc-card {
  flex-shrink: 0;
  width: 290px;
  background: #1c1c1e;
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.18s;
}

.vc-card:hover {
  background: #222226;
}

.vc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vc-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── Script text ── */
.vc-script {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  font-style: italic;
  min-height: 42px;
}

/* ── Messenger-style player ── */
.vc-player {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
}

.vc-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: background 0.18s, transform 0.15s;
}

.vc-play-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

.vc-waveform {
  flex: 1;
  height: 36px;
  display: block;
}

.vc-dur {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: right;
}

/* ── Navigation arrows ── */
.vc-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.vc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
}

.vc-arrow:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* --- Filters (old, keep for fallback) --- */
.voice-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  min-width: 68px;
  text-align: right;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ftab {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  transition: all var(--transition);
  white-space: nowrap;
}

.ftab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--primary-bg);
}

.ftab.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
  font-weight: 600;
}

/* --- Voice Cards --- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.voice-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.voice-card.hidden {
  display: none;
}

.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.voice-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.voice-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.voice-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vtag {
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg-gray);
  border-radius: var(--radius-full);
}

.voice-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.play-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.play-btn.playing {
  background: var(--primary);
  color: var(--white);
}

.try-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding: 7px 14px;
  border: 1.5px solid var(--primary-bg);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}

.try-btn:hover {
  background: var(--primary-bg);
  border-color: var(--primary-light);
}

.voices-more-wrap {
  text-align: center;
}

.btn-outline-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-outline-purple:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===========================================
   FEATURES
=========================================== */
/* ===========================================
   FEATURES / WHERE IT FITS — BENTO GRID
=========================================== */
.section-features {
  padding: 88px 0;
  background: #0C0C0E;
}

.fb-header {
  text-align: center;
  margin-bottom: 52px;
}

.fb-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.fb-heading {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 740px;
  margin: 0 auto;
}

.features-bento {
  display: grid;
  grid-template-columns: 57fr 43fr;
  gap: 16px;
  align-items: stretch;
}

.fb-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fb-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.fb-card:hover {
  border-color: rgba(240,160,80,0.35);
  transform: translateY(-3px);
}

.fb-card-primary {
  min-height: 500px;
}

.fb-card-secondary {
  flex: 1;
}

/* Each card visual area gets a unique radial glow */
.fb-card-primary .fb-visual {
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(255,146,48,0.15) 0%, transparent 72%);
}

.fb-right-col .fb-card:first-child .fb-visual {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(168,125,255,0.14) 0%, transparent 72%);
}

.fb-right-col .fb-card:last-child .fb-visual {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(61,214,140,0.13) 0%, transparent 72%);
}

.fb-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 24px 16px;
}

.fb-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-content {
  padding: 24px 28px 30px;
}

.fb-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.fb-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}

/* ===========================================
   WHAT IT IS
=========================================== */
.section-whatitis {
  padding: 96px 0;
  background: var(--bg-light);
}

.wi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.wi-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.wi-heading {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wi-header-right {
  display: flex;
  align-items: center;
  padding-top: 36px;
}

.wi-intro {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 480px;
}

.wi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wi-card {
  padding: 28px 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.wi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wi-card-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.wi-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.wi-card-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ===========================================
   STATS
=========================================== */
.section-stats {
  padding: 72px 0;
  background: var(--hero-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  text-align: center;
}

.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===========================================
   USE CASES
=========================================== */
/* ===========================================
   USE CASES — CAROUSEL
=========================================== */
.section-usecases {
  padding: 88px 0 72px;
  background: #0C0C0E;
}

.uc-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 52px;
}

.uc-main-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.uc-main-title em {
  font-style: italic;
  color: #ffffff;
}

.uc-outer {
  width: 100%;
  overflow: hidden;
}

.uc-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 clamp(20px, 4vw, 64px) 8px;
  cursor: grab;
}

.uc-track:active { cursor: grabbing; }
.uc-track::-webkit-scrollbar { display: none; }

.uc-slide {
  flex: 0 0 360px;
  scroll-snap-align: start;
}

/* ── Image area ── */
.uc-img {
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 18px;
}

.uc-img-podcast  { background: linear-gradient(155deg, #1a0800 0%, #3a1c06 55%, #150600 100%); }
.uc-img-audio    { background: linear-gradient(155deg, #1a1000 0%, #3e2808 55%, #180e00 100%); }
.uc-img-marketing{ background: linear-gradient(155deg, #180600 0%, #3d1500 55%, #140400 100%); }
.uc-img-training { background: linear-gradient(155deg, #001218 0%, #013050 55%, #000e14 100%); }
.uc-img-access   { background: linear-gradient(155deg, #0a0018 0%, #1a0838 55%, #080012 100%); }
.uc-img-video    { background: linear-gradient(155deg, #100018 0%, #280040 55%, #0c0014 100%); }

/* Badge top-left */
.uc-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

/* Waveform decoration */
.uc-deco-wave {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}

/* Bold bottom-left text */
.uc-img-text {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* PDF mock (audiobooks) */
.uc-pdf-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  align-self: flex-start;
}

.uc-pdf-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* Pronunciation locked pill (marketing) */
.uc-locked-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  align-self: center;
  margin: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Progress mock (training) */
.uc-progress-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 160px;
}

.uc-prog-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.uc-prog-bar {
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.uc-prog-bar span {
  display: block;
  height: 100%;
  background: #3DD68C;
  border-radius: 999px;
}

/* Concentric rings (accessibility) */
.uc-deco-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}

/* Play button mock (video) */
.uc-play-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

/* ── Info area below image ── */
.uc-info {
  padding: 0 4px;
}

.uc-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.uc-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── Navigation arrows ── */
.uc-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.uc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.uc-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

/* ===========================================
   HOW IT WORKS
=========================================== */
.section-hiw {
  padding: 88px 0;
  background: var(--bg-light);
}

.hiw-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hiw-step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
}

.hiw-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  margin-top: 30px;
  position: relative;
}

.hiw-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid var(--primary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(240,160,80,0.32);
}

.hiw-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

/* ===========================================
   API SECTION
=========================================== */
.section-api {
  padding: 88px 0;
  background: #140A04;
}

.api-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.api-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.api-para {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.api-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.api-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.api-list li svg {
  flex-shrink: 0;
}

.api-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-api-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-api-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,160,80,0.36);
}

.btn-api-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}

.btn-api-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* Code Window */
.code-window {
  background: #0f0f17;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.code-dots {
  display: flex;
  gap: 7px;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

.code-body {
  padding: 24px 20px;
  overflow-x: auto;
}

.code-body code {
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  white-space: pre;
}

.ck  { color: #c084fc; }     /* keywords */
.cs  { color: #86efac; }     /* strings */
.cc  { color: rgba(255,255,255,0.35); font-style: italic; }  /* comments */

/* ===========================================
   FAQ
=========================================== */
.section-faq {
  padding: 88px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-q:hover {
  background: var(--bg-light);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-soft);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ===========================================
   DISCOVER MORE
=========================================== */
.section-discover {
  padding: 72px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.discover-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.discover-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discover-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.discover-col a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color var(--transition);
  line-height: 1.5;
}

.discover-col a:hover {
  color: var(--primary);
}

/* ===========================================
   VOICE API CTA (dark illustrated)
=========================================== */
.section-vac {
  padding: 96px 0 108px;
  background: #08080c;
  text-align: center;
}

.vac-illo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}

.vac-orb {
  position: absolute;
  width: 340px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(ellipse at center, rgba(70,90,240,0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.vac-svg {
  position: relative;
  z-index: 1;
}

.vac-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.vac-pill {
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.vac-heading {
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.028em;
  max-width: 680px;
  margin: 0 auto 22px;
}

.vac-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-vac {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, #5B60FF 0%, #3B40EE 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 22px rgba(80,90,255,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-vac:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(80,90,255,0.60);
}

/* ===========================================
   CTA BANNER
=========================================== */
.section-cta {
  position: relative;
  padding: 100px 0;
  background: var(--hero-bg);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(240,160,80,0.22);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(139,60,28,0.16);
  bottom: -100px;
  right: 15%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
  background: #100806;
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}

.social-ico:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-col a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===========================================
   RESPONSIVE — TABLET (≤ 1024px)
=========================================== */
@media (max-width: 1200px) {
  .nav-link { padding: 7px 8px; font-size: 13px; }
  .btn-contact-sales { display: none; }
}

@media (max-width: 1024px) {
  .nav-link { padding: 6px 7px; font-size: 12.5px; }

  .features-bento {
    grid-template-columns: 1fr;
  }

  .fb-card-primary {
    min-height: 420px;
  }

  .wi-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wi-header-right {
    padding-top: 0;
  }

  .wi-cards {
    grid-template-columns: 1fr;
  }

  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .api-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hiw-step { min-width: 160px; max-width: 200px; }

  .hiw-connector {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================
   RESPONSIVE — MOBILE MENU (≤ 768px)
=========================================== */
@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 0 6px 0 16px;
    height: 48px;
  }

  .logo-text {
    font-size: 19px;
  }

  /* Hero */
  .hero {
    padding: 72px 0 72px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* Voices */
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Features bento */
  .features-bento {
    grid-template-columns: 1fr;
  }

  /* What It Is */
  .wi-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wi-header-right { padding-top: 0; }

  .wi-cards {
    grid-template-columns: 1fr;
  }

  .fb-card-primary {
    min-height: 380px;
  }

  .fb-heading {
    font-size: 24px;
  }

  /* Stats */
  .stats-grid {
    flex-direction: column;
  }

  .stat-div {
    display: none;
  }

  /* Use cases */
  .uc-slide {
    flex: 0 0 300px;
  }

  /* How it works */
  .hiw-grid {
    flex-direction: column;
    align-items: center;
  }

  .hiw-step {
    max-width: 280px;
    width: 100%;
  }

  /* API */
  .api-grid {
    grid-template-columns: 1fr;
  }

  /* Discover */
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ===========================================
   RESPONSIVE — SMALL (≤ 480px)
=========================================== */
@media (max-width: 480px) {

  .container { padding: 0 16px; }

  .hero { padding: 60px 0 60px; }

  .hero-title { letter-spacing: -0.8px; }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    justify-content: center;
    padding: 14px 20px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .uc-slide {
    flex: 0 0 280px;
  }

  .uc-img {
    height: 280px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .filter-label {
    text-align: left;
    min-width: unset;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-head.center {
    text-align: left;
  }

  .hiw-step {
    max-width: 100%;
  }
}

/* ===========================================
   BANGLA SPEECH AI — LOGO STYLES
=========================================== */
.bsa-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.bsa-logo-icon {
  flex-shrink: 0;
  border-radius: 8px;
}

.bsa-logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.bsa-bangla {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #1a1208;
  letter-spacing: -0.5px;
}

.bsa-en {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5a4a38;
  letter-spacing: 0.02em;
}

/* Bangla font for script text in voice cards */
.vc-script {
  font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════════════
   BOOK A DEMO MODAL
══════════════════════════════════════════════════════ */
.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  padding: 20px;
}
.demo-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.demo-modal {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 44px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.demo-overlay.open .demo-modal {
  transform: translateY(0) scale(1);
}
.demo-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.14s;
}
.demo-close:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}
.demo-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 160, 80, 0.12);
  color: #F0A050;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.demo-modal-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 7px;
  line-height: 1.1;
}
.demo-modal-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
  margin-bottom: 28px;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.demo-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.demo-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}
.demo-field input,
.demo-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 11px 14px;
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.demo-field input:focus,
.demo-field textarea:focus {
  border-color: #F0A050;
  box-shadow: 0 0 0 3px rgba(240, 160, 80, 0.13);
}
.demo-field input.demo-input-err,
.demo-field textarea.demo-input-err {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.demo-field input::placeholder,
.demo-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.demo-field textarea {
  resize: none;
  min-height: 86px;
  line-height: 1.5;
}
.demo-field-err {
  font-size: 12px;
  color: #f87171;
  min-height: 16px;
}
.demo-submit {
  background: #F0A050;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.14s, opacity 0.14s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.demo-submit:hover  { background: #E09040; }
.demo-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.demo-submit-outline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.14);
}
.demo-submit-outline:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

/* Success state */
.demo-success {
  text-align: center;
  padding: 24px 0 8px;
}
.demo-success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  animation: demoSuccessPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes demoSuccessPop {
  from { transform: scale(0.2); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.demo-success h2 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.demo-success p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 30px;
}
.demo-success p strong { color: rgba(255,255,255,0.8); }

@media (max-width: 540px) {
  .demo-modal { padding: 28px 22px 32px; }
  .demo-form-row { grid-template-columns: 1fr; }
  .demo-modal-header h2 { font-size: 22px; }
}

/* Demo modal — select, checkbox, actions, footer note */
.demo-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 11px 40px 11px 14px;
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='rgba(255%2C255%2C255%2C0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.demo-field select:focus {
  border-color: #F0A050;
  box-shadow: 0 0 0 3px rgba(240,160,80,0.13);
}
.demo-field select.demo-input-err {
  border-color: rgba(239,68,68,0.6);
}
.demo-field select option { background: #16161E; }

.demo-check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 4px;
}
.demo-check-row input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F0A050;
  cursor: pointer;
}
.demo-check-row label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  cursor: pointer;
}

.demo-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.demo-form-actions .demo-submit { width: auto; padding: 12px 24px; }

.demo-or-email {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.demo-or-email:hover { color: #F0A050; }

.demo-footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  margin-top: 16px;
}

/* Make modal scrollable for smaller screens */
.demo-modal { max-height: 90vh; overflow-y: auto; }
