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

:root {
  --navy: #071A38;
  --navy-deep: #06142C;
  --blue: #2E5BFF;
  --blue-hover: #2450F0;
  --text-headline: #0F172A;
  --text-body: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --success: #00C48C;
  --warning: #FFB547;
  --danger: #FF5A5F;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-headline);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 64px; }
.container-full { width: 100%; }

/* ── NAV ───────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  align-self: center;
}
.nav-logo-img { width: 240px; height: auto; }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover { color: var(--text-headline); }
.nav-links a svg { opacity: .5; }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-login { font-size: 14px; font-weight: 500; color: var(--text-body); text-decoration: none; }
.nav-login:hover { color: var(--text-headline); }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); box-shadow: 0 8px 24px rgba(46,91,255,.2); }
.btn-secondary { background: var(--bg); color: var(--text-headline); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: #CBD5E1; }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost-white:hover { background: rgba(255,255,255,.06); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-nav { padding: 9px 20px; font-size: 13px; border-radius: 8px; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 64px;
  overflow: hidden;
  position: relative;
  min-height: 760px;
  background:
    linear-gradient(to right, #EAF0FF 1px, transparent 1px),
    linear-gradient(to bottom, #EAF0FF 1px, transparent 1px),
    #fff;
  background-size: 48px 48px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #EAF0FF 1px, transparent 1px),
    linear-gradient(to bottom, #EAF0FF 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .35;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-headline);
  margin-bottom: 24px;
}
.hero-accent { color: var(--blue); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Dashboard mock in hero ───────────────────────────────────── */
.hero-visual { perspective: 1200px; }
.dash-mock {
  background: #0B1629;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 540px;
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    0 8px 32px rgba(0,0,0,.12),
    0 32px 72px rgba(7,26,56,.28);
  transform: rotateY(-2deg) rotateX(1deg);
  font-size: 11px;
}
.dash-sidebar {
  background: rgba(0,0,0,.35);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-logo-sm {
  padding: 4px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}
.dash-nav-item {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-nav-item svg { opacity: .6; }
.dash-nav-item.active {
  background: rgba(46,91,255,.15);
  color: #fff;
}
.dash-nav-item.active svg { opacity: 1; }
.dash-main { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.dash-topbar-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.dash-topbar-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 20px;
}
.dash-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dash-stat-label { font-size: 9px; color: rgba(255,255,255,.35); font-weight: 500; text-transform: uppercase; letter-spacing: .3px; }
.dash-stat-val { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.dash-stat-delta { font-size: 9px; font-weight: 600; }
.dash-stat-delta.up { color: var(--success); }
.dash-stat-delta.down { color: var(--danger); }

.dash-body-grid { display: grid; grid-template-columns: 1.4fr 1fr; padding: 0 20px; gap: 10px; flex: 1; min-height: 0; }
.dash-table {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 14px;
}
.dash-table-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 10px;
  color: rgba(255,255,255,.6);
}
.dash-row:last-child { border: none; }
.dash-row-id { color: rgba(255,255,255,.25); font-weight: 700; width: 30px; font-size: 9px; }
.dash-row-name { flex: 1; font-weight: 500; line-height: 1.3; }
.dash-row-disc { color: rgba(255,255,255,.25); font-weight: 400; font-size: 9px; }
.dash-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
}
.badge-review { background: rgba(255,181,71,.12); color: var(--warning); }
.badge-complete { background: rgba(0,196,140,.12); color: var(--success); }

.dash-donut-panel {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dash-donut { position: relative; margin: 6px 0; }
.dash-donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.dash-donut-label span { font-size: 20px; font-weight: 800; }
.dash-donut-label small { font-size: 9px; color: rgba(255,255,255,.4); }
.dash-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.dash-legend span {
  font-size: 9px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 4px;
}
.dash-legend span b { color: rgba(255,255,255,.6); font-weight: 600; }
.dash-legend i { width: 7px; height: 7px; border-radius: 2px; display: inline-block; }

.dash-activity { padding: 10px 20px; }
.dash-activity .dash-table-title { margin-top: 4px; }
.dash-act-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 10px;
  color: rgba(255,255,255,.45);
}
.dash-act-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dash-act-dot.done { background: var(--success); }
.dash-act-dot.info { background: var(--blue); }
.dash-act-time { margin-left: auto; color: rgba(255,255,255,.2); font-size: 9px; }

/* ── TRUSTED ──────────────────────────────────────────────────── */
.trusted {
  padding: 40px 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trusted-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  opacity: .7;
  letter-spacing: .3px;
}

/* ── SECTION HELPERS ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--text-headline);
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}
.section-title-left {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-headline);
  margin-bottom: 16px;
  line-height: 1.2;
}
.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-block;
  transition: gap .2s;
}
.link-arrow:hover { text-decoration: underline; }
.section-label-light {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.link-arrow-light {
  font-size: 14px;
  font-weight: 600;
  color: #93C5FD;
  text-decoration: none;
}
.link-arrow-light:hover { text-decoration: underline; }

/* ── PROBLEM ──────────────────────────────────────────────────── */
.problem { padding: 96px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: all .2s;
}
.problem-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(46,91,255,.06); }
.problem-icon { margin-bottom: 20px; height: 56px; display: flex; align-items: center; justify-content: center; }
.problem-bold { font-size: 15px; font-weight: 700; color: var(--text-headline); margin-bottom: 4px; }
.problem-dim { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ── SOLUTION ─────────────────────────────────────────────────── */
.solution {
  padding: 48px 0;
  background: var(--navy-deep);
  color: #fff;
}
.solution .section-label { color: var(--blue); }
.solution .section-title-left { color: #fff; }
.solution .link-arrow { color: #93C5FD; }
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.solution-header { padding-right: 40px; }
.solution-card {
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.solution-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.solution-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.solution-icon { opacity: .4; }
.solution-icon svg { stroke: #fff; }
.solution-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.solution-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── WALKTHROUGH ──────────────────────────────────────────────── */
.walkthrough {
  padding: 96px 0;
  background: #fff;
  color: var(--text-headline);
}
.walk-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 56px;
  align-items: center;
}
.walk-content { max-width: 480px; }
.walk-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 20px;
}
.walk-title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.15;
  color: #000;
  margin-bottom: 24px;
}
.walk-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.walk-link:hover { text-decoration: underline; }

/* Walk mock — change event detail view */
.walk-mock {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px 1fr;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  font-size: 11px;
}
.walk-mock-nav {
  background: rgba(0,0,0,.3);
  padding: 14px 10px;
}
.walk-mock-logo {
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px;
}
.wmn-links { display: flex; flex-direction: column; gap: 1px; }
.wmn-links span {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}
.wmn-links span.active { background: rgba(46,91,255,.15); color: #fff; }
.walk-mock-main { display: flex; flex-direction: column; }

.walk-mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 10px;
  color: rgba(255,255,255,.3);
}
.wmt-right { display: flex; align-items: center; gap: 6px; }
.wmt-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700;
}

.walk-mock-header { padding: 12px 16px 0; }
.wmh-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.wmh-title { font-size: 14px; font-weight: 700; color: #fff; }
.wmh-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.wmh-tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
}
.wmh-tag.tag-review {
  background: rgba(46,91,255,.2);
  color: #93C5FD;
}
.wmh-btn {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(46,91,255,.15);
  color: #93C5FD;
}
.wmh-tabs {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 8px;
}
.wmh-tabs span.active {
  color: #fff;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
  margin-bottom: -8px;
}

.walk-mock-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}
.wmb-map {
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,.04);
}
.wmb-map-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wmb-map-canvas {
  position: relative;
  height: 200px;
}
.wmb-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.wm-node {
  position: absolute;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}
.wm-center {
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(46,91,255,.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

.wmb-reviews { padding: 14px 16px; }
.wmb-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.wmb-reviews-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wmb-reviews-meta {
  font-size: 9px;
  color: rgba(255,255,255,.3);
}
.wmb-review-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.wmb-review-row:last-child { border: none; }
.wmb-r-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.wmb-review-row span:nth-child(2) { flex: 1; }
.wmb-r-status { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 6px; }
.wmb-r-status.done { background: rgba(0,196,140,.1); color: #10B981; }
.wmb-r-status.active { background: rgba(46,91,255,.1); color: #93C5FD; }
.wmb-r-status.pending { background: rgba(255,255,255,.04); color: rgba(255,255,255,.3); }

/* ── DISCIPLINES + METRICS ────────────────────────────────────── */
.disc-metrics {
  padding: 96px 0;
  background: var(--navy-deep);
  color: #fff;
}
.disc-metrics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.section-label-light {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 32px;
}
.disc-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 640px;
  margin-bottom: 32px;
}
.text-blue { color: var(--blue); }
.disc-sub {
  font-size: 20px;
  line-height: 1.8;
  color: #94A3B8;
  max-width: 520px;
  margin-bottom: 40px;
}
.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 12px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.disc-card {
  text-align: center;
  padding: 20px 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.disc-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.disc-icon img { width: 100%; height: 100%; object-fit: contain; }
.disc-card span { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }

.metrics-stack { display: flex; flex-direction: column; gap: 16px; }
.metric-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 28px 32px;
}
.metric-val {
  font-size: 52px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.06em;
  line-height: 1;
}
.metric-desc {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.5;
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 32px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials { padding: 80px 0; background: var(--surface); }
.testimonials .section-label { margin-bottom: 40px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.test-quote {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.test-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-name { font-size: 14px; font-weight: 700; color: var(--text-headline); }
.test-role { font-size: 12px; color: var(--text-muted); }
.test-company { margin-left: auto; font-size: 16px; font-weight: 800; color: var(--text-muted); opacity: .4; }

/* ── FINAL CTA ────────────────────────────────────────────────── */
.final-cta { padding: 0; }
.cta-bar {
  background: var(--navy);
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,.4); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.25); line-height: 1.6; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.2); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .hero h1 { font-size: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .dash-mock { transform: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
  .solution-card { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 0; }
  .walk-grid { grid-template-columns: 1fr; }
  .walk-mock { max-width: 700px; }
  .disc-metrics-grid { grid-template-columns: 1fr; gap: 64px; }
  .disc-title { font-size: 42px; }
  .disc-grid { grid-template-columns: repeat(3, 1fr); }
  .metric-card { grid-template-columns: 140px 1fr; padding: 20px 24px; }
  .metric-val { font-size: 40px; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-bar { flex-direction: column; text-align: center; padding: 56px 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .section-title-left { font-size: 28px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .solution-layout { grid-template-columns: 1fr; }
  .disc-title { font-size: 32px; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { grid-template-columns: 1fr; }
  .metric-val { font-size: 36px; }
  .metric-desc { border-left: none; padding-left: 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
  .cta-bar { padding: 48px 24px; }
  .cta-text h2 { font-size: 22px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .walk-mock { grid-template-columns: 1fr; }
  .walk-mock-nav { display: none; }
  .walk-title { font-size: 28px; }
  .hero, .problem, .solution, .walkthrough, .disc-metrics, .testimonials { padding: 64px 0; }
  .btn-outline-blue { font-size: 15px; padding: 12px 22px; }
}
