/* ═══════════════════════════════
   U ai — Premium SaaS
   Deep black · refined · spacious
   ═══════════════════════════════ */

:root {
  --bg: #000000;
  --bg-alt: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #0d0d0d;
  --chrome: #ededed;
  --chrome-mid: #a1a1a1;
  --chrome-dim: #737373;
  --cyan: #d4d4d4;
  --cyan-dim: rgba(255, 255, 255, 0.04);
  --cyan-glow: rgba(255, 255, 255, 0.08);
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.06);
  --silver: #a3a3a3;
  --silver-dim: #737373;
  --silver-dark: #525252;
  --white: #fafafa;
  --red-dim: rgba(239, 68, 68, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --border-h: rgba(255, 255, 255, 0.1);
  --glass: rgba(10, 10, 10, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mw: 1120px;
  --hero-logo-offset: calc(52px + 2rem);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--silver);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.tos-open { overflow: hidden; }

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

.cyan {
  color: var(--white);
}

.chrome {
  color: var(--white);
}

.wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
}

.wrap--narrow { max-width: 720px; }

.text-blue { color: #2563eb; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: 500 0.875rem/1.4 var(--font);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn--glow {
  background: var(--white);
  color: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn--glow::before,
.btn--glow::after {
  display: none;
}

.btn--glow:hover {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--border-h);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.btn--full { width: 100%; }

/* ── Sections ── */
main, .footer, .float-cta, .sticky { position: relative; z-index: 1; }

.sec {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
}

.sec--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sec__h {
  margin: 0 0 clamp(2rem, 4vh, 3rem);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.15;
  text-align: center;
}

.sec__h--narrow {
  white-space: nowrap;
}

/* ── Reveal ── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.rv.rv--in {
  opacity: 1;
  transform: translateY(0);
}

/* hero uses CSS keyframes so it doesn't wait for JS */
.h-rv {
  animation: h-in 0.75s var(--ease) forwards;
}

.h-rv[data-d="0"] { animation-delay: 0.05s; }
.h-rv[data-d="1"] { animation-delay: 0.18s; }
.h-rv[data-d="2"] { animation-delay: 0.3s; }
.h-rv[data-d="3"] { animation-delay: 0.42s; }
.h-rv[data-d="4"] { animation-delay: 0.5s; }
.h-rv[data-d="5"] { animation-delay: 0.6s; }

@keyframes h-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Canvas ── */
.space {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.navbar--scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
}

/* ── Brand / Logo ── */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.brand__mark {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__mark--sm {
  width: 44px;
  height: 44px;
}

.navbar__links { display: none; gap: 2rem; }

.navbar__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--silver-dim);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.navbar__links a:hover { color: var(--white); }

/* ═════════════════
   HERO
   ═════════════════ */

.hero {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 14vh, 8rem) 0 clamp(4rem, 10vh, 6rem);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  width: 100%;
}

.hero__brand {
  margin-bottom: 1.5rem;
}

.hero__logo-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.92;
}

.hero__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1400px;
  position: relative;
}

.hero__phone .phone {
  margin: 0;
  width: 100%;
  max-width: 300px;
}

.hero__h {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero__sub {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--silver);
  max-width: 480px;
}

.hero__u-glow {
  color: var(--white);
  font-weight: 400;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.65),
    0 0 18px rgba(255, 255, 255, 0.35),
    0 0 32px rgba(255, 255, 255, 0.15);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

/* ── Phone mockup ── */
.phone {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.phone__frame {
  position: relative;
  transform-style: preserve-3d;
}

.phone__face {
  position: relative;
  z-index: 3;
  padding: 16px;
  border-radius: 46px;
  background:
    linear-gradient(155deg, #2a2a2a 0%, #121212 38%, #0a0a0a 62%, #181818 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -3px 8px rgba(0, 0, 0, 0.55),
    inset 3px 0 6px rgba(255, 255, 255, 0.04),
    inset -4px 0 10px rgba(0, 0, 0, 0.35),
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateZ(12px);
}

.phone__depth {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.phone__depth--left {
  top: 6%;
  bottom: 6%;
  left: -14px;
  width: 16px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(180deg, #222 0%, #080808 50%, #161616 100%);
  transform: rotateY(68deg);
  transform-origin: right center;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.6);
}

.phone__depth--right {
  top: 6%;
  bottom: 6%;
  right: -14px;
  width: 16px;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #050505 50%, #101010 100%);
  transform: rotateY(-68deg);
  transform-origin: left center;
  box-shadow: inset 2px 0 4px rgba(255, 255, 255, 0.06);
}

.phone__depth--bottom {
  left: 8%;
  right: 8%;
  bottom: -12px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #141414 0%, #030303 100%);
  transform: rotateX(72deg);
  transform-origin: top center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
}

.phone__buttons {
  position: absolute;
  left: -5px;
  top: 28%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.phone__buttons span {
  display: block;
  width: 4px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(180deg, #333 0%, #111 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    1px 0 2px rgba(0, 0, 0, 0.5);
}

.phone__buttons span:nth-child(2) { height: 42px; }

.phone--3d {
  animation: phone-sway 12s ease-in-out infinite;
}

.phone--3d .phone__face::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16) 0%,
    transparent 38%,
    transparent 62%,
    rgba(255, 255, 255, 0.06) 100%
  );
  pointer-events: none;
  z-index: 4;
}

@keyframes phone-sway {
  0%, 100% {
    transform: rotateY(-10deg) rotateX(4deg);
  }
  50% {
    transform: rotateY(10deg) rotateX(4deg);
  }
}

.hero__phone::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 55%;
  height: 24px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
  animation: phone-shadow 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes phone-shadow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1); }
}

.phone__bezel {
  position: relative;
  z-index: 2;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.phone__screen {
  position: relative;
  padding: 2.75rem 0 1.625rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.phone__split {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.phone__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.625rem 0.75rem;
}

.phone__panel--chat {
  border-bottom: 1px solid var(--border);
}

.phone__panel-head {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-dark);
}

.phone__chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  overflow: hidden;
}

.msg--compact {
  max-width: 94%;
  padding: 0.4375rem 0.5rem;
  border-radius: 8px;
  font-size: 0.6875rem;
}

.msg--compact .msg__who {
  font-size: 0.5rem;
  margin-bottom: 0.125rem;
}

.msg--compact .msg__body {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.phone__dash-metrics {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.phone__metric {
  flex: 1;
  padding: 0.375rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.phone__metric-val {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phone__metric--up .phone__metric-val {
  color: #4ade80;
}

.phone__metric-label {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.5rem;
  color: var(--silver-dark);
  letter-spacing: 0.02em;
}

.phone__chart {
  flex: 1;
  min-height: 96px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.375rem;
  overflow: hidden;
}

.phone__chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.phone__island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  border-radius: 20px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.phone__home-bar {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  min-width: 72px;
  max-width: 118px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  z-index: 3;
  pointer-events: none;
}

.phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem 1rem;
  border-bottom: 1px solid var(--border);
}

.phone__header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.phone__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.phone__timer {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--silver);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.phone__caller { text-align: center; margin-bottom: 0.85rem; }

.phone__avatar {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid rgba(200, 212, 226, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
}

.phone__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.phone__num {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: var(--silver-dark);
}

/* waveform */
.phone__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  height: 28px;
  margin-bottom: 0.85rem;
}

.phone__wave span {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: var(--cyan);
  animation: wav 1.1s ease-in-out infinite;
}

.phone__wave span:nth-child(1)  { height: 6px;  animation-delay: 0s; }
.phone__wave span:nth-child(2)  { height: 12px; animation-delay: 0.04s; }
.phone__wave span:nth-child(3)  { height: 18px; animation-delay: 0.08s; }
.phone__wave span:nth-child(4)  { height: 24px; animation-delay: 0.12s; }
.phone__wave span:nth-child(5)  { height: 14px; animation-delay: 0.16s; }
.phone__wave span:nth-child(6)  { height: 8px;  animation-delay: 0.2s; }
.phone__wave span:nth-child(7)  { height: 20px; animation-delay: 0.24s; }
.phone__wave span:nth-child(8)  { height: 26px; animation-delay: 0.28s; }
.phone__wave span:nth-child(9)  { height: 14px; animation-delay: 0.32s; }
.phone__wave span:nth-child(10) { height: 10px; animation-delay: 0.36s; }
.phone__wave span:nth-child(11) { height: 22px; animation-delay: 0.4s; }
.phone__wave span:nth-child(12) { height: 16px; animation-delay: 0.44s; }
.phone__wave span:nth-child(13) { height: 6px;  animation-delay: 0.48s; }
.phone__wave span:nth-child(14) { height: 18px; animation-delay: 0.52s; }
.phone__wave span:nth-child(15) { height: 12px; animation-delay: 0.56s; }
.phone__wave span:nth-child(16) { height: 24px; animation-delay: 0.6s; }
.phone__wave span:nth-child(17) { height: 8px;  animation-delay: 0.64s; }
.phone__wave span:nth-child(18) { height: 20px; animation-delay: 0.68s; }
.phone__wave span:nth-child(19) { height: 14px; animation-delay: 0.72s; }
.phone__wave span:nth-child(20) { height: 10px; animation-delay: 0.76s; }
.phone__wave span:nth-child(21) { height: 6px;  animation-delay: 0.8s; }

@keyframes wav {
  0%, 100% { transform: scaleY(0.35); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.phone__btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.pbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver-dim);
  font: 500 0.55rem/1 var(--font);
  padding: 0;
}

.pbtn svg { opacity: 0.65; }

.pbtn--end {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  justify-content: center;
  flex-direction: row;
}

.pbtn--end svg { opacity: 1; transform: rotate(135deg); }

.phone__transcript {
  flex: 1;
  padding: 1rem 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.msg {
  max-width: 92%;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.msg__who {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.25rem;
}

.msg__body {
  margin: 0;
  color: var(--silver);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.msg--ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.msg--ai .msg__who { color: var(--silver-dim); }

.msg--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.msg--user .msg__who { color: var(--silver-dim); }

.phone__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
  padding: 1rem 0.25rem 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.badge {
  padding: 0.3125rem 0.625rem;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver);
  border: 1px solid var(--border);
}

/* section divider */
.glow-line {
  width: min(720px, 80%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
  opacity: 1;
  position: relative;
  z-index: 1;
  box-shadow: none;
}

/* ═════════════════
   PROBLEM
   ═════════════════ */

.prob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
}

.prob {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.prob:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.prob__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: rgba(160, 180, 204, 0.06);
  border: 1px solid rgba(160, 180, 204, 0.1);
  color: var(--silver);
  padding: 7px;
}

.prob__icon svg {
  width: 100%;
  height: 100%;
}

.prob h3 {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.prob p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--silver-dim);
  line-height: 1.55;
}

/* ═════════════════
   CALCULATOR
   ═════════════════ */

/* Elevate section */
.elevate__sub {
  text-align: center;
  max-width: 560px;
  margin: -0.75rem auto 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--silver-dim);
  line-height: 1.7;
}

.sec__sub {
  text-align: center;
  max-width: 520px;
  margin: -1rem auto 2.75rem;
  font-size: 1rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

#calculator {
  padding: clamp(5rem, 12vh, 8rem) 0;
}

#calculator .sec__h {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
}

.calc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: min(920px, 100%);
  margin: 0 auto;
  width: 100%;
}

.calc__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 720px;
}

.calc__field {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  width: 100%;
}

.calc__field-head {
  width: 100%;
  text-align: center;
}

.calc__field label {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-weight: 500;
  color: var(--silver-dim);
}

.calc__field output {
  text-align: center;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  width: 100%;
}

.calc__field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(200, 210, 230, 0.12);
  outline: none;
  cursor: pointer;
}

.calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(200, 212, 226, 0.25);
  cursor: pointer;
}

.calc__field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--bg);
}

.calc__out {
  text-align: center;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  min-height: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.calc__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--silver-dark);
}

.calc__out-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.calc__stat {
  text-align: center;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-h);
  margin: 0.5rem 0;
}

.calc__big {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calc__big--lost {
  color: #f97316;
  transition: color 0.35s ease;
}

.calc__big--cyan {
  color: var(--white);
}

.calc__sub {
  margin: 0 0 0.5rem;
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  color: var(--silver-dim);
}

.calc__sub strong {
  color: var(--white);
  font-weight: 600;
}

.calc__out .btn {
  margin-top: 0;
  width: 100%;
  max-width: 400px;
  padding: 0.9rem 2rem;
  font-size: 0.875rem;
}

#calculator .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ═════════════════
   PRICING TEASER (blurred)
   ═════════════════ */

#pricing .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-gate {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-gate__blur {
  filter: blur(10px);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
  transform: scale(0.98);
}

.pricing-gate__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
}

.pricing-gate__pill {
  border-radius: 100px;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

/* ═════════════════
   HOW IT WORKS
   ═════════════════ */

.timeline {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan-dim), var(--border));
}

.tl-step {
  position: relative;
  padding-bottom: 2rem;
}

.tl-step:last-child { padding-bottom: 0; }

.tl-step h3 {
  margin: 0.5rem 0 0.375rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.tl-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

.tl-step__n {
  position: absolute;
  left: -50px;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--silver-dim);
  z-index: 1;
}

/* ═════════════════
   FLOW DEMO
   ═════════════════ */

.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.flow__col {
  display: flex;
  flex-direction: column;
}

.flow__num {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.flow__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow__card {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  margin-bottom: 0.85rem;
  flex: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.flow__card:hover {
  border-color: rgba(200, 212, 226, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* Step 1 — incoming call */
.flow__ring-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.flow__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  animation: ring-out 2s ease-out infinite;
}

.flow__ring--2 {
  animation-delay: 0.6s;
}

@keyframes ring-out {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.flow__ring-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.flow__caller-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.flow__caller-num {
  margin: 0.15rem 0 0.75rem;
  font-size: 0.75rem;
  color: var(--silver-dark);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.flow__status {
  display: block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
  animation: status-blink 1.5s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Step 2 — transcript */
.flow__card--transcript {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
}

.flow__msg {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--silver);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.flow__msg.flow-msg--in {
  opacity: 1;
  transform: translateY(0);
}

.flow__msg strong {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}

.flow__msg--ai {
  background: rgba(200, 210, 230, 0.04);
  border: 1px solid var(--border);
}

.flow__msg--ai strong { color: var(--cyan); }

.flow__msg--caller {
  background: var(--cyan-dim);
  border: 1px solid rgba(200, 212, 226, 0.08);
  align-self: flex-end;
}

.flow__msg--caller strong { color: var(--silver-dark); }

/* Step 3 — CRM */
.flow__card--crm {
  padding: 0;
  overflow: hidden;
}

.flow__crm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.15rem;
  font-size: 0.76rem;
  border-bottom: 1px solid var(--border);
}

.flow__crm-row:last-child { border-bottom: none; }
.flow__crm-row span { color: var(--silver-dark); font-size: 0.7rem; }
.flow__crm-row strong { font-weight: 500; color: var(--silver); }

.flow__crm-row--status strong {
  background: linear-gradient(180deg, #E8ECF2, #A8B8CC, #D0D8E4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.flow__integrations {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.flow__integrations span {
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(200, 212, 226, 0.1);
}

.flow__desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--silver-dim);
  line-height: 1.5;
}

/* ── Industry picker ── */
.industry-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.ind-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-h);
  border-radius: 100px;
  background: transparent;
  color: var(--silver-dim);
  font: 500 0.75rem/1 var(--font);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.ind-btn:hover {
  border-color: var(--silver-dim);
  color: var(--white);
}

.ind-btn--active {
  background: var(--white);
  color: #0A0A0A;
  border-color: var(--white);
  font-weight: 600;
}

/* ═════════════════
   FEATURES
   ═════════════════ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border);
}

.feat {
  padding: 1.75rem;
  background: var(--bg);
  transition: background 0.2s ease;
}

.feat:hover { background: var(--bg-elevated); }

.feat__ic {
  width: 24px;
  height: 24px;
  margin-bottom: 1rem;
  color: var(--silver);
}

.feat__ic svg { width: 100%; height: 100%; }

.feat h3 {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.feat p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* ═════════════════
   COMPARISON
   ═════════════════ */

.cmp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto;
}

.cmp__col {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.cmp__col--us {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-card);
}

.cmp__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cmp__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cmp__col li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--silver-dim);
  line-height: 1.5;
}

.ck, .cx {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
}

.ck { background: rgba(255, 255, 255, 0.06); color: var(--white); border: 1px solid var(--border); }
.cx { background: rgba(255, 255, 255, 0.03); color: var(--silver-dark); border: 1px solid var(--border); }

/* ═════════════════
   IMPLEMENTATION
   ═════════════════ */

.impl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.impl__s {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.impl__d {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.75rem;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.impl__s h3 {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.impl__s p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--silver-dim);
  line-height: 1.55;
}

/* ═════════════════
   FAQ
   ═════════════════ */

.faq { max-width: 640px; margin: 0 auto; }

.faq__i { border-bottom: 1px solid var(--border); }
.faq__i:first-child { border-top: 1px solid var(--border); }

.faq__i summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  transition: color 0.2s;
}

.faq__i summary::-webkit-details-marker { display: none; }

.faq__i summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--silver-dark);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__i[open] summary::after { transform: rotate(45deg); }
.faq__i summary:hover { color: var(--silver); }

.faq__a { padding: 0 0 1rem; }

.faq__a p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

.sec--cta {
  text-align: center;
  padding: clamp(5rem, 12vh, 8rem) 0;
}

.sec--cta .sec__h { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.sec--cta .sec__sub { max-width: 440px; margin: -0.75rem auto 2rem; }

.cta-phone { margin-top: 1rem; }

.cta-phone a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-phone a:hover { color: var(--white); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg);
}

.footer__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer__tag {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--silver-dark);
  line-height: 1.5;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--silver-dim);
}

.footer__contact a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__address {
  margin: 0;
  font-style: normal;
  color: var(--silver-dark);
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer__links a { font-size: 0.75rem; color: var(--silver-dim); text-decoration: none; }
.footer__links a:hover { color: var(--white); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.footer__legal span { font-size: 0.65rem; color: var(--silver-dark); }

.footer__preview-link {
  font-size: 0.65rem;
  color: var(--silver-dark);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}

.footer__preview-link:hover {
  opacity: 1;
  color: var(--silver-dim);
}

.footer__tos-btn {
  padding: 0.4375rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--silver);
  font: 500 0.75rem/1 var(--font);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s, background 0.2s;
}

.footer__tos-btn::before {
  display: none;
}

.footer__tos-btn:hover {
  border-color: var(--border-h);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  box-shadow: none;
}

.footer__tos-btn:hover::before { transform: none; }

/* ── Terms of Service modal ── */
.tos {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.tos--open {
  opacity: 1;
  visibility: visible;
}

.tos__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tos__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(22, 22, 28, 0.95) 0%, rgba(8, 8, 12, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(126, 184, 255, 0.06);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s var(--ease);
  overflow: hidden;
}

.tos--open .tos__panel {
  transform: translateY(0) scale(1);
}

.tos__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(200, 212, 226, 0.04) 0%, transparent 100%);
  flex-shrink: 0;
}

.tos__head-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.tos__logo {
  flex-shrink: 0;
}

.tos__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.3;
}

.tos__date {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: var(--silver-dark);
}

.tos__date strong { color: var(--silver-dim); font-weight: 500; }

.tos__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-dim);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tos__close:hover {
  border-color: var(--border-h);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.tos__body {
  padding: 1.1rem 1.35rem 1.35rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--chrome-dim) transparent;
}

.tos__body::-webkit-scrollbar { width: 5px; }
.tos__body::-webkit-scrollbar-thumb {
  background: var(--chrome-dim);
  border-radius: 4px;
}

.tos__lead {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--silver-dim);
}

.tos__section {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.tos__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.tos__section h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}

.tos__section ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tos__section li {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--silver-dim);
}

.tos__section li strong { color: var(--white); font-weight: 600; }

.tos__section a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 184, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.tos__section a:hover {
  color: var(--white);
  border-color: var(--white);
}

.tos__footer-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--silver);
  background: var(--cyan-dim);
  border: 1px solid rgba(200, 212, 226, 0.12);
}

/* ── LeadConnector chat widget ── */
body > div:has(iframe[src*="leadconnectorhq"]),
#chat-widget-container,
[id*="chat-widget"][style*="fixed"],
.lc_text-widget--btn,
.lc_text-widget--bubble {
  transform: scale(0.62) !important;
  transform-origin: bottom right !important;
}

@media (max-width: 767px) {
  body > div:has(iframe[src*="leadconnectorhq"]),
  #chat-widget-container,
  [id*="chat-widget"][style*="fixed"] {
    transform: scale(0.58) !important;
    transform-origin: bottom right !important;
  }
}

/* ── Floating / Sticky (legacy — CTAs removed) ── */
.float-cta { display: none !important; }

.sticky { display: none !important; }

/* ═════════════════
   RESPONSIVE
   ═════════════════ */

@media (min-width: 768px) {
  .navbar__links { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr minmax(300px, 0.9fr);
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
  }

.hero__phone {
    padding-top: 0;
    justify-content: flex-end;
    align-items: center;
    align-self: auto;
    position: relative;
  }

  .hero__phone .phone {
    max-width: 320px;
  }

  .calc { flex-direction: column; max-width: min(920px, 100%); }
  .flow { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }


  .cmp { grid-template-columns: 1fr 1fr; }
  .footer__in {
    grid-template-columns: 1fr auto auto;
    align-items: start;
    justify-items: start;
    text-align: left;
    gap: 1.25rem 2rem;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__contact {
    align-items: flex-start;
  }

  .footer__tag {
    padding-left: 0;
  }

  .footer__links {
    align-items: flex-start;
    justify-content: center;
  }

  .footer__legal {
    justify-self: end;
    justify-content: flex-end;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-left: 0;
    max-width: 800px;
  }

  .timeline::before { display: none; }

  .tl-step { padding-bottom: 0; text-align: center; }
  .tl-step__n { position: relative; left: auto; margin: 0 auto 0.6rem; }
}

@media (max-width: 767px) {
  .navbar__links { display: none !important; }
  .navbar__in { gap: 0; }

  .hero {
    min-height: auto;
    padding: clamp(5rem, 12vh, 6rem) 0 clamp(3rem, 8vh, 4rem);
  }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__brand { display: flex; justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__h { font-size: clamp(2rem, 8vw, 2.75rem); }

  .hero__phone {
    padding-top: 0;
    align-items: center;
    align-self: auto;
    position: relative;
  }

  .hero__phone .phone {
    max-width: 280px;
    margin: 0 auto;
  }

  .sec__h { font-size: clamp(1.5rem, 6vw, 2rem); white-space: normal !important; }
  .sec__h--narrow { white-space: normal !important; }

  .calc { max-width: 100%; }
  .calc__out-inner { grid-template-columns: 1fr; gap: 1rem; }
  .calc__divider { width: 60px; height: 1px; margin: 0 auto; }

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

  .flow__card { padding: 1.2rem; }

  .elevate__sub { font-size: 1rem; }

  .ind-btn { font-size: 0.7rem; padding: 0.4rem 0.8rem; }

  .impl { grid-template-columns: 1fr 1fr; }
  .impl__s { padding: 1.25rem; }

  .sec { padding: clamp(3.5rem, 10vh, 5rem) 0; }

  .sec--cta .sec__h { font-size: clamp(1.5rem, 6.5vw, 2rem); }
}

@media (max-width: 480px) {
  .hero__h { font-size: clamp(1.875rem, 9vw, 2.25rem); }
  .impl { grid-template-columns: 1fr; }
  .cmp__col { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .h-rv { animation: none; opacity: 1; transform: none; }
  .phone--3d { animation: none; transform: rotateY(-8deg) rotateX(4deg); }
  .hero__phone::after { animation: none; }
  .phone__wave span { animation: none; }
  .tos, .tos__panel { transition: none; }
  html { scroll-behavior: auto; }
  .space { display: none; }
}
