/* FreedomDesk — professional dental front desk support */

:root {
  /* Royal blue — trust / infrastructure */
  --navy: #183562;
  --navy-mid: #24508f;
  --navy-soft: #3568ad;
  --blue-deep: #0f2848;
  --blue-royal: #2a5ea8;
  --blue-cobalt: #4580c9;
  --blue-muted: #eef4fc;
  --blue-surface: #f3f7fd;

  /* Crimson — action / onboarding */
  --red: #d63850;
  --red-deep: #b82e44;
  --red-bright: #e8455c;
  --red-glow: rgba(214, 56, 80, 0.38);
  --red-soft: #fef2f4;

  /* Clarity */
  --bg: #ffffff;
  --bg-soft: var(--blue-surface);
  --bg-warm: #f8fafd;
  --text: #183562;
  --text-muted: #4a5872;
  --text-on-navy: rgba(255, 255, 255, 0.78);

  --green: #26855e;
  --green-soft: #edf7f1;

  --border: rgba(24, 53, 98, 0.08);
  --border-navy: rgba(24, 53, 98, 0.12);
  --shadow-sm: 0 2px 20px rgba(24, 53, 98, 0.06);
  --shadow: 0 20px 56px rgba(24, 53, 98, 0.09);
  --shadow-soft: 0 8px 32px rgba(24, 53, 98, 0.07);
  --glow-red: 0 8px 32px rgba(214, 56, 80, 0.32);
  --glow-navy: 0 20px 60px rgba(36, 80, 143, 0.28);
  --glow-blue: 0 16px 48px rgba(53, 104, 173, 0.2);

  --patriotic-gradient: linear-gradient(
    120deg,
    rgba(36, 80, 143, 0.06) 0%,
    rgba(214, 56, 80, 0.04) 45%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(36, 80, 143, 0.04) 100%
  );

  --trim-gradient: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--navy-mid) 32%,
    var(--red) 62%,
    #c5d4e8 100%
  );

  --hero-gradient: linear-gradient(
    168deg,
    var(--blue-deep) 0%,
    var(--navy) 22%,
    var(--navy-mid) 50%,
    #2d5a94 76%,
    #1e4580 100%
  );

  --radius: 20px;
  --radius-sm: 14px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 68px;
  --max-width: 1080px;
  --section-pad: 108px;
  --glass: rgba(255, 255, 255, 0.78);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="up"] { transform: translateY(28px); }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Type */
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.05; color: var(--text); }

h1 {
  font-size: clamp(3.25rem, 9vw, 5.25rem);
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: var(--trim-gradient);
  opacity: 0.75;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 auto 44px;
}

.section-emotion {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  margin: 0 auto 56px;
  max-width: 540px;
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s, box-shadow 0.3s var(--ease), border-color 0.25s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(165deg, var(--red-bright) 0%, var(--red) 48%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(214, 56, 80, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(165deg, #ee5570 0%, var(--red-bright) 42%, var(--red) 100%);
  box-shadow: 0 8px 28px rgba(214, 56, 80, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border-navy);
}

.btn-outline:hover {
  transform: translateY(-1px);
  background: var(--blue-muted);
  border-color: rgba(24, 53, 98, 0.18);
  box-shadow: var(--shadow-soft);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-xl { padding: 19px 42px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color 0.3s;
}

.header.scrolled .logo { color: var(--navy); }

.logo-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo-mark svg {
  display: block;
  width: 32px;
  height: 32px;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-by {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.55;
}

.header-light .logo-by {
  color: var(--text-muted);
  opacity: 0.72;
}

.header.scrolled .logo-by { opacity: 0.45; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s;
}

.nav-links a:not(.btn):hover { color: #fff; }

.header.scrolled .nav-links a:not(.btn) {
  color: var(--text-muted);
}

.header.scrolled .nav-links a:not(.btn):hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}

.header.scrolled .nav-toggle span { background: var(--navy); }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 96px) 0 104px;
  background: var(--hero-gradient);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 48% at 6% 12%, rgba(69, 128, 201, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 94% 22%, rgba(214, 56, 80, 0.11) 0%, transparent 54%),
    radial-gradient(ellipse 52% 38% at 88% 75%, rgba(255, 255, 255, 0.09) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 48% 108%, rgba(53, 104, 173, 0.18) 0%, transparent 62%);
  animation: ambient-shift 16s ease-in-out infinite alternate;
}

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

.hero-orb-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: 6%;
  background: rgba(69, 128, 201, 0.24);
  animation: orb-drift 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 4%;
  background: rgba(214, 56, 80, 0.14);
  animation: orb-drift 22s ease-in-out infinite reverse;
}

@keyframes ambient-shift {
  from { transform: translate(0, 0) scale(1); opacity: 1; }
  to { transform: translate(2%, -2%) scale(1.04); opacity: 0.88; }
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -18px); }
}

.hero-trim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--trim-gradient);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-content { text-align: left; }

.hero-mission {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-headline {
  font-size: clamp(2.875rem, 7.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-subheadline {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 40px;
  max-width: 500px;
  line-height: 1.75;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-promise {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
  max-width: 520px;
}

/* Hero dashboard mockup */
.hero-dashboard {
  position: relative;
  min-height: 380px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.dash-main {
  padding: 22px;
  animation: dash-float 6s ease-in-out infinite;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

.dash-pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.dash-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}

.dash-caller {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.dash-caller strong {
  display: block;
  font-size: 0.9375rem;
  color: #fff;
}

.dash-caller span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.dash-wave-mini {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  margin-bottom: 14px;
}

.dash-wave-mini span {
  flex: 1;
  max-width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  animation: mini-wave 0.9s ease-in-out infinite alternate;
}

.dash-wave-mini span:nth-child(odd) { animation-delay: 0.15s; }
.dash-wave-mini span:nth-child(3n) { animation-delay: 0.3s; }

@keyframes mini-wave {
  from { height: 6px; }
  to { height: 22px; background: rgba(214, 56, 80, 0.8); }
}

.dash-status {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.dash-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.8125rem;
  animation: dash-float 5s ease-in-out infinite;
}

.dash-float strong {
  display: block;
  color: #fff;
  font-size: 0.8125rem;
}

.dash-float span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.dash-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 122, 90, 0.35);
  color: #6ee7a8;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-float-1 { top: -12px; right: -16px; animation-delay: 0.5s; }
.dash-float-2 { bottom: 48px; left: -24px; animation-delay: 1s; }
.dash-float-3 { bottom: -8px; right: 20px; animation-delay: 1.5s; }

@keyframes dash-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.section-curve {
  height: 56px;
  margin-top: -1px;
}

.section-curve-light {
  background: var(--bg-soft);
  clip-path: ellipse(80% 100% at 50% 100%);
  margin-bottom: -28px;
}

.section-curve-soft {
  background: var(--bg);
  clip-path: ellipse(80% 100% at 50% 0%);
  margin-top: -28px;
  margin-bottom: -28px;
}

/* Handle */
.handle {
  padding: calc(var(--section-pad) + 16px) 0 var(--section-pad);
  background: var(--blue-surface);
}

.handle .section-title { margin-bottom: 16px; }

.handle-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.handle-category {
  padding: 32px 28px;
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.handle-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 53, 98, 0.12);
}

.handle-category h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.handle-category li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.handle-category li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}

.handle-category li:last-child { margin-bottom: 0; }

/* Legacy handle-card styles kept for featured block context */
.handle-grid {
  display: none;
}

.handle-card {
  position: relative;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}

.handle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--patriotic-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.handle-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24, 53, 98, 0.12);
  border-color: rgba(214, 56, 80, 0.15);
}

.handle-card:hover::before { opacity: 1; }

.handle-card:hover .handle-icon {
  background: linear-gradient(145deg, var(--red-soft) 0%, #fff 100%);
  transform: scale(1.08);
}

.handle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  background: linear-gradient(145deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--red);
  transition: transform 0.35s var(--ease), background 0.35s;
}

.handle-icon svg {
  width: 22px;
  height: 22px;
}

.handle-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.handle-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.handle-featured {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue-royal) 55%, var(--navy-soft) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--glow-blue);
  position: relative;
  overflow: hidden;
}

.handle-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--trim-gradient);
  opacity: 0.8;
}

.handle-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(214, 56, 80, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.handle-featured-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
}

.handle-featured-icon svg {
  width: 22px;
  height: 22px;
}

.handle-featured h3 {
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.handle-featured p {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 640px;
}

/* Intelligence */
.intelligence {
  padding: var(--section-pad) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.intelligence-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 16px;
}

.section-title-left::after {
  margin: 16px 0 0;
}

.intelligence-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intel-card {
  padding: 28px 24px;
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.intel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.intel-card-accent {
  background: linear-gradient(165deg, #fff 0%, var(--bg-soft) 100%);
  border-color: rgba(24, 53, 98, 0.12);
}

.intel-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.intel-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.intel-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

.intel-list li:last-child { margin-bottom: 0; }

.intel-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.intel-quote {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--navy);
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--bg-soft);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

.intel-quote:last-child { margin-bottom: 0; }

/* Integrations */
.integrations {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-inner {
  text-align: center;
  max-width: 880px;
}

.integrations-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.integrations-title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.integrations-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
}

.integrations-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partner-item {
  flex: 0 1 auto;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 14px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  opacity: 0.82;
}

.partner-item:hover .partner-logo {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 53, 98, 0.14);
}

.partner-dentrix { font-weight: 800; letter-spacing: -0.03em; }
.partner-opendental { font-weight: 600; font-size: 0.875rem; }
.partner-eaglesoft { font-weight: 700; letter-spacing: 0.01em; }
.partner-curve { font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.04em; }
.partner-carestack { font-weight: 700; letter-spacing: -0.01em; }

/* Story */
.story {
  padding: 64px 0;
  background: linear-gradient(168deg, var(--blue-deep) 0%, var(--navy) 42%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(69, 128, 201, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 50% 65% at 85% 45%, rgba(214, 56, 80, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

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

.story-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.story-quote {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}

.story-sub {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

/* Compare */
.compare {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.compare .section-title { margin-bottom: 12px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  padding: 28px 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}

.compare-card:hover { transform: translateY(-3px); }

.compare-before {
  background: linear-gradient(165deg, #fff8f9 0%, var(--red-soft) 100%);
  border-color: rgba(214, 56, 80, 0.16);
  box-shadow: inset 0 0 0 1px rgba(214, 56, 80, 0.05);
}

.compare-after {
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border-color: rgba(24, 53, 98, 0.12);
  box-shadow: var(--shadow);
}

.compare-scene {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  min-height: 88px;
}

.compare-scene-stress {
  background: rgba(214, 56, 80, 0.06);
}

.compare-scene-calm {
  background: rgba(45, 122, 90, 0.06);
}

.scene-meter {
  flex: 1;
  min-width: 0;
}

.scene-meter-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scene-meter-bar {
  display: block;
  height: 6px;
  background: rgba(24, 53, 98, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.scene-meter-fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s var(--ease);
}

.scene-meter-high {
  width: 92%;
  background: linear-gradient(90deg, var(--red) 0%, #d4846f 100%);
}

.scene-meter-low {
  width: 38%;
  background: linear-gradient(90deg, var(--green) 0%, #5cb88a 100%);
}

.scene-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scene-pill {
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
}

.scene-pill-red {
  background: rgba(214, 56, 80, 0.12);
  color: var(--red-deep);
}

.scene-pill-green {
  background: rgba(45, 122, 90, 0.12);
  color: var(--green);
}

.compare-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.compare-after .compare-label { color: var(--navy); }

.compare-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.compare-before li::before { background: var(--red); opacity: 0.75; }
.compare-after li::before { background: var(--green); opacity: 0.85; }

.compare-card li:last-child { margin-bottom: 0; }

/* Hear */
.hear {
  padding: calc(var(--section-pad) + 16px) 0 var(--section-pad);
  background: linear-gradient(180deg, var(--blue-surface) 0%, var(--bg) 100%);
}

.hear .section-title { margin-bottom: 16px; }

.hear-intro {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: -40px auto 32px;
  max-width: 480px;
  letter-spacing: 0.01em;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.demo-tab {
  padding: 12px 20px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.demo-tab:hover {
  color: var(--navy);
  border-color: rgba(24, 53, 98, 0.18);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.demo-tab.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(24, 53, 98, 0.2);
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.demo-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s var(--ease);
}

.demo-panel.is-playing {
  box-shadow: var(--shadow), 0 0 0 1px rgba(24, 53, 98, 0.06);
}

.demo-player {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s, background 0.2s;
}

.demo-btn:active { transform: scale(0.96); }

.demo-play {
  width: 52px;
  height: 52px;
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 50%, var(--red-deep) 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(214, 56, 80, 0.22);
}

.demo-play:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(214, 56, 80, 0.28);
}

.demo-play.is-playing {
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy-mid) 100%);
  box-shadow: var(--glow-blue);
}

.demo-play svg {
  width: 20px;
  height: 20px;
}

.demo-play .demo-icon-play {
  margin-left: 2px;
}

.demo-play .demo-icon-pause { display: none; }

.demo-play.is-playing .demo-icon-play { display: none; }

.demo-play.is-playing .demo-icon-pause { display: block; }

.demo-restart {
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.demo-restart:hover {
  background: var(--bg-soft);
  border-color: rgba(24, 53, 98, 0.14);
}

.demo-restart svg {
  width: 18px;
  height: 18px;
}

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

.demo-call-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.demo-progress {
  height: 4px;
  background: rgba(24, 53, 98, 0.08);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
  cursor: default;
}

.demo-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, var(--navy) 100%);
  border-radius: 2px;
  transition: width 0.15s linear;
}

.demo-panel.is-playing .demo-progress-bar {
  transition: none;
}

.demo-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}

.demo-wave span {
  flex: 1;
  max-width: 4px;
  height: 10px;
  background: rgba(24, 53, 98, 0.12);
  border-radius: 2px;
  transform-origin: center bottom;
}

.demo-panel.is-idle .demo-wave span {
  animation: waveIdle 2.4s ease-in-out infinite;
}

.demo-panel.is-idle .demo-wave span:nth-child(odd) { animation-delay: 0.2s; }
.demo-panel.is-idle .demo-wave span:nth-child(3n) { animation-delay: 0.45s; }
.demo-panel.is-idle .demo-wave span:nth-child(4n) { animation-delay: 0.65s; }

.demo-panel.is-playing .demo-wave span {
  animation: waveActive 0.75s ease-in-out infinite alternate;
}

.demo-panel.is-playing .demo-wave span:nth-child(odd) { animation-delay: 0.08s; }
.demo-panel.is-playing .demo-wave span:nth-child(3n) { animation-delay: 0.18s; }
.demo-panel.is-playing .demo-wave span:nth-child(5n) { animation-delay: 0.28s; }

@keyframes waveIdle {
  0%, 100% { height: 8px; opacity: 0.45; }
  50% { height: 16px; opacity: 0.75; }
}

@keyframes waveActive {
  from { height: 8px; background: rgba(24, 53, 98, 0.15); }
  to { height: 30px; background: var(--red); }
}

.demo-duration {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding-top: 2px;
}

.demo-transcript-wrap {
  position: relative;
  min-height: 240px;
}

.demo-transcript { min-height: 200px; }

.demo-scene {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.demo-scene.active {
  display: block;
  opacity: 1;
  transform: none;
}

.demo-scene.is-leaving,
.demo-scene.active.is-leaving {
  display: block;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.chat-transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}

.chat-bubble {
  max-width: 88%;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.chat-bubble.visible {
  opacity: 1;
  transform: none;
}

.chat-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.chat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.chat-time {
  font-size: 0.6875rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}

.chat-text {
  margin: 0;
}

.chat-patient .chat-time {
  color: rgba(255, 255, 255, 0.45);
}

.chat-agent {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.chat-patient {
  align-self: flex-end;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  border-bottom-right-radius: 4px;
}

.chat-patient .chat-label { color: rgba(255, 255, 255, 0.5); }

.chat-bubble.is-speaking {
  box-shadow: 0 6px 20px rgba(24, 53, 98, 0.1);
}

.chat-agent.is-speaking {
  border-color: rgba(24, 53, 98, 0.16);
}

.chat-patient.is-speaking {
  box-shadow: 0 6px 20px rgba(24, 53, 98, 0.25);
}

.demo-complete {
  margin-top: 16px;
}

.demo-complete[hidden] { display: none !important; }

.demo-complete.is-entering .demo-complete-inner {
  animation: successEnter 0.5s var(--ease) both;
}

.demo-complete-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(165deg, var(--green-soft) 0%, #fff 100%);
  border: 1px solid rgba(45, 122, 90, 0.2);
  border-radius: var(--radius-sm);
}

.demo-complete-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}

.demo-complete-inner strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.demo-complete-inner span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-surface) 50%, var(--bg) 100%);
}

.pricing .section-title { margin-bottom: 16px; }

.pricing-note-top {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 auto 36px;
}

.pricing-note-top strong { color: var(--navy); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card-popular {
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 55%, #fff 100%);
  border-color: rgba(36, 80, 143, 0.16);
  box-shadow: var(--shadow), 0 0 0 1px rgba(53, 104, 173, 0.08);
}

.price-card-popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--trim-gradient);
}

.price-pop {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.price-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-amount { margin-bottom: 20px; }

.price-features {
  margin-bottom: 24px;
}

.price-features li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-reassure {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.price-value {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Setup */
.setup {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.setup-sub,
.team-sub,
.faq-sub {
  max-width: 560px;
  margin-bottom: 56px;
  color: var(--text-muted);
  line-height: 1.65;
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
}

.setup-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(24, 53, 98, 0.1) 15%,
    rgba(24, 53, 98, 0.1) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.setup-step {
  position: relative;
  padding: 36px 28px 32px;
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.setup-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 53, 98, 0.12);
}

.setup-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(165deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.setup-step-icon svg {
  width: 26px;
  height: 26px;
}

.setup-step-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 10px;
}

.setup-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.setup-step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.setup-reassure {
  padding: 40px 44px;
  background: linear-gradient(165deg, var(--navy-mid) 0%, var(--blue-royal) 50%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--glow-blue);
  position: relative;
  overflow: hidden;
}

.setup-reassure::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(214, 56, 80, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.setup-reassure h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.setup-reassure > p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px;
}

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

.setup-trust li {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Team support */
.team-support {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--blue-surface) 0%, var(--blue-muted) 100%);
}

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

.support-card {
  padding: 36px 28px;
  background: linear-gradient(165deg, #fff 0%, var(--blue-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 53, 98, 0.12);
}

.support-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--green-soft);
  border-radius: 14px;
  color: var(--green);
}

.support-card-icon svg {
  width: 24px;
  height: 24px;
}

.support-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.support-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-quote {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: var(--navy);
  line-height: 1.65;
  padding: 32px 40px;
  background: linear-gradient(165deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid rgba(24, 53, 98, 0.1);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--red); }

.faq-question span:first-child {
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), background 0.25s, border-color 0.25s;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), background 0.25s;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #fff;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 4px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(168deg, var(--blue-deep) 0%, var(--navy) 38%, var(--navy-mid) 100%);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 50% 100%, rgba(214, 56, 80, 0.14) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 12% 20%, rgba(69, 128, 201, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 88% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.cta-inner h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: #fff;
}

.cta-inner p {
  font-size: 1.125rem;
  color: var(--text-on-navy);
  margin-bottom: 36px;
}

/* Footer */
.footer {
  position: relative;
  padding: 48px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
}

.footer-trim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--trim-gradient);
  opacity: 0.6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-logo .logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-logo .logo-by {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 53, 98, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s, background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.open.is-success {
  background: rgba(15, 40, 72, 0.74);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 44px 36px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.modal-onboard {
  max-width: 560px;
  padding: 40px 36px 36px;
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.modal-onboard.is-success-state {
  box-shadow:
    0 28px 72px rgba(24, 53, 98, 0.18),
    0 0 0 1px rgba(45, 122, 90, 0.14),
    0 0 56px rgba(45, 122, 90, 0.1);
}

.modal-onboard.is-success-state.is-success-entering {
  animation: modalSuccessEnter 0.65s var(--ease) both;
}

@keyframes modalSuccessEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-onboard.is-success-state::before {
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #4a9d78 45%, var(--navy-soft) 100%);
  opacity: 1;
}

.modal-panel { display: block; }

.modal-panel[hidden] { display: none !important; }

.modal-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  min-height: 320px;
}

.modal-spinner-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--bg-soft);
  border-radius: 50%;
  border: 1px solid var(--border);
}

.modal-spinner,
.btn-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.modal-spinner {
  border-color: rgba(24, 53, 98, 0.1);
  border-top-color: var(--navy);
}

.modal-loading-text {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.modal-loading-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.modal-loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.25;
  animation: loadingDot 1.2s ease-in-out infinite;
}

.modal-loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.modal-loading-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loadingDot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(1); }
  40% { opacity: 0.9; transform: scale(1.15); }
}

.modal-loading-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-error-banner {
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--red-deep);
  background: var(--red-soft);
  border: 1px solid rgba(214, 56, 80, 0.2);
  border-radius: 12px;
  line-height: 1.45;
}

.form-error-banner[hidden] { display: none !important; }

.onboard-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.form-row-full { grid-column: 1 / -1; }

.form-row select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border-navy);
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row select:focus {
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(24, 53, 98, 0.08);
}

.form-row select:invalid,
.form-row input:invalid:not(:placeholder-shown) {
  border-color: rgba(214, 56, 80, 0.35);
}

.form-row.is-invalid input,
.form-row.is-invalid select {
  border-color: rgba(214, 56, 80, 0.5);
  box-shadow: 0 0 0 3px rgba(214, 56, 80, 0.08);
}

.form-row-error {
  display: block;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 5px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 20px;
  line-height: 1.5;
}

#formSubmitBtn,
#contactSubmitBtn {
  position: relative;
  min-height: 54px;
}

#formSubmitBtn.is-loading,
#contactSubmitBtn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

#formSubmitBtn.is-loading .btn-label,
#contactSubmitBtn.is-loading .btn-label { opacity: 0; }

#formSubmitBtn.is-loading .btn-spinner,
#contactSubmitBtn.is-loading .btn-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
}

#formSubmitBtn .btn-spinner,
#contactSubmitBtn .btn-spinner { display: none; }

#formSubmitBtn.is-loading .btn-spinner,
#contactSubmitBtn.is-loading .btn-spinner { display: block; }

/* Success panel */
.modal-panel-success {
  padding: 8px 0 0;
}

.modal-panel-success.is-entering .success-header > * {
  opacity: 0;
}

.modal-panel-success.is-entering .success-icon {
  animation: successIconIn 0.55s var(--ease) 0.05s both, successIconPulse 2.4s ease-in-out 0.7s 1;
}

.modal-panel-success.is-entering .success-check-circle {
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: successCircleDraw 0.5s var(--ease) 0.15s forwards;
}

.modal-panel-success.is-entering .success-check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: successCheckDraw 0.45s var(--ease) 0.45s forwards;
}

.modal-panel-success.is-entering h2 {
  animation: successFadeUp 0.55s var(--ease) 0.28s both;
}

.modal-panel-success.is-entering .success-reassure-line {
  animation: successFadeUp 0.55s var(--ease) 0.36s both;
}

.modal-panel-success.is-entering .success-copy {
  animation: successFadeUp 0.55s var(--ease) 0.44s both;
}

.modal-panel-success.is-entering .success-details {
  animation: successFadeUp 0.55s var(--ease) 0.52s both;
}

.modal-panel-success.is-entering .success-reassure-grid {
  animation: successFadeUp 0.55s var(--ease) 0.6s both;
}

.modal-panel-success.is-entering .success-email-note {
  animation: successFadeUp 0.55s var(--ease) 0.68s both;
}

.modal-panel-success.is-entering .success-actions {
  animation: successFadeUp 0.55s var(--ease) 0.76s both;
}

@keyframes successIconIn {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes successIconPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(45, 122, 90, 0.1); }
  50% { box-shadow: 0 0 0 18px rgba(45, 122, 90, 0.04); }
}

@keyframes successCircleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes successCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-card {
  text-align: center;
}

.success-header {
  margin-bottom: 28px;
}

.success-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: linear-gradient(165deg, #f0faf4 0%, var(--green-soft) 100%);
  border-radius: 50%;
  color: var(--green);
  box-shadow: 0 0 0 10px rgba(45, 122, 90, 0.1);
}

.success-check-svg {
  width: 40px;
  height: 40px;
}

.success-check-circle,
.success-check-path {
  fill: none;
}

.modal-panel-success h2 {
  font-size: clamp(1.4375rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
  color: var(--navy);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.success-reassure-line {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto 10px;
}

.success-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.success-details {
  text-align: left;
  background: linear-gradient(165deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
  margin-bottom: 24px;
}

.success-detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.success-detail-row:last-child { border-bottom: none; }

.success-detail-label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.success-detail-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  word-break: break-word;
}

.success-reassure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.success-reassure-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  line-height: 1.35;
}

.success-check {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}

.success-email-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-schedule-note {
  font-size: 0.8125rem;
  color: var(--green);
  font-weight: 500;
  margin: -2px 0 2px;
  line-height: 1.45;
}

.success-live-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: -4px 0 6px;
  line-height: 1.45;
}

.success-schedule-note[hidden] { display: none !important; }

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--navy); }

.modal-overlay.is-busy .modal-close {
  pointer-events: none;
  opacity: 0.4;
}

.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--trim-gradient);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-brand {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-brand span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.modal-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row { margin-bottom: 16px; }

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-row input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border-navy);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus {
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(24, 53, 98, 0.08);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 14px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9375rem;
  border-radius: 999px;
  box-shadow: var(--glow-navy);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content { text-align: center; }
  .hero-mission { margin-left: auto; margin-right: auto; }
  .hero-subheadline,
  .hero-lead,
  .hero-headline,
  .hero-promise { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-dashboard { min-height: 300px; max-width: 400px; margin: 0 auto; width: 100%; }
  .dash-float-1 { right: 0; }
  .dash-float-2 { left: 0; }

  .handle-categories { grid-template-columns: 1fr; }
  .intelligence-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .setup-steps { grid-template-columns: 1fr; }
  .setup-steps::before { display: none; }
  .support-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .integrations-strip { gap: 8px; }
  .partner-logo { min-width: 110px; padding: 12px 16px; font-size: 0.8125rem; }

  .demo-tabs { gap: 6px; }
  .demo-tab { padding: 10px 16px; font-size: 0.8125rem; min-height: 44px; }

  .demo-controls { flex-direction: row; }
  .demo-play { width: 48px; height: 48px; }
  .demo-restart { width: 44px; height: 44px; }
  .demo-player { gap: 12px; }
  .demo-duration { font-size: 0.75rem; }

  .compare-card { padding: 28px 24px; }
  .compare-card li { font-size: 0.9375rem; }

  .setup-reassure { padding: 32px 24px; }
  .setup-trust { gap: 8px; }
  .setup-trust li { font-size: 0.75rem; padding: 7px 12px; }

  .support-quote { padding: 24px 28px; }

  .faq-question { font-size: 0.9375rem; padding: 18px 2px; }

  .modal-onboard { padding: 32px 24px 28px; }
  .onboard-form .form-grid { grid-template-columns: 1fr; gap: 0; }
  .success-reassure-grid { grid-template-columns: 1fr; }
  .success-detail-row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .success-detail-value { text-align: left; }

  .hero-mission { font-size: 0.625rem; letter-spacing: 0.1em; }

  .hero-headline { font-size: clamp(2.25rem, 9vw, 3.25rem); }

  .hero-subheadline { font-size: 1rem; line-height: 1.5; }

  .hero-lead {
    font-size: 0.9375rem;
    margin-bottom: 32px;
    padding-top: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 32px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links .btn { margin-top: 8px; width: 100%; }

  .header .nav-links a:not(.btn) { color: var(--text-muted); }
  .header .nav-links a:not(.btn):hover { color: var(--navy); }

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-glow, .hero-orb, .dash-main, .dash-float, .dash-wave-mini span,
  .dash-pulse { animation: none; }
  .chat-bubble { opacity: 1; transform: none; transition: none; }
  .demo-panel.is-idle .demo-wave span,
  .demo-panel.is-playing .demo-wave span { animation: none; height: 10px; }
  .demo-complete.is-entering .demo-complete-inner { animation: none; }
  .demo-scene { transition: none; }
  .faq-answer, .faq-icon, .faq-icon::before, .faq-icon::after { transition: none; }
  .modal-panel-success.is-entering .success-icon,
  .modal-panel-success.is-entering .success-check-circle,
  .modal-panel-success.is-entering .success-check-path,
  .modal-panel-success.is-entering h2,
  .modal-panel-success.is-entering .success-reassure-line,
  .modal-panel-success.is-entering .success-copy,
  .modal-panel-success.is-entering .success-details,
  .modal-panel-success.is-entering .success-reassure-grid,
  .modal-panel-success.is-entering .success-email-note,
  .modal-panel-success.is-entering .success-actions { animation: none; opacity: 1; transform: none; }
  .modal-onboard.is-success-state.is-success-entering { animation: none; }
  .modal-loading-dots span { animation: none; opacity: 0.5; }
}

/* ─── Homepage (light, operational) ─── */

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border-navy);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--blue-muted);
  border-color: rgba(24, 53, 98, 0.18);
  box-shadow: var(--shadow-soft);
}

.header-light {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-light .logo {
  color: var(--navy);
  filter: none;
}

.header-light .logo-mark {
  filter: none;
}

.header-light .nav-links a:not(.btn) {
  color: var(--text-muted);
}

.header-light .nav-links a:not(.btn):hover {
  color: var(--navy);
}

.header-light .nav-toggle span {
  background: var(--navy);
}

.hero-light {
  background: linear-gradient(180deg, #fafbfd 0%, var(--bg) 100%);
  padding: calc(var(--header-h) + 72px) 0 112px;
  overflow: visible;
}

.hero-light .hero-inner {
  gap: 64px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-muted);
  border: 1px solid rgba(24, 53, 98, 0.08);
}

.hero-light .hero-headline {
  color: var(--navy);
  font-size: clamp(2.625rem, 6vw, 3.875rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-light .hero-subheadline {
  color: var(--text-muted);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-light .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-trust li {
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-soft);
}

.hero-panel {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-panel-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.hero-stats li {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.hero-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-panel-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header .section-sub {
  margin-bottom: 0;
}

.section-title-plain::after {
  display: none;
}

.section-title-left {
  text-align: left;
  margin-bottom: 16px;
}

.section-title-left::after {
  display: none;
}

.benefits {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.benefit-card:hover {
  border-color: rgba(24, 53, 98, 0.14);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  background: var(--blue-muted);
  color: var(--navy-mid);
  border-radius: 12px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.founder {
  padding: var(--section-pad) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  margin-bottom: 48px;
}

.founder-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-portrait-wrap {
  width: 100%;
  margin: 0 0 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue-surface);
}

.founder-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.founder-signature {
  display: block;
  width: 70%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px;
  opacity: 1;
  object-fit: contain;
  object-position: center;
}

.founder-credentials {
  width: 100%;
  text-align: center;
  padding-top: 2px;
}

.founder-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.founder-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.founder-location {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
}

.founder-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.founder-body p {
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 62ch;
}

.founder-emphasis {
  position: relative;
  margin: 0 0 28px;
  padding: 18px 24px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.5;
  background: linear-gradient(135deg, var(--blue-surface) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy-mid);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.founder-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.founder-problem {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.founder-problem:hover {
  border-color: rgba(24, 53, 98, 0.14);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.founder-problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--blue-muted);
  color: var(--navy-mid);
  border-radius: 12px;
}

.founder-problem-icon svg {
  width: 20px;
  height: 20px;
}

.founder-problem h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.steps-list {
  max-width: 720px;
  margin: 0 auto;
  counter-reset: none;
}

.step-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.step-card:first-child {
  padding-top: 0;
}

.step-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--blue-muted);
  border-radius: 50%;
  border: 1px solid rgba(24, 53, 98, 0.08);
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--navy);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Office workflow */
.office-workflow {
  padding: var(--section-pad) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.workflow-steps {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--navy-soft) 0%, rgba(53, 104, 173, 0.2) 100%);
  border-radius: 1px;
}

.workflow-step {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
}

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

.workflow-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.workflow-marker svg {
  width: 22px;
  height: 22px;
}

.workflow-body {
  flex: 1;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.workflow-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 6px;
}

.workflow-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}

.workflow-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.hear-compact,
.hear-demo {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.hear-demo .demo-panel {
  max-width: 720px;
}

.demo-call-frame {
  padding: 0;
  overflow: hidden;
}

.demo-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--blue-surface);
  border-bottom: 1px solid var(--border);
}

.demo-call-status {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.demo-call-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

.demo-panel.is-playing .demo-call-status::before {
  background: var(--navy-soft);
  animation: demo-pulse 1.4s ease-in-out infinite;
}

.demo-panel.is-complete .demo-call-status::before {
  background: var(--text-muted);
  animation: none;
}

@keyframes demo-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.demo-call-office {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.demo-workflow-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.demo-workflow-bar[hidden] {
  display: none !important;
}

.demo-workflow-step {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.demo-workflow-step.is-active {
  color: var(--navy);
  background: var(--blue-muted);
  border-color: rgba(36, 80, 143, 0.18);
}

.demo-workflow-step.is-done {
  color: var(--green);
  background: var(--green-soft);
  border-color: rgba(38, 133, 94, 0.2);
}

.demo-call-frame .demo-player {
  padding: 24px 24px 20px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.demo-audio-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--blue-surface) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.demo-audio-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--navy-mid);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.demo-audio-placeholder-icon svg {
  width: 22px;
  height: 22px;
}

.demo-audio-placeholder-copy strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.demo-audio-placeholder-copy span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.demo-transcript-only .chat-bubble.visible {
  opacity: 1;
  transform: none;
}

.demo-transcript-only .demo-call-status::before {
  background: var(--navy-mid);
  animation: none;
}

.demo-transcript-only.demo-panel.is-complete .demo-call-status::before {
  background: var(--green);
}

.demo-transcript-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hear-demo .demo-transcript-wrap {
  padding: 20px 24px 24px;
  background: var(--bg-warm);
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
}

.hear-demo .chat-transcript {
  min-height: 240px;
  gap: 12px;
}

.hear-demo .chat-bubble {
  max-width: 92%;
}

.hear-demo .demo-complete {
  margin-top: 20px;
}

.hear-note {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: -32px auto 28px;
  max-width: 420px;
  letter-spacing: 0.01em;
}

.demo-panel-light {
  background: #fff;
  border: 1px solid var(--border);
}

.contact {
  padding: var(--section-pad) 0 calc(var(--section-pad) + 16px);
  background: var(--blue-surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.contact-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

.contact-reassure {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-reassure li {
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 22px;
}

.contact-reassure li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
}

.contact-form-wrap {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.contact-form .form-row-full {
  grid-column: 1 / -1;
}

.contact-form .form-row:not(.form-row-full):nth-child(3) {
  grid-column: 1;
}

.contact-form .form-row:not(.form-row-full):nth-child(4) {
  grid-column: 2;
}

.contact-form .btn-block {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-note-left {
  grid-column: 1 / -1;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 0;
}

.form-success-banner {
  padding: 16px 20px;
  margin-bottom: 24px;
  background: var(--green-soft);
  border: 1px solid rgba(38, 133, 94, 0.2);
  border-radius: 12px;
  line-height: 1.5;
}

.form-success-banner[hidden] {
  display: none !important;
}

.form-success-banner strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--green);
  margin-bottom: 4px;
}

.form-success-banner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-light {
  background: var(--bg);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-light .footer-brand .logo-name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-light .footer-tagline {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-light .footer-copy {
  color: rgba(74, 88, 114, 0.65);
}

.footer-light .footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-light .footer-links a:hover {
  color: var(--navy);
}

/* Pricing (homepage) */
.pricing-home {
  padding: var(--section-pad) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.pricing-tier-note {
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 14px 18px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--navy);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.pricing-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-compare th,
.pricing-compare td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.pricing-compare thead th {
  padding-top: 20px;
  padding-bottom: 18px;
  text-align: center;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-strong);
}

.pricing-compare-feature-col {
  width: 36%;
  min-width: 220px;
  text-align: left !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #fff !important;
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 1px 0 0 var(--border);
}

.pricing-compare-tier {
  width: 21.33%;
  background: #fff;
}

.pricing-compare-tier.is-popular {
  background: linear-gradient(180deg, var(--blue-surface) 0%, #fff 100%);
  box-shadow: inset 0 3px 0 var(--navy-mid);
}

.pricing-compare-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}

.pricing-compare-tier-name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.pricing-compare-tier-price {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-compare-amount {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.pricing-compare tbody th[scope="row"] {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  position: sticky;
  left: 0;
  z-index: 1;
  box-shadow: 1px 0 0 var(--border);
}

.pricing-compare tbody td {
  text-align: center;
  background: #fff;
}

.pricing-compare tbody td:nth-child(3) {
  background: rgba(243, 247, 253, 0.55);
}

.pricing-compare tbody tr:not(.pricing-compare-group):hover td:nth-child(3) {
  background: rgba(243, 247, 253, 0.92);
}

.pricing-compare tbody tr:not(.pricing-compare-group):hover td,
.pricing-compare tbody tr:not(.pricing-compare-group):hover th[scope="row"] {
  background: var(--bg-subtle);
}

.pricing-compare tbody tr:not(.pricing-compare-group):hover th[scope="row"] {
  background: #fff;
}

.pricing-compare-group th {
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  color: var(--navy-mid);
  background: var(--blue-muted) !important;
  border-top: 1px solid var(--border);
  position: static;
  box-shadow: none;
}

.pricing-compare-group:first-child th {
  border-top: none;
}

.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34, 120, 84, 0.08);
  border-radius: 999px;
}

.pricing-dash {
  color: var(--text-dim);
  font-size: 0.9375rem;
  opacity: 0.45;
}

.pricing-compare tfoot th,
.pricing-compare tfoot td {
  border-bottom: none;
  background: var(--bg-subtle);
}

.pricing-compare-cta th {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  position: sticky;
  left: 0;
  z-index: 1;
  box-shadow: 1px 0 0 var(--border);
}

.pricing-compare-cta td {
  padding-top: 18px;
  padding-bottom: 18px;
}

.pricing-compare-cta td:nth-child(3) {
  background: var(--blue-surface);
}

.pricing-home .pricing-reassure {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-lead {
    max-width: none;
  }

  .hero-light .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-light .hero-content {
    text-align: center;
  }

  .hero-light .hero-headline,
  .hero-light .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-light .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-panel {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

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

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .founder-aside {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .founder-portrait-wrap {
    margin-bottom: 0;
  }

  .founder-signature {
    width: 70%;
    margin: 10px auto 14px;
  }

  .founder-credentials {
    text-align: center;
  }

  .founder-headline {
    text-align: center;
  }

  .founder-body p {
    max-width: none;
  }

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

  .workflow-step {
    gap: 20px;
  }
}

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

  .founder-aside {
    max-width: 320px;
  }

  .founder-signature {
    width: 72%;
    margin: 8px auto 12px;
  }

  .founder-problems {
    grid-template-columns: 1fr;
  }

  .pricing-tier-note {
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .pricing-compare {
    min-width: 640px;
  }

  .pricing-compare th,
  .pricing-compare td {
    padding: 12px 12px;
  }

  .pricing-compare-feature-col,
  .pricing-compare tbody th[scope="row"],
  .pricing-compare-cta th {
    min-width: 180px;
  }

  .pricing-compare-amount {
    font-size: 1.5rem;
  }

  .demo-workflow-bar {
    padding: 12px 16px;
    gap: 6px;
  }

  .demo-workflow-step {
    font-size: 0.625rem;
    padding: 4px 8px;
  }

  .hear-demo .demo-transcript-wrap {
    padding: 16px;
    max-height: 360px;
  }

  .demo-call-header {
    padding: 12px 16px;
  }

  .demo-call-frame .demo-player {
    padding: 16px;
  }

  .workflow-steps::before {
    left: 19px;
  }

  .workflow-marker {
    width: 40px;
    height: 40px;
  }

  .workflow-marker svg {
    width: 18px;
    height: 18px;
  }

  .workflow-body {
    padding: 16px 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 14px 18px;
  }

  .hero-stat-value {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .hero-stat-label {
    text-align: right;
    max-width: 140px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row:not(.form-row-full):nth-child(3),
  .contact-form .form-row:not(.form-row-full):nth-child(4) {
    grid-column: 1;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .hero-light {
    padding: calc(var(--header-h) + 48px) 0 80px;
  }

  .hero-light .hero-headline {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

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

  .hero-light .hero-cta .btn {
    width: 100%;
  }
}
