/* ================================================
   F10 Strategy — Revenue Control Room
   Dark Navy / Charcoal / Amber / Revenue Green
   ================================================ */

:root {
  --navy:        #0D1B2A;
  --charcoal:    #1A2332;
  --charcoal-2:  #1F2A3C;
  --border:      #253347;
  --border-dim:  #1C2A3A;
  --amber:       #E8A020;
  --amber-dim:   rgba(232, 160, 32, 0.12);
  --amber-border: rgba(232, 160, 32, 0.25);
  --green:       #22C55E;
  --green-dim:   rgba(34, 197, 94, 0.10);
  --green-border: rgba(34, 197, 94, 0.25);
  --text:        #F4F1EC;
  --steel:       #8B9BAD;
  --steel-dim:   #5C6E82;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --max-w:        1160px;
  --nav-h:        110px;
  --radius:       12px;
  --section-pad:  110px;
}

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

html { font-size: 16px; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   UTILITIES
   ================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--section-pad) 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}

.section-heading em {
  font-style: italic;
  color: var(--amber);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--steel);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 680px;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease,
              border-color 0.18s ease, transform 0.15s ease,
              box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.btn-primary:hover {
  background: #F0A930;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, 0.30);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber-border);
}

.btn-outline-amber:hover {
  background: var(--amber-dim);
  border-color: var(--amber);
}

.btn-nav {
  background: var(--amber);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 0.72rem;
  border-radius: var(--radius);
}

.btn-nav:hover { background: #F0A930; }

.btn-large {
  padding: 18px 48px;
  font-size: 0.9rem;
  border-radius: var(--radius);
}

/* ================================================
   SCROLL FADE-IN
   ================================================ */

.section-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--amber-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  max-width: 480px;
  display: block;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s ease;
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--navy);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--amber); }

.mobile-cta-btn {
  margin: 20px 28px 28px;
  border-bottom: none !important;
  text-align: center;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(232, 160, 32, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(232, 160, 32, 0.04) 0%, transparent 45%),
    radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 30px 30px;
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 80px 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 500;
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--steel);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--steel-dim);
  letter-spacing: 0.02em;
}

/* -------- Dashboard Card -------- */

.dashboard-card {
  background: var(--charcoal);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(232,160,32,0.06);
}

.dashboard-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.dashboard-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.dashboard-badge {
  font-size: 0.68rem;
  color: var(--steel);
  letter-spacing: 0.05em;
  font-style: italic;
}

.dashboard-metrics {
  padding: 8px 0;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.15s;
}

.metric-row:last-child { border-bottom: none; }
.metric-row:hover { background: rgba(255,255,255,0.02); }

.metric-row--green {
  background: var(--green-dim);
}

.metric-row--green:hover {
  background: rgba(34, 197, 94, 0.14);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 400;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1;
}

.metric-amber { color: var(--amber); }
.metric-green { color: var(--green); }

.dashboard-footer {
  padding: 14px 24px;
  font-size: 0.75rem;
  color: var(--steel-dim);
  background: rgba(0,0,0,0.15);
  font-style: italic;
  border-top: 1px solid var(--border-dim);
  text-align: center;
}

/* ================================================
   PROOF BAR
   ================================================ */

.proof-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}

.proof-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.proof-bar-item:last-child { border-right: none; }

.proof-bar-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: block;
}

.proof-bar-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
}

/* ================================================
   PROBLEM SECTION
   ================================================ */

.problem { background: var(--navy); }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}

.problem-card:hover {
  background: var(--charcoal-2);
  border-left-color: var(--amber);
}

.problem-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 7px;
  flex-shrink: 0;
}

.problem-card-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--steel);
}

/* ================================================
   SOLUTION SECTION
   ================================================ */

.solution { background: var(--charcoal); }

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solution-step {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.solution-step:hover {
  background: #111F2E;
  border-color: var(--amber-border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 64px;
  opacity: 0.85;
}

.step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ================================================
   HOW IT WORKS
   ================================================ */

.how-works { background: var(--navy); }

.flow-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.15s;
}

.flow-step:hover { background: rgba(255,255,255,0.02); }

.flow-step--green {
  background: var(--green-dim);
  border-bottom: none;
}

.flow-step--green:hover { background: rgba(34,197,94,0.12); }

.flow-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  width: 44px;
  flex-shrink: 0;
}

.flow-num--green { color: var(--green); }

.flow-step-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.4;
}

.flow-text--green { color: var(--green); }

.flow-arrow {
  padding: 6px 32px;
  color: var(--amber);
  font-size: 1.2rem;
  opacity: 0.5;
  user-select: none;
}

.flow-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--steel);
  font-style: italic;
  padding: 14px 20px;
  border-left: 3px solid var(--amber);
  background: var(--charcoal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.flow-check {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}

/* ================================================
   AUDIT SECTION
   ================================================ */

.audit { background: var(--charcoal); }

.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.audit-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--steel);
  margin-bottom: 32px;
}

.audit-price-tag {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.audit-price-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: 0.02em;
}

.audit-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.audit-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.audit-card-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: 16px;
}

.audit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.audit-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--steel);
}

.audit-checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.audit-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing { background: var(--navy); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--amber-border);
  border-width: 2px;
  background: var(--charcoal-2);
  box-shadow: 0 0 40px rgba(232,160,32,0.08);
}

.pricing-featured-tag {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background: var(--amber);
  color: var(--navy);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-card-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.2;
  padding-top: 4px;
}

.pricing-card--featured .pricing-card-name { padding-top: 28px; }

.pricing-starts {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: -8px;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--amber);
  letter-spacing: 0.02em;
}

.pricing-card--featured .pricing-card-price { font-size: 4rem; }

.pricing-period {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--steel);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-card-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-dim);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin: 8px 0 16px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  opacity: 0.7;
}

.pricing-fine {
  font-size: 0.82rem;
  color: var(--steel-dim);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  line-height: 1.6;
}

/* ================================================
   PROOF / CASE STUDY SECTION
   ================================================ */

.proof-section { background: var(--charcoal); }

.proof-intro {
  font-size: 1rem;
  color: var(--steel);
  margin-bottom: 40px;
  font-style: italic;
  max-width: 600px;
}

.case-study-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-study-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 8px 24px;
  border-bottom: 1px solid var(--amber-border);
}

.case-study-narrative {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--steel);
  padding: 32px 32px 0;
  font-style: italic;
}

.cs-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  font-style: normal;
  vertical-align: baseline;
  letter-spacing: 0.02em;
}

.cs-amber { color: var(--amber); }
.cs-green { color: var(--green); }

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 32px;
}

.cs-metric {
  background: var(--charcoal);
  padding: 28px 16px;
  text-align: center;
}

.cs-metric-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.cs-metric-amber { color: var(--amber); }
.cs-metric-green { color: var(--green); }

.cs-metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
}

/* ================================================
   WHO IT'S FOR SECTION
   ================================================ */

.who { background: var(--navy); }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.who-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.who-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.who-card-header--good {
  background: var(--green-dim);
  color: var(--green);
  border-bottom-color: var(--green-border);
}

.who-card-header--poor {
  background: var(--amber-dim);
  color: var(--amber);
  border-bottom-color: var(--amber-border);
}

.who-icon { font-size: 1rem; }

.who-list {
  list-style: none;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.who-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--steel);
}

.who-card--good .who-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.who-card--poor .who-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ================================================
   FINAL CTA
   ================================================ */

.final-cta {
  background: var(--navy);
  text-align: center;
  padding: 130px 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}

.final-cta-inner { max-width: 680px; margin: 0 auto; }

.final-cta-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 18px;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: var(--steel);
  margin-bottom: 36px;
}

.final-cta-note {
  font-size: 0.85rem;
  color: var(--steel-dim);
  margin-top: 24px;
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: #080F17;
  border-top: 1px solid var(--border-dim);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.82rem;
  color: var(--steel);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--steel-dim);
  border-top: 1px solid var(--border-dim);
  padding-top: 24px;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 60px 0 40px;
  }

  .hero-headline { font-size: clamp(3rem, 8vw, 5rem); }

  .dashboard-card { max-width: 480px; }

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

  .problem-cards { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .pricing-card--featured { order: -1; }

  .case-study-metrics { grid-template-columns: repeat(3, 1fr); }

  .audit-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-h: 64px;
  }

  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-layout { padding: 48px 0 32px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }

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

  .case-study-metrics { grid-template-columns: repeat(2, 1fr); }

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

  .solution-step { padding: 20px; gap: 20px; }

  .flow-card { border-radius: var(--radius); }
  .flow-step { padding: 20px 24px; }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 20px; }
}

@media (max-width: 540px) {
  .case-study-metrics { grid-template-columns: repeat(2, 1fr); }
  .case-study-narrative { padding: 24px 20px 0; font-size: 1rem; }
  .problem-cards { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .case-study-metrics { grid-template-columns: 1fr 1fr; }
}
