:root {
  --primary: #1E2D3D;
  --primary-2: #293F55;
  --accent: #F97316;
  --accent-2: #FFB020;
  --bg: #F8FAFC;
  --text: #0F172A;
  --muted: #64748B;
  --line: #DCE5EF;
  --card: #FFFFFF;
  --teal: #0F766E;
  --blue: #2563EB;
  --green: #16A34A;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(249, 115, 22, 0.08), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.8), transparent 45%);
  z-index: -1;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 14px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 46px;
  padding-top: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(22, 163, 74, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button svg,
.icon-button svg,
.card-icon svg,
.field-phone button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #EA580C);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
}

.button-ghost,
.button-secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--line);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-stats div,
.result-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats strong,
.result-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.hero-stats span,
.result-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.visual-shell {
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg, #FFFFFF, #EEF4FA);
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-shell img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
}

/* ── Dashboard mockup ──────────────────────────────────── */
.dash-mock {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  overflow: hidden;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  color: #0F172A;
  user-select: none;
}

.dm-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #fff;
  border-bottom: 1px solid #DCE5EF;
  flex-shrink: 0;
}

.dm-logo {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.dm-brand {
  font-weight: 900;
  font-size: 10px;
  color: #1E2D3D;
  flex: 1;
}

.dm-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dm-avatar {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: #1E2D3D;
  color: #fff;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 900;
}

.dm-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  flex: 1;
  overflow: hidden;
}

.dm-sidebar {
  background: #fff;
  border-right: 1px solid #DCE5EF;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dm-nav-item {
  padding: 5px 6px;
  border-radius: 5px;
  color: #64748B;
  font-size: 8px;
  font-weight: 700;
  cursor: default;
}

.dm-nav-active {
  background: #FFF7ED;
  color: #F97316;
}

.dm-main {
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dm-stat {
  padding: 7px 8px;
  background: #fff;
  border: 1px solid #DCE5EF;
  border-radius: 5px;
}

.dm-stat-warn .dm-stat-num {
  color: #F97316;
}

.dm-stat-num {
  font-size: 16px;
  font-weight: 900;
  color: #1E2D3D;
  line-height: 1;
  margin-bottom: 3px;
}

.dm-stat-lbl {
  font-size: 7px;
  color: #64748B;
  font-weight: 700;
}

.dm-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  color: #1E2D3D;
}

.dm-new-btn {
  padding: 3px 7px;
  background: #F97316;
  color: #fff;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 800;
}

.dm-wo-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

.dm-wo-row {
  display: grid;
  grid-template-columns: 54px 1fr 46px;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  background: #fff;
  border: 1px solid #DCE5EF;
  border-radius: 4px;
}

.dm-wo-name {
  font-size: 8px;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 99px;
  font-size: 6.5px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.dm-badge-open     { background: #DBEAFE; color: #1D4ED8; }
.dm-badge-prog     { background: #FEF9C3; color: #A16207; }
.dm-badge-hold     { background: #F1F5F9; color: #475569; }
.dm-badge-critical { background: #FEE2E2; color: #B91C1C; }
.dm-badge-high     { background: #FFEDD5; color: #C2410C; }
.dm-badge-med      { background: #DBEAFE; color: #1D4ED8; }
.dm-badge-low      { background: #F1F5F9; color: #64748B; }

.floating-card {
  position: absolute;
  width: min(230px, 42%);
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 229, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin: 6px 0;
  color: var(--primary);
  font-size: 18px;
}

.card-schedule {
  left: -18px;
  bottom: 42px;
}

.card-health {
  right: -12px;
  top: 38px;
}

.logo-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -30px auto 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-strip span {
  font-size: 14px;
  font-weight: 700;
}

.logo-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #334155;
  font-size: 14px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading h2,
.proof-card h2,
.final-cta h2 {
  margin: 12px 0 16px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
}

.video-stage {
  overflow: hidden;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #94A3B8;
}

.video-topbar span:first-child {
  background: #F97316;
}

.video-topbar strong {
  margin-left: 10px;
  color: #fff;
  font-size: 14px;
}

.video-screen {
  min-height: 440px;
  padding: 28px;
  display: grid;
  grid-template-columns: 240px minmax(240px, 1fr) 150px;
  align-items: center;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(180deg, #1E2D3D, #132131);
}

.timeline-panel,
.demo-card-main,
.field-phone {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.timeline-panel {
  padding: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 12px;
  padding: 14px 10px;
  color: #94A3B8;
}

.timeline-item span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: #64748B;
}

.timeline-item p,
.timeline-item strong {
  margin: 0;
  grid-column: 2;
}

.timeline-item p {
  font-size: 12px;
  font-weight: 700;
}

.timeline-item strong {
  margin-top: 4px;
  color: #E2E8F0;
  font-size: 14px;
}

.timeline-item.active {
  color: #FDBA74;
}

.timeline-item.active span {
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.14);
}

.demo-card-main {
  min-height: 268px;
  padding: 28px;
  color: #fff;
}

.demo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.demo-card-header span {
  color: #FDBA74;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-card-header strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 999px;
}

.demo-card-main h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.04;
}

.demo-card-main p {
  color: #CBD5E1;
  line-height: 1.6;
}

.meter,
.progress-track {
  overflow: hidden;
  height: 9px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.meter span,
.progress-track span {
  display: block;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
  transition: width 260ms ease;
}

.field-phone {
  min-height: 270px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.phone-notch {
  width: 46px;
  height: 5px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.field-phone span {
  padding: 10px;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.field-phone button,
.icon-button {
  border: 0;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

.field-phone button {
  width: 44px;
  height: 44px;
  margin-top: auto;
  border-radius: 8px;
}

.video-controls {
  min-height: 64px;
  display: grid;
  grid-template-columns: 44px 1fr 54px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.video-controls span:last-child {
  color: #CBD5E1;
  font-size: 13px;
  font-weight: 800;
}

.chapter-list {
  display: grid;
  gap: 12px;
}

.chapter {
  min-height: 112px;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.chapter:hover,
.chapter.active {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.chapter span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  color: var(--accent);
  background: #FFF7ED;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.chapter strong {
  align-self: end;
  color: var(--primary);
}

.chapter small {
  color: var(--muted);
  font-weight: 700;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  min-height: 250px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-card.dark {
  color: #fff;
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
}

.card-icon.teal {
  background: var(--teal);
}

.card-icon.blue {
  background: var(--blue);
}

.card-icon.green {
  background: var(--green);
}

.bento-card h3 {
  margin-bottom: 12px;
  color: inherit;
  font-size: 25px;
  line-height: 1.12;
}

.bento-card p {
  color: var(--muted);
  line-height: 1.65;
}

.bento-card.dark p {
  color: #CBD5E1;
}

.mini-board,
.check-row {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mini-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-board span,
.check-row span {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #F1F5F9;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

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

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

.proof-card,
.final-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 36px;
}

blockquote {
  margin: 24px 0;
  color: #334155;
  font-size: 22px;
  line-height: 1.55;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-author > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-weight: 900;
}

.quote-author small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.result-grid {
  display: grid;
  gap: 18px;
}

.result-grid div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing {
  padding-top: 72px;
}

.billing-toggle {
  width: fit-content;
  margin: -6px 0 24px auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.billing-toggle strong {
  color: var(--accent);
}

.billing-toggle button {
  width: 58px;
  height: 32px;
  padding: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  cursor: pointer;
}

.billing-toggle button span {
  width: 24px;
  height: 24px;
  display: block;
  background: #fff;
  border-radius: 999px;
  transform: translateX(26px);
  transition: transform 180ms ease;
}

.billing-toggle button[aria-checked="false"] span {
  transform: translateX(0);
}

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

.price-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.price-card.featured {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(30, 45, 61, 0.28);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(249, 115, 22, 0.96);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.price-card p {
  min-height: 54px;
  color: var(--muted);
  line-height: 1.55;
}

.price-card.featured p,
.price-card.featured li {
  color: #CBD5E1;
}

.price {
  margin: 24px 0;
}

.price span {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price-card.featured .price small {
  color: #CBD5E1;
}

.price-card .button {
  width: 100%;
}

.price-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  margin-top: 13px;
  padding-left: 24px;
  color: #475569;
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
}

.final-cta {
  margin-bottom: 72px;
  padding: 40px;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(30, 45, 61, 0.96), rgba(15, 23, 42, 0.96)),
    var(--primary);
  color: #fff;
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .demo-grid,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .video-screen {
    grid-template-columns: 1fr;
  }

  .field-phone {
    min-height: 210px;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: span 2;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .section-pad {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-lede,
  .section-heading p {
    font-size: 17px;
  }

  .hero-stats,
  .bento-grid,
  .pricing-grid,
  .mini-board,
  .check-row {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide {
    grid-column: auto;
  }

  .logo-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .video-screen {
    min-height: auto;
    padding: 18px;
  }

  .demo-card-main h3 {
    font-size: 28px;
  }

  .billing-toggle {
    margin-left: 0;
  }

  .final-cta {
    padding: 28px;
  }
}

/* ── Trust line ──────────────────────────────────────────── */
.trust-line {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* ── Problem statement ───────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #FFF7ED;
  border-radius: 8px;
  color: var(--accent);
}

.pain-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* ── How it works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.step-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 20px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* ── Pricing note ────────────────────────────────────────── */
.pricing-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ── About ───────────────────────────────────────────────── */
.about-section {
  background: var(--primary);
  border-radius: 8px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 48px;
  padding: 60px;
  color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  align-items: start;
}

.about-badge {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
}

.about-initial {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.about-copy .eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.about-copy h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.about-copy p {
  color: #CBD5E1;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 16px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-lede {
  color: #CBD5E1;
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin-top: 12px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.final-email {
  color: #94A3B8;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.final-email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom a {
  color: var(--primary);
}

/* ── Responsive extras ───────────────────────────────────── */
@media (max-width: 980px) {
  .pain-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-section {
    padding: 40px;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .pain-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
