/* ── Reset & Custom Properties ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:       #7c3aed;
  --violet-dark:  #6d28d9;
  --violet-light: #8b5cf6;
  --violet-pale:  #f5f3ff;
  --dark:         #0b0b14;
  --dark-2:       #13131f;
  --dark-3:       #1c1c2e;
  --gray-900:     #111827;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-400:     #9ca3af;
  --gray-200:     #e5e7eb;
  --gray-100:     #ebebee;
  --gray-50:      #f0f0f3;
  --white:        #f5f5f8;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif:        'Instrument Serif', Georgia, serif;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
  --shadow-violet: 0 8px 32px rgba(124,58,237,.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Scroll animation ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay   { transition-delay: .18s; }

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--violet-dark);
  box-shadow: var(--shadow-violet);
  transform: translateY(-1px);
}
.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }


.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--violet);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: var(--violet-pale); transform: translateY(-1px); }

/* ── Section helpers ───────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-pale);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 20px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: top .3s;
}
.navbar.scrolled { top: 0; }

.nav-pill {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(6, 15, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 0 8px 0 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: background .3s, border-color .3s;
}
.navbar.scrolled .nav-pill {
  background: rgba(4, 10, 30, 0.92);
  border-color: rgba(255,255,255,.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-cta .btn-ghost {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 8px 14px;
}
.nav-cta .btn-ghost:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-btn { padding: 9px 18px; font-size: 13px; border-radius: 100px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  margin: 8px 0 0;
  padding: 16px 24px 24px;
  background: rgba(15,10,30,.97);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.btn-ghost-full {
  display: block;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost-full:hover { background: rgba(255,255,255,.07); color: var(--white); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060f28;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Big blue glow — left */
.hero-glow-1 {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse at 35% 40%, rgba(37,99,235,.75) 0%, rgba(29,78,216,.4) 35%, transparent 70%);
  filter: blur(60px);
  animation: glow-drift-1 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* Teal glow — bottom center */
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: 20%;
  width: 65%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 80%, rgba(13,148,136,.55) 0%, rgba(15,118,110,.25) 40%, transparent 70%);
  filter: blur(60px);
  animation: glow-drift-2 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* Dark blue glow — right */
.hero-glow-3 {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse at 70% 30%, rgba(30,58,138,.6) 0%, transparent 65%);
  filter: blur(50px);
  animation: glow-drift-3 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes glow-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(6%, 8%) scale(1.08); }
  66%  { transform: translate(-4%, 12%) scale(0.95); }
  100% { transform: translate(10%, 4%) scale(1.05); }
}

@keyframes glow-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-8%, -10%) scale(1.1); }
  50%  { transform: translate(6%, -6%) scale(0.92); }
  75%  { transform: translate(-5%, 8%) scale(1.06); }
  100% { transform: translate(10%, -12%) scale(1.02); }
}

@keyframes glow-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-8%, 10%) scale(1.12); }
  70%  { transform: translate(5%, 5%) scale(0.9); }
  100% { transform: translate(-12%, -8%) scale(1.08); }
}

/* Noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}

/* Center content */
.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: none;
  animation: hero-fade-in .9s ease both;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  white-space: nowrap;
}

.hero-h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
}

.hero-h1 em {
  font-style: italic;
  color: rgba(255,255,255,.75);
}

/* Bottom bar */
.hero-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 48px;
}

.hero-bottom-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.rating-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.rating-source {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
}

.hero-bottom-desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 420px;
}

/* CTA button with orb */
.hero-demo-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 14px 14px 14px 22px;
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.hero-demo-btn:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.22);
}

.demo-orb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 35%, #a78bfa 0%, #7c3aed 40%, #3730a3 75%, #1e1b4b 100%);
  box-shadow:
    0 0 20px rgba(124,58,237,.5),
    inset 0 1px 0 rgba(255,255,255,.25);
  flex-shrink: 0;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.phone-logo-dot {
  width: 18px;
  height: 18px;
  background: var(--violet);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-live {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--violet-light);
  background: rgba(124,58,237,.2);
  padding: 3px 8px;
  border-radius: 6px;
}

.phone-call-active {
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}
.phone-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
  margin-bottom: 8px;
}
.pw {
  width: 3px;
  background: var(--violet-light);
  border-radius: 2px;
  opacity: .85;
  animation: pw-anim 1.2s ease-in-out infinite alternate;
}
.pw:nth-child(1) { animation-delay: 0s;    height: 30%; }
.pw:nth-child(2) { animation-delay: .15s;  height: 70%; }
.pw:nth-child(3) { animation-delay: .3s;   height: 100%; }
.pw:nth-child(4) { animation-delay: .15s;  height: 70%; }
.pw:nth-child(5) { animation-delay: 0s;    height: 30%; }
@keyframes pw-anim {
  0% { transform: scaleY(.4); }
  100% { transform: scaleY(1); }
}
.phone-call-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--violet-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}
.phone-call-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.phone-call-lang {
  font-size: 10px;
  color: rgba(255,255,255,.5);
}

.phone-requests {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.phone-req {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 8px 9px;
}
.phone-req-icon { font-size: 13px; flex-shrink: 0; }
.phone-req-text {
  font-size: 9px;
  color: rgba(255,255,255,.75);
  flex: 1;
  line-height: 1.35;
  font-weight: 500;
}
.phone-req-status {
  font-size: 11px;
  color: #6ee7b7;
  flex-shrink: 0;
}
.pending-dot {
  width: 7px;
  height: 7px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: live-pulse 1.5s ease infinite;
  flex-shrink: 0;
}

/* Home indicator */
.phone-home-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  margin: 8px auto 4px;
  flex-shrink: 0;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chrome-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.chrome-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  padding: 4px 12px;
  border-radius: 5px;
  font-family: monospace;
}

.dash-body { padding: 18px; }

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(139,92,246,.6); }
  60% { box-shadow: 0 0 0 5px rgba(139,92,246,0); }
}
.dash-live-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--violet-light);
  background: rgba(124,58,237,.2);
  padding: 3px 8px;
  border-radius: 5px;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-kpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.kpi-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-unit { font-size: 14px; color: var(--violet-light); }
.kpi-label { font-size: 9px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; }

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 16px;
  padding: 0 2px;
}
.chart-bar {
  flex: 1;
  height: var(--h, 50%);
  background: rgba(124,58,237,.35);
  border-radius: 3px 3px 0 0;
  transition: height .4s ease;
}
.chart-bar-active {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(124,58,237,.5);
}

.dash-calls { display: flex; flex-direction: column; gap: 8px; }
.call-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.05);
}
.call-avatar {
  width: 30px;
  height: 30px;
  background: rgba(124,58,237,.25);
  color: var(--violet-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.call-info { flex: 1; min-width: 0; }
.call-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.call-time { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 1px; }
.call-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}
.call-chip.confirmed { background: rgba(16,185,129,.15); color: #6ee7b7; }
.call-chip.live {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(124,58,237,.2);
  color: var(--violet-light);
}
.chip-pulse {
  width: 5px;
  height: 5px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: live-pulse 1.5s ease infinite;
}

/* (floating cards removed — replaced by hero-pills) */

/* ── Marquee ───────────────────────────────────────────── */
.marquee-section {
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.mq-sep { color: var(--gray-200) !important; font-weight: 300 !important; }
.marquee-label-2 { margin-top: 28px; }
.marquee-inner-reverse { animation-direction: reverse; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats ─────────────────────────────────────────────── */
.stats-section { padding: 100px 0; background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  padding: 40px 32px;
  background: var(--white);
  text-align: center;
  transition: background .2s;
}
.stat-card:hover { background: var(--violet-pale); }
.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-val {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--violet);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-static { font-size: clamp(32px, 4vw, 48px); }
.stat-unit {
  font-size: 24px;
  font-weight: 700;
  color: var(--violet-light);
}
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.stat-desc { font-size: 13px; color: var(--gray-400); }

/* ── Comparison ────────────────────────────────────────── */
.comparison-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.comparison-section .section-sub { margin-bottom: 56px; }
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cmp-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.cmp-new {
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet), var(--shadow-violet);
}
.cmp-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.cmp-new .cmp-header { border-bottom-color: rgba(124,58,237,.12); }
.cmp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.cmp-tag-old { background: var(--gray-100); color: var(--gray-500); }
.cmp-tag-new { background: var(--violet-pale); color: var(--violet); }
.cmp-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.cmp-list { list-style: none; padding: 20px 28px; display: flex; flex-direction: column; gap: 0; }
.cmp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.cmp-list li:last-child { border-bottom: none; }
.cmp-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.cmp-bad .cmp-icon  { background: #fee2e2; color: #ef4444; }
.cmp-good .cmp-icon { background: var(--violet-pale); color: var(--violet); }
.cmp-bad  { color: var(--gray-500); }
.cmp-good { color: var(--gray-700); font-weight: 500; }

/* ── Live Demo Section ─────────────────────────────────── */
.live-demo-section {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.live-demo-section .section-h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.01em;
  line-height: 1.45;
}

.live-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.live-demo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}

.live-demo-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.live-demo-list li svg {
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 2px;
}

.live-demo-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-demo-list li strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.live-demo-list li span {
  font-size: 13px;
  color: var(--gray-500);
}

.player-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.player-header {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}

.player-track {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}

.player-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.player-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.player-play-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--violet);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px; /* optical centre for play triangle */
  transition: background .2s, transform .15s;
  box-shadow: var(--shadow-violet);
}

.player-play-btn:hover { background: var(--violet-dark); transform: scale(1.06); }
.player-play-btn:active { transform: scale(.97); }

.player-right {
  flex: 1;
  min-width: 0;
}

.player-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 10px;
}

.pw-bar {
  flex: 1;
  background: var(--violet-light);
  border-radius: 2px;
  height: var(--h, 60%);
  opacity: .3;
  transition: opacity .2s;
  transform-origin: center;
}

/* Bars animate while audio is playing */
.player-waveform.playing .pw-bar {
  opacity: .7;
  animation: pw-bounce 1s ease-in-out infinite alternate;
}

.player-waveform.playing .pw-bar:nth-child(odd)  { animation-delay: 0s; }
.player-waveform.playing .pw-bar:nth-child(even) { animation-delay: .15s; }
.player-waveform.playing .pw-bar:nth-child(3n)   { animation-delay: .3s; }
.player-waveform.playing .pw-bar:nth-child(4n)   { animation-delay: .45s; }

@keyframes pw-bounce {
  from { transform: scaleY(.5); opacity: .4; }
  to   { transform: scaleY(1);  opacity: .9; }
}

.player-progress-wrap {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--violet);
  border-radius: 2px;
  transition: width .1s linear;
  pointer-events: none;
}

.player-times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-400);
  font-variant-numeric: tabular-nums;
}

/* ── Features ──────────────────────────────────────────── */
.features-section {
  padding: 100px 0;
  background: var(--white);
}
.features-section .section-sub { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.feat-card:hover {
  border-color: rgba(124,58,237,.3);
  box-shadow: var(--shadow-violet);
  transform: translateY(-3px);
}
.feat-large { grid-column: span 2; }
.feat-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feat-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Waveform animation */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  margin-top: 24px;
}
.wb {
  flex: 1;
  background: var(--violet);
  border-radius: 2px;
  opacity: .7;
  animation: wave-anim 1.4s ease-in-out infinite alternate;
}
.wb:nth-child(1)  { animation-delay: 0s;    height: 30%; }
.wb:nth-child(2)  { animation-delay: .1s;   height: 70%; }
.wb:nth-child(3)  { animation-delay: .2s;   height: 50%; }
.wb:nth-child(4)  { animation-delay: .3s;   height: 90%; }
.wb:nth-child(5)  { animation-delay: .15s;  height: 60%; }
.wb:nth-child(6)  { animation-delay: .35s;  height: 100%; }
.wb:nth-child(7)  { animation-delay: .05s;  height: 45%; }
.wb:nth-child(8)  { animation-delay: .25s;  height: 80%; }
.wb:nth-child(9)  { animation-delay: .4s;   height: 55%; }
.wb:nth-child(10) { animation-delay: .12s;  height: 35%; }
.wb:nth-child(11) { animation-delay: .3s;   height: 65%; }
@keyframes wave-anim {
  0%   { transform: scaleY(.4); }
  100% { transform: scaleY(1); }
}

/* Escalation diagram */
.esc-diagram {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.esc-node {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.esc-ai    { background: var(--violet-pale); color: var(--violet); }
.esc-staff { background: #dcfce7; color: #16a34a; }
.esc-arrow { color: var(--gray-300); }

/* ── How It Works ──────────────────────────────────────── */
.how-section {
  padding: 100px 0;
  background: var(--gray-900);
}

.how-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.how-header .section-h2 { color: var(--white); margin-bottom: 12px; }
.how-header .section-tag { background: rgba(139,92,246,.15); color: var(--violet-light); }
.how-header .section-sub { color: rgba(255,255,255,.5); margin-bottom: 0; }
.how-cta { flex-shrink: 0; }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--violet-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step-img-wrap {
  width: 56px;
  height: 56px;
  background: rgba(124,58,237,.2);
  color: var(--violet-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.step p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.75; }

.step-line {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line::after {
  content: '→';
  color: rgba(255,255,255,.2);
  font-size: 20px;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testi-header {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.testi-header > div:first-child .section-h2 { margin-bottom: 16px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-dark {
  background: var(--dark);
  border-color: rgba(255,255,255,.08);
}
.testi-violet {
  background: var(--violet);
  border-color: var(--violet-dark);
}
.testi-stars {
  font-size: 16px;
  color: #fbbf24;
  letter-spacing: 2px;
}
.testi-dark .testi-stars,
.testi-violet .testi-stars { color: #fde68a; }
.testi-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  flex: 1;
}
.testi-dark .testi-quote   { color: rgba(255,255,255,.75); }
.testi-violet .testi-quote { color: rgba(255,255,255,.9); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-dark .testi-avatar   { background: rgba(124,58,237,.4); }
.testi-violet .testi-avatar { background: rgba(255,255,255,.25); }
.testi-name { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.testi-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.testi-dark .testi-name   { color: var(--white); }
.testi-dark .testi-role   { color: rgba(255,255,255,.4); }
.testi-violet .testi-name { color: var(--white); }
.testi-violet .testi-role { color: rgba(255,255,255,.6); }

/* ── Integrations ──────────────────────────────────────── */
.integrations-section {
  padding: 100px 0 0;
  background: var(--gray-50);
}
.integrations-section .section-sub { margin-bottom: 56px; }

.int-orbit-wrap {
  position: relative;
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 56px;
}

/* Single row containing left + right halves */
.int-single-row {
  display: flex;
  align-items: center;
}

/* Each half takes 50% of the width and clips its scrolling content */
.int-half {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* Mirror the left half so it uses the SAME scroll-left animation as the right half.
   scaleX(-1) reverses the visual scroll direction without any translateX(-50%) alignment risk. */
.int-half-left {
  transform: scaleX(-1);
  /* After scaleX(-1), CSS "to left" becomes visual "to right":
     outer edge (visual-left) = opaque, center (visual-right) = transparent */
  -webkit-mask-image: linear-gradient(to left, black 0%, black 65%, transparent 100%);
  mask-image:         linear-gradient(to left, black 0%, black 65%, transparent 100%);
}
/* Counter-mirror each card so text and logos render the right way round */
.int-half-left .int-logo-card {
  transform: scaleX(-1);
}
.int-half-right {
  -webkit-mask-image: linear-gradient(to left, black 0%, black 65%, transparent 100%);
  mask-image:         linear-gradient(to left, black 0%, black 65%, transparent 100%);
}

/* Central SVARA medallion — sits above both halves */
.int-svara-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 90px;
  height: 90px;
  background: var(--dark);
  border-radius: 50%;
  border: 1.5px solid rgba(124,58,237,.5);
  box-shadow: 0 0 0 10px var(--gray-50), 0 0 48px rgba(124,58,237,.3);
  pointer-events: none;
}
.int-svara-center img { width: 26px; height: 26px; }
.int-svara-center span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}

/* Scrolling strips */
.int-logos {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
}

/* Left half scrolls RIGHT toward centre: from -50% → 0 */
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
/* Right half scrolls LEFT toward centre: from 0 → -50% */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.int-scroll-right { animation: scroll-right 24s linear infinite; }
.int-scroll-left  { animation: scroll-left  24s linear infinite; }

/* Individual logo card — margin-right instead of flex gap so that
   each set's total width is exactly half the inner strip width,
   making translateX(-50%) land precisely at the duplicate boundary */
.int-logo-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-right: 14px;
}

.int-logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Demo Form ─────────────────────────────────────────── */
.demo-section {
  padding: 100px 0;
  background: var(--white);
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.demo-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.025em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.demo-copy p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
}
.demo-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.demo-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.benefit-check {
  width: 22px;
  height: 22px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.demo-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: -6px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.show { display: block; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--violet);
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left .section-h2 { margin-bottom: 16px; }
.faq-left .section-sub { margin-bottom: 32px; }

.faq-still {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-still p:first-child { color: var(--gray-900); font-weight: 600; margin-bottom: 6px; }

.faq-right {
  display: flex;
  flex-direction: column;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  font-family: var(--font);
  line-height: 1.4;
  transition: color .2s;
}

.faq-q:hover { color: var(--violet); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gray-400);
  transition: transform .25s;
}

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

.faq-a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}

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

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { color: var(--white); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 14px 0 24px;
  line-height: 1.6;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--violet); color: var(--white); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-h1 { font-size: clamp(42px, 9vw, 72px); }
  .hero-bottom { padding: 24px 24px; }
  .hero-bottom-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-large { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .navbar { top: 12px; }
  .hero-h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-eyebrow { font-size: 11px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cmp-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--violet-light), transparent); margin: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 38px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Founding Hotels Section ───────────────────────────── */
.founding-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.founding-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 10%, rgba(124,58,237,.22) 0%, transparent 65%);
  pointer-events: none;
}

.founding-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.founding-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.founding-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.35);
  padding: 5px 14px;
  border-radius: 100px;
}

.founding-spots-label {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.founding-count {
  font-weight: 700;
  color: var(--white);
}

.founding-h2 {
  color: var(--white) !important;
}

.founding-sub {
  color: rgba(255,255,255,.5) !important;
  max-width: 640px;
  margin: 0 auto 56px !important;
}

.founding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
  text-align: left;
}

.founding-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color .2s, background .2s;
}

.founding-card:hover {
  border-color: rgba(124,58,237,.4);
  background: rgba(124,58,237,.07);
}

.founding-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(124,58,237,.2);
  color: var(--violet-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.founding-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.founding-card p {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
}

.founding-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.founding-note {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

@media (max-width: 1024px) {
  .founding-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .founding-grid { grid-template-columns: 1fr; }
  .founding-eyebrow { flex-direction: column; gap: 10px; }
}

/* ── Mobile: 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce section padding across the board */
  .stats-section,
  .comparison-section,
  .live-demo-section,
  .features-section,
  .how-section,
  .integrations-section,
  .demo-section,
  .faq-section,
  .cta-banner,
  .founding-section { padding: 64px 0; }

  /* Live demo: stack copy above player */
  .live-demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .live-demo-section .section-h2 { font-size: clamp(22px, 5vw, 32px); }

  /* FAQ: stack left panel above accordion */
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-still { display: none; } /* CTA is already in the page; remove redundant sidebar copy on mobile */

  /* How it works: stack header above CTA button */
  .how-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .how-cta { align-self: flex-start; }

  /* Integrations: shrink cards so they fit narrow halves */
  .int-logo-card { padding: 8px 12px; font-size: 12px; gap: 7px; }
  .int-logo-img { width: 16px; height: 16px; }
  .int-svara-center { width: 72px; height: 72px; }

  /* Player card */
  .player-card { padding: 24px 20px; }

  /* Demo form wrapper */
  .demo-form-wrap { padding: 28px 20px; }
}

/* ── Mobile: 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  /* Further reduce section padding */
  .stats-section,
  .comparison-section,
  .live-demo-section,
  .features-section,
  .how-section,
  .integrations-section,
  .demo-section,
  .faq-section,
  .cta-banner,
  .founding-section { padding: 48px 0; }

  /* Footer: collapse to single column */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }

  /* Hero bottom */
  .hero-bottom { padding: 20px 16px; }

  /* Integrations: shrink further */
  .int-logo-card { padding: 7px 10px; font-size: 11px; gap: 6px; margin-right: 10px; }
  .int-logo-img { width: 14px; height: 14px; }
  .int-svara-center { width: 60px; height: 60px; }
  .int-svara-center span { font-size: 8px; }
  .int-orbit-wrap { padding: 40px 0; }

  /* Comparison: reduce padding */
  .cmp-col { padding: 28px 20px; }

  /* Step cards: full width padding */
  .step { padding: 0 8px; text-align: center; }

  /* CTA banner heading */
  .cta-inner h2 { font-size: clamp(24px, 7vw, 36px); }
  .cta-inner p { font-size: 15px; }
}
