:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --text-inverse: #e2f7ff;
  --line: rgba(15, 23, 42, 0.08);
  --navy: #0c162d;
  --charcoal: #162133;
  --teal: #3ee7e5;
  --blue: #1e6bff;
  --gradient: linear-gradient(135deg, #3ee7e5 0%, #1e6bff 54%, #0c162d 100%);
  --gradient-soft: linear-gradient(180deg, rgba(62, 231, 229, 0.12), rgba(30, 107, 255, 0.02));
  --shadow-lg: 0 30px 80px rgba(9, 15, 32, 0.18);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.demo-open {
  overflow: hidden;
}

main[data-home-view] {
  display: flex;
  flex-direction: column;
}

main[data-home-view] > section {
  width: 100%;
}

.hero {
  order: 0;
}

.problem {
  order: 1;
}

#features {
  order: 2;
}

.timeline {
  order: 3;
}

.integrations {
  order: 4;
}

#impact {
  order: 5;
}

.roi-calculator {
  order: 6;
  padding-top: 72px;
}

.testimonials {
  order: 7;
}

.trust-architecture {
  order: 8;
}

#pricing {
  order: 9;
}

#faq {
  order: 10;
}

#final-cta {
  order: 11;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-tight {
  padding: 44px 0 72px;
}

.alt-bg {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-header {
  max-width: 720px;
  margin-bottom: 54px;
  text-align: center;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero h1,
.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-header p,
.hero-subhead,
.solution-copy p,
.overview-card p,
.pain-card p,
.feature-category li,
.testimonial-card p,
.pricing-card li,
.faq-answer p,
.timeline-step p,
.integration-panel p,
.footer-links a,
.footer-brand .brand-copy span {
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ecfeff;
  border-color: rgba(62, 231, 229, 0.28);
  box-shadow: 0 16px 34px rgba(7, 13, 24, 0.16);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-large {
  padding: 16px 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-copy {
  display: block;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.62);
}

.nav-cta {
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  width: var(--container);
  margin: 0 auto 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a:not(.button) {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.62);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.hero {
  padding-top: 70px;
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 20% 18%, rgba(62, 231, 229, 0.16), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(30, 107, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 55%, rgba(62, 231, 229, 0.08), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #0b1630 42%, #0d1834 100%);
  overflow: clip;
}

.hero-layout {
  display: block;
  position: relative;
  min-height: 70vh;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 56px 0 44px;
}

.hero-copy-centered {
  margin: 0 auto;
  text-align: center;
}

.hero-copy-centered .eyebrow,
.hero-copy-centered .hero-subhead {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-centered .hero-actions,
.hero-copy-centered .hero-logo-marquee {
  justify-content: center;
}

.hero .eyebrow {
  color: rgba(226, 247, 255, 0.84);
}

.hero-copy h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 6vw, 6rem);
  color: #ffffff;
}

.gradient-word {
  background: linear-gradient(135deg, #0f8f95, #1850c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subhead {
  max-width: 620px;
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: rgba(226, 247, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-badges span,
.stat-chip,
.logo-row span,
.integration-logos span,
.call-pill,
.status-dot,
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-bg::before {
  width: min(980px, 88vw);
  height: 420px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(62, 231, 229, 0.08);
  box-shadow: 0 0 0 80px rgba(62, 231, 229, 0.02), 0 0 0 160px rgba(30, 107, 255, 0.02);
}

.hero-bg::after {
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(62, 231, 229, 0.08) 50%, transparent 100%);
  opacity: 0.35;
  transform: translateX(-30%);
  animation: beamPass 14s linear infinite;
}

.hero-orb,
.hero-pulse,
.tooth,
.hero-ribbon {
  position: absolute;
  pointer-events: none;
}

.hero-orb,
.hero-pulse {
  border-radius: 50%;
}

.hero-ribbon {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.5;
}

.hero-orb {
  filter: blur(30px);
  opacity: 0.34;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(62, 231, 229, 0.75), transparent 70%);
  top: 80px;
  right: -120px;
  animation: floaty 10s ease-in-out infinite;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.64), transparent 72%);
  bottom: 10px;
  left: -100px;
  animation: floaty 14s ease-in-out infinite reverse;
}

.ribbon-1 {
  width: min(760px, 72vw);
  height: 110px;
  top: 18%;
  left: 18%;
  background: linear-gradient(90deg, rgba(62, 231, 229, 0), rgba(62, 231, 229, 0.5), rgba(30, 107, 255, 0));
  transform: rotate(-10deg);
  animation: sweep 14s ease-in-out infinite;
}

.ribbon-2 {
  width: min(620px, 62vw);
  height: 86px;
  bottom: 22%;
  left: 12%;
  background: linear-gradient(90deg, rgba(30, 107, 255, 0), rgba(30, 107, 255, 0.42), rgba(62, 231, 229, 0));
  transform: rotate(8deg);
  animation: sweep-alt 18s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 8% 0 auto;
  height: 560px;
  background-image: linear-gradient(rgba(62, 231, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 107, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 76%);
  animation: gridDrift 20s linear infinite;
}

.hero-pulse {
  border: 1px solid rgba(62, 231, 229, 0.3);
}

.pulse-1 {
  width: 240px;
  height: 240px;
  top: 140px;
  right: 18%;
  animation: pulse 4.6s ease-out infinite;
}

.pulse-2 {
  width: 160px;
  height: 160px;
  bottom: 50px;
  left: 12%;
  animation: pulse 5.2s ease-out infinite 1s;
}

.tooth {
  width: 76px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(214, 245, 251, 0.55));
  border: 1px solid rgba(30, 107, 255, 0.08);
  box-shadow: 0 24px 40px rgba(16, 24, 40, 0.08);
  clip-path: path("M38 0C56 0 70 14 70 32c0 15-9 25-14 35-6 10-8 19-10 29-.4 2-3.2 2.5-4.3.7-2.2-3.5-2.7-10.5-3.7-15.5-1.1 5-1.5 12-3.7 15.5-1.1 1.8-3.9 1.3-4.3-.7-2-10-4-19-10-29C9 57 0 47 0 32 0 14 14 0 32 0h6Z");
  opacity: 0.16;
}

.tooth-1 {
  top: 14%;
  left: 56%;
  transform: rotate(-12deg);
  animation: drift 16s ease-in-out infinite;
}

.tooth-2 {
  bottom: 20%;
  right: 10%;
  transform: rotate(8deg) scale(0.9);
  animation: drift 18s ease-in-out infinite reverse;
}

.tooth-3 {
  top: 34%;
  left: 8%;
  transform: rotate(10deg) scale(0.74);
  animation: drift 14s ease-in-out infinite;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #05131d;
  flex-shrink: 0;
}

.button-icon svg {
  width: 12px;
  height: 12px;
  transform: translateX(1px);
}

.hero-logo-marquee {
  position: relative;
  display: block;
  width: min(960px, 100%);
  margin: 8px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent);
}

.hero-logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: logoMarquee 26s linear infinite;
}

.hero-logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 247, 255, 0.36);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.overview-nowrap {
  white-space: nowrap;
}

.overview-subline,
.pricing-nowrap {
  display: inline-block;
  text-align: center;
}

.heading-nowrap {
  display: inline-block;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}

#faq .section-header h2 {
  display: flex;
  justify-content: center;
}

.overview-subline {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pricing-nowrap {
  white-space: nowrap;
}

.section-header h2 .overview-nowrap {
  display: block;
  width: 100%;
  text-align: center;
}

.pain-card,
.overview-card,
.feature-box,
.timeline-step,
.testimonial-card,
.pricing-card,
.integration-panel,
.cta-panel,
.faq-item,
.mockup-card,
.demo-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.demo-panel-header,
.demo-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-panel-header h3,
.demo-topbar h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.status-dot::before,
.live-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}
.call-metrics span,
.check-item p,
.transcript-line time {
  margin: 0;
  color: rgba(226, 247, 255, 0.78);
}

.logo-row,
.stats-row,
.overview-grid,
.pain-grid,
.features-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.logo-row {
  grid-template-columns: repeat(5, minmax(160px, 180px));
  justify-content: center;
}

.logo-row span {
  justify-content: center;
  width: 100%;
  min-height: 72px;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
}

.stats-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-chip {
  justify-content: center;
  min-height: 84px;
  font-size: 1rem;
}

.stat-chip strong {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.pain-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pain-card,
.overview-card,
.feature-category,
.timeline-step,
.testimonial-card,
.pricing-card,
.faq-item,
.mockup-card {
  border-radius: var(--radius-md);
  background: #fff;
}

.pain-card,
.overview-card,
.feature-box,
.timeline-step,
.testimonial-card,
.pricing-card {
  padding: 28px;
}

.pain-card h3,
.overview-card h3,
.feature-box h3,
.solution-copy h3,
.timeline-step h3,
.testimonial-card strong,
.pricing-card h3,
.faq-item button span:first-child {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pain-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
}

.pain-card h3 {
  color: #173a7a;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92));
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0.78;
}

.overview-card p {
  display: block;
  margin: 0;
  color: var(--text-soft);
}

.overview-card h3 {
  color: #173a7a;
  font-size: 1.1rem;
}

.features-header {
  margin-top: 104px;
}

.features.section {
  padding-bottom: 64px;
}

.timeline.section {
  padding-top: 64px;
}

.problem.section {
  padding-bottom: 72px;
}

.features.section {
  padding-top: 72px;
}

.overview-icon {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 18px;
  font-size: 0;
  color: #1850c7;
  background: linear-gradient(135deg, rgba(62, 231, 229, 0.12), rgba(30, 107, 255, 0.14));
  border: 1px solid rgba(24, 80, 199, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.overview-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.overview-card:nth-child(1) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.8 4.5h2.1l1.1 3.1-1.6 1.8a13.3 13.3 0 0 0 5.2 5.2l1.8-1.6 3.1 1.1V16c0 .8-.6 1.5-1.4 1.5A13.9 13.9 0 0 1 6.5 5.9c0-.8.6-1.4 1.3-1.4Z' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.8 4.5h2.1l1.1 3.1-1.6 1.8a13.3 13.3 0 0 0 5.2 5.2l1.8-1.6 3.1 1.1V16c0 .8-.6 1.5-1.4 1.5A13.9 13.9 0 0 1 6.5 5.9c0-.8.6-1.4 1.3-1.4Z' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/></svg>");
}

.overview-card:nth-child(2) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4.5' y='5.5' width='15' height='13' rx='3' fill='none' stroke='black' stroke-width='1.7'/><path d='M8 3.8v3.1M16 3.8v3.1M8 12h8M8 15.5h5' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4.5' y='5.5' width='15' height='13' rx='3' fill='none' stroke='black' stroke-width='1.7'/><path d='M8 3.8v3.1M16 3.8v3.1M8 12h8M8 15.5h5' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
}

.overview-card:nth-child(3) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 7.5h12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6.5L7 20v-2.5H6a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M8.5 11.5h7M8.5 14.5h4.5' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 7.5h12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-6.5L7 20v-2.5H6a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M8.5 11.5h7M8.5 14.5h4.5' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
}

.overview-card:nth-child(4) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4.5 18.5 7v4.7c0 3.4-2.1 6.5-6.5 7.8-4.4-1.3-6.5-4.4-6.5-7.8V7L12 4.5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M9.4 12.1 11 13.7l3.8-3.8' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4.5 18.5 7v4.7c0 3.4-2.1 6.5-6.5 7.8-4.4-1.3-6.5-4.4-6.5-7.8V7L12 4.5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M9.4 12.1 11 13.7l3.8-3.8' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/></svg>");
}

.overview-card:nth-child(5) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 4.5h8l3 3V18a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 7 18V6a1.5 1.5 0 0 1 1-1.5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M10 10.5h6M10 13.5h6M10 16.5h4' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 4.5h8l3 3V18a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 7 18V6a1.5 1.5 0 0 1 1-1.5Z' fill='none' stroke='black' stroke-linejoin='round' stroke-width='1.7'/><path d='M10 10.5h6M10 13.5h6M10 16.5h4' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
}

.overview-card:nth-child(6) .overview-icon::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.5 8.5H17l-2.5-2.5M16.5 15.5H7l2.5 2.5' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/><path d='M17 8.5a5 5 0 0 1 0 7M7 15.5a5 5 0 0 1 0-7' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7.5 8.5H17l-2.5-2.5M16.5 15.5H7l2.5 2.5' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/><path d='M17 8.5a5 5 0 0 1 0 7M7 15.5a5 5 0 0 1 0-7' fill='none' stroke='black' stroke-linecap='round' stroke-width='1.7'/></svg>");
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-tile {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.94));
  border: 1px solid rgba(24, 80, 199, 0.12);
  box-shadow: 0 0 0 1px rgba(62, 231, 229, 0.06), 0 18px 44px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0.78;
}

.feature-tile-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0f8f95;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.feature-tile h3 {
  margin: 0 0 10px;
  color: #173a7a;
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.feature-tile p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
  text-align: center;
}


.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.96));
  border: 1px solid rgba(24, 80, 199, 0.1);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.overview-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  padding: 14px 0;
  background: transparent;
}

.overview-stat {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 178px;
  padding: 18px 28px;
  text-align: center;
}

.overview-stat:not(:first-child) {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.overview-stat strong {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #0f8f95, #1850c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.overview-stat span {
  max-width: none;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: nowrap;
}

.overview-bridge {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.overview-bridge p {
  max-width: 860px;
  margin: 0;
  padding: 24px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 22, 45, 0.98), rgba(22, 33, 51, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
  color: var(--text-inverse);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.overview-bridge p span {
  display: block;
}

.overview-bridge p span + span {
  margin-top: 4px;
}

.overview-benefits {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 22, 45, 0.98), rgba(22, 33, 51, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.overview-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-inverse);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
}

.overview-benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(62, 231, 229, 0.14), rgba(30, 107, 255, 0.14));
  border: 1px solid rgba(116, 223, 255, 0.14);
  color: #8dd7ff;
  flex-shrink: 0;
}

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

.overview-capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.overview-capability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 80, 199, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: #173a7a;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.overview-capability-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 143, 149, 0.9), rgba(24, 80, 199, 0.88));
  box-shadow: 0 0 0 6px rgba(62, 231, 229, 0.1);
  flex-shrink: 0;
}

.pain-stat {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  background: linear-gradient(135deg, #0f8f95, #1850c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
}

.pain-card p,
.solution-copy,
.solution-copy p,
.solution-copy h3,
.integration-panel,
.timeline-step,
.testimonial-card,
.pricing-card,
.pricing-card li,
.pricing-card ul,
.faq-item,
.faq-item button,
.faq-answer,
.final-cta .trust-badges,
.final-cta .cta-actions {
  text-align: center;
}

.pain-card {
  padding: 34px 28px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pain-card:nth-child(-n + 3) {
  border-bottom: 1px solid rgba(24, 80, 199, 0.08);
}

.pain-card:not(:nth-child(3n + 1)) {
  border-left: 1px solid rgba(24, 80, 199, 0.08);
}

.pain-card h3 {
  max-width: 18ch;
  margin: 0 auto 10px;
  color: #173a7a;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.pain-card p {
  max-width: 28ch;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(71, 85, 105, 0.9);
}

.solution-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-card ul {
  padding-left: 0;
  list-style: none;
}

.pricing-card li::before {
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card ul {
  margin: 0;
}

.solution-list {
  display: grid;
  gap: 26px;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.65), rgba(255, 255, 255, 0.95));
}

.solution-row.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.solution-row.reverse .solution-visual {
  order: 2;
}

.mockup-card {
  min-height: 280px;
  padding: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #101c37, #17284a);
  color: var(--text-inverse);
}

.mockup-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 16px;
  width: min(320px, 100%);
  height: 180px;
}

.mockup-chart span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.mockup-chart span:nth-child(1) {
  height: 40%;
}

.mockup-chart span:nth-child(2) {
  height: 72%;
}

.mockup-chart span:nth-child(3) {
  height: 58%;
}

.mockup-chart span:nth-child(4) {
  height: 88%;
}

.mockup-list,
.message-stack {
  display: grid;
  gap: 14px;
  width: min(320px, 100%);
}

.mockup-list span,
.message-stack span {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(320px, 100%);
}

.mockup-calendar span {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mockup-calendar span.filled {
  background: linear-gradient(135deg, rgba(62, 231, 229, 0.86), rgba(30, 107, 255, 0.9));
}

.coverage-ring {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 12px solid rgba(62, 231, 229, 0.2);
  box-shadow: inset 0 0 0 18px rgba(30, 107, 255, 0.14);
}

.coverage-ring span {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.timeline-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-wrap-centered .timeline-step {
  text-align: center;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(62, 231, 229, 0.18), rgba(30, 107, 255, 0.28));
}

.timeline-step {
  position: relative;
  padding-top: 92px;
  overflow: hidden;
}

.step-icon {
  position: absolute;
  top: 18px;
  left: 28px;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(62, 231, 229, 0.12), rgba(30, 107, 255, 0.16));
  border: 1px solid rgba(24, 80, 199, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 12px 24px rgba(15, 23, 42, 0.08);
  color: #1850c7;
}

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

.timeline-wrap-centered .step-icon {
  left: 50%;
  transform: translateX(-50%);
}

.timeline-step h3 {
  margin: 10px 0 12px;
}

.integration-panel {
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(12, 22, 45, 0.98), rgba(22, 33, 51, 0.94));
  color: var(--text-inverse);
}

.integration-panel .section-header {
  margin-bottom: 26px;
}

.integration-supporting-copy {
  display: grid;
  justify-items: center;
  margin-top: 36px;
  margin-bottom: -18px;
  text-align: center;
}

.integration-supporting-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.integration-supporting-copy p {
  margin: 0;
  max-width: 700px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.trust-panel {
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 1));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.trust-card p,
.cta-microcopy {
  margin: 0;
  color: var(--text-soft);
}

.integration-panel p {
  color: rgba(226, 247, 255, 0.72);
}

.integration-bridge-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.integration-bridge-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 80, 199, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: #173a7a;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  backdrop-filter: blur(14px);
}

.integration-bridge-badges span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 143, 149, 0.9), rgba(24, 80, 199, 0.88));
  box-shadow: 0 0 0 6px rgba(62, 231, 229, 0.1);
  flex-shrink: 0;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.integration-logos span {
  justify-content: center;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.08);
}

.roi-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.98fr);
  gap: 26px;
  align-items: stretch;
}

.roi-inputs,
.roi-results {
  border-radius: 32px;
  border: 1px solid rgba(24, 80, 199, 0.12);
  box-shadow: var(--shadow-md);
}

.roi-inputs {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
}

.roi-results {
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(62, 231, 229, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(12, 22, 45, 0.98), rgba(22, 33, 51, 0.96));
  border-color: rgba(116, 223, 255, 0.12);
  color: var(--text-inverse);
}

.roi-inputs h3,
.roi-results h3 {
  margin: 0 0 24px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.roi-field {
  display: block;
}

.roi-field + .roi-field {
  margin-top: 22px;
}

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

.roi-field-top span {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}

.roi-field-top strong {
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 700;
}

.roi-field input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  outline: none;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: 0;
  box-shadow: 0 6px 18px rgba(30, 107, 255, 0.28);
  cursor: pointer;
}

.roi-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: 0;
  box-shadow: 0 6px 18px rgba(30, 107, 255, 0.28);
  cursor: pointer;
}

.roi-breakdown {
  display: grid;
  gap: 14px;
}

.roi-line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-line-item span {
  color: rgba(226, 247, 255, 0.72);
  font-size: 0.95rem;
}

.roi-line-item strong {
  color: #f98772;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.roi-summary-card {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(30, 107, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.roi-summary-card span {
  color: rgba(241, 245, 249, 0.86);
  font-weight: 600;
}

.roi-summary-card strong {
  color: #8dd7ff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.roi-summary-muted strong {
  font-size: 1.8rem;
}

.roi-note {
  margin: 18px 0 0;
  color: rgba(226, 247, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.6;
}

.roi-cta {
  width: 100%;
  margin-top: 22px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-location {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.rating {
  margin-bottom: 16px;
  color: #fbbf24;
  letter-spacing: 0.16em;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 28px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-toggle-option {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.pricing-toggle-option span {
  margin-left: 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-toggle-option.is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pricing-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 248, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.pricing-plan-head {
  padding: 24px 26px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(244, 247, 252, 0.98), rgba(236, 243, 252, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pricing-plan-head h3 {
  margin: 0 0 6px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.pricing-plan-head p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.pricing-plan-featured {
  border-color: rgba(30, 107, 255, 0.28);
  box-shadow: 0 20px 54px rgba(30, 107, 255, 0.12);
}

.pricing-plan-head-featured {
  background:
    radial-gradient(circle at top left, rgba(141, 215, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(79, 32, 221, 0.98), rgba(30, 107, 255, 0.92));
  color: #ffffff;
}

.pricing-plan-head-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-plan-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  padding: 22px 22px 16px;
}

.pricing-plan-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.pricing-plan-group {
  display: grid;
  gap: 12px;
}

.pricing-section-label {
  display: inline-block;
  color: rgba(15, 23, 42, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0));
}

.pricing-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-feature-list-coverage li {
  color: #0f172a;
  font-weight: 600;
}

.pricing-feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #6d4aff;
  font-weight: 700;
}

.pricing-plan-foot {
  padding: 18px 18px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.82);
  margin-top: auto;
}

.pricing-starting {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-amount-meta {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.setup-fee {
  margin: 0 0 4px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.pricing-billing-note {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 600;
}

.pricing-plan-cta {
  width: 100%;
}

.pricing-helper-note {
  max-width: 760px;
  margin: 26px auto 30px;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.pricing-enterprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.pricing-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-enterprise h3 {
  margin: 0 0 6px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.pricing-enterprise p {
  margin: 0;
  color: var(--text-soft);
}

.pricing-enterprise-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pricing-contact-button {
  background: #ffffff;
  color: var(--blue);
  border-color: rgba(30, 107, 255, 0.18);
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 24px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.cta-panel {
  padding: 84px 44px 78px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(30, 107, 255, 0.98), rgba(24, 80, 199, 0.96));
  color: var(--text-inverse);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
  border: 0;
}

.final-cta .cta-panel {
  border: none !important;
  box-shadow: none !important;
}

.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cta-panel .trust-badges span {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.cta-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cta-copy .eyebrow {
  margin-bottom: 0;
  color: #ffffff;
}

.cta-copy .eyebrow::before,
.cta-copy .eyebrow::after {
  background: currentColor;
  opacity: 0.7;
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-actions .button-large {
  padding: 18px 34px;
  font-size: 1.15rem;
}

.cta-subtext {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-panel .trust-badges.compact {
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.cta-copy .trust-badges.compact span {
  padding: 8px 12px;
}

.final-cta {
  padding: 0;
  background: transparent;
}

.final-cta .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.cta-footer-button {
  background: #0c162d;
  color: #ffffff;
  box-shadow: none;
}

.site-footer {
  padding: 44px 0 32px;
  background: linear-gradient(180deg, rgba(12, 22, 45, 0.99), rgba(10, 17, 33, 1));
  color: rgba(226, 247, 255, 0.8);
}

.site-footer .brand-copy strong {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  padding-bottom: 28px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 320px;
}

.footer-brand p {
  margin: 0;
  color: rgba(226, 247, 255, 0.7);
  line-height: 1.7;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-email {
  color: #ffffff;
  font-weight: 500;
}

.footer-email-strong {
  font-weight: 700;
}

.footer-email-label {
  font-weight: 700;
  margin-right: 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 4px 0 8px;
  font-size: 0.8rem;
  color: rgba(226, 247, 255, 0.52);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(226, 247, 255, 0.82);
  transition: color 200ms ease, transform 200ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-social-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 18px;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(226, 247, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 247, 255, 0.24);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 247, 255, 0.08);
  color: rgba(226, 247, 255, 0.5);
  font-size: 0.82rem;
}

.book-demo-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.92), #ffffff 34%);
}

.book-demo-main {
  padding-top: 20px;
}

.book-demo-hero {
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 84px;
}

.book-demo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(62, 231, 229, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(30, 107, 255, 0.14), transparent 30%);
}

.book-demo-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.book-demo-copy {
  padding-top: 12px;
}

.book-demo-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.book-demo-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.book-demo-points {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 22px;
}

.book-demo-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #173a7a;
  font-weight: 600;
}

.book-demo-form-shell {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.book-demo-form-head {
  margin-bottom: 24px;
}

.book-demo-kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.book-demo-form-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.book-demo-form-head p {
  margin: 0;
  color: var(--text-soft);
}

.book-demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.book-demo-form label {
  display: grid;
  gap: 8px;
}

.book-demo-form span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #173a7a;
}

.book-demo-form input,
.book-demo-form select,
.book-demo-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.book-demo-form input:focus,
.book-demo-form select:focus,
.book-demo-form textarea:focus {
  border-color: rgba(30, 107, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(30, 107, 255, 0.08);
}

.book-demo-form textarea {
  resize: vertical;
  min-height: 120px;
}

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

.book-demo-form-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.book-demo-note,
.book-demo-success {
  margin: 0;
  color: var(--text-soft);
}

.book-demo-success {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(62, 231, 229, 0.1);
  border: 1px solid rgba(62, 231, 229, 0.2);
  color: #0f5f7d;
  font-weight: 600;
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.92), #ffffff 34%);
}

.legal-main {
  padding-top: 20px;
}

.legal-hero {
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 84px;
}

.legal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.legal-intro {
  max-width: 860px;
}

.legal-intro h1 {
  margin: 0 0 14px;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-updated {
  margin: 0 0 18px;
  color: #173a7a;
  font-weight: 600;
}

.legal-intro p {
  margin: 0 0 14px;
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.legal-card {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-section h3 {
  margin: 18px 0 10px;
  font-size: 1rem;
  color: #173a7a;
}

.legal-section p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--text-soft);
}

.legal-section li + li {
  margin-top: 6px;
}

.legal-section a {
  color: var(--blue);
  font-weight: 600;
}

.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: radial-gradient(circle at top, rgba(30, 107, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(4, 11, 23, 0.82), rgba(5, 10, 18, 0.95));
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.demo-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-shell {
  width: min(1280px, calc(100vw - 24px));
  height: min(700px, calc(100vh - 16px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.96), rgba(7, 13, 24, 0.98));
  border: 1px solid rgba(116, 223, 255, 0.12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.demo-topbar {
  margin-bottom: 0;
  min-height: 0;
}

.demo-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-stage {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 10px;
  min-height: 0;
  align-items: stretch;
}

.demo-panel {
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(17, 28, 50, 0.9), rgba(11, 18, 34, 0.95));
  color: var(--text-inverse);
  min-height: 0;
}

.demo-call-card,
.demo-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.call-avatar-stack {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 10px 0 12px;
}

.call-avatar {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.call-avatar span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.call-avatar small {
  font-size: 0.73rem;
}

.call-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(62, 231, 229, 0.8), rgba(30, 107, 255, 0.2));
}

.demo-waveform {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 5px;
  height: 38px;
  margin: 10px 0 6px;
}

.demo-waveform span {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(62, 231, 229, 0.95), rgba(30, 107, 255, 0.8));
  animation: waveform 1.2s ease-in-out infinite;
}

.demo-waveform span:nth-child(1),
.demo-waveform span:nth-child(7) {
  height: 28%;
}

.demo-waveform span:nth-child(2),
.demo-waveform span:nth-child(8) {
  height: 52%;
  animation-delay: 0.1s;
}

.demo-waveform span:nth-child(3),
.demo-waveform span:nth-child(9) {
  height: 78%;
  animation-delay: 0.2s;
}

.demo-waveform span:nth-child(4),
.demo-waveform span:nth-child(10) {
  height: 42%;
  animation-delay: 0.3s;
}

.demo-waveform span:nth-child(5),
.demo-waveform span:nth-child(11) {
  height: 92%;
  animation-delay: 0.4s;
}

.demo-waveform span:nth-child(6),
.demo-waveform span:nth-child(12) {
  height: 58%;
  animation-delay: 0.5s;
}

.call-metrics,
.demo-checklist {
  display: grid;
  gap: 8px;
}

.demo-side-panel .demo-checklist {
  margin-top: 12px;
}

.call-metrics div,
.check-item,
.transcript-line {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.call-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.demo-transcript-panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.transcript-feed {
  display: grid;
  gap: 8px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 0;
  margin-top: 8px;
}

.transcript-line {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.transcript-line.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.transcript-line strong {
  font-size: 0.84rem;
  color: #ffffff;
}

.transcript-line p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(226, 247, 255, 0.94);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.check-item.complete .check-indicator {
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(62, 231, 229, 0.14);
}

.demo-topbar-copy .eyebrow,
.demo-topbar-copy h2,
.demo-panel-header h3,
.panel-label,
.call-pill,
.live-indicator,
.call-metrics span,
.check-item p,
.transcript-line strong,
.transcript-line time,
.transcript-line p,
.call-avatar small {
  color: #eef8ff !important;
}

.demo-topbar h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.demo-panel-header h3 {
  font-size: 1.02rem;
  line-height: 1.15;
}

.panel-label {
  color: rgba(238, 248, 255, 0.72) !important;
}

.demo-overlay .call-pill,
.demo-overlay .live-indicator {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}

@keyframes beamPass {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(35%);
  }
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-32%);
  }
}

@keyframes sweep {
  0%,
  100% {
    transform: translate3d(-2%, 0, 0) rotate(-10deg) scaleX(1);
  }
  50% {
    transform: translate3d(5%, -12px, 0) rotate(-6deg) scaleX(1.08);
  }
}

@keyframes sweep-alt {
  0%,
  100% {
    transform: translate3d(3%, 0, 0) rotate(8deg) scaleX(1);
  }
  50% {
    transform: translate3d(-4%, 10px, 0) rotate(12deg) scaleX(1.06);
  }
}

@keyframes gridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(-12deg);
  }
  50% {
    transform: translateY(-20px) rotate(-6deg);
  }
}

@keyframes waveform {
  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .transcript-line {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .solution-row,
  .solution-row.reverse,
  .cta-panel,
  .footer-grid,
  .demo-stage {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .overview-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roi-shell {
    grid-template-columns: 1fr;
  }

  .pricing-showcase {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .pricing-enterprise {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-demo-layout {
    grid-template-columns: 1fr;
  }

  .book-demo-points {
    flex-wrap: wrap;
  }

  .legal-card {
    padding: 26px;
  }

  .logo-row,
  .integration-logos,
  .timeline-wrap,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-row.reverse .solution-visual {
    order: 0;
  }

  .timeline-wrap::before {
    display: none;
  }

  .demo-shell {
    height: calc(100vh - 24px);
  }

  .demo-stage {
    overflow: auto;
  }

  .hero-copy {
    padding: 42px 0 28px;
  }

  .pain-card:nth-child(-n + 3) {
    border-bottom: 0;
  }

  .pain-card:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(24, 80, 199, 0.08);
  }

  .pain-card:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .pain-card:nth-child(even) {
    border-left: 1px solid rgba(24, 80, 199, 0.08);
  }

}

@media (max-width: 760px) {
  .section {
    padding: 84px 0;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.86);
  }

  .hero {
    padding-top: 36px;
  }

  .section-header h2,
  .hero h1,
  .cta-panel h2 {
    font-size: clamp(2.1rem, 9vw, 3.3rem);
  }

  .stats-row,
  .overview-grid,
  .pain-grid,
  .overview-strip,
  .logo-row,
  .integration-logos,
  .testimonial-grid,
  .pricing-grid,
  .timeline-wrap,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .feature-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .roi-inputs,
  .roi-results {
    padding: 22px;
  }

  .pricing-toggle {
    width: 100%;
  }

  .pricing-toggle-option {
    flex: 1 1 0;
  }

  .pricing-enterprise-actions {
    width: 100%;
    flex-direction: column;
  }

  .pricing-enterprise-actions .button {
    width: 100%;
  }

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

  .integration-supporting-copy {
    margin-top: 20px;
  }

  .roi-field-top,
  .roi-line-item,
  .roi-summary-card {
    gap: 12px;
  }


  .solution-row {
    padding: 0;
    background: transparent;
  }

  .mockup-card {
    min-height: 220px;
  }

  .pain-card,
  .overview-card,
  .overview-stat,
  .feature-tile,
  .timeline-step,
  .testimonial-card,
  .pricing-card,
  .integration-panel,
  .cta-panel,
  .trust-panel,
  .demo-panel {
    padding: 22px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-row {
    justify-content: flex-start;
  }

  .cta-button-row {
    width: 100%;
    flex-direction: column;
  }

  .cta-button-row .button {
    width: 100%;
  }

  .demo-overlay {
    padding: 0;
  }

  .demo-shell {
    height: 100vh;
    border-radius: 0;
    padding: 18px;
  }

  .demo-topbar,
  .demo-panel-header {
    flex-direction: column;
  }

  .pain-grid {
    gap: 0;
  }

  .pain-card {
    padding: 24px 22px;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(24, 80, 199, 0.08) !important;
  }

  .pain-card:last-child {
    border-bottom: 0 !important;
  }

  .overview-stat {
    min-height: 150px;
    gap: 10px;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .overview-stat:last-child {
    border-bottom: 0;
  }

  .overview-bridge p {
    border-radius: 26px;
    padding: 20px 24px;
  }

  .overview-benefits {
    border-radius: 26px;
    padding: 20px 22px;
    gap: 18px;
  }

  .overview-benefit {
    font-size: 1rem;
  }

  .overview-capabilities {
    gap: 12px;
  }

  .overview-capability {
    min-height: 44px;
    padding: 0 15px;
    font-size: 0.88rem;
  }

  .demo-topbar-actions {
    width: 100%;
  }

  .demo-topbar-actions .button {
    flex: 1;
  }

  .transcript-line p {
    font-size: 1rem;
  }

  .hero-copy {
    padding: 30px 0 16px;
  }

  .ribbon-1,
  .ribbon-2 {
    width: 88vw;
    left: -8vw;
  }
}
