/* ============================================
   WeSavve — premium design system
   ============================================ */

:root {
  /* palette */
  --bg: #06060a;
  --bg-2: #0b0b14;
  --bg-3: #12121f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5fa;
  --text-soft: #c8c8d6;
  --text-dim: #8a8a9c;

  --brand: #8B5CFF;
  --brand-2: #3DD0C5;
  --brand-3: #5B8CFF;
  --accent: #FF7A59;
  --live: #4ADE80;
  --dialing: #FFB45C;
  --booked: #5BC0FF;

  --grad: linear-gradient(120deg, #8B5CFF 0%, #5B8CFF 40%, #3DD0C5 100%);
  --grad-soft: linear-gradient(120deg, rgba(139, 92, 255, 0.18), rgba(61, 208, 197, 0.12));

  /* type */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* radii / shadows */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 60px rgba(139, 92, 255, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.5s;
  --max: 1180px;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: rgba(139, 92, 255, 0.3); color: #fff; }

/* ambient backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(139, 92, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at 10% 20%, rgba(61, 208, 197, 0.08), transparent 60%),
    radial-gradient(800px 800px at 50% 110%, rgba(91, 140, 255, 0.07), transparent 60%);
  pointer-events: none;
}

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad);
  z-index: 200; transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(139, 92, 255, 0.6);
}

/* layout helpers */
.section { padding: 120px 24px; max-width: var(--max); margin: 0 auto; position: relative; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 18px;
}
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.section__lead { color: var(--text-soft); font-size: 1.06rem; max-width: 620px; margin: 0 auto; }
.section__foot { text-align: center; margin-top: 48px; }
.section__foot p { color: var(--text-dim); margin-bottom: 18px; }
.section__foot-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

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

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 0.94rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #0a0a0f; box-shadow: 0 8px 30px rgba(139, 92, 255, 0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(139, 92, 255, 0.45); }
.btn--ghost { background: var(--surface); border: 1px solid var(--line-strong); color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 0.86rem; }
.btn--block { width: 100%; }

/* dots */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--live { background: var(--live); box-shadow: 0 0 10px var(--live); animation: pulse 1.6s infinite; }
.dot--dialing { background: var(--dialing); animation: pulse 1.6s infinite; }
.dot--booked { background: var(--booked); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
  background: rgba(6, 6, 10, 0.7); border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 40px; height: 40px;
  filter: drop-shadow(0 2px 10px rgba(91, 140, 255, 0.45)) drop-shadow(0 0 6px rgba(139, 92, 255, 0.35));
  animation: wsFloat 5s ease-in-out infinite;
  will-change: transform;
}
.brand:hover .brand__mark { animation-duration: 3s; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em;
  background: linear-gradient(90deg, #C9B8FF, #8B5CFF 35%, #FF4DCE 60%, #3DD0C5);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* 3D logo orbit ring rotation */
.ws-orbit { transform-box: fill-box; transform-origin: center; animation: wsSpin 8s linear infinite; }
@keyframes wsSpin { to { transform: rotate(360deg); } }
@keyframes wsFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
@media (prefers-reduced-motion: reduce) { .brand__mark, .ws-orbit { animation: none; } }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--text-soft); font-size: 0.92rem; font-weight: 500; transition: color var(--t), background-size 0.3s ease; background: linear-gradient(90deg, #8B5CFF, #FF4DCE 50%, #3DD0C5); background-size: 0% 100%; background-repeat: no-repeat; -webkit-background-clip: text; background-clip: text; }
.nav__links a:hover { -webkit-text-fill-color: transparent; background-size: 100% 100%; color: transparent; }
.nav__mobile a { transition: color var(--t), background-size 0.3s ease; background: linear-gradient(90deg, #8B5CFF, #FF4DCE 50%, #3DD0C5); background-size: 0% 100%; background-repeat: no-repeat; -webkit-background-clip: text; background-clip: text; }
.nav__mobile a:hover { -webkit-text-fill-color: transparent; background-size: 100% 100%; color: transparent; }
.nav__cta { display: flex; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.nav__mobile { display: none; flex-direction: column; gap: 14px; padding: 18px 24px 22px; border-bottom: 1px solid var(--line); background: rgba(6, 6, 10, 0.96); }
.nav__mobile[hidden] { display: none; }
.nav__mobile.is-open { display: flex; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}

/* HERO */
.hero {
  position: relative; min-height: 92vh; padding: 110px 24px 80px;
  max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
#orb { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* CSS fallback shown when WebGL unavailable / orb disabled */
.hero--no-orb #orb { display: none; }
.hero--no-orb {
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(139, 92, 255, 0.18), transparent 70%),
    radial-gradient(40% 50% at 60% 60%, rgba(61, 208, 197, 0.12), transparent 70%),
    var(--bg, #06060a);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 40%, transparent, rgba(6, 6, 10, 0.6) 70%, rgba(6, 6, 10, 0.95));
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 500; color: var(--text-soft);
  padding: 7px 14px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 0.98;
  letter-spacing: -0.03em; margin-bottom: 26px;
}
.hero__title .line { display: block; }
.hero__sub { font-size: 1.16rem; color: var(--text-soft); max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 760px; }
.stat { padding: 18px 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; }
.stat__num .x { font-size: 0.7em; opacity: 0.6; }
.stat__label { color: var(--text-dim); font-size: 0.82rem; margin-top: 4px; }

.call-chips {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 14px; width: 300px;
}
.chip {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: var(--r); background: rgba(20, 20, 30, 0.6);
  border: 1px solid var(--line); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft); opacity: 0; animation: chip-in 0.8s var(--ease) forwards;
}
.chip:nth-child(1) { animation-delay: 0.4s; }
.chip:nth-child(2) { animation-delay: 0.7s; }
.chip:nth-child(3) { animation-delay: 1s; }
.chip__body { display: flex; flex-direction: column; }
.chip__title { font-size: 0.86rem; font-weight: 600; }
.chip__meta { font-size: 0.76rem; color: var(--text-dim); }
@keyframes chip-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 0.78rem;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--brand), transparent); animation: scroll-line 2s infinite; }
@keyframes scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 980px) {
  .call-chips { position: static; transform: none; width: auto; flex-direction: row; flex-wrap: wrap; margin-top: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* TRUST strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.015); }
.trust__inner { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust__label { color: var(--text-dim); font-size: 0.84rem; font-weight: 500; }
.trust__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust__row span { font-weight: 600; font-size: 0.92rem; }
.trust__row i { color: var(--text-dim); font-style: normal; }

/* CARDS */
.card {
  position: relative; padding: 28px 24px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--t);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 16px; color: var(--brand-2); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--font-display); font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 14px; }
.card__list { display: flex; flex-direction: column; gap: 7px; }
.card__list li { font-size: 0.84rem; color: var(--text-dim); padding-left: 18px; position: relative; }
.card__list li::before { content: "→"; position: absolute; left: 0; color: var(--brand-2); }

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

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.feature-pills span {
  padding: 8px 16px; border-radius: 999px; font-size: 0.84rem; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--line);
}

/* PLATFORM */
.platform__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.platform__text .section__lead { text-align: left; margin: 0 0 28px; }
.delivers { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.deliver { display: flex; align-items: flex-start; gap: 14px; }
.deliver__icon { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; color: var(--brand); }
.deliver__icon svg { width: 20px; height: 20px; }
.deliver h4 { font-size: 1rem; margin-bottom: 2px; }
.deliver p { font-size: 0.86rem; color: var(--text-dim); }

/* console mock */
.console {
  background: linear-gradient(180deg, rgba(18, 18, 31, 0.9), rgba(11, 11, 20, 0.9));
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft), var(--shadow-glow); overflow: hidden;
}
.console__bar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--line); font-size: 0.84rem; }
.console__title { font-weight: 600; }
.console__time { margin-left: auto; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.console__body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; max-height: 320px; overflow: hidden; }
.console__line { display: flex; gap: 10px; align-items: flex-start; }
.console__line--ai { color: var(--text); }
.console__line--user { color: var(--text-soft); }
.console__line--sys { color: var(--brand-2); }
.tag { font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--grad); color: #0a0a0f; flex-shrink: 0; margin-top: 2px; }
.tag--user { background: var(--surface-2); color: var(--text-soft); }
.tag--sys { background: rgba(61, 208, 197, 0.15); color: var(--brand-2); }
.console__line p { font-size: 0.88rem; }
.console__foot { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.console__foot > div { padding: 12px 14px; background: rgba(11, 11, 20, 0.9); display: flex; flex-direction: column; gap: 2px; }
.console__foot span { font-size: 0.7rem; color: var(--text-dim); }
.console__foot strong { font-size: 0.86rem; font-weight: 600; }

@media (max-width: 880px) {
  .platform__layout { grid-template-columns: 1fr; gap: 40px; }
  .platform__text .section__lead { text-align: center; margin: 0 auto 28px; }
}

/* MODELS */
.models__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.model {
  position: relative; padding: 32px 26px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); overflow: hidden; transition: transform var(--t) var(--ease);
}
.model:hover { transform: translateY(-6px); }
.model__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; line-height: 1; color: var(--brand-3); opacity: 1; }
.model h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.model p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 16px; }
.model ul { display: flex; flex-direction: column; gap: 8px; }
.model li { font-size: 0.86rem; color: var(--text-dim); padding-left: 20px; position: relative; }
.model li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-2); font-weight: 700; }
.model__glow { position: absolute; top: -40%; right: -20%; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 255, 0.25), transparent 70%); filter: blur(30px); pointer-events: none; }
.model--accent { border-color: rgba(139, 92, 255, 0.3); }
.model--accent .model__glow { background: radial-gradient(circle, rgba(61, 208, 197, 0.3), transparent 70%); }

@media (max-width: 880px) { .models__grid { grid-template-columns: 1fr; } }

/* PRICING */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan {
  position: relative; padding: 26px 22px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform var(--t) var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 16px; color: var(--brand); }
.plan__icon svg { width: 22px; height: 22px; }
.plan h3 { font-family: var(--font-display); font-size: 1.22rem; margin-bottom: 6px; }
.plan__for { font-size: 0.84rem; color: var(--text-dim); margin-bottom: 18px; min-height: 36px; }
.plan__fee { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.plan__fee span { font-size: 0.74rem; color: var(--text-dim); }
.plan__fee strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.plan__fee small { font-size: 0.7em; color: var(--text-dim); font-weight: 400; }
.plan__bucket { font-size: 0.82rem; color: var(--text-soft); padding: 10px 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 18px; text-align: center; }
.plan__bucket strong { color: var(--brand-2); font-weight: 700; }
.plan ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.plan li { font-size: 0.84rem; color: var(--text-soft); padding-left: 20px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-2); }

.plan--featured {
  border-color: rgba(139, 92, 255, 0.4); background: linear-gradient(180deg, rgba(139, 92, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-glow); transform: translateY(-6px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #0a0a0f; font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}

@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing__grid { grid-template-columns: 1fr; } }
.plan--lite .plan__fee strong { font-size: 1.3rem; }
.plan--lite { background: var(--surface); border-color: var(--line); }
.plan--lite:hover { transform: translateY(-4px); }

.usage {
  margin-top: 40px; padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(139, 92, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}
.usage__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.usage__lead { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 22px; max-width: 620px; }
.usage__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.usage__item { padding: 16px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.usage__label { font-size: 0.78rem; color: var(--text-dim); display: block; margin-bottom: 6px; }
.usage__item strong { font-family: var(--font-display); font-size: 1.04rem; }
.usage__note { font-size: 0.8rem; color: var(--text-dim); margin-top: 18px; }
@media (max-width: 800px) { .usage__grid { grid-template-columns: repeat(2, 1fr); } }

/* DEMO */
.demo__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.demo__intro .section__lead { text-align: left; margin: 0 0 28px; }
.demo__points { display: flex; flex-direction: column; gap: 12px; }
.demo__points li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--text-soft); }
.check { color: var(--brand-2); font-weight: 700; }

.demo__form {
  padding: 32px; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(18, 18, 31, 0.8), rgba(11, 11, 20, 0.8));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--text-soft); }
.optional { color: var(--text-dim); font-weight: 400; }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: 10px; background: rgba(6, 6, 10, 0.6);
  border: 1px solid var(--line); color: var(--text); font-size: 0.94rem; transition: border-color var(--t);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139, 92, 255, 0.15); }
.field textarea { resize: vertical; }
.field__error { font-size: 0.76rem; color: var(--accent); min-height: 0; transition: min-height var(--t); }
.field.has-error input, .field.has-error select { border-color: var(--accent); }
.form__status { font-size: 0.88rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--live); }
.form__status.is-err { color: var(--accent); }
.form__hint { font-size: 0.78rem; color: var(--text-dim); text-align: center; }

@media (max-width: 880px) { .demo__layout { grid-template-columns: 1fr; gap: 40px; } }

/* CONTACT band */
.contact { padding: 80px 24px; max-width: var(--max); margin: 0 auto; }
.contact__inner { padding: 48px; border-radius: var(--r-xl); background: var(--grad-soft); border: 1px solid var(--line); text-align: center; }
.contact__inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 28px; }
.contact__rows { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.contact__row { display: flex; flex-direction: column; gap: 2px; padding: 14px 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); min-width: 200px; text-align: left; transition: transform var(--t); }
a.contact__row:hover { transform: translateY(-3px); }
.contact__label { font-size: 0.74rem; color: var(--text-dim); }
.contact__value { font-weight: 600; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 60px 24px 30px; background: rgba(6, 6, 10, 0.6); }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer__brand p { color: var(--text-dim); font-size: 0.88rem; max-width: 320px; margin-top: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer__col h4 { font-size: 0.84rem; color: var(--text-dim); margin-bottom: 12px; font-weight: 600; }
.footer__col a, .footer__col span { display: block; font-size: 0.88rem; color: var(--text-soft); margin-bottom: 8px; transition: color var(--t), background-size 0.3s ease; }
.footer__col a { background: linear-gradient(90deg, #8B5CFF, #FF4DCE 50%, #3DD0C5); background-size: 0% 100%; background-repeat: no-repeat; -webkit-background-clip: text; background-clip: text; }
.footer__col a:hover { -webkit-text-fill-color: transparent; background-size: 100% 100%; color: transparent; }
.footer__bottom { max-width: var(--max); margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--text-dim); }
.footer__link { color: var(--brand-2); text-decoration: none; transition: color var(--t); }
.footer__link:hover { color: var(--text); }

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

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

/* tilt cards */
.tilt { transform-style: preserve-3d; transition: transform 0.3s var(--ease); }
.tilt__inner { transform: translateZ(40px); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* responsive section padding */
@media (max-width: 700px) {
  .section { padding: 80px 18px; }
  .hero { padding: 90px 18px 60px; min-height: auto; }
  .contact__inner { padding: 32px 24px; }
  .demo__form { padding: 24px 20px; }
}

/* ============================================
   card__link (industry guide links)
   ============================================ */
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.84rem; font-weight: 600;
  color: var(--brand-2); transition: gap var(--t) var(--ease), color var(--t);
}
.card__link:hover { color: var(--text); gap: 12px; }

/* ============================================
   CASE STUDIES
   ============================================ */
.cases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.case {
  position: relative; padding: 30px 28px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-glow); }
.case::after {
  content: ""; position: absolute; top: -40%; right: -30%; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(61, 208, 197, 0.18), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.case__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 10px; flex-wrap: wrap; }
.case__industry { font-size: 0.74rem; font-weight: 600; color: var(--brand); letter-spacing: 0.08em; text-transform: uppercase; }
.case__tag { font-size: 0.7rem; padding: 4px 12px; border-radius: 999px; background: var(--surface-2); color: var(--text-soft); white-space: nowrap; }
.case h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; line-height: 1.2; }
.case__quote { font-size: 0.93rem; color: var(--text-soft); font-style: italic; line-height: 1.55; margin-bottom: 22px; }
.case__metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: auto; }
.case__metrics > div {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 14px 6px; border-radius: 12px; background: var(--surface);
  border: 1px solid var(--line); min-height: 82px;
}
.case__metrics strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.case__metrics span { font-size: 0.72rem; color: var(--text-dim); line-height: 1.3; }

@media (max-width: 880px) { .cases__grid { grid-template-columns: 1fr; } }

/* ============================================
   CLIENT SAMPLES — real voice recordings
   ============================================ */
.samples__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.sample {
  position: relative; padding: 30px 28px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  overflow: hidden; display: flex; flex-direction: column;
}
.sample:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-glow); }
.sample::after {
  content: ""; position: absolute; top: -40%; right: -30%; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 255, 0.20), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.sample__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 10px; flex-wrap: wrap; }
.sample__client { font-size: 0.74rem; font-weight: 600; color: var(--brand); letter-spacing: 0.08em; text-transform: uppercase; }
.sample__agent { font-size: 0.7rem; padding: 4px 12px; border-radius: 999px; background: var(--surface-2); color: var(--text-soft); white-space: nowrap; }
.sample__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; line-height: 1.2; }
.sample__desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.55; margin-bottom: 22px; }

.player { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.player__play {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: transform var(--t) var(--ease), box-shadow var(--t); box-shadow: 0 6px 20px rgba(91, 140, 255, 0.35);
}
.player__play:hover { transform: scale(1.06); }
.player__play:active { transform: scale(0.98); }
.player__icon { line-height: 1; }
.player__icon--pause { display: none; }
.sample.is-playing .player__icon--play { display: none; }
.sample.is-playing .player__icon--pause { display: block; }
.sample.is-playing .player__play { box-shadow: 0 6px 24px rgba(61, 208, 197, 0.45); }

.player__bar { flex: 1 1 auto; height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; position: relative; }
.player__fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--grad); border-radius: 999px; transition: width 0.1s linear; }
.player__time { flex: 0 0 auto; font-size: 0.72rem; color: var(--text-dim); font-variant-numeric: tabular-nums; white-space: nowrap; }

@media (max-width: 880px) { .samples__grid { grid-template-columns: 1fr; } }

/* ============================================
   LIVE CALL WIDGET — modal
   ============================================ */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3, 3, 8, 0.78); backdrop-filter: blur(8px); animation: fade-in 0.3s var(--ease); }
.modal__panel {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: linear-gradient(180deg, rgba(18, 18, 31, 0.98), rgba(11, 11, 20, 0.98));
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft), var(--shadow-glow); padding: 32px 28px;
  animation: modal-in 0.4s var(--ease);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 14px; right: 16px; font-size: 1.6rem; line-height: 1; color: var(--text-dim); padding: 4px 10px; transition: color var(--t); }
.modal__close:hover { color: var(--text); }

.call-stage[hidden] { display: none; }

/* stage 1: intro */
.call-stage__orb { display: grid; place-items: center; margin-bottom: 18px; }
.mini-orb {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 30px rgba(139, 92, 255, 0.5);
  animation: pulse 2s infinite;
}
.call-stage h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; text-align: center; }
.call-stage > p { color: var(--text-soft); font-size: 0.92rem; text-align: center; margin-bottom: 22px; }
.scenario-pick { display: flex; flex-direction: column; gap: 10px; }
.scenario {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; text-align: left;
  border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  transition: border-color var(--t), transform var(--t) var(--ease), background var(--t);
}
.scenario:hover { border-color: var(--brand); transform: translateX(4px); background: var(--surface-2); }
.scenario__icon { font-size: 1.4rem; }
.scenario__body { display: flex; flex-direction: column; }
.scenario__body strong { font-size: 0.92rem; }
.scenario__body em { font-size: 0.8rem; color: var(--text-dim); font-style: normal; }
.call-disclaimer { font-size: 0.74rem; color: var(--text-dim); text-align: center; margin-top: 18px; margin-bottom: 0; }

/* stage 2: calling */
.call-dial { text-align: center; padding: 20px 0; }
.call-dial__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 28px; }
.waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 60px; margin-bottom: 24px; }
.waveform .bar { width: 4px; background: var(--grad); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
@keyframes wave { 0%, 100% { height: 8px; } 50% { height: 44px; } }
.call-dial__status { font-size: 1rem; color: var(--text-soft); margin-bottom: 8px; }
.call-dial__timer { font-family: var(--font-display); font-size: 0.9rem; color: var(--text-dim); font-variant-numeric: tabular-nums; }

/* stage 3: transcript */
.call-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; font-size: 0.86rem; }
.call-head__title { font-weight: 600; }
.call-head__time { margin-left: auto; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.call-lines { display: flex; flex-direction: column; gap: 12px; max-height: 320px; overflow-y: auto; padding-right: 4px; }
.call-lines::-webkit-scrollbar { width: 4px; }
.call-lines::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }
.cl { display: flex; gap: 10px; align-items: flex-start; animation: cl-in 0.4s var(--ease); }
@keyframes cl-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cl--ai .cl-tag { background: var(--grad); color: #0a0a0f; }
.cl--user .cl-tag { background: var(--surface-2); color: var(--text-soft); }
.cl--sys .cl-tag { background: rgba(61, 208, 197, 0.15); color: var(--brand-2); }
.cl--sys { color: var(--brand-2); }
.cl-tag { font-size: 0.66rem; font-weight: 700; padding: 3px 7px; border-radius: 5px; flex-shrink: 0; margin-top: 2px; }
.cl p { font-size: 0.88rem; line-height: 1.5; }
.call-tags { display: flex; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.call-tag { font-size: 0.74rem; padding: 4px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text-soft); }
.call-tag--ok { color: var(--live); border-color: rgba(74, 222, 128, 0.3); }

/* stage 4: outcome */
.call-outcome { text-align: center; padding: 16px 0; }
.call-outcome__icon { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad); color: #0a0a0f; display: grid; place-items: center; font-size: 1.6rem; font-weight: 700; box-shadow: 0 0 30px rgba(61, 208, 197, 0.4); animation: pop 0.5s var(--ease); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.call-outcome h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.call-outcome p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 22px; }
.call-outcome__actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }

/* ============================================
   INDUSTRY LANDING PAGES
   ============================================ */
.ind-hero {
  position: relative; padding: 140px 24px 80px; max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ind-hero__back { position: absolute; top: 90px; left: 24px; font-size: 0.84rem; color: var(--text-dim); transition: color var(--t); }
.ind-hero__back:hover { color: var(--text); }
.ind-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 0.82rem; color: var(--text-soft); margin-bottom: 22px; }
.ind-hero__icon { font-size: 1.1rem; }
.ind-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 22px; max-width: 800px; }
.ind-hero__sub { font-size: 1.12rem; color: var(--text-soft); max-width: 600px; margin-bottom: 32px; }
.ind-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.pain { padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.pain__icon { font-size: 1.4rem; margin-bottom: 10px; }
.pain h4 { font-size: 1rem; margin-bottom: 6px; }
.pain p { font-size: 0.86rem; color: var(--text-dim); }

.flow { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.flow__step { display: flex; gap: 18px; padding: 18px 0; position: relative; }
.flow__step:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 52px; bottom: 0; width: 2px; background: var(--line); }
.flow__num { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: #0a0a0f; display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; position: relative; z-index: 1; }
.flow__body h4 { font-size: 1.04rem; margin-bottom: 4px; }
.flow__body p { font-size: 0.9rem; color: var(--text-soft); }

@media (max-width: 880px) {
  .pains { grid-template-columns: 1fr; }
}

/* ============================================
   DIFFERENTIATION strip
   ============================================ */
.diff { padding: 0 24px; max-width: var(--max); margin: 0 auto; }
.diff__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.diff__item { display: flex; gap: 14px; align-items: flex-start; }
.diff__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.diff__item strong { display: block; font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.diff__item p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.5; }
@media (max-width: 880px) { .diff__inner { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================
   SECURITY & COMPLIANCE
   ============================================ */
.security__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
.security__card { padding: 22px 20px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); }
.security__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.security__badge--live { background: rgba(61, 208, 197, 0.15); color: var(--brand-2); }
.security__badge--road { background: rgba(139, 92, 255, 0.15); color: var(--brand); }
.security__card h3 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 8px; }
.security__card p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.55; }
.security__row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.security__pill { font-size: 0.78rem; padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text-soft); }
@media (max-width: 880px) { .security__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi { max-width: 880px; margin: 0 auto; }
.roi__compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; margin-bottom: 32px; }
.roi__side { padding: 26px 24px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.roi__side--ai { background: linear-gradient(180deg, rgba(139, 92, 255, 0.10), rgba(61, 208, 197, 0.05)); border-color: rgba(139, 92, 255, 0.4); }
.roi__side--human { background: var(--surface); }
.roi__side-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--grad); color: #0a0a0f; margin-bottom: 18px; }
.roi__side-badge--human { background: var(--surface-2); color: var(--text-soft); }
.roi__side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.roi__side li { display: flex; flex-direction: column; gap: 2px; }
.roi__side li strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; color: var(--text); }
.roi__side--ai li strong { color: var(--brand-2); }
.roi__side li span { font-size: 0.8rem; color: var(--text-dim); }
.roi__vs { display: flex; align-items: center; justify-content: center; padding: 0 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text-dim); }
.roi__note { font-size: 0.82rem; color: var(--text-dim); margin-top: 14px; line-height: 1.5; }
.roi__breakdown { font-size: 0.78rem; color: var(--text-soft); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); line-height: 1.7; text-align: left; }
.roi__breakdown div { display: flex; justify-content: space-between; gap: 12px; }
.roi__breakdown span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.roi__breakdown .roi__total { padding-top: 10px; margin-top: 8px; border-top: 1px solid var(--line); font-weight: 700; font-size: 0.86rem; }
.roi__breakdown .roi__total span:first-child { color: var(--text); }
.roi__breakdown .roi__total span:last-child { color: var(--brand-2); font-family: var(--font-display); font-size: 0.95rem; }
.roi__breakdown .roi__total--ws span:last-child { color: var(--brand-2); }
@media (max-width: 700px) { .roi__compare { grid-template-columns: 1fr; } .roi__vs { padding: 8px 0; } .roi__calc { grid-template-columns: 1fr; gap: 28px; padding: 24px; } }
.roi__calc { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 32px; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0.02)); border: 1px solid var(--line); }
.roi__inputs { display: flex; flex-direction: column; gap: 18px; }
.roi__field label { display: block; font-size: 0.84rem; color: var(--text-soft); margin-bottom: 6px; }
.roi__field input { width: 100%; padding: 12px 14px; border-radius: 10px; background: var(--bg); border: 1px solid var(--line); color: var(--text); font-size: 0.95rem; font-family: inherit; }
.roi__field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(139, 92, 255, 0.15); }
.roi__result { text-align: center; }
.roi__result .roi__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.roi__result .roi__label { font-size: 0.86rem; color: var(--text-dim); margin-top: 8px; }
.roi__break { display: flex; justify-content: center; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.roi__break div { font-size: 0.82rem; color: var(--text-soft); }
.roi__break strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
@media (max-width: 700px) { .roi__calc { grid-template-columns: 1fr; gap: 28px; padding: 24px; } }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal { max-width: 860px; margin: 0 auto; padding: 120px 24px 80px; }
.legal__head { margin-bottom: 48px; }
.legal__head .kicker { color: var(--brand-2); margin-bottom: 14px; }
.legal__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.legal__meta { font-size: 0.86rem; color: var(--text-dim); }
.legal__meta a { color: var(--brand-2); }
.legal__intro { font-size: 1rem; color: var(--text-soft); line-height: 1.7; padding: 18px 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); margin-bottom: 40px; }
.legal__sec { margin-bottom: 36px; }
.legal__sec h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; color: var(--text); display: flex; align-items: baseline; gap: 12px; }
.legal__sec h2 .num { color: var(--brand); font-size: 0.9rem; font-weight: 700; }
.legal__sec p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 10px; }
.legal__sec ul { list-style: none; padding: 0; margin: 8px 0 12px; }
.legal__sec ul li { font-size: 0.93rem; color: var(--text-soft); line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: 6px; }
.legal__sec ul li::before { content: "→"; position: absolute; left: 0; color: var(--brand-2); font-weight: 700; }
.legal__callout { font-size: 0.92rem; color: var(--text-soft); line-height: 1.65; padding: 16px 20px; border-radius: var(--r-md); background: rgba(139, 92, 255, 0.08); border-left: 3px solid var(--brand); margin: 16px 0; }
.legal__contact { margin-top: 48px; padding: 24px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); }
.legal__contact h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 12px; }
.legal__contact p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 6px; }
.legal__contact a { color: var(--brand-2); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-size: 0.9rem; color: var(--brand-2); font-weight: 500; }
.legal__back:hover { color: var(--text); }



/* Shared legal links for Razorpay and customer trust */
.footer__legal-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.footer__legal-inline a {
  color: var(--text-2, #a9b5c7);
  text-decoration: none;
}

.footer__legal-inline a:hover,
.footer__legal-inline a:focus-visible {
  color: var(--brand-2, #3dd0c5);
}
