@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* Tokens aligned to SiteConnectPro Design System: blue primary, green = WhatsApp only. */
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #eef2f6;
  --ink: #111827;
  --muted: #374151;
  --soft: #6b7280;
  --line: #d8dee8;
  --brand: #1d4ed8;
  --brand-cta: #2563eb;
  --brand-dark: #1e3a8a;
  --panel-dark: #0c2340;
  --teal: #2563eb;
  --gold: #f59e0b;
  --coral: #ef4444;
  --green: #16a34a;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.05);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 251, 0.88);
  border-bottom: 1px solid rgba(219, 227, 224, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(27, 123, 95, 0.25);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  min-width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 850;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(27, 123, 95, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand);
}

.btn-secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-whatsapp {
  color: #0f5f41;
  background: #e1f7ed;
  border-color: #b9e7d0;
}

.eyebrow {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

/* Design System: fixed type scale, no viewport-based scaling. Mobile-first, expanded on desktop. */
h1 {
  margin-top: 14px;
  max-width: 920px;
  font-size: 2.125rem; /* ~34px mobile */
}

h2 {
  font-size: 1.625rem; /* ~26px mobile */
}

h3 {
  font-size: 1.22rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem; /* 56px desktop hero cap (DS display-xl) */
  }

  h2 {
    font-size: 2.25rem; /* 36px (DS heading-xl) */
  }
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.125rem; /* DS body-lg 18px, no viewport scaling */
}

.hero {
  padding: 76px 0 54px;
}

.premium-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 30px;
}

.metric-strip div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 227, 224, 0.9);
  border-radius: var(--radius);
}

.metric-strip strong {
  display: block;
  color: var(--brand);
  font-size: 0.82rem;
}

.metric-strip span {
  color: var(--ink);
  font-weight: 850;
}

section {
  padding: 76px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(240, 245, 243, 0.94), rgba(246, 248, 251, 0.94));
  border-top: 1px solid rgba(219, 227, 224, 0.75);
  border-bottom: 1px solid rgba(219, 227, 224, 0.75);
}

.section-header {
  max-width: 770px;
  margin-bottom: 32px;
}

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

.section-header p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4,
.split-layout {
  display: grid;
  gap: 20px;
}

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

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

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

.split-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.split-layout.reverse {
  grid-template-columns: minmax(380px, 1.1fr) minmax(0, 0.9fr);
}

.card,
.service-card,
.pricing-card,
.visual-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(102, 198, 240, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
}

.card p,
.service-card p,
.pricing-card p,
.visual-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card::before,
.pricing-card::before,
.card.step::before {
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.08);
}

.service-card h3,
.pricing-card h3,
.card h3 {
  position: relative;
  z-index: 1;
}

.service-card .price,
.pricing-card .price {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.system-stage,
.audit-preview,
.growth-dashboard,
.service-explorer,
.before-panel,
.after-panel,
.trust-module {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 224, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.system-stage {
  padding: 20px;
}

.chart-kit-panel {
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(99, 200, 246, 0.12), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.12), transparent 28%),
    #ffffff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.1);
}

.system-stage::before,
.audit-preview::before,
.growth-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), transparent 60%);
}

.system-topbar,
.dashboard-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft);
}

.status-dot.live {
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(27, 123, 95, 0.12);
}

.dashboard-grid-mini,
.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.chart-kit-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.96fr) minmax(190px, 0.76fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.donut-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.donut-chart {
  position: relative;
  width: min(100%, 286px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(
      from -78deg,
      #ffd15c 0deg 122deg,
      transparent 122deg 132deg,
      #66c6f0 132deg 208deg,
      transparent 208deg 218deg,
      #ff555c 218deg 244deg,
      transparent 244deg 254deg,
      #f254b6 254deg 326deg,
      transparent 326deg 336deg,
      #60e876 336deg 360deg
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.donut-chart::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(216, 222, 232, 0.84);
}

.donut-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #454459;
}

.donut-core strong {
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.donut-core span {
  color: #7b7b8d;
  font-weight: 750;
}

.donut-legend {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.donut-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-website { background: #ffd15c; }
.legend-google { background: #66c6f0; }
.legend-whatsapp { background: #60e876; }
.legend-ads { background: #f254b6; }

.enquiry-kpis {
  display: grid;
  gap: 10px;
}

.kpi-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.kpi-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.kpi-card strong {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.kpi-card em {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.leak-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.leak-summary div {
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.1);
}

.leak-summary span {
  display: block;
  color: #8a5208;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.leak-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  line-height: 1.2;
}

.dash-stat,
.dashboard-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dash-stat span,
.dashboard-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.dash-stat strong,
.dashboard-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.9rem;
  line-height: 1;
}

.dash-stat em {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.dashboard-card small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
}

.mini-funnel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.funnel-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.funnel-row b {
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--teal), var(--gold));
  border-radius: 99px;
  animation: pulse-width 3.8s ease-in-out infinite;
}

.funnel-row:nth-child(2) b {
  animation-delay: 0.4s;
}

.funnel-row:nth-child(3) b {
  animation-delay: 0.8s;
}

.funnel-row:nth-child(4) b {
  animation-delay: 1.2s;
}

@keyframes pulse-width {
  0%, 100% { transform: scaleX(0.78); transform-origin: left; opacity: 0.72; }
  50% { transform: scaleX(1); opacity: 1; }
}

.signal-section {
  padding-top: 28px;
}

.flow-visual {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 12px;
}

.flow-node {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 10%, rgba(102, 198, 240, 0.12), transparent 38%),
    var(--surface);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.flow-node:hover,
.flow-node.active {
  transform: translateY(-4px);
  border-color: rgba(27, 123, 95, 0.45);
}

.flow-node span {
  color: var(--brand);
  font-weight: 900;
}

.flow-node strong {
  font-size: 1.05rem;
}

.flow-link {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  position: relative;
}

.flow-link::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  animation: travel-dot 2.8s ease-in-out infinite;
}

@keyframes travel-dot {
  0% { transform: translateX(-36px); opacity: 0; }
  45% { opacity: 1; }
  100% { transform: translateX(0); opacity: 0.25; }
}

.audit-preview {
  padding: 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.audit-score-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.audit-score-main span {
  margin-right: auto;
  color: var(--muted);
  font-weight: 850;
}

.audit-score-main strong {
  color: var(--brand-dark);
  font-size: 4rem;
  line-height: 1;
}

.audit-score-main em {
  color: var(--soft);
  font-style: normal;
  font-weight: 900;
}

.score-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.score-line {
  display: grid;
  grid-template-columns: 150px 1fr 38px;
  align-items: center;
  gap: 12px;
}

.score-line span {
  color: var(--muted);
  font-weight: 800;
}

.score-line b {
  height: 10px;
  overflow: hidden;
  background: #e5ece8;
  border-radius: 99px;
}

.score-line i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  border-radius: inherit;
  transition: width 0.9s ease;
}

.score-line strong {
  text-align: right;
}

.audit-insight {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 16px;
  background: #eff6ff;
  color: var(--brand-dark);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
}

.audit-insight p {
  margin-top: 8px;
  color: var(--muted);
}

.growth-dashboard {
  padding: 22px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.status-pill {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--brand-dark);
  background: rgba(27, 123, 95, 0.11);
  border-radius: 99px;
  font-weight: 900;
}

.dashboard-chart {
  position: relative;
  z-index: 1;
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(239, 246, 255, 0.88));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dashboard-chart span {
  flex: 1;
  min-width: 24px;
  background: linear-gradient(180deg, #66c6f0, var(--brand));
  border-radius: 6px 6px 0 0;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.before-panel,
.after-panel {
  padding: 28px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(102, 198, 240, 0.1), transparent 34%),
    #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
}

.before-panel {
  border-color: rgba(198, 94, 79, 0.35);
}

.after-panel {
  border-color: rgba(27, 123, 95, 0.36);
}

.before-panel > span,
.after-panel > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 99px;
  font-weight: 900;
}

.before-panel > span {
  color: #8d3328;
  background: rgba(198, 94, 79, 0.12);
}

.after-panel > span {
  color: var(--brand-dark);
  background: rgba(27, 123, 95, 0.12);
}

.business-audit {
  display: grid;
  gap: 18px;
}

.business-type-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.business-type-tab {
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.business-type-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 123, 95, 0.32);
}

.business-type-tab.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 30px rgba(27, 123, 95, 0.18);
}

.business-audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.audit-comparison-panel,
.audit-diagnosis-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.08);
}

.audit-comparison-panel {
  overflow: hidden;
}

.audit-example-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.audit-example-head span,
.audit-score-pill span,
.audit-diagnosis-label {
  display: block;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-example-head h3 {
  margin: 4px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.audit-score-pill {
  min-width: 106px;
  padding: 10px 12px;
  border: 1px solid rgba(27, 123, 95, 0.18);
  border-radius: 14px;
  background: #f0fbf6;
  text-align: right;
}

.audit-score-pill strong {
  display: block;
  margin-top: 2px;
  color: var(--brand-dark);
}

.audit-score-pill b {
  font-size: 1.65rem;
  line-height: 1;
}

.audit-ba-slider {
  padding: 18px;
}

.audit-ba-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  touch-action: pan-y;
}

.audit-ba-version {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.audit-ba-before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(254, 242, 242, 0.92)), #fff;
}

.audit-ba-after {
  clip-path: inset(0 calc(100% - var(--split, 54%)) 0 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 253, 245, 0.95)), #fff;
}

.audit-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 54%);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12), 0 0 32px rgba(17, 24, 39, 0.22);
  z-index: 4;
}

.audit-ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(27, 123, 95, 0.28);
  font-weight: 950;
}

.audit-ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}

.audit-ba-label {
  position: absolute;
  top: 14px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-ba-label.before {
  left: 14px;
  color: #8d3328;
  background: #fee2e2;
}

.audit-ba-label.after {
  right: 14px;
  color: #0f5f41;
  background: #dcfce7;
}

.audit-site-card {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.audit-site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audit-site-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 950;
}

.audit-site-logo::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #66c6f0);
}

.audit-site-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #30408f;
  font-size: 0.72rem;
  font-weight: 950;
}

.audit-site-card h4 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.audit-site-card p {
  color: var(--muted);
  max-width: 52ch;
}

.audit-site-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.audit-site-action {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #e5e7eb;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.audit-site-action.primary {
  color: #fff;
  background: var(--brand);
}

.audit-site-action.whatsapp {
  color: #fff;
  background: #16a34a;
}

.audit-site-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.audit-site-proof span {
  min-height: 54px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.audit-ba-before .audit-site-logo::before {
  background: #cbd5e1;
}

.audit-ba-before .audit-site-action.primary,
.audit-ba-before .audit-site-action.whatsapp {
  color: var(--muted);
  background: #e5e7eb;
}

.audit-ba-before .audit-site-badge {
  color: #8d3328;
  background: #fee2e2;
}

.audit-ba-control {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 900;
}

.audit-ba-control input {
  width: 100%;
  accent-color: var(--brand);
}

.audit-diagnosis-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.audit-diagnosis-section {
  display: grid;
  gap: 10px;
}

.audit-check-list {
  display: grid;
  gap: 9px;
  list-style: none;
}

.audit-check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: var(--muted);
  font-weight: 750;
}

.audit-check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
}

.audit-check-list.warning li::before {
  background: #fee2e2;
  box-shadow: inset 0 0 0 5px #ef4444;
}

.audit-check-list.good li::before {
  background: #dcfce7;
  box-shadow: inset 0 0 0 5px #16a34a;
}

.audit-score-lines {
  display: grid;
  gap: 10px;
}

.audit-mini-score {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.audit-mini-score b {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ece8;
}

.audit-mini-score i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.timeline-step {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 10%, rgba(102, 198, 240, 0.11), transparent 38%),
    var(--surface);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.04);
  text-align: left;
  cursor: pointer;
}

.timeline-step span {
  display: block;
  color: var(--brand);
  font-weight: 900;
}

.timeline-step strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.timeline-step.active {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.timeline-step.active span {
  color: #bcd4ff;
}

.timeline-detail {
  margin-top: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.timeline-detail p {
  margin-top: 10px;
  color: var(--muted);
}

.service-explorer {
  padding: 18px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-tabs button {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
}

.service-tabs button.active {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.service-display {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: center;
}

.service-copy {
  padding: 14px;
}

.service-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.service-copy strong {
  display: block;
  margin: 18px 0;
  font-size: 1.28rem;
}

.product-mockup {
  min-height: 300px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.mock-browser {
  width: min(100%, 430px);
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.mock-top {
  width: 90px;
  height: 10px;
  margin-bottom: 18px;
  background: #d3ddd8;
  border-radius: 99px;
}

.mock-hero {
  height: 82px;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  border-radius: var(--radius);
}

.mock-lines {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.mock-lines span {
  height: 10px;
  background: #dbe5e0;
  border-radius: 99px;
}

.mock-lines span:nth-child(2) {
  width: 82%;
}

.mock-lines span:nth-child(3) {
  width: 64%;
}

.mock-cta {
  width: 130px;
  height: 34px;
  margin-top: 18px;
  background: var(--gold);
  border-radius: var(--radius);
}

.mock-browser.landing .mock-hero {
  height: 56px;
  background: var(--gold);
}

.mock-browser.system .mock-hero {
  background: linear-gradient(135deg, var(--violet), var(--teal));
}

.mock-browser.ads .mock-hero {
  background: linear-gradient(135deg, var(--coral), var(--gold));
}

.mock-browser.maintenance .mock-hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

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

.trust-module {
  min-height: 220px;
  padding: 22px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(102, 198, 240, 0.11), transparent 34%),
    #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
}

.trust-module span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 900;
  padding: 6px 9px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 99px;
  background: #eff6ff;
}

.trust-module p {
  margin-top: 12px;
  color: var(--muted);
}

.final-system-cta {
  padding-top: 30px;
}

.cta-band {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 209, 92, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), transparent 42%),
    var(--panel-dark);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(12, 35, 64, 0.16);
}

.premium-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

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

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--brand);
  border-radius: 50%;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 96% 0%, rgba(102, 198, 240, 0.09), transparent 28%),
    var(--surface);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eff6ff;
  color: var(--brand-dark);
}

.process {
  counter-reset: step;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(102, 198, 240, 0.08), transparent 34%),
    var(--surface);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.form-panel {
  padding: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(102, 198, 240, 0.11), transparent 34%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 850;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: #e5f6ed;
  color: #12653e;
  font-weight: 850;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

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

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 7px 0;
  color: var(--muted);
}

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

@media (max-width: 1060px) {
  .flow-visual {
    grid-template-columns: 1fr;
  }

  .flow-link {
    width: 2px;
    height: 34px;
    margin: 0 auto;
  }

  .flow-link::after {
    top: auto;
    right: -4px;
    bottom: 0;
  }

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

  .premium-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  /* Mobile menu pushes the header taller instead of overlaying with fixed
     offsets — avoids brittle magic-number positioning when content height changes. */
  .nav.open {
    flex-wrap: wrap;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    gap: 14px;
    margin-top: 12px;
  }

  .nav.open .nav-actions {
    gap: 10px;
    margin-top: 10px;
  }

  .hero-grid,
  .chart-kit-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .split-layout,
  .split-layout.reverse,
  .before-after,
  .business-audit-grid,
  .service-display,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .business-type-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 48px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  section {
    padding: 54px 0;
  }

  .premium-hero {
    min-height: auto;
  }

  .hero-actions,
  .section-actions,
  .service-tabs {
    flex-direction: column;
  }

  .btn,
  .service-tabs button {
    width: 100%;
  }

  .fit-selector {
    padding: 14px;
  }

  .fit-option {
    grid-template-columns: 38px 1fr;
    min-height: auto;
    padding: 13px;
  }

  .fit-icon {
    width: 38px;
    height: 38px;
  }

  .fit-rec {
    padding: 16px;
  }

  .fit-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .fit-price-row strong {
    text-align: left;
  }

  .metric-strip,
  .leak-summary,
  .dashboard-grid-mini,
  .dashboard-grid,
  .timeline,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .score-line {
    grid-template-columns: 1fr;
  }

  .score-line strong {
    text-align: left;
  }

  .business-type-tabs {
    grid-template-columns: 1fr;
  }

  .business-type-tab {
    justify-content: flex-start;
    text-align: left;
  }

  .audit-example-head {
    align-items: stretch;
    flex-direction: column;
  }

  .audit-score-pill {
    width: 100%;
    text-align: left;
  }

  .audit-ba-slider {
    padding: 12px;
  }

  .audit-ba-stage {
    min-height: 500px;
  }

  .audit-ba-version {
    padding: 14px;
  }

  .audit-site-proof {
    grid-template-columns: 1fr;
  }

  .audit-site-actions {
    flex-direction: column;
  }

  .audit-site-action {
    text-align: center;
  }

  .audit-mini-score {
    grid-template-columns: 82px 1fr 30px;
  }

  .donut-chart {
    width: min(100%, 250px);
  }

  .donut-core strong {
    font-size: 3.15rem;
  }

  .cta-band {
    padding: 24px;
  }
}

/* ============================================================
   Design System components added in audit pass (2026-06-16)
   ============================================================ */

/* Example / sample-data badge — never present mock metrics as real */
.example-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(245, 158, 11, 0.14);
  color: #8a5208;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-weight: 850;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Contact path bar: phone + WhatsApp, always reachable */
.contact-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 850;
  color: var(--brand-dark);
}

.contact-phone-link {
  min-height: 42px;
  padding: 0 2px;
}

.whatsapp-strip-button {
  min-height: 44px;
  padding: 10px 17px 10px 14px;
  border-radius: 999px;
  color: #fff !important;
  background: #16a34a;
  border: 1px solid rgba(15, 118, 62, 0.4);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-strip-button:hover {
  transform: translateY(-1px);
  background: #128c3f;
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.3);
}

.whatsapp-strip-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Business Diagnosis Tool (Product Selector upgrade) */
.fit-selector {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
  align-items: start;
  padding: 20px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.fit-options {
  display: grid;
  gap: 10px;
}

.fit-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fit-option:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
}

.fit-option.active {
  border-color: rgba(27, 123, 95, 0.45);
  background: #f0fbf6;
  color: var(--brand-dark);
  box-shadow: 0 14px 32px rgba(27, 123, 95, 0.12);
}

.fit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--brand);
  background: #eef8f4;
  border: 1px solid rgba(27, 123, 95, 0.12);
}

.fit-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.fit-option strong {
  display: block;
  line-height: 1.2;
  font-weight: 950;
}

.fit-option small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 750;
}

.fit-option.active .fit-icon {
  color: #fff;
  background: var(--brand);
}

.fit-rec {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.fit-rec.mobile-inline {
  margin: 2px 0 8px;
}

.fit-rec .eyebrow {
  color: var(--brand);
}

.fit-rec h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.fit-rec .fit-problem,
.fit-rec .fit-why,
.fit-rec .fit-missing,
.fit-rec .fit-timeline {
  color: var(--muted);
}

.fit-rec-label {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fit-rec .fit-missing ul {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  list-style: none;
}

.fit-rec .fit-missing li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-weight: 750;
}

.fit-rec .fit-missing li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #fff7ed;
  box-shadow: inset 0 0 0 5px #f59e0b;
}

.fit-price-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(27, 123, 95, 0.16);
  border-radius: 14px;
  background: #f7fbf9;
}

.fit-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.fit-price-row strong {
  color: var(--ink);
  font-size: 1.08rem;
  text-align: right;
}

.fit-price-row.founding {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.fit-price-row.founding strong {
  color: var(--brand-dark);
  font-size: 1.32rem;
}

.fit-offer-copy {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.fit-offer-copy b {
  color: var(--ink);
}

.fit-rec .btn {
  width: 100%;
}

.fit-rec-note {
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

/* Growth Roadmap (product ladder as a journey) */
.roadmap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  counter-reset: stage;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.roadmap-stage {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.04);
}

.roadmap-stage.start {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 209, 92, 0.26), transparent 40%),
    var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.roadmap-stage.start span {
  color: #bcd4ff;
}

.roadmap-stage span {
  display: block;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.8rem;
}

.roadmap-stage strong {
  display: block;
  margin-top: 6px;
}

.roadmap-stage small {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-weight: 800;
}

/* Sticky mobile CTA dock (DS signature component) */
.mobile-cta-dock {
  display: none;
}

@media (max-width: 920px) {
  .fit-selector {
    grid-template-columns: 1fr;
  }

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

  .mobile-cta-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(17, 24, 39, 0.08);
  }

  .mobile-cta-dock .btn {
    width: 100%;
  }

  body {
    padding-bottom: 76px;
  }
}

/* Audit Simulator — on-site interactive diagnostic (diagnose before selling) */
.audit-sim {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.sim-questions {
  display: grid;
  gap: 10px;
}

.sim-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.sim-q::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.sim-q:hover {
  border-color: var(--brand);
}

.sim-q.on {
  border-color: rgba(22, 163, 74, 0.5);
  background: #ecfdf3;
  color: #0f5f41;
}

.sim-q.on::before {
  border-color: #16a34a;
  background: #16a34a;
  box-shadow: inset 0 0 0 3px #ecfdf3;
}

.sim-result {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.sim-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sim-score span {
  margin-right: auto;
  color: var(--muted);
  font-weight: 850;
}

.sim-score strong {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.sim-score em {
  font-style: normal;
  font-weight: 900;
  color: var(--soft);
}

.sim-bar {
  height: 10px;
  margin: 14px 0;
  background: #e5ece8;
  border-radius: 99px;
  overflow: hidden;
}

.sim-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.sim-verdict {
  color: var(--muted);
  margin-bottom: 14px;
}

.sim-result .btn {
  width: 100%;
}

/* Priority mockups: audit report, devices, GBP, proposal and product recommendation */
.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.audit-report-mockup,
.google-profile-mockup,
.proposal-mockup,
.recommendation-mockup,
.landing-page-mockup {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.audit-report-mockup::before,
.google-profile-mockup::before,
.recommendation-mockup::before,
.proposal-mockup::before,
.landing-page-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 58%);
}

.report-head,
.report-score-grid,
.report-findings,
.proposal-row,
.proposal-next,
.rec-choice,
.rec-product,
.gbp-header,
.gbp-rating,
.gbp-actions,
.gbp-checks {
  position: relative;
  z-index: 1;
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.report-head span,
.rec-choice span,
.rec-product span,
.proposal-row span {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-head strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.report-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--brand-dark);
}

.report-score strong {
  font-size: 3.8rem;
  line-height: 1;
}

.report-score span {
  color: var(--soft);
  font-weight: 900;
}

.report-score-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.report-score-grid div {
  display: grid;
  grid-template-columns: 120px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.report-score-grid span {
  color: var(--muted);
  font-weight: 850;
}

.report-score-grid b {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5ebf3;
}

.report-score-grid i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #66c6f0);
}

.report-score-grid strong {
  text-align: right;
}

.report-findings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.report-findings div {
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.1);
}

.report-findings span {
  display: block;
  color: #8a5208;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-findings strong {
  display: block;
  margin-top: 6px;
  line-height: 1.28;
}

.device-whatsapp-wrap {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.09);
}

.phone-device,
.whatsapp-device {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.phone-device {
  padding: 14px;
}

.phone-speaker {
  width: 86px;
  height: 7px;
  margin: 0 0 12px;
  border-radius: 99px;
  background: #dbe5ef;
}

.phone-screen {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(239, 246, 255, 0.88));
}

.phone-site-top {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 209, 92, 0.28), transparent 36%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.phone-site-top span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.phone-cta-stack {
  display: grid;
  gap: 9px;
}

.phone-cta-stack a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 900;
  text-align: center;
}

.phone-cta-stack .wa {
  color: #0f5f41;
  background: #e1f7ed;
  border-color: #b9e7d0;
}

.mini-review {
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 10px;
  background: #fff7e6;
  color: #8a5208;
  font-weight: 850;
}

.whatsapp-device {
  overflow: hidden;
  align-self: stretch;
}

.wa-head {
  display: grid;
  gap: 2px;
  padding: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 0%, rgba(22, 163, 74, 0.13), transparent 34%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.wa-head span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.wa-chat {
  display: grid;
  gap: 10px;
  min-height: 260px;
  align-content: end;
  padding: 16px;
  background: linear-gradient(180deg, #f8fafc, #eff6ff);
}

.bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.bubble.in {
  justify-self: start;
  background: #fff;
}

.bubble.out {
  justify-self: end;
  background: #e1f7ed;
  border-color: #b9e7d0;
}

.google-profile-mockup {
  display: grid;
  gap: 14px;
}

.gbp-header {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  display: grid;
  gap: 6px;
}

.gbp-header span {
  color: #4285f4;
  font-weight: 950;
}

.gbp-header strong {
  font-size: 1.45rem;
}

.gbp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f59e0b;
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
}

.gbp-rating strong {
  font-size: 2.4rem;
  line-height: 1;
}

.gbp-rating span {
  color: var(--muted);
  font-weight: 850;
}

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

.gbp-actions span {
  padding: 11px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 10px;
  background: #eff6ff;
  color: var(--brand-dark);
  font-weight: 900;
  text-align: center;
}

.gbp-checks {
  display: grid;
  gap: 10px;
}

.gbp-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.86);
}

.check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.check.good { background: var(--green); }
.check.warn { background: var(--gold); }

.proposal-mockup,
.recommendation-mockup {
  display: grid;
  gap: 14px;
}

.proposal-row,
.rec-choice,
.rec-product {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.proposal-row strong,
.rec-choice strong,
.rec-product strong {
  display: block;
  margin-top: 6px;
}

.rec-product p {
  margin-top: 8px;
  color: var(--muted);
}

.proposal-next {
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  color: var(--brand-dark);
  background: #eff6ff;
  font-weight: 850;
}

.landing-page-mockup {
  display: grid;
  gap: 16px;
  place-items: stretch;
  background:
    radial-gradient(circle at 16% 10%, rgba(102, 198, 240, 0.1), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(245, 158, 11, 0.09), transparent 30%),
    #fff;
}

.mock-browser.local-service {
  width: min(100%, 440px);
  justify-self: center;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.service-hero {
  height: auto;
  display: grid;
  gap: 6px;
  padding: 20px;
  color: #fff;
}

.service-hero span {
  font-weight: 850;
  opacity: 0.78;
}

.service-hero strong {
  font-size: 1.45rem;
}

.mock-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mock-trust-row span {
  padding: 8px;
  border-radius: 8px;
  background: #eaf1ff;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.mock-form {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mock-form span {
  font-weight: 950;
}

.mock-form i {
  height: 11px;
  border-radius: 99px;
  background: #dbe5e0;
}

.mock-form b {
  display: block;
  padding: 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
  text-align: center;
}

.visual-before-after .mini-site {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.mini-site b {
  display: block;
  height: 50px;
  border-radius: 10px;
  background: #dbe5e0;
}

.mini-site i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #dbe5e0;
}

.mini-site i:nth-child(3) { width: 82%; }
.mini-site i:nth-child(4) { width: 58%; }

.mini-site small {
  color: #8d3328;
  font-weight: 900;
}

.after-site b {
  background: linear-gradient(135deg, var(--brand), #66c6f0);
}

.after-site strong {
  display: inline-flex;
  justify-content: center;
  padding: 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
}

.after-site strong:last-child {
  background: var(--green);
}

/* Shared premium snapshot cards for internal pages */
.product-snapshot,
.decision-snapshot,
.faq-snapshot {
  display: grid;
  gap: 14px;
}

.snapshot-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.snapshot-metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.snapshot-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.1;
}

.snapshot-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.snapshot-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.84);
  color: var(--muted);
  font-weight: 850;
}

.snapshot-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

.snapshot-list span.warning::before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.snapshot-list span.good::before {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.1);
}

.snapshot-path {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.snapshot-path div {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-path b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--brand-dark);
}

.snapshot-path strong {
  display: block;
  line-height: 1.15;
}

.snapshot-path span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.snapshot-path em {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.question-map {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.question-map div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.question-map span {
  display: block;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.question-map strong {
  display: block;
  margin-top: 5px;
  line-height: 1.22;
}

@media (max-width: 920px) {
  .audit-sim {
    grid-template-columns: 1fr;
  }

  .device-whatsapp-wrap,
  .report-findings,
  .report-score-grid div {
    grid-template-columns: 1fr;
  }

  .report-score-grid strong {
    text-align: left;
  }

  .gbp-actions,
  .mock-trust-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive tables: stack into labelled rows on small screens (no horizontal scroll) */
@media (max-width: 620px) {
  table {
    min-width: 0;
  }

  .snapshot-metrics,
  .snapshot-path div {
    grid-template-columns: 1fr;
  }

  .snapshot-path em {
    justify-self: start;
  }

  table thead {
    display: none;
  }

  table tr {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }

  table td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    padding: 7px 14px;
  }

  table td::before {
    content: attr(data-label);
    font-weight: 850;
    color: var(--ink);
  }
}
