/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --green:    #0EA5E9;
  --white:    #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --radius: 16px;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-900);
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links .nav-cta {
  background: #2563EB;
  color: var(--white);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: .875rem;
  transition: background .2s, transform .2s;
}
.nav-links .nav-cta:hover { background: #1D4ED8; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column; gap: 0;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 99;
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.mobile-menu a {
  padding: 14px 28px;
  color: var(--gray-700, #374151);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--gray-50); }
.mobile-menu .nav-cta {
  margin: 10px 20px 4px;
  padding: 12px 20px;
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: 10px;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

/* Blobs removed */

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ─── LEFT ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: .03em;
  text-transform: uppercase;
  animation: fadeUp .6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .7; }
}

.headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 22px;
  animation: fadeUp .7s .1s ease both;
}
.highlight { color: #2563EB; }

.subheadline {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 38px;
  animation: fadeUp .7s .2s ease both;
}

.cta-group {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue-600);
  color: var(--white);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.38);
  background: var(--blue-700);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray-800);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--blue-600); }
.play-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
  color: var(--blue-600);
}
.btn-secondary:hover .play-icon {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}

.trust-row {
  display: flex; align-items: center; gap: 28px;
  animation: fadeUp .7s .4s ease both;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.trust-label { font-size: .78rem; color: var(--gray-400); font-weight: 500; }
.trust-divider {
  width: 1px; height: 36px;
  background: var(--gray-200);
}

/* ─── RIGHT / DASHBOARD ─────────────────────────────────────── */
.hero-right {
  animation: fadeUp .7s .2s ease both;
}
.dashboard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

/* Main card */
.main-card { padding: 24px; }

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-title-group { display: flex; align-items: center; gap: 8px; }
.dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dash-dot.green { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.dash-dot.blue  { background: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.18); }
.dash-title { font-size: .85rem; font-weight: 600; color: var(--gray-800); }
.dash-badge {
  font-size: .7rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,.1);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.metric {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
.metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}
.metric-label { font-size: .7rem; color: var(--gray-400); font-weight: 500; }
.metric-change { font-size: .72rem; font-weight: 600; }
.metric-change.up { color: var(--green); }

/* Chart */
.chart-area {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--gray-100);
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  margin-bottom: 10px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: var(--blue-200);
  border-radius: 6px 6px 0 0;
  transition: background .3s;
}
.bar.active { background: var(--blue-600); }
.chart-label { font-size: .7rem; color: var(--gray-400); text-align: center; }

/* Floating cards */
.notif-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  animation: floatY 4s ease-in-out infinite;
}
.float-card-1 { animation-delay: 0s; }
.float-card-2 { animation-delay: 1.5s; }
.float-card-3 { animation-delay: .8s; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

.notif-icon {
  width: 36px; height: 36px;
  background: rgba(37,211,102,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.notif-title { font-size: .83rem; font-weight: 600; color: var(--gray-800); }
.notif-sub   { font-size: .74rem; color: var(--gray-400); }
.notif-time  { font-size: .72rem; color: var(--gray-400); white-space: nowrap; }

.reactivate-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  animation: floatY 4s 1.5s ease-in-out infinite;
}
.reactivate-icon {
  width: 36px; height: 36px;
  background: rgba(16,185,129,.12);
  color: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reactivate-badge {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(16,185,129,.1);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.status-card { animation: floatY 5s .8s ease-in-out infinite; }
.status-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 12px;
}
.status-items { display: flex; flex-direction: column; gap: 9px; }
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--gray-700, #374151);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green { background: var(--green); }
.status-dot.blue  { background: var(--blue-500); }
.status-val {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
}



/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── PROBLEM SECTION ───────────────────────────────────────── */
.problem-section {
  background: #F8FAFC;
  padding: 100px 24px 80px;
  position: relative;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.problem-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.eyebrow-line {
  display: block;
  width: 28px; height: 1px;
  background: #CBD5E1;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.title-amp { color: #2563EB; }
.section-sub {
  font-size: 1.05rem;
  color: #64748B;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.problem-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(28px);
}
.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.34,1.2,.64,1),
              box-shadow .3s ease, border-color .3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.10);
  border-color: #CBD5E1;
}

.problem-card-inner {
  padding: 28px 24px 24px;
  position: relative;
  z-index: 1;
}

/* Icon */
.pcard-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s ease;
}
.problem-card:hover .pcard-icon { transform: scale(1.08); }

.pcard-icon--red    { background: #F1F5F9; color: #64748B; }
.pcard-icon--amber  { background: #E0F2FE; color: #0284C7; }
.pcard-icon--orange { background: #F8FAFC; color: #475569; }
.pcard-icon--rose   { background: #F1F5F9; color: #334155; }

/* Card number */
.pcard-number {
  font-size: .72rem;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
}

.pcard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pcard-desc {
  font-size: .875rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Stat chip */
.pcard-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #F1F5F9;
}
.stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* Bottom callout */
.problem-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.callout-icon {
  width: 40px; height: 40px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.callout-text {
  font-size: .95rem;
  color: #475569;
  line-height: 1.65;
}
.callout-text strong { color: #0F172A; font-weight: 700; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .subheadline { max-width: 100%; margin: 0 auto 38px; }
  .cta-group { justify-content: center; }
  .trust-row { justify-content: center; }
  .badge { margin-left: auto; margin-right: auto; }
  .hero-right { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 80px; }
  .headline { font-size: 1.75rem; }
  .dash-metrics { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .metric-value { font-size: 1.05rem; }
  .trust-row { gap: 18px; }
  .problem-section { padding: 72px 20px 60px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-callout { flex-direction: column; text-align: center; gap: 12px; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .strip-content { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.services-section {
  background: #FFFFFF;
  padding: 100px 24px 80px;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

/* 2×2 grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

/* ── Individual card ── */
.svc-card {
  background: #FFFFFF;
  border: 1px solid #E8EDF5;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.34,1.4,.64,1), box-shadow .28s ease, border-color .28s ease;
  opacity: 0;
  transform: translateY(24px);
}
.svc-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.2,.64,1),
              box-shadow .28s ease, border-color .28s ease;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: #C7D7F0;
}

/* Subtle top accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity .28s ease;
}
.svc-card:hover::before { opacity: 1; }
.svc-card[data-svc="0"]::before { background: #2563EB; }
.svc-card[data-svc="1"]::before { background: #3B82F6; }
.svc-card[data-svc="2"]::before { background: #475569; }
.svc-card[data-svc="3"]::before { background: #0EA5E9; }

/* Card top row */
.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Icon blob */
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.svc-card:hover .svc-icon { transform: scale(1.07) rotate(-2deg); }

.svc-icon--blue    { background: #EFF6FF; color: #2563EB; }
.svc-icon--teal    { background: #EFF6FF; color: #3B82F6; }
.svc-icon--indigo  { background: #F8FAFC; color: #475569; }
.svc-icon--emerald { background: #F0F9FF; color: #0EA5E9; }

/* Specialty tag */
.svc-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}
.svc-tag--teal    { background: #EFF6FF; color: #3B82F6; border-color: #BFDBFE; }
.svc-tag--indigo  { background: #F8FAFC; color: #475569; border-color: #E2E8F0; }
.svc-tag--emerald { background: #F0F9FF; color: #0EA5E9; border-color: #BAE6FD; }

/* Title & description */
.svc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.svc-desc {
  font-size: .875rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Bullet list */
.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: #374151;
  line-height: 1.5;
}

.bullet-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.bullet-check--teal    { background: #EFF6FF; color: #3B82F6; }
.bullet-check--indigo  { background: #F8FAFC; color: #475569; }
.bullet-check--emerald { background: #F0F9FF; color: #0EA5E9; }

/* Card footer */
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
  gap: 12px;
  flex-wrap: wrap;
}

.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  transition: color .2s ease;
}
.svc-learn svg {
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-learn:hover { color: #1D4ED8; }
.svc-learn:hover svg {
  transform: translateX(4px);
}
.svc-learn--teal    { color: #3B82F6; }
.svc-learn--teal:hover { color: #2563EB; }
.svc-learn--indigo  { color: #475569; }
.svc-learn--indigo:hover { color: #334155; }
.svc-learn--emerald { color: #0EA5E9; }
.svc-learn--emerald:hover { color: #0284C7; }

.svc-result {
  font-size: .75rem;
  font-weight: 600;
  color: #64748B;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

/* Bottom CTA strip */
.services-cta-strip {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border: 1px solid #BFDBFE;
  border-radius: 20px;
  padding: 32px 40px;
}
.strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.strip-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1E293B;
}

/* ── Services responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-section { padding: 72px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-cta-strip { padding: 24px 20px; }
  .strip-content { flex-direction: column; text-align: center; }
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.hiw-section {
  background: #F8FAFC;
  padding: 100px 24px 80px;
  position: relative;
}
.hiw-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
}

.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ── Steps container ── */
.hiw-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

/* ── Animated connector line ── */
.hiw-connector {
  position: absolute;
  top: 34px;               /* aligns with icon centre */
  left: calc(12.5%);       /* centre of col 1 */
  right: calc(12.5%);      /* centre of col 4 */
  height: 2px;
  pointer-events: none;
  z-index: 0;
}
.connector-track {
  position: absolute;
  inset: 0;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
}
.connector-fill {
  height: 100%;
  width: 0%;
  background: #2563EB;
  border-radius: 99px;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.connector-fill.animated { width: 100%; }

/* Dot markers on the connector */
.connector-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px #E2E8F0;
  transition: background .3s ease, box-shadow .3s ease;
  flex-shrink: 0;
}
.cdot.active {
  background: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}

/* ── Single step ── */
.hiw-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.2,.64,1);
}
.hiw-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icon wrap */
.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.step-num {
  font-size: .7rem;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: .1em;
  font-family: 'Inter', monospace;
}

.step-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .28s cubic-bezier(.34,1.4,.64,1), box-shadow .28s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.hiw-step:hover .step-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.step-icon--blue    { background: #EFF6FF; color: #2563EB; border: 1.5px solid #BFDBFE; }
.step-icon--teal    { background: #EFF6FF; color: #3B82F6; border: 1.5px solid #BFDBFE; }
.step-icon--indigo  { background: #F8FAFC; color: #475569; border: 1.5px solid #E2E8F0; }
.step-icon--emerald { background: #F0F9FF; color: #0EA5E9; border: 1.5px solid #BAE6FD; }

/* Subtle pulse ring on hover */
.step-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  border: 2px solid transparent;
  transition: border-color .28s ease, inset .28s ease;
}
.hiw-step:hover .step-icon--blue::after   { border-color: rgba(37,99,235,.15); inset: -8px; }
.hiw-step:hover .step-icon--teal::after   { border-color: rgba(13,148,136,.15); inset: -8px; }
.hiw-step:hover .step-icon--indigo::after { border-color: rgba(71,85,105,.15); inset: -8px; }
.hiw-step:hover .step-icon--emerald::after{ border-color: rgba(14,165,233,.15); inset: -8px; }

/* Step body */
.step-body { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.step-desc {
  font-size: .85rem;
  color: #64748B;
  line-height: 1.65;
  max-width: 220px;
}

/* Step tag pills */
.step-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.step-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 99px;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}
.step-tag--teal    { background: #EFF6FF; color: #3B82F6; border-color: #BFDBFE; }
.step-tag--indigo  { background: #F8FAFC; color: #475569; border-color: #E2E8F0; }
.step-tag--emerald { background: #F0F9FF; color: #0EA5E9; border-color: #BAE6FD; }

/* ── Outcome strip ── */
.hiw-outcome {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  flex-wrap: wrap;
}
.outcome-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 12px;
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  padding: 0 24px;
}
.outcome-item:first-child { padding-left: 0; }
.outcome-icon {
  width: 30px; height: 30px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.outcome-sep {
  width: 1px; height: 24px;
  background: #E2E8F0;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
  .hiw-connector { display: none; }
  .hiw-step { padding: 0 12px; }
  .hiw-outcome {
    flex-direction: column;
    text-align: center;
  }
  .outcome-items { justify-content: center; }
  .outcome-item:first-child { padding-left: 24px; }
}

@media (max-width: 600px) {
  .hiw-section { padding: 72px 20px 60px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-desc { max-width: 100%; }
  .hiw-outcome { padding: 24px 20px; }
  .outcome-sep { display: none; }
  .outcome-item { padding: 0; }
}

/* ─── ROI SECTION ───────────────────────────────────────────── */
.roi-section {
  background: #FFFFFF;
  padding: 100px 24px 90px;
  position: relative;
}
.roi-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
}
.roi-inner { max-width: 1200px; margin: 0 auto; }
.roi-header { text-align: center; margin-bottom: 56px; }

/* Stats bar */
.roi-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border: 1px solid #BFDBFE;
  border-radius: 20px;
  padding: 32px 48px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.roi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  text-align: center;
}
.roi-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.03em;
  line-height: 1;
}
.roi-stat-label {
  font-size: .78rem;
  color: #64748B;
  font-weight: 500;
  max-width: 140px;
  line-height: 1.4;
}
.roi-stat-sep { width: 1px; height: 48px; background: #BFDBFE; flex-shrink: 0; }

/* 2×2 Grid */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* ROI Card */
.roi-card {
  background: #FFFFFF;
  border: 1px solid #E8EDF5;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.34,1.4,.64,1), box-shadow .28s ease, border-color .28s ease;
  opacity: 0;
  transform: translateY(24px);
}
.roi-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.2,.64,1), box-shadow .28s ease, border-color .28s ease;
}
.roi-card:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.08); border-color: #C7D7F0; }

.roi-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.roi-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.roi-icon--red    { background: #F1F5F9; color: #64748B; }
.roi-icon--amber  { background: #E0F2FE; color: #0284C7; }
.roi-icon--green  { background: #F0F9FF; color: #10B981; }
.roi-icon--blue   { background: #EFF6FF; color: #2563EB; }

.roi-card-label { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 99px; }
.roi-card-label--red   { background: #F1F5F9; color: #64748B; border: 1px solid #E2E8F0; }
.roi-card-label--amber { background: #E0F2FE; color: #0369A1; border: 1px solid #BAE6FD; }
.roi-card-label--green { background: #F0F9FF; color: #0EA5E9; border: 1px solid #BAE6FD; }
.roi-card-label--blue  { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }

.roi-card-title { font-size: 1.1rem; font-weight: 700; color: #0F172A; margin-bottom: 8px; letter-spacing: -.01em; }
.roi-card-desc  { font-size: .875rem; color: #64748B; line-height: 1.65; margin-bottom: 20px; }

/* Chart area */
.roi-chart { background: #F8FAFC; border: 1px solid #F1F5F9; border-radius: 14px; padding: 16px; margin-top: auto; }
.roi-chart-label { font-size: .7rem; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.roi-chart-note { margin-top: 12px; }
.loss-badge { font-size: .72rem; font-weight: 600; color: #64748B; background: #F1F5F9; border: 1px solid #E2E8F0; padding: 4px 10px; border-radius: 99px; }
.loss-badge--amber { color: #0369A1; background: #E0F2FE; border-color: #BAE6FD; }
.loss-badge--blue  { color: #2563EB; background: #EFF6FF; border-color: #BFDBFE; }

/* Bar chart — Card 1 */
.roi-bars { display: flex; align-items: flex-end; gap: 16px; height: 80px; }
.roi-bar-group { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.roi-bar { width: 100%; height: var(--h); border-radius: 6px 6px 0 0; }
.roi-bar--gray { background: #E2E8F0; }
.roi-bar--red  { background: #64748B; }
.roi-bar--blue { background: #2563EB; }
.roi-bar-l { font-size: .65rem; color: #94A3B8; font-weight: 500; }

/* Touch rings — Card 2 */
.roi-touch-row { display: flex; gap: 12px; align-items: center; }
.touch-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; font-size: .75rem; font-weight: 600; color: #64748B; }
.touch-ring { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; border: 3px solid; }
.touch-ring--done    { border-color: #BAE6FD; color: #0EA5E9; background: #F0F9FF; }
.touch-ring--partial { border-color: #BAE6FD; color: #0369A1; background: #E0F2FE; }
.touch-ring--need    { border-color: #BFDBFE; color: #2563EB; background: #EFF6FF; font-size: 1rem; font-weight: 800; }

/* Progress bars — Card 3 */
.roi-progress-list { display: flex; flex-direction: column; gap: 10px; }
.roi-prog-row { display: flex; align-items: center; gap: 10px; }
.prog-label { font-size: .75rem; font-weight: 500; color: #475569; width: 62px; flex-shrink: 0; }
.prog-track { flex: 1; height: 8px; background: #E2E8F0; border-radius: 99px; overflow: hidden; }
.prog-fill { height: 100%; width: 0; border-radius: 99px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.roi-card.visible .prog-fill { width: var(--w); }
.prog-fill--green { background: #0EA5E9; }
.prog-fill--blue  { background: #3B82F6; }
.prog-fill--gray  { background: #CBD5E1; }
.prog-val { font-size: .75rem; font-weight: 700; color: #374151; width: 32px; text-align: right; flex-shrink: 0; }

/* Compare dots — Card 4 */
.roi-compare { display: flex; flex-direction: column; gap: 10px; }
.compare-row { display: flex; align-items: center; gap: 10px; }
.compare-label { font-size: .72rem; font-weight: 500; color: #64748B; width: 62px; flex-shrink: 0; }
.compare-dots { flex: 1; display: flex; gap: 5px; align-items: center; }
.cdot-sm { width: 10px; height: 10px; border-radius: 50%; background: #E2E8F0; flex-shrink: 0; }
.cdot-sm.active-dot { background: #2563EB; }
.compare-row:first-child .cdot-sm.active-dot { background: #94A3B8; }
.compare-pct { font-size: .8rem; font-weight: 700; width: 36px; text-align: right; flex-shrink: 0; }
.compare-pct--low  { color: #94A3B8; }
.compare-pct--high { color: #2563EB; }

/* Statement block */
.roi-statement { display: flex; align-items: center; gap: 32px; }
.statement-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #BFDBFE); }
.statement-line:last-child { background: linear-gradient(90deg, #BFDBFE, transparent); }
.statement-content { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 620px; text-align: center; }
.statement-text { font-size: 1.15rem; color: #334155; line-height: 1.7; font-style: italic; }
.statement-text strong { color: #0F172A; font-style: normal; font-weight: 700; }

/* ROI responsive */
@media (max-width: 960px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-stats-bar { padding: 24px; }
  .roi-stat { padding: 0 20px; }
  .roi-stat-sep { width: 40px; height: 1px; }
}
@media (max-width: 640px) {
  .roi-section { padding: 72px 20px 64px; }
  .roi-stats-bar { flex-direction: column; }
  .roi-stat-sep { display: none; }
  .roi-stat { padding: 12px 0; border-bottom: 1px solid #BFDBFE; }
  .roi-stat:last-child { border: none; }
  .roi-stat-val { font-size: 1.8rem; }
  .roi-statement { flex-direction: column; gap: 16px; }
  .statement-line { width: 80px; flex: unset; }
}

/* ─── DEMO VIDEO SECTION ────────────────────────────────────── */
.demo-section {
  background: #F8FAFC;
  padding: 100px 24px 80px;
  position: relative;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
}
.demo-inner { max-width: 1200px; margin: 0 auto; }
.demo-header { text-align: center; margin-bottom: 60px; }

/* ── 3-col grid ── */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

/* ── Demo card ── */
.demo-card {
  background: #FFFFFF;
  border: 1px solid #E8EDF5;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(28px);
}
.demo-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.34,1.2,.64,1), box-shadow .3s ease, border-color .3s ease;
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,.10);
  border-color: #C7D7F0;
}

/* ── Video wrap + floating elements ── */
.demo-video-wrap {
  position: relative;
  padding: 20px 20px 0;
}

/* Floating notification chips */
.demo-float {
  position: absolute;
  z-index: 10;
  animation: floatY 4s ease-in-out infinite;
}
.demo-float-1 { top: 28px; left: 12px; animation-delay: 0s; }
.demo-float-2 { top: 28px; right: 12px; animation-delay: 1s; }
.demo-float-3 { top: 28px; left: 12px; animation-delay: .5s; }
.demo-float-4 { top: 28px; right: 12px; animation-delay: 1.5s; }
.demo-float-5 { top: 28px; left: 12px; animation-delay: .8s; }
.demo-float-6 { top: 28px; right: 12px; animation-delay: 1.8s; }

.float-notif {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #E2E8F0;
  border-radius: 99px;
  padding: 5px 12px 5px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  font-size: .72rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.float-notif-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2563EB;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.float-notif-dot--teal   { background: #3B82F6; }
.float-notif-dot--indigo { background: #475569; }
.float-notif-text { font-size: .72rem; }

.float-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
}
.float-pill--green  { background: #F0F9FF; color: #0EA5E9; border: 1px solid #BAE6FD; }
.float-pill--blue   { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }
.float-pill--indigo { background: #F8FAFC; color: #475569; border: 1px solid #E2E8F0; }

/* ── Video frame (screen mockup) ── */
.demo-video-frame {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  border-bottom: none;
  aspect-ratio: 16 / 10;
  margin-top: 36px;
}
.demo-video-frame--teal   { background: #EFF6FF; border-color: #BFDBFE; }
.demo-video-frame--indigo { background: #F8FAFC; border-color: #E2E8F0; }

/* ── Fake screen UI ── */
.demo-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  flex-shrink: 0;
}
.screen-dots { display: flex; gap: 5px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; }
.sdot-r { background: #CBD5E1; }
.sdot-y { background: #7DD3FC; }
.sdot-g { background: #86EFAC; }
.screen-url {
  font-size: .6rem;
  color: #94A3B8;
  font-weight: 500;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 3px 8px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.screen-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.screen-sidebar {
  width: 28px;
  background: #F8FAFC;
  border-right: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 6px;
  flex-shrink: 0;
}
.sb-item {
  height: 20px;
  background: #E2E8F0;
  border-radius: 4px;
}
.active-sb        { background: #2563EB; opacity: .7; }
.active-sb--teal  { background: #3B82F6; }
.active-sb--indigo{ background: #475569; }
.screen-content {
  flex: 1;
  padding: 10px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}

/* skeleton rows */
.sc-row { height: 8px; border-radius: 4px; background: #E2E8F0; }
.sc-row--wide  { width: 100%; }
.sc-row--med   { width: 70%; }
.sc-row--short { width: 45%; }
.sc-row--blue  { background: #BFDBFE; }
.sc-row--blue2 { background: #93C5FD; }
.sc-row--teal  { background: #BFDBFE; }
.sc-row--teal2 { background: #5EEAD4; }
.sc-row--indigo  { background: #E2E8F0; }
.sc-row--indigo2 { background: #A5B4FC; }

/* mini card row */
.sc-cards { display: flex; gap: 6px; }
.sc-card {
  flex: 1; height: 36px;
  background: #F1F5F9;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}
.sc-card--accent { background: #EFF6FF; border-color: #BFDBFE; }

/* list items */
.sc-list { display: flex; flex-direction: column; gap: 5px; }
.sc-list-item {
  height: 10px;
  background: #F1F5F9;
  border-radius: 4px;
  width: 100%;
}
.sc-list-item--active { background: #BAE6FD; width: 80%; }

/* mini calendar */
.sc-mini-cal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.cal-cell {
  height: 14px;
  background: #F1F5F9;
  border-radius: 3px;
}
.cal-cell--filled { background: #E2E8F0; }

/* ── Play overlay button ── */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.28);
  border: none;
  cursor: pointer;
  transition: background .25s ease;
}
.play-overlay:hover { background: rgba(15, 23, 42, 0.38); }

.play-btn {
  width: 52px; height: 52px;
  background: #2563EB;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.play-overlay:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,99,235,.55);
}
.play-btn--teal   { background: #3B82F6; box-shadow: 0 8px 24px rgba(13,148,136,.45); }
.play-btn--indigo { background: #475569; box-shadow: 0 8px 24px rgba(71,85,105,.45); }

/* Pulsing rings */
.play-ring {
  position: absolute;
  border-radius: 50%;
  animation: ringPulse 2.4s ease-out infinite;
  border: 2px solid rgba(37,99,235,.4);
}
.play-ring-1 { width: 68px; height: 68px; animation-delay: 0s; }
.play-ring-2 { width: 88px; height: 88px; animation-delay: .8s; }
.play-ring--teal   { border-color: rgba(13,148,136,.4); }
.play-ring--indigo { border-color: rgba(71,85,105,.4); }

@keyframes ringPulse {
  0%   { transform: scale(.9); opacity: .8; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Duration badge */
.duration-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(15,23,42,.75);
  color: #FFFFFF;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

/* ── Card body ── */
.demo-card-body {
  padding: 20px 20px 22px;
}
.demo-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  display: inline-flex;
  margin-bottom: 12px;
}
.demo-tag--blue   { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }
.demo-tag--teal   { background: #EFF6FF; color: #3B82F6; border: 1px solid #BFDBFE; }
.demo-tag--indigo { background: #F8FAFC; color: #475569; border: 1px solid #E2E8F0; }

.demo-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.demo-card-desc {
  font-size: .85rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 16px;
}
.demo-card-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.demo-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: #94A3B8;
  font-weight: 500;
}

/* ── Bottom CTA ── */
.demo-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  padding: 32px 28px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border: 1px solid #BFDBFE;
  border-radius: 20px;
}
.demo-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1E293B;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .demo-section { padding: 72px 20px 60px; }
  .demo-cta-row { flex-direction: column; gap: 16px; padding: 24px 20px; }
}

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  padding: 120px 24px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Decorative background gradient blobs */
/* CTA BG Shapes removed */
.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E8EDF5;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.04);
}

/* ── Floating elements ── */
.cta-float {
  position: absolute;
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
  display: none; /* Hidden on mobile by default */
}
@media (min-width: 960px) {
  .cta-float { display: block; }
}
.cta-float-1 { top: -20px; left: 10%; animation-delay: 0s; }
.cta-float-2 { bottom: 40px; left: -30px; animation-delay: 1.5s; }
.cta-float-3 { top: 60px; right: -40px; animation-delay: .7s; }

.cta-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px;
  height: 60px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}
.cta-mini-bar {
  width: 12px;
  background: #BFDBFE;
  border-radius: 3px 3px 0 0;
}
.cta-mini-bar:last-child { background: #2563EB; }

/* ── Content ── */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.cta-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  max-width: 800px;
}
.cta-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.btn-large {
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(37,99,235,.25);
}

/* ── Trust markers ── */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: #64748B;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cta-section { padding: 80px 20px; }
  .cta-inner { padding: 60px 24px; border-radius: 24px; }
  .cta-title { font-size: 2.2rem; margin-bottom: 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-secondary { width: 100%; justify-content: center; }
  .cta-trust { flex-direction: column; gap: 12px; }
}

/* ─── FOOTER SECTION ────────────────────────────────────────── */
.footer {
  background: #0B1121;
  border-top: 1px solid #1E293B;
  padding: 80px 24px 40px;
  color: #F8FAFC;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 320px;
}
.logo--footer {
  color: #FFFFFF;
}
.logo--footer .logo-icon {
  background: #1E293B;
  color: #FFFFFF;
}
.footer-desc {
  font-size: .95rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-top: 16px;
}
.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-title {
  font-size: .95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: .9rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-col a:hover {
  color: #3B82F6;
  transform: translateX(2px);
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-link svg {
  color: #3B82F6;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #1E293B;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: .85rem;
  color: #64748B;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: .85rem;
  color: #64748B;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-legal a:hover {
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .footer-legal { justify-content: center; }
}

/* ─── DROPDOWN NAV ──────────────────────────────────────────── */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  min-width: 280px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-600);
}

/* Mobile Dropdown */
.mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 28px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s;
  cursor: pointer;
}
.mobile-dropdown-toggle:hover { background: var(--gray-50); }
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: var(--gray-50);
  padding: 4px 0;
}
.mobile-dropdown-menu.open {
  display: flex;
}
.mobile-dropdown-menu a {
  padding: 12px 28px 12px 40px !important;
  font-size: 0.9rem !important;
  color: var(--gray-600) !important;
}
.mobile-dropdown-menu a:hover {
  background: var(--blue-50) !important;
  color: var(--blue-600) !important;
}

/* Active Nav State */
.nav-links a.active,
.has-dropdown > a.active {
  color: var(--blue-600);
  position: relative;
}
.nav-links a.active::after,
.has-dropdown > a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(37,99,235,0.3);
}
.mobile-dropdown-toggle.active {
  color: var(--blue-600) !important;
  background: var(--blue-50);
  border-left: 3px solid var(--blue-600);
  padding-left: 25px !important;
}

/* ─── AUDIT FORM ────────────────────────────────────────────── */
.audit-section {
  padding: 120px 24px 80px;
  background: var(--white);
}
.audit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.audit-content {
  max-width: 500px;
}
.audit-headline {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.audit-subheadline {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 48px;
}
.audit-form-wrap {
  position: relative;
}
.audit-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--gray-100);
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: all 0.2s ease;
}
.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-control::placeholder {
  color: var(--gray-400);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.audit-steps-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.audit-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.audit-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.audit-step-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding-top: 4px;
}

@media (max-width: 992px) {
  .audit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .audit-form-card {
    padding: 30px 20px;
  }
  .audit-headline {
    font-size: 2.5rem;
  }
}

/* ─── CALENDLY SECTION ───────────────────────────────────────── */
.calendly-section {
  padding: 80px 24px 120px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.calendly-inner {
  max-width: 900px;
  margin: 0 auto;
}
.calendly-header {
  text-align: center;
  margin-bottom: 40px;
}
.calendly-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.calendly-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
}
.calendly-embed-wrap {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--gray-100);
  min-height: 700px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.calendly-placeholder {
  text-align: center;
}
.calendly-loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--blue-50);
  border-top-color: var(--blue-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
.calendly-placeholder p {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .calendly-section { padding: 60px 20px; }
  .calendly-title { font-size: 2rem; }
  .calendly-embed-wrap { min-height: 700px; }
}

/* ─── THANK YOU SECTION ───────────────────────────────────────── */
.ty-section {
  padding: 140px 24px 100px;
  background: var(--gray-50);
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-inner {
  width: 100%;
  max-width: 600px;
}
.ty-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  border: 1px solid var(--gray-100);
  text-align: center;
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ty-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.ty-headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ty-subheadline {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}
.ty-steps-wrap {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  margin-bottom: 40px;
  border: 1px solid #E2E8F0;
}
.ty-steps-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.ty-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ty-step:last-child {
  margin-bottom: 0;
}
.ty-step-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
}
.ty-step-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}
.ty-btn {
  display: inline-flex;
  justify-content: center;
  padding: 14px 32px;
}

@media (max-width: 600px) {
  .ty-card { padding: 40px 24px; }
  .ty-headline { font-size: 2rem; }
  .ty-steps-wrap { padding: 24px; }
}
