
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=DM Sans:wght@600;700;800&family=DM+Mono:wght@400;500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

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

:root {
  --navy: #142B3A;
  --navy-mid: #1A3448;
  --navy-card: #1F3D52;
  --blue: #3A9FD8;
  --blue-lt: #5BB8E8;
  --blue-dim: rgba(58, 159, 216, 0.10);
  --white: #FFFFFF;
  --off: #F4F8FB;
  --card: #EBF2F8;
  --border: rgba(26, 52, 72, 0.12);
  --text: #1A3448;
  --muted: #4A6A82;
  --faint: #7A9BB5;
  --red: #E05252;
  --green: #3EC87A;
  --amber: #E8A838;
  --radius: 10px;
  --radius-sm: 6px;
  --gap: 1.5rem;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 0 2rem 0 3rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F0F4F8;
}

.nav-cta {
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* ── NAV HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(240, 244, 248, 0.8);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 4rem 0;
}

.section+.section {
  border-top: 1px solid var(--border);
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.6rem;
  display: block;
}

h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 .hl {
  color: var(--blue);
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 600px;
  margin-top: 0.75rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--blue);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-outline:hover {
  background: var(--blue-dim);
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-accent {
  border-top: 3px solid var(--blue);
}

.card-accent-red {
  border-left: 3px solid var(--red);
}

/* ── TAGS / PILLS ── */
.tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 0.6rem;
}

.pill {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  margin: 2px 3px 2px 0;
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-split-55 {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}

/* ── INDEX-SPECIFIC LAYOUT CLASSES ── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.svc-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.step-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 900px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-split,
  .grid-split-55 {
    grid-template-columns: 1fr;
  }

  .page-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  nav {
    padding: 0 1.5rem;
  }

}

/* ── STAT CARD ── */
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ── PAIN CARD ── */
.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pain-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.pain-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.pain-desc {
  font-size: 13px;
  color: var(--muted);
}

/* ── FLOW DIAGRAM ── */
.flow-wrap {
  background: var(--navy);
  border: 1px solid rgba(58, 159, 216, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.flow-nodes {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.flow-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow-node+.flow-node::before {
  content: '→';
  position: absolute;
  left: -12px;
  top: 22px;
  font-size: 16px;
  color: rgba(58, 159, 216, 0.5);
}

.flow-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flow-box.cb6ix-node {
  border: 2px solid var(--blue);
  background: rgba(58, 159, 216, 0.18);
  padding-bottom: 14px;
}

.flow-icon {
  font-size: 22px;
  color: rgba(240, 244, 248, 0.5);
}

.flow-icon.blue {
  color: var(--blue-lt);
}

.flow-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(240, 244, 248, 0.9);
}

.flow-sub {
  font-size: 10px;
  color: rgba(240, 244, 248, 0.5);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.flow-step-n {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--blue-lt);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.flow-step-t {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(240, 244, 248, 0.9);
  margin-bottom: 3px;
}

.flow-step-d {
  font-size: 12px;
  color: rgba(240, 244, 248, 0.6);
}

/* ── RATIO METER ── */
.ratio-meter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ratio-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ratio-bar-head {
  display: flex;
  justify-content: space-between;
}

.ratio-bar-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.ratio-bar-val {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

.ratio-track {
  height: 7px;
  background: rgba(26, 52, 72, 0.10);
  border-radius: 4px;
  overflow: hidden;
}

.ratio-fill {
  height: 100%;
  border-radius: 4px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.rbadge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}

.rbadge.ok {
  background: rgba(62, 200, 122, 0.12);
  color: #2A9A5A;
  border: 1px solid rgba(62, 200, 122, 0.3);
}

.rbadge.warn {
  background: rgba(232, 168, 56, 0.12);
  color: #B87A10;
  border: 1px solid rgba(232, 168, 56, 0.3);
}

.rbadge.bad {
  background: rgba(224, 82, 82, 0.12);
  color: #C03030;
  border: 1px solid rgba(224, 82, 82, 0.3);
}

/* ── SERVICE CARDS ── */
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.svc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 0.75rem;
}

/* ── LIFECYCLE PANEL ── */
.lifecycle {
  background: var(--navy);
  border: 1px solid rgba(58, 159, 216, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(240, 244, 248, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lc-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s;
}

.lc-item:hover {
  border-color: var(--blue);
  background: rgba(58, 159, 216, 0.1);
}

.lc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(58, 159, 216, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-lt);
}

.lc-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(240, 244, 248, 0.95);
}

.lc-sub {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.55);
  margin-top: 1px;
}

.lc-arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

.lc-connector {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 19px;
}

.lc-note {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── WHY CARDS ── */
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.why-icon {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
}

/* ── STEP CARDS ── */
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-n {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
}

/* ── PRICING BOX ── */
.pricing-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.pricing-note {
  font-size: 14px;
  color: var(--muted);
  background: var(--blue-dim);
  border-left: 2px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  margin-top: 1rem;
}

.pricing-note a {
  color: var(--blue);
}
/* ── CTA BLOCK ── */
.cta-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
}

.cta-block h2 {
  color: var(--blue-lt);
  font-size: clamp(28px, 2.6vw, 40px);
}

.cta-block p {
  color: rgba(240, 244, 248, 0.8);
  margin: 0.75rem auto 2rem;
  max-width: 460px;
}

.cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 244, 248, 0.5);
  margin-bottom: 0.6rem;
}

.btn-outline-white {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

/* ── VERTICALS ── */
.vert-pill {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
  margin: 3px 4px 3px 0;
}

.vert-pill.more {
  color: var(--blue);
  border-color: var(--blue);
  font-weight: 500;
}

/* ── INTEGRATION PILLS ── */
.int-pill {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  margin: 3px 4px 3px 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-note {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--faint);
}

/* ── PRICING PLANS ── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.featured {
  border: 2px solid var(--blue);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.plan-price {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.plan-price-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.plan-price-unit {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.plan-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.plan-features li::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
}

.plan-cta-btn {
  width: 100%;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--blue);
  transition: all 0.15s;
}

.plan-cta-btn:hover {
  background: var(--blue-dim);
}

.plan-cta-btn.primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.plan-cta-btn.primary:hover {
  opacity: 0.9;
}

.bundle-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.bundle-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
}

.bundle-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232, 168, 56, .15);
  border: 1px solid rgba(232, 168, 56, .3);
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: .5rem;
}

.bundle-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F0F4F8;
  margin-bottom: .3rem;
}

.bundle-desc {
  font-size: 13px;
  color: rgba(240, 244, 248, .7);
}

.model-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.model-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.model-desc {
  font-size: 14px;
  color: var(--muted);
}

.model-icon {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: .5rem;
}

/* ── SERVICES PAGE STEP FLOW ── */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.sf-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36px;
  flex-shrink: 0;
}

.sf-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
  z-index: 1;
}

.sf-dot.done {
  background: var(--blue);
  color: #fff;
}

.sf-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 2px 0;
}

.sf-content {
  padding: 0 0 20px;
  flex: 1;
}

.sf-content.last {
  padding-bottom: 0;
}

.sf-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sf-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.sf-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CONTACT ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--navy-mid);
  border: 1px solid rgba(58, 159, 216, .25);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #F0F4F8;
  outline: none;
  width: 100%;
  transition: border-color .15s;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(240, 244, 248, .4);
}

.contact-form select {
  color: rgba(240, 244, 248, .7);
}

.contact-form select option {
  background: var(--navy-mid);
  color: #F0F4F8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--faint);
  text-align: center;
  margin-top: 4px;
}

/* ── HERO DASHBOARD (dark) ── */
.dash-wrap {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
}

.dash-bar {
  background: var(--navy-card);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(240, 244, 248, .5);
  margin-left: 5px;
}

.dash-body {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.donut-cell {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.donut-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: rgba(240, 244, 248, .5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.donut-leg {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: rgba(240, 244, 248, .5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.donut-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-table {
  margin: 0 14px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  overflow: hidden;
}

.dt-row {
  display: grid;
  grid-template-columns: 1fr 55px 55px 55px 65px;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 6px 10px;
  align-items: center;
}

.dt-row:last-child {
  border-bottom: none;
}

.dt-row.hdr {
  background: rgba(255, 255, 255, .04);
}

.dt-cell {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(240, 244, 248, .5);
  text-align: right;
}

.dt-cell:first-child {
  text-align: left;
  color: rgba(240, 244, 248, .9);
  font-weight: 500;
}

.dt-row.hdr .dt-cell {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.badge-g {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(62, 200, 122, .15);
  color: #3EC87A;
}

.badge-v {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(58, 159, 216, .2);
  color: #5BB8E8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hs-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid var(--blue);
  border-radius: 8px;
  padding: 12px 14px;
}

.hs-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #5BB8E8;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(240, 244, 248, .6);
}

/* ── INFORM BOX ── */
.inform-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.inform-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inform-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.inform-points li::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .inform-box {
    grid-template-columns: 1fr;
  }

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

  /* Nav hamburger — dropdown is absolutely positioned so the toggle never moves */
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--navy);
    overflow: hidden;
    max-height: 0;
    padding: 0 1.5rem;
    opacity: 0;
    border-top: 0px solid rgba(255, 255, 255, 0.08);
    z-index: 99;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.22s ease,
                padding 0.3s ease,
                border-top-width 0.15s ease;
  }

  nav.nav-open .nav-links {
    max-height: 220px;
    padding: 0.75rem 1.5rem 1rem;
    opacity: 1;
    border-top-width: 1px;
  }

  /* Step flow grid */
  .step-flow-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Flow diagram — wrap to 2×3 grid */
  .flow-nodes {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .flow-node {
    flex: 0 0 calc(50% - 0.25rem);
    min-width: 0;
  }

  .flow-node+.flow-node::before {
    display: none;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Dashboard donut grid */
  .dash-body {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero stats */
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* No footer logo */
footer .nav-logo {
  display: none;
}
/* ── GLOBAL INTERACTIVE ELEMENTS ── */

/* Stat cards */
.stat-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 43, 58, 0.10);
  border-color: rgba(58, 159, 216, 0.5);
}

/* Pain cards */
.pain-card {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 43, 58, 0.10);
}

/* Service cards */
.svc-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 43, 58, 0.10);
  border-color: rgba(58, 159, 216, 0.45);
}

/* Plan cards (pricing) */
.plan {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 43, 58, 0.12);
  border-color: rgba(58, 159, 216, 0.5);
}

/* Model cards (pricing how it works) */
.model-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 43, 58, 0.10);
  border-color: rgba(58, 159, 216, 0.4);
}

/* Overview cards (services page) */
.card.card-accent {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.card.card-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 43, 58, 0.10);
  border-color: rgba(58, 159, 216, 0.5);
}

/* Buttons — already have hover, add scale */
.btn-primary:hover {
  transform: translateY(-1px);
}

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

/* Tags and pills */
.tag {
  transition: background 0.15s;
}


/* ── FAQ ── */
.faq-item {
  border-top: 1px solid rgba(26, 52, 72, 0.12);
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent;
}

.faq-item:hover {
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(26, 52, 72, 0.12);
}

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 1.1rem 0;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  transition: color 0.15s;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-item.open .faq-q {
  color: var(--blue);
}

.faq-a {
  font-size: 15px;
  color: #3A5A72;
  line-height: 1.8;
  padding: 0 0 1.25rem;
  max-width: 100%;
  display: none;
}

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

.faq-chevron {
  font-size: 13px;
  color: var(--faint);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--faint);
  min-width: 22px;
  flex-shrink: 0;
}


/* ── FLOW DIAGRAM INTERACTIVE ── */
.flow-box-v2,
.flow-box {
  transition: background 0.22s, border-color 0.22s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.flow-box-v2:hover,
.flow-box:hover {
  background: rgba(58, 159, 216, 0.14);
  border-color: rgba(58, 159, 216, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(20, 43, 58, 0.3);
}

.flow-box-v2.cb6ix-active:hover,
.flow-box.cb6ix-node:hover {
  background: rgba(58, 159, 216, 0.28);
  box-shadow: 0 8px 24px rgba(58, 159, 216, 0.3);
}

.flow-step-v2,
.flow-steps>div {
  transition: background 0.2s, border-color 0.2s;
  border-radius: 8px;
  padding: 10px;
  cursor: default;
}

.flow-steps>div:hover {
  background: rgba(58, 159, 216, 0.07);
}

.flow-node-wrap+.flow-node-wrap::before,
.flow-node+.flow-node::before {
  transition: color 0.2s;
}

/* ── RESPONSIVE OVERRIDES (must come after component definitions) ── */
@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .svc-overview-grid {
    grid-template-columns: 1fr;
  }
}
