/* Anservo AI Marketing Site */
@import url('assets/css/anservo-brand.css');
:root {
  --primary: #4F46E5;
  --primary-deep: #3730A3;
  --primary-hover: #4338CA;
  --tint: #EEF0FE;
  --lavender: #F6F6FB;
  --ink: #1E1B3A;
  --body: #4B5563;
  --white: #ffffff;
  --border: rgba(30, 27, 58, 0.08);
  --shadow: 0 8px 32px rgba(30, 27, 58, 0.08);
  --shadow-lg: 0 24px 64px rgba(30, 27, 58, 0.16);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --accent-light: #A5D4C8;
  --accent-glow: rgba(137, 169, 148, 0.4);
  --hero-gradient: linear-gradient(105deg, #3a5c54 0%, #4a6f66 14%, #5d8578 28%, #72a08f 42%, #89a994 56%, #a8c4b4 70%, #c8d9d4 84%, #dce7e8 100%);
  --showcase-bg: radial-gradient(ellipse 110% 95% at 50% -8%, #3a574d 0%, #36534b 32%, #2a423a 58%, #1a2a24 100%);
  --showcase-accent: #6366f1;
  --cta-gradient: linear-gradient(135deg, #3a5c54 0%, #4d756a 50%, #6d9485 100%);
  --space-xs: 16px;
  --space-sm: 24px;
  --space-md: 40px;
  --space-lg: 64px;
  --space-xl: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: transparent;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.page-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/img/page-background.png") center center / cover no-repeat;
}
main { position: relative; z-index: 1; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.btn-frosted {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn-frosted:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(30, 27, 58, 0.12);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(30, 27, 58, 0.16);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(30, 27, 58, 0.35);
}
.btn-dark:hover {
  background: #2d2952;
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}
.btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(30, 27, 58, 0.08);
}
.site-nav.scrolled .site-nav-links a {
  color: var(--body);
}
.site-nav.scrolled .site-nav-links a:hover { color: var(--ink); }
.site-nav.scrolled .site-nav-toggle span { background: var(--ink); }
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
/* Nav bar spans the full viewport width so the logo sits in the true
   top-left corner with only 24px edge padding (no centered dead space) */
.site-nav .container,
.legal-nav .container {
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}
/* Single image logo, identical in every location */
.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  margin: 0;
}
.site-logo img {
  height: 46px;
  width: auto;
  display: block;
  opacity: 1;
}
@media (max-width: 640px) {
  .site-logo img { height: 36px; }
}
/* legacy mark hooks kept inert so stray markup never resurfaces a circle */
.site-logo-mark {
  display: none !important;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}
.site-nav-links a:hover { color: var(--white); }
.site-nav-actions { flex-shrink: 0; }
.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.site-nav.open .site-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.open .site-nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.open .site-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 var(--space-sm);
  background: transparent;
  overflow: visible;
  text-align: center;
}
.hero::before {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-md);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.hero-eyebrow svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 980px;
}
.hero-headline {
  text-align: center;
  text-wrap: balance;
}

.hero-line-primary {
  display: block;
  white-space: nowrap;
  line-height: 1.08;
}

.hero-line-for,
.hero-line-rotate {
  display: block;
  line-height: 1.08;
}

@media (max-width: 480px) {
  .hero-line-primary {
    white-space: normal;
  }
}

.hero-rotate-wrap {
  position: relative;
  display: inline-block;
  height: 1.12em;
  vertical-align: bottom;
  text-align: center;
}
.hero-rotate-wrap .hero-rotate {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  white-space: nowrap;
  display: block;
  width: max-content;
  color: #0f766e;
  font-style: italic;
  font-weight: 600;
}
.hero-rotate-wrap .hero-rotate.is-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--body);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: var(--space-sm);
}
.hero-product {
  position: relative;
  z-index: 3;
  padding: 0 24px var(--space-sm);
  margin: 0;
}
.hero-accent {
  color: var(--accent-light);
}
.hero-product-inner {
  max-width: 1100px;
  margin: 0 auto;
  transform: perspective(1200px) rotateX(6deg) translateY(24px);
  opacity: 0;
  transition: transform 0.35s ease;
}
.reveal-hero.is-visible .hero-product-inner {
  opacity: 1;
  transform: perspective(1200px) rotateX(6deg) translateY(0);
}
.hero-product-inner:hover {
  transform: translateY(-4px);
}
.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Sticky demo pill */
.sticky-demo {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.sticky-demo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-demo .btn-dark {
  padding: 12px 20px;
  font-size: 0.875rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.sticky-demo kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-family: inherit;
  margin-right: 4px;
}

/* Section utilities */
.section {
  padding: var(--space-xl) 0;
}
.section-lavender { background: var(--white); }
.section-white { background: var(--white); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-md);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
/* Keep FAQ eyebrow above heading without changing sizing. */
body.landing-page #faq .section-header .section-eyebrow {
  display: block;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
#features .section-header {
  max-width: min(100%, 920px);
}
#features-heading {
  white-space: nowrap;
}
@media (max-width: 640px) {
  #features-heading {
    white-space: normal;
  }
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--body);
  margin: 0;
  line-height: 1.65;
}

/* Hero flows into try-live; section chrome owned by .tryLive */
#try-live.tryLive {
  padding-top: clamp(72px, 9vh, 112px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

#try-live .tryLive-header {
  margin-bottom: 40px;
}
.placeholder-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--body);
  font-style: italic;
}

/* Live demo */
.live-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.live-demo-tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.live-demo-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.live-demo-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.live-demo-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.live-demo-panel.active { display: grid; }
.transcript-card,
.data-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.transcript-header,
.data-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.transcript-body {
  padding: 20px;
  max-height: 380px;
  overflow-y: auto;
}
.transcript-line {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.4s forwards;
}
.transcript-line.agent { color: var(--primary); }
.transcript-line.caller strong,
.transcript-line.agent strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--body);
}
.transcript-line.agent strong { color: var(--primary); }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.data-body { padding: 20px; }
.data-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--body);
  opacity: 0.35;
  transition: opacity 0.4s, color 0.4s;
}
.data-item:last-child { border-bottom: none; }
.data-item.filled {
  opacity: 1;
  color: var(--ink);
}
.data-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.data-item.filled .data-check {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Value stats (#why-anservo) */
#why-anservo {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

#why-anservo .section-header {
  margin-bottom: var(--space-md);
}

.valueStats {
  --vs-ink: #0F172A;
  --vs-body: #475569;
  --vs-muted: #64748B;
  --vs-faint: #94A3B8;
  --vs-green: #10B981;
  --vs-green-deep: #059669;
  --vs-teal: #0EA5A4;
  --vs-card: #FFFFFF;
  --vs-border: #E6E8F0;
  --vs-tag-bg: #EEF2F6;
  --vs-fix-bg: rgba(16, 185, 129, 0.08);
  --vs-chip-green: rgba(16, 185, 129, 0.12);
  --vs-chip-teal: rgba(14, 165, 164, 0.12);
  --vs-shadow: 0 18px 44px -22px rgba(15, 23, 42, 0.16);
  --vs-shadow-hover: 0 24px 52px -22px rgba(15, 23, 42, 0.22);
}

.valueStats .vs-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.valueStats .vs-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  height: 100%;
  padding: 28px;
  background: var(--vs-card);
  border: 1px solid var(--vs-border);
  border-radius: 20px;
  box-shadow: var(--vs-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.valueStats .vs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vs-shadow-hover);
}

.valueStats .vs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.valueStats .vs-chip {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.valueStats .vs-chip-green {
  background: var(--vs-chip-green);
  color: var(--vs-green-deep);
}

.valueStats .vs-chip-teal {
  background: var(--vs-chip-teal);
  color: var(--vs-teal);
}

.valueStats .vs-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vs-faint);
  background: var(--vs-tag-bg);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
}

.valueStats .vs-stat {
  margin: 0;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 700;
  line-height: 1;
  color: var(--vs-ink);
  font-variant-numeric: tabular-nums;
}

.valueStats .vs-title {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--vs-ink);
}

.valueStats .vs-context {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--vs-body);
}

.valueStats .vs-fix {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: var(--vs-fix-bg);
  border-radius: 10px;
}

.valueStats .vs-fix-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--vs-green-deep);
}

.valueStats .vs-fix p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--vs-green-deep);
}

.valueStats .vs-source {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 12px;
  font-weight: 400;
  color: var(--vs-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.valueStats .vs-source:hover,
.valueStats .vs-source:focus-visible {
  color: var(--vs-muted);
  text-decoration: underline;
}

.valueStats .vs-source svg {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .valueStats .vs-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 639px) {
  .valueStats .vs-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .valueStats .vs-card {
    padding: 24px;
  }

  .valueStats .vs-stat {
    font-size: clamp(36px, 10vw, 44px);
  }
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  padding: 40px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-placeholder {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px dashed var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--body);
  white-space: nowrap;
}

/* Feature blocks */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}
.feature-block.reverse .feature-copy { order: 2; }
.feature-block.reverse .feature-visual { order: 1; }
.feature-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.feature-copy p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.65;
  margin: 0 0 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--body);
  margin-bottom: 12px;
  line-height: 1.5;
}
.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-visual {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mock-row:last-child { border-bottom: none; }
.mock-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-val {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
}

/* Showcase (safety + phone) */
.showcase-section {
  padding: var(--space-xl) 0;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
}
.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.showcase-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 16px;
}
.showcase-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}
.showcase-lead {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.65;
  margin: 0 0 var(--space-md);
  max-width: 540px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-md);
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.benefit-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(165, 180, 252, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
}
.benefit-info {
  flex: 1;
  min-width: 0;
}
.benefit-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--white);
  line-height: 1.3;
}
.benefit-info p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.5;
}
.showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.showcase-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 27, 58, 0.1);
  color: var(--body);
}

/* Case studies */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.case-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}
.case-card h3 {
  font-size: 1.125rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.case-card p {
  font-size: 0.9rem;
  color: var(--body);
  margin: 0 0 24px;
  line-height: 1.6;
}
.case-metrics {
  display: flex;
  gap: 24px;
}
.case-metric strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.case-metric span {
  font-size: 0.75rem;
  color: var(--body);
}

/* EMR grid */
.emr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.emr-tile {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.emr-tile:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.emr-tile.placeholder {
  color: var(--body);
  border-style: dashed;
  font-weight: 500;
}

/* CTA band */
.cta-band {
  background: transparent;
  padding: 80px 0;
  text-align: center;
  color: var(--ink);
}
.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-white { color: #2f4a44; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 32px;
}
.site-footer .site-logo {
  margin-bottom: 12px;
}
/* Footer logo slightly smaller than the enlarged header logo */
.site-footer .site-logo img {
  height: 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  margin-bottom: 0;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.16); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
}
.footer-contact {
  margin-top: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--white); }

/* Legal pages */
.legal-page {
  padding: 120px 0 80px;
  background: var(--lavender);
  min-height: 100vh;
}
.legal-page .container {
  max-width: 760px;
}
.legal-page h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--ink);
}
.legal-meta {
  font-size: 0.875rem;
  color: var(--body);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.7;
}
.legal-page ul,
.legal-page ol {
  margin: 12px 0;
  padding-left: 24px;
}
.legal-page li { margin-bottom: 8px; }
.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.legal-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-nav + .post-hero {
  padding-top: 112px;
  overflow: visible;
}
.legal-nav + .post-hero .eyebrow {
  display: block;
  line-height: 1.6;
  padding-top: 4px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-media {
  height: 140px;
  border-radius: 14px;
  background: var(--lavender);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--body);
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.6;
}
.testimonial-card footer strong {
  display: block;
  color: var(--ink);
  font-size: 0.9375rem;
}
.testimonial-card footer span {
  display: block;
  font-size: 0.8125rem;
  color: var(--body);
  margin-top: 2px;
}
.section-inline-cta {
  text-align: center;
  margin-top: 32px;
}

/* Quick call — living call card (#quick-call only) */
#quick-call.quick-call-section {
  padding-top: clamp(40px, 5vh, 56px);
  padding-bottom: clamp(28px, 4vh, 40px);
}

body.landing-page #quick-call.quick-call-section {
  padding-top: clamp(40px, 5vh, 56px);
  padding-bottom: clamp(28px, 4vh, 40px);
}

#quick-call .quick-call-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  #quick-call .quick-call-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    column-gap: 56px;
    align-items: end;
  }

  #quick-call .quick-call-copy {
    align-self: start;
  }

  #quick-call .qc-stage {
    align-self: end;
    justify-content: flex-end;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #quick-call .quick-call-layout {
    column-gap: 32px;
  }
}

body.landing-page #quick-call .quick-call-layout {
  align-items: start;
}

@media (min-width: 768px) {
  body.landing-page #quick-call .quick-call-layout {
    align-items: end;
  }
}

#quick-call .quick-call-copy {
  max-width: 480px;
  width: 100%;
}

#quick-call .section-eyebrow {
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#quick-call .quick-call-copy h2 {
  color: #0f172a;
}

#quick-call .quick-call-copy > p:not(.section-eyebrow) {
  color: #64748b;
}

#quick-call .qc-tick-block {
  margin-top: 20px;
}

#quick-call .qc-caps-eyebrow {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #059669;
}

#quick-call .qc-caps-hook {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #475569;
}

#quick-call .qc-tick-wrap {
  position: relative;
  margin-top: 12px;
}

#quick-call .qc-tick-rail {
  position: absolute;
  left: 22px;
  top: 16px;
  bottom: 40px;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

#quick-call .qc-tick-rail-track,
#quick-call .qc-tick-rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  border-radius: 1px;
}

#quick-call .qc-tick-rail-track {
  height: 100%;
  background: #e2e8f0;
}

#quick-call .qc-tick-rail-fill {
  height: 100%;
  background: #10b981;
  transform-origin: top center;
  transform: scaleY(1);
}

#quick-call .qc-tick-animating .qc-tick-rail-fill {
  transform: scaleY(0);
}

#quick-call .qc-tick {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

#quick-call .qc-tick-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  min-height: 74px;
  padding-bottom: 14px;
  cursor: default;
  border-radius: 10px;
  transition: background 0.2s ease;
}

#quick-call .qc-tick-row:last-child {
  padding-bottom: 6px;
  min-height: 58px;
}

#quick-call .qc-tick-row.is-done:hover {
  background: rgba(16, 185, 129, 0.04);
}

#quick-call .qc-tick-node-col {
  width: 44px;
  display: flex;
  justify-content: center;
  padding-top: 0;
}

#quick-call .qc-node {
  position: relative;
  width: 32px;
  height: 32px;
  perspective: 600px;
  z-index: 2;
  flex-shrink: 0;
}

#quick-call .qc-node-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

#quick-call .qc-tick-row.is-done .qc-node-inner {
  transform: rotateY(180deg);
}

#quick-call .qc-node-front,
#quick-call .qc-node-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quick-call .qc-node-front {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
}

#quick-call .qc-node-front svg {
  width: 16px;
  height: 16px;
  display: block;
}

#quick-call .qc-node-back {
  background: #10b981;
  transform: rotateY(180deg);
}

#quick-call .qc-node-back svg {
  width: 15px;
  height: 15px;
  display: block;
}

#quick-call .qc-node-check-path {
  fill: none;
  stroke-dasharray: 24;
  stroke-dashoffset: 0;
}

#quick-call .qc-tick-animating .qc-tick-row:not(.is-done) .qc-node-check-path {
  stroke-dashoffset: 24;
}

#quick-call .qc-tick-row.is-done .qc-node-check-path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 300ms ease 220ms;
}

#quick-call .qc-tick-animating .qc-tick-row.is-done .qc-node-check-path {
  animation: qcCheckDraw 300ms ease 220ms both;
}

@keyframes qcCheckDraw {
  from { stroke-dashoffset: 24; }
  to { stroke-dashoffset: 0; }
}

#quick-call .qc-node-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #10b981;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

#quick-call .qc-node.is-pop {
  animation: qcNodePop 400ms ease;
}

#quick-call .qc-node.is-pulse .qc-node-ring {
  animation: qcTickRing 520ms ease-out;
}

@keyframes qcNodePop {
  0% { transform: scale(1); }
  45% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes qcTickRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}

#quick-call .qc-tick-row.is-done:hover .qc-node {
  transform: scale(1.06);
  transition: transform 200ms ease;
}

#quick-call .qc-tick-text {
  padding-left: 14px;
  min-width: 0;
}

#quick-call .qc-tick-label {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #0f172a;
}

#quick-call .qc-tick-label.is-cue {
  animation: qcTickLabelCue 600ms ease;
}

@keyframes qcTickLabelCue {
  0% { color: #0f172a; }
  25% { color: #059669; }
  100% { color: #0f172a; }
}

#quick-call .qc-tick-sub {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 400;
  color: #64748b;
}

#quick-call .qc-tick-animating .qc-tick-row {
  opacity: 0;
  transform: translateX(-10px);
}

#quick-call .qc-tick-animating .qc-tick-done {
  opacity: 0;
  transform: translateY(6px);
}

#quick-call .qc-tick-done {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0 44px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  font-size: 12px;
  font-weight: 500;
  color: #047857;
  opacity: 1;
  transform: translateY(0);
}

#quick-call .qc-tick-done-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#quick-call .qc-tick-done-icon svg {
  width: 11px;
  height: 11px;
  display: block;
}

#quick-call .qc-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

#quick-call .qc-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -48%);
  background: radial-gradient(closest-side, rgba(94, 234, 212, 0.35), rgba(167, 243, 208, 0.18), transparent);
  filter: blur(50px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

#quick-call .qc-callcard {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow:
    0 24px 60px -24px rgba(15, 23, 42, 0.22),
    0 2px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  padding: 0 0 14px;
  opacity: 1;
  transform: none;
}

#quick-call .qc-banner {
  position: relative;
  height: 118px;
  overflow: hidden;
}

#quick-call .qc-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.22) 100%);
  pointer-events: none;
}

#quick-call .qc-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 20px 20px 0 0;
}

#quick-call .qc-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 10px;
}

#quick-call .qc-caller {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#quick-call .qc-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quick-call .qc-avatar svg {
  width: 18px;
  height: 18px;
}

#quick-call .qc-caller-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#quick-call .qc-caller-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

#quick-call .qc-caller-name {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#quick-call .qc-call-state {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

#quick-call .qc-timer {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: #64748b;
}

#quick-call .qc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}

#quick-call .qc-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

#quick-call .qc-pill-check {
  display: none;
  width: 14px;
  height: 14px;
  color: #047857;
}

#quick-call .qc-pill-check svg {
  width: 100%;
  height: 100%;
}

#quick-call .qc-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 24px;
  padding: 0 18px;
  margin-bottom: 4px;
}

#quick-call .qc-waveform span {
  display: block;
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: #10b981;
  transform-origin: center bottom;
}

#quick-call .qc-transcript {
  display: flex;
  flex-direction: column;
  padding: 6px 18px;
}

#quick-call .chat-bubble {
  position: relative;
  display: block;
  width: auto;
  max-width: 340px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
}

#quick-call .chat-bubble .bubble-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

#quick-call .chat-bubble p {
  display: block;
  width: 100%;
  margin: 0;
  white-space: normal;
  word-wrap: break-word;
}

#quick-call .chat-bubble mark {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
  padding: 0 4px;
  border-radius: 4px;
}

#quick-call .chat-bubble-patient {
  margin-left: auto;
  background: #f1f5f9;
  color: #0f172a;
}

#quick-call .chat-bubble-patient .bubble-label {
  color: #94a3b8;
}

#quick-call .chat-bubble-ai {
  margin-right: auto;
  background: rgba(16, 185, 129, 0.07);
  color: #0f172a;
}

#quick-call .chat-bubble-ai .bubble-label {
  color: #059669;
}

#quick-call .chat-bubble-patient,
#quick-call .chat-bubble-ai {
  opacity: 1;
}

#quick-call.qc-intro-playing .chat-bubble-patient,
#quick-call.qc-intro-playing .chat-bubble-ai {
  opacity: 0;
}

#quick-call .qc-typing {
  display: none;
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 10px;
  gap: 4px;
  align-items: center;
}

#quick-call .qc-typing.is-show {
  display: inline-flex;
}

#quick-call .qc-typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
}

#quick-call .qc-confirm {
  display: flex;
  margin: 6px 18px 0;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: none;
}

#quick-call.qc-intro-playing .qc-confirm:not(.is-visible) {
  display: none;
  opacity: 0;
  transform: translateY(16px);
}

#quick-call .qc-confirm-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quick-call .qc-confirm-badge svg {
  width: 20px;
  height: 20px;
}

#quick-call .qc-confirm-title {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

#quick-call .qc-confirm-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

#quick-call .qc-confirm-sms {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #047857;
  margin-top: 4px;
}

#quick-call .qc-confirm-sms svg {
  width: 14px;
  height: 14px;
}

#quick-call .qc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px 0;
}

#quick-call.qc-intro-playing .qc-chips:not(.is-visible) {
  display: none;
}

#quick-call .qc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  color: #334155;
  opacity: 1;
  transform: none;
}

#quick-call.qc-intro-playing .qc-chips.is-visible .qc-chip {
  opacity: 1;
  transform: none;
}

#quick-call .qc-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#quick-call .chat-bubble .tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: qcTwBlink 0.9s step-end infinite;
}

@keyframes qcTwBlink {
  50% { opacity: 0; }
}

@keyframes qcWaveBar {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

@keyframes qcDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

@keyframes qcTypingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

#quick-call.qc-call-active .qc-pill-dot {
  animation: qcDotPulse 1.2s ease-in-out infinite;
}

#quick-call.qc-call-active .qc-waveform span {
  animation: qcWaveBar 0.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * 60ms);
}

#quick-call.qc-call-active .qc-typing.is-show span:nth-child(1) {
  animation: qcTypingBounce 0.9s ease-in-out infinite;
}

#quick-call.qc-call-active .qc-typing.is-show span:nth-child(2) {
  animation: qcTypingBounce 0.9s ease-in-out 0.15s infinite;
}

#quick-call.qc-call-active .qc-typing.is-show span:nth-child(3) {
  animation: qcTypingBounce 0.9s ease-in-out 0.3s infinite;
}

#quick-call.qc-call-complete .qc-pill-dot {
  display: none;
}

#quick-call.qc-call-complete .qc-pill-check {
  display: block;
}

#quick-call.qc-call-complete .qc-waveform span {
  animation: none;
  transform: scaleY(0.55);
}

@media (max-width: 767px) {
  #quick-call .quick-call-layout {
    grid-template-columns: 1fr;
  }

  #quick-call .quick-call-copy {
    max-width: none;
  }

  #quick-call .qc-tick-block {
    margin-top: 20px;
  }

  #quick-call .qc-node {
    width: 28px;
    height: 28px;
  }

  #quick-call .qc-node-front svg {
    width: 14px;
    height: 14px;
  }

  #quick-call .qc-node-back svg {
    width: 13px;
    height: 13px;
  }

  #quick-call .qc-tick-label {
    font-size: 14px;
  }

  #quick-call .qc-tick-rail {
    left: 20px;
  }

  #quick-call .qc-tick-node-col {
    width: 40px;
  }

  #quick-call .qc-tick-row {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 68px;
    padding-bottom: 12px;
  }

  #quick-call .qc-tick-done {
    margin-left: 40px;
  }

  #quick-call .qc-callcard {
    max-width: 100%;
    margin: 0 auto;
  }

  #quick-call .qc-banner {
    height: 110px;
  }

  #quick-call .chat-bubble {
    font-size: 14px;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #quick-call .qc-callcard {
    max-width: 100%;
    margin-left: 0;
  }

  #quick-call .qc-tick-row {
    min-height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #quick-call .qc-callcard {
    opacity: 1;
    transform: none;
  }

  #quick-call .qc-node-inner {
    transition: none;
  }

  #quick-call .qc-tick-row.is-done .qc-node-inner {
    transform: rotateY(180deg);
  }

  #quick-call .qc-tick-animating .qc-tick-row,
  #quick-call .qc-tick-animating .qc-tick-done {
    opacity: 1;
    transform: none;
  }

  #quick-call .qc-tick-animating .qc-tick-rail-fill {
    transform: scaleY(1);
  }

  #quick-call .chat-bubble-patient,
  #quick-call .chat-bubble-ai {
    opacity: 1;
  }

  #quick-call .qc-confirm,
  #quick-call .qc-chips {
    display: flex;
    opacity: 1;
    transform: none;
  }

  #quick-call .qc-chip {
    opacity: 1;
    transform: none;
  }

  #quick-call .qc-pill-dot {
    display: none;
    animation: none;
  }

  #quick-call .qc-pill-check {
    display: block;
  }

  #quick-call .qc-waveform span {
    animation: none;
    transform: scaleY(0.55);
  }

  #quick-call .chat-bubble .tw-cursor {
    display: none;
  }

  #quick-call .qc-node.is-pop,
  #quick-call .qc-node.is-pulse .qc-node-ring,
  #quick-call .qc-tick-label.is-cue,
  #quick-call .qc-tick-animating .qc-tick-row.is-done .qc-node-check-path {
    animation: none;
  }
}

.float-card {
  transition: transform 0.3s ease;
}

/* Value icon (legacy gradient cards may still reference) */
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Voice overview: denser layout + capability chips */
#voice-overview {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

#voice-overview > .container {
  width: min(100% - 24px, 1240px);
}

#voice-overview .section-header {
  max-width: 820px;
  margin: 0 auto 28px;
}

#voice-overview .gradient-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  perspective: 1000px;
}

#voice-overview .gradient-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  border-radius: 20px;
  padding: 34px 28px 28px;
  color: #fff;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.28);
  transform-style: preserve-3d;
  transition: none;
}

#voice-overview .gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
}

#voice-overview .gradient-card:hover,
#voice-overview .gradient-card.experience-card:hover {
  transform: none;
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.28);
}

#voice-overview .gradient-card-indigo {
  background: linear-gradient(145deg, #0f766e 0%, #0d9488 52%, #14b8a6 100%);
}

#voice-overview .gradient-card-violet {
  background: linear-gradient(145deg, #115e59 0%, #0f766e 55%, #2dd4bf 100%);
}

#voice-overview .gradient-card-blue {
  background: linear-gradient(145deg, #064e3b 0%, #047857 50%, #10b981 100%);
}

#voice-overview .gradient-card-emerald {
  background: linear-gradient(145deg, #0f766e 0%, #059669 52%, #34d399 100%);
}

#voice-overview .gradient-card-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

#voice-overview .gradient-card-icon svg {
  width: 22px;
  height: 22px;
}

#voice-overview .gradient-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

#voice-overview .gradient-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

#voice-overview .gc-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

#voice-overview .gc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 1.2;
  white-space: nowrap;
}

#voice-overview .gc-shine {
  position: absolute;
  top: -20%;
  left: 0;
  width: 42%;
  height: 140%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-140%) rotate(12deg);
  opacity: 0;
}

#voice-overview .gradient-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1099px) {
  #voice-overview .gradient-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 639px) {
  #voice-overview .gradient-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #voice-overview .gradient-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  #voice-overview .gradient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.34);
  }
}

/* Legacy gradient cards (non voice-overview) */
.gradient-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gradient-card {
  position: relative;
  border-radius: 22px;
  padding: 32px 28px;
  color: var(--white);
  overflow: hidden;
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.gradient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gradient-card-indigo { background: linear-gradient(135deg, #3730A3 0%, #4F46E5 55%, #6366F1 100%); }
.gradient-card-violet { background: linear-gradient(135deg, #4338CA 0%, #7C3AED 55%, #8B5CF6 100%); }
.gradient-card-blue { background: linear-gradient(135deg, #312E81 0%, #2563EB 55%, #38BDF8 100%); }
.gradient-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gradient-card-icon svg { width: 22px; height: 22px; }
.gradient-card h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
  position: relative;
}
.gradient-card p {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.55;
  position: relative;
}

/* Feature gradient panels */
.feature-panel {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(99, 102, 241, 0.04) 50%, rgba(238, 240, 254, 0.8) 100%);
  border-radius: 24px;
  padding: 48px 40px !important;
  border: 1px solid var(--border);
}
.feature-tagline {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: var(--primary-deep) !important;
  margin-bottom: 12px !important;
}
.waveform-mini {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.waveform-mini span {
  width: 4px;
  border-radius: 2px;
  background: var(--primary);
  animation: ldWave 1.2s ease-in-out infinite;
}
.waveform-mini span:nth-child(2) { animation-delay: 0.1s; height: 14px; }
.waveform-mini span:nth-child(3) { animation-delay: 0.2s; height: 22px; }
.waveform-mini span:nth-child(4) { animation-delay: 0.3s; height: 10px; }
.waveform-mini span:nth-child(5) { animation-delay: 0.4s; height: 18px; }
.waveform-mini span:nth-child(6) { animation-delay: 0.5s; height: 12px; }
.waveform-mini span:nth-child(7) { animation-delay: 0.6s; height: 20px; }
@keyframes ldWave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Safety 2x2 grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: var(--space-md);
}
.safety-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 27, 58, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.safety-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(30, 27, 58, 0.12);
}
.safety-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent-light);
}
.safety-card-icon svg { width: 20px; height: 20px; }
.safety-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.safety-card p {
  font-size: 0.875rem;
  color: var(--body);
  margin: 0 0 12px;
  line-height: 1.55;
}
.safety-badges-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.safety-badges-mini span {
  font-size: 0.6875rem;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}
.safety-mini-cal {
  display: flex;
  gap: 6px;
}
.safety-mini-cal span {
  font-size: 0.6875rem;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}
.safety-mini-cal span.active {
  background: var(--showcase-accent);
  color: var(--white);
}
.safety-mini-chat p {
  font-size: 0.75rem;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.82);
}
.language-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.language-chips span {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Impact tabs */
.impact-tabs { max-width: 900px; margin: 0 auto; }
.impact-tab-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.impact-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.impact-tab:hover { border-color: var(--primary); color: var(--primary); }
.impact-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.impact-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.impact-panel.active { display: grid; }
.impact-illustration {
  min-height: 200px;
  border-radius: 16px;
  background: var(--lavender);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--body);
  text-align: center;
  padding: 20px;
}
.impact-illustration--photo {
  padding: 0;
  border-style: solid;
  overflow: hidden;
  background: #e8eef5;
}
.impact-illustration--photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}
.impact-story h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.impact-story p {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Final CTA */
.cta-final .container { position: relative; }
.cta-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-illustration {
  margin-top: 40px;
  min-height: 160px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--white); }

/* Subpages */
.page-hero {
  padding: 120px 0 48px;
  background: var(--lavender);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 12px;
  color: var(--ink);
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--body);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0 80px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-thumb {
  height: 160px;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--body);
}
.blog-card-body { padding: 20px; }
.blog-card-body h2 {
  font-size: 1.0625rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.blog-card-body p {
  font-size: 0.875rem;
  color: var(--body);
  margin: 0 0 12px;
  line-height: 1.55;
}
.blog-card-body a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px 0 80px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.contact-form-card .sub {
  color: var(--body);
  margin: 0 0 24px;
  font-size: 0.9375rem;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9375rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-error {
  display: none;
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 4px;
}
.form-group.invalid .form-error { display: block; }
.form-group.invalid input,
.form-group.invalid select { border-color: #DC2626; }
.form-success {
  display: none;
  padding: 16px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: #15803D;
  font-size: 0.9375rem;
  margin-top: 16px;
}
.form-success.visible { display: block; }
.contact-info-card {
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  border-radius: 20px;
  color: var(--white);
}
.contact-info-card h2 { margin: 0 0 16px; font-size: 1.5rem; }
.contact-info-card p { opacity: 0.9; line-height: 1.6; margin: 0 0 12px; }
.contact-info-card a { color: var(--accent-light); }

/* Responsive */
@media (max-width: 1024px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse .feature-copy,
  .feature-block.reverse .feature-visual { order: unset; }
  .showcase-split { grid-template-columns: 1fr; gap: 36px; }
  .showcase-phone { order: -1; }
  .benefit-info h3 { font-size: 0.9375rem; }
  .emr-grid { grid-template-columns: repeat(3, 1fr); }
  #why-anservo { padding-top: var(--space-md); padding-bottom: var(--space-md); }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gradient-cards { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .impact-panel.active { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .live-demo-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav-inner { flex-wrap: wrap; height: auto; min-height: 76px; padding: 8px 0; }
  .site-nav-links,
  .site-nav-actions { display: none; }
  .site-nav-toggle { display: flex; }
  .site-nav.open .site-nav-links,
  .site-nav.open .site-nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 4;
    background: rgba(30, 27, 75, 0.97);
    backdrop-filter: blur(16px);
    padding: 8px 0 20px;
    gap: 12px;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
  }
  .site-nav.open .site-nav-links a {
    padding: 10px 0;
    font-size: 1rem;
  }
  .site-nav.open .site-nav-actions .btn { width: 100%; }
  .hero { padding: 100px 0 var(--space-xs); }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-product { padding: 0 16px var(--space-xs); }
  .hero-product-inner:hover { transform: none; }
  #try-live.tryLive { padding-top: clamp(56px, 8vh, 80px); padding-bottom: clamp(56px, 8vh, 80px); }
  .section { padding: var(--space-lg) 0; }
  .showcase-section { padding: var(--space-lg) 0; }
  .showcase-copy h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .emr-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-demo { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-rotate,
  .logo-marquee-track,
  .live-dot,
  .transcript-line { animation: none !important; transition: none !important; }
  .hero-product-inner { transition: none; }
  .valueStats .vs-card { transition: none; }
  .benefit-item { transition: none; }
  .reveal,
  .hero-product-inner { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal-hero.is-visible .hero-product-inner { transform: none; opacity: 1; }
}
