/* ════════════════════════════════════════════
   VOLSAE — Design System
   Navy #0f1c2e · Cyan #00b4d8 · Inter
   ════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1c2e;
  --navy-deep: #0a1422;
  --navy-soft: #16263c;
  --navy-card: #13223a;
  --light: #f6f8fb;
  --white: #ffffff;
  --cyan: #00b4d8;
  --cyan-bright: #2fd0ee;
  --cyan-dim: rgba(0,180,216,0.12);
  --cyan-border: rgba(0,180,216,0.3);
  --ink: #1e293b;
  --muted: #64748b;
  --line-light: #e2e8f0;
  --line-dark: rgba(255,255,255,0.08);
  --line-dark2: rgba(255,255,255,0.16);
  --td: #eaf1f8;
  --td2: rgba(234,241,248,0.65);
  --td3: rgba(234,241,248,0.4);
  --green: #2dd4a7;
  --red: #f87171;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; }

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

.section-dark { background: var(--navy); color: var(--td); }
.section-deep { background: var(--navy-deep); color: var(--td); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

/* ─── TYPE ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--sans); }

.h-display {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.h-section {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}

.section-dark .h-section,
.section-deep .h-section { color: var(--td); }

.h-section .accent { color: var(--cyan); }

.sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 58ch;
}

.section-dark .sub, .section-deep .sub { color: var(--td2); }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(15,28,46,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.nav-logo img { height: 20px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--td2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--td); }
.nav-links a.active { color: var(--cyan); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--navy-deep);
  box-shadow: 0 8px 28px rgba(0,180,216,0.32);
}

.btn-cyan:hover {
  background: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 34px rgba(0,180,216,0.45);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--td);
  border: 1px solid var(--line-dark2);
}

.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.04);
}

.btn-ghost-light {
  background: transparent;
  color: var(--navy);
  border: 1px solid #cbd5e1;
}

.btn-ghost-light:hover { border-color: var(--navy); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; border-radius: 8px; }

.nav-cta {
  background: var(--cyan);
  color: var(--navy-deep) !important;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--cyan-bright); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(ellipse 60% 55% at 70% 10%, rgba(0,180,216,0.14), transparent 60%),
    radial-gradient(ellipse 50% 45% at 15% 90%, rgba(0,180,216,0.08), transparent 60%),
    var(--navy);
  color: var(--td);
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* hero grid overlay removed for cleaner look */

.hero .wrap { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--td2);
  border: 1px solid var(--line-dark2);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  margin-bottom: 2.25rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(45,212,167,0.5);
  animation: livepulse 2s infinite;
  flex-shrink: 0;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 { max-width: 17ch; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--cyan); }

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--td2);
  max-width: 54ch;
  line-height: 1.65;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 4rem;
}

.stat .stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--td);
  line-height: 1;
}

.stat .stat-num em { font-style: normal; color: var(--cyan); }

.stat .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--td3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ─── CLIENT STRIP ─── */
.client-strip {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-dark);
  padding: 1.6rem 0;
}

.client-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.client-strip .cs-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--td3);
}

.client-wordmark {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--td2);
  white-space: nowrap;
}

/* ─── SECTION PADDING ─── */
.sec { padding: 7rem 0; }
.sec-head { margin-bottom: 3.5rem; }
.sec-head .sub { margin-top: 1.1rem; }

/* ─── OUTCOME STATS BAND ─── */
.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.outcome {
  background: transparent;
  border: none;
  border-top: 2px solid var(--line-light);
  border-radius: 0;
  padding: 1.6rem 0.25rem 0;
}

.outcome .o-num {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cyan);
  line-height: 1;
}

.outcome .o-num em { font-style: normal; color: var(--cyan); }

.outcome .o-label {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ─── BENTO ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 2.2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  box-shadow: 0 18px 44px rgba(15,28,46,0.09);
  transform: translateY(-3px);
  border-color: #cfdae6;
}

.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }

.bento-card.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--td);
}

.bento-card.dark:hover { box-shadow: 0 18px 44px rgba(15,28,46,0.28); }

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.35rem;
  flex-shrink: 0;
}

.bento-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.bento-card.dark h3 { color: var(--td); }

.bento-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
}

.bento-card.dark p { color: var(--td2); }

.bento-link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bento-link:hover { color: var(--cyan-bright); }

/* ─── COMPARISON (industry-agnostic) ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare-side {
  border-radius: 18px;
  padding: 2.4rem 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.compare-side.without {
  background: var(--white);
  border: 1px solid var(--line-light);
}

.compare-side.with {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--td);
}

.compare-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.compare-side.with .compare-label { color: var(--cyan); }

.compare-headline {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.compare-side.with .compare-headline { color: var(--td); }
.compare-side.with .compare-headline em { font-style: normal; color: var(--cyan); }

.compare-tagline {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.compare-side.with .compare-tagline { color: var(--td3); }

.compare-feed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.compare-feed li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.62rem 0.85rem;
  border-radius: 8px;
  font-size: 0.86rem;
  background: var(--light);
  border: 1px solid var(--line-light);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.compare-side.with .compare-feed li {
  background: rgba(255,255,255,0.035);
  border-color: var(--line-dark);
}

.compare-feed.animate li { opacity: 0; transform: translateY(6px); }
.compare-feed.animate li.visible { opacity: 1; transform: none; }

.compare-feed .time {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.compare-side.with .compare-feed .time { color: var(--td3); }

.compare-feed .label { color: var(--ink); font-weight: 500; }
.compare-side.with .compare-feed .label { color: var(--td2); }

.compare-feed .status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 5px;
  white-space: nowrap;
}

.status.missed { color: #dc2626; background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.18); }
.status.voicemail { color: var(--muted); background: rgba(100,116,139,0.08); border: 1px solid rgba(100,116,139,0.2); }
.status.booked { color: var(--green); background: rgba(45,212,167,0.1); border: 1px solid rgba(45,212,167,0.25); }

.compare-totals {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px dashed var(--line-light);
  display: flex;
  gap: 2.4rem;
}

.compare-side.with .compare-totals { border-top-color: var(--line-dark2); }

.compare-total .num {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.compare-total.bad .num { color: #dc2626; }
.compare-total.good .num { color: var(--green); }
.compare-total.neutral .num { color: var(--muted); }

.compare-total .lbl {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-side.with .compare-total .lbl { color: var(--td3); }

/* ─── DEMO CALL SECTION (dark, preserved) ─── */
.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
  min-height: 520px;
}

.call-panel {
  background: var(--navy-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 640px;
}

.call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.call-header-left { display: flex; align-items: center; gap: 0.75rem; }

.call-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.call-info h4 { font-size: 0.92rem; font-weight: 600; color: var(--td); }
.call-info p { font-size: 0.74rem; color: var(--td3); font-weight: 500; }

.call-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
}

.transcript {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  overflow: hidden;
  min-height: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%);
}

.msg {
  display: none;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.msg.show { display: flex; opacity: 1; transform: none; }

.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
}

.msg-avatar.ai { background: linear-gradient(135deg, var(--cyan), #0077b6); color: var(--navy-deep); }
.msg-avatar.user { background: var(--navy-soft); border: 1px solid var(--line-dark2); color: var(--td2); }

.msg-bubble { flex: 1; }

.msg-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--td3);
  margin-bottom: 0.28rem;
  letter-spacing: 0.05em;
}

.msg-text { font-size: 0.89rem; color: var(--td); line-height: 1.55; }
.msg.user .msg-text { color: var(--td2); }

.call-controls {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--cyan);
  border: none;
  padding: 0.68rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}

.play-btn:hover { background: var(--cyan-bright); transform: translateY(-1px); }

.play-btn.playing {
  background: var(--navy-soft);
  border: 1px solid var(--line-dark2);
  color: var(--td2);
}

.waveform { display: flex; align-items: center; gap: 3px; height: 24px; }

.wave-bar {
  width: 3px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0.4;
}

.waveform.active .wave-bar { opacity: 0.85; animation: waveanim 0.8s ease-in-out infinite; }
.waveform.active .wave-bar:nth-child(1) { animation-delay: 0s; }
.waveform.active .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.waveform.active .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.waveform.active .wave-bar:nth-child(4) { animation-delay: 0.15s; }
.waveform.active .wave-bar:nth-child(5) { animation-delay: 0.05s; }
.waveform.active .wave-bar:nth-child(6) { animation-delay: 0.25s; }
.waveform.active .wave-bar:nth-child(7) { animation-delay: 0.1s; }

@keyframes waveanim {
  0%, 100% { height: 4px; }
  50% { height: 18px; }
}

/* Calendar panel */
.calendar-panel {
  background: var(--navy-deep);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-title { font-size: 0.9rem; font-weight: 600; color: var(--td); }
.cal-month { font-size: 0.72rem; font-weight: 600; color: var(--td3); letter-spacing: 0.1em; }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cal-day-label {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--td3);
  letter-spacing: 0.08em;
  padding: 0.4rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 4px;
  flex: 1;
}

.cal-slot {
  border-radius: 5px;
  border: 1px solid var(--line-dark);
  background: var(--navy-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}

.cal-slot-time {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--td3);
  letter-spacing: 0.04em;
}

.cal-slot.booked { background: rgba(0,180,216,0.13); border-color: rgba(0,180,216,0.32); }
.cal-slot.booked .cal-slot-time { color: var(--cyan-bright); }

.cal-slot.new-booking {
  background: rgba(0,180,216,0.28) !important;
  border-color: rgba(0,180,216,0.65) !important;
  box-shadow: 0 0 16px rgba(0,180,216,0.3);
}

.cal-slot.new-booking .cal-slot-time { color: #aee9f5; }

.booking-label {
  position: absolute;
  right: 0.4rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(0,180,216,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.new-booking-indicator {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
  border-radius: 5px 0 0 5px;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ─── LIVE DEMO CARDS ─── */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.demo-card {
  background: var(--navy-card);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 2.3rem;
  transition: border-color 0.2s, transform 0.2s;
}

.demo-card:hover { border-color: var(--line-dark2); transform: translateY(-2px); }

.demo-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.demo-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
}

.demo-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}

.demo-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--td);
  margin-bottom: 0.5rem;
}

.demo-card p {
  font-size: 0.9rem;
  color: var(--td2);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.demo-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--td);
  background: var(--navy-deep);
  border: 1px solid var(--line-dark2);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.demo-phone:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
  box-shadow: 0 0 18px rgba(0,180,216,0.2);
}

/* ─── PRICING ─── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 2.5rem;
  transition: box-shadow 0.25s;
}

.pricing-card:hover { box-shadow: 0 18px 44px rgba(15,28,46,0.08); }

.pricing-card.featured {
  border-color: var(--cyan-border);
  background: linear-gradient(160deg, rgba(0,180,216,0.05), var(--white) 55%);
}

.pricing-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-card-label { color: var(--cyan); }

.pricing-amount {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}

.pricing-unit { font-size: 0.92rem; font-weight: 500; color: var(--muted); margin-left: 0.3rem; }

.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.62;
  margin: 0.9rem 0 1.9rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
}

.pricing-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(45,212,167,0.14);
  border: 1px solid rgba(45,212,167,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0e9f7a;
  margin-top: 2px;
}

/* ─── ROI (dark, preserved) ─── */
.roi-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
}

.roi-inputs {
  background: var(--navy-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roi-input { display: flex; flex-direction: column; gap: 0.65rem; }

.roi-input-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.roi-input-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--td3);
}

.roi-input-value {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--td);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.roi-input-value .unit {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--td3);
  margin-left: 0.3rem;
  letter-spacing: 0.06em;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--cyan) 0%, var(--cyan) var(--fill,30%), var(--navy-soft) var(--fill,30%), var(--navy-soft) 100%);
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--td);
  border: 3px solid var(--cyan);
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(0,180,216,0.18), 0 0 14px rgba(0,180,216,0.35);
  transition: transform 0.15s;
}

.roi-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.08); }

.roi-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--td);
  border: 3px solid var(--cyan);
  cursor: grab;
  box-shadow: 0 0 0 4px rgba(0,180,216,0.18), 0 0 14px rgba(0,180,216,0.35);
}

.roi-input-hint { font-size: 0.78rem; color: var(--td3); }

.roi-output {
  background: linear-gradient(160deg, rgba(0,180,216,0.1), var(--navy-deep) 65%);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.roi-output::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,180,216,0.18), transparent 65%);
  pointer-events: none;
}

.roi-output-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.roi-output-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,180,216,0.5);
}

.roi-headline {
  font-size: 1.02rem;
  color: var(--td2);
  line-height: 1.5;
  position: relative;
}

.roi-big {
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--td);
  line-height: 1;
  letter-spacing: -0.035em;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.roi-big .currency { font-size: 1.5rem; font-weight: 700; color: var(--td3); }
.roi-big .per { font-size: 0.85rem; font-weight: 600; color: var(--td3); margin-left: 0.4rem; letter-spacing: 0.04em; }

.roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  position: relative;
}

.roi-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
}

.roi-breakdown-row .key { color: var(--td3); font-size: 0.8rem; font-weight: 500; }
.roi-breakdown-row .val { color: var(--td2); font-weight: 600; font-variant-numeric: tabular-nums; }
.roi-breakdown-row.savings .val { color: var(--green); }

/* ─── INTEGRATIONS MARQUEE ─── */
.integrations-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  gap: 1rem;
}

.integrations-track {
  display: flex;
  gap: 1rem;
  animation: int-marquee 45s linear infinite;
  flex-shrink: 0;
  padding-left: 1rem;
}

@keyframes int-marquee {
  to { transform: translateX(calc(-100% - 1rem)); }
}

.integrations-marquee:hover .integrations-track { animation-play-state: paused; }

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  min-width: 205px;
  height: 74px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.integration-logo:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,28,46,0.07);
}

.integration-logo img {
  height: 24px; width: 24px;
  object-fit: contain;
  opacity: 0.75;
  flex-shrink: 0;
}

.integration-logo span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* ─── CTA ─── */
.cta-section {
  background:
    radial-gradient(ellipse 55% 60% at 50% 110%, rgba(0,180,216,0.16), transparent 65%),
    var(--navy);
  color: var(--td);
  padding: 8.5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}

.cta-section h2 .accent { color: var(--cyan); }

.cta-section p {
  font-size: 1.08rem;
  color: var(--td2);
  margin-bottom: 2.75rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--navy-deep);
  color: var(--td2);
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img { height: 18px; width: auto; margin-bottom: 1.1rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--td3);
  line-height: 1.6;
  max-width: 30ch;
}

.footer-brand a.mail {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

.footer-brand a.mail:hover { color: var(--cyan-bright); }

.footer-col h5 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--td3);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--td2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--td); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--td3);
}

.footer-bottom a { color: var(--td3); text-decoration: none; }
.footer-bottom a:hover { color: var(--td2); }

/* ─── SUBPAGE HERO ─── */
.page-hero {
  background:
    radial-gradient(ellipse 55% 60% at 75% 0%, rgba(0,180,216,0.13), transparent 60%),
    var(--navy);
  color: var(--td);
  padding: 10.5rem 0 5.5rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 20ch;
  margin-bottom: 1.4rem;
}

.page-hero h1 .accent { color: var(--cyan); }

.page-hero .sub { color: var(--td2); }

/* ─── PROSE (legal / about body) ─── */
.prose { max-width: 720px; }

.prose h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 2.6rem 0 0.9rem;
}

.prose p { font-size: 1rem; color: #3b4a5e; line-height: 1.75; margin-bottom: 1.1rem; }

.prose ul { margin: 0 0 1.1rem 1.3rem; }
.prose li { font-size: 1rem; color: #3b4a5e; line-height: 1.7; margin-bottom: 0.4rem; }

.prose strong { color: var(--navy); font-weight: 600; }

.prose-lede { font-size: 1.18rem !important; color: var(--ink) !important; line-height: 1.7 !important; }

/* ─── REVEAL ─── */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .integrations-track { animation: none; }
}

/* ─── MOBILE CTA BAR ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.75rem 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10,20,34,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-dark2);
  gap: 0.5rem;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-cta-bar a.primary { background: var(--cyan); color: var(--navy-deep); }
.mobile-cta-bar a.secondary { background: rgba(255,255,255,0.07); color: var(--td); border: 1px solid var(--line-dark2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .bento-card.span-2 { grid-column: span 3; }
  .outcomes { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav.site-nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .wrap { padding: 0 1.25rem; }
  .hero { padding: 8.5rem 0 4.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .sec { padding: 4.5rem 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-3, .bento-card.span-2, .bento-card.span-4, .bento-card.span-6 { grid-column: span 1; }
  .compare-grid { grid-template-columns: 1fr; }
  .demo-container { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .roi-container { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .outcome { padding: 1.4rem 1.2rem; }
  .cta-section { padding: 6rem 0; }
  .mobile-cta-bar { display: flex; }
  body.has-mobile-cta { padding-bottom: 70px; }
  .page-hero { padding: 8.5rem 0 4rem; }

  /* Calendar fixes for small screens */
  .calendar-panel { padding: 1.25rem; }
  .cal-grid { gap: 3px; }
  .cal-slot { min-height: 32px; padding: 0 0.35rem; justify-content: center; }
  .cal-slot-time { font-size: 0.55rem; }
  .booking-label { display: none !important; }
  .cal-slot.booked { justify-content: center; }
}
