/* --- 1. VARIABLES & RESET --- */
  :root {
    --bg: #030712; 
    --card-bg: #161c2d;
    --accent: #3b82f6;
    --accent-soft: rgba(59, 130, 246, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --danger: #f43f5e;
    --success: #10b981;
    --radius: 28px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
  html { scroll-behavior: smooth; }
  body { 
    background-color: var(--bg);
    background-image: 
      radial-gradient(at 0% 0%, rgba(30, 41, 59, 0.5) 0px, transparent 50%),
      radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
      radial-gradient(at 50% 100%, rgba(15, 23, 42, 1) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.5; 
  }

  /* --- 2. LAYOUT UTILITIES --- */
  .container { max-width: 1300px; margin: 0 auto; padding: 0 40px; scroll-margin-top: 100px;}
  .section-sep { border-bottom: 1px solid var(--border); }
  .eyebrow { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #10b981; margin-bottom: 16px; display: block; }
  .text-blue { color: #2563eb; }
  .text-green { color: #10b981; }

  /* --- 3. NAVIGATION --- */
  nav {
    position: sticky; top: 0; z-index: 1000; background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    height: 64px; display: flex; align-items: center;
  }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .logo { font-weight: 900; font-size: 16px; letter-spacing: -0.5px; }
      
/* --- Updated Nav Styles --- */
.nav-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%; 
}

.nav-cta-group {
  display: flex;
  gap: 12px; /* This creates the space between the two buttons */
  align-items: center;
}

/* Optional: Clean up your HTML by moving the button styles here */
.nav-btn {
  text-decoration: none; 
  background: var(--accent); 
  color: white; 
  padding: 8px 16px; 
  border-radius: 8px; 
  font-weight: 700; 
  font-size: 13px;
  transition: opacity 0.2s;
}

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

  /* --- 4. HERO SECTION --- */
  .hero-header {
    padding: 50px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent);
  }
  .hero-header h1 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1; font-weight: 900; margin-bottom: 24px;
    letter-spacing: -0.04em; color: var(--text-main);
  }
  .hero-header .hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-muted); max-width: 800px;
    margin: 0 auto 32px; line-height: 1.6;
  }

  .btn-hero {
    display: inline-block; margin-bottom: 30px; padding: 20px 44px;
    background-color: #ff9500; color: #030712; text-decoration: none;
    font-weight: 800; font-size: 19px; border-radius: 12px;
    transition: 0.2s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-transform: uppercase; border: none; cursor: pointer;
  }
  .btn-hero:hover { background-color: #ffaa33; }
  .btn-hero:active { transform: scale(0.98); }

  /* --- 5. SLIDER COMPONENT --- */
  .hero-slider-wrap {
    margin: 0 auto 50px; max-width: 1000px; position: relative;
    background: rgba(255, 255, 255, 0.03); padding: 12px;
    border-radius: 32px; border: 1px solid var(--border);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  }
  .slider-viewport { overflow: hidden; border-radius: 22px; position: relative; aspect-ratio: 16 / 8; }
  .slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
  .slide-item { min-width: 100%; height: 100%; position: relative; }
  .slide-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }

  .slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 40px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.95) 100%);
    text-align: left;
  }
  .slide-caption h3 { font-size: 36px; font-weight: 800; margin-bottom: 5px; color: #fff; }
  .slide-caption p { font-size: 23px; color: var(--text-muted); }

  .slider-nav { position: absolute; bottom: 30px; right: 40px; display: flex; gap: 8px; z-index: 10; }
  .nav-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
  .nav-dot.active { background: var(--accent); width: 24px; border-radius: 10px; }

  .btn-slider {
    display: inline-block; margin-top: 20px; padding: 14px 28px;
    background-color: #ff9500; color: #030712; text-decoration: none;
    font-weight: 800; font-size: 16px; border-radius: 8px;
    text-transform: uppercase; transition: 0.2s ease;
  }

  /* --- 6. BENTO GRID & PHASE CARDS --- */
  .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: -60px; padding-bottom: 30px; }
  .col-8 { grid-column: span 8; }
  .col-4 { grid-column: span 4; }

  .card-light {
    background: #ffffff; border-radius: 20px; padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 232, 240, 0.8); color: #1e293b; text-align: left;
  }

  .phase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
  .phase-card { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; }
  .phase-card strong { display: block; margin-bottom: 5px; }
  .phase-card ul { font-size: 13px; margin: 20px; color: #64748b; }

  .burn-box { background: #fff1f2; border: 2px solid #fecdd3; }
  .burn-value { font-size: 42px; font-weight: 800; color: #ef4444; display: block; }

  /* --- 7. PROBLEM GRID & FEATURES --- */
  .hero { padding: 40px 0 30px; }
  .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; text-align: center; }
  .problem-item {
    background: #1a2236; border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 44px 32px 40px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .problem-item b { display: block; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; opacity: 0.65; }
  .problem-item .risk-value { font-size: clamp(30px, 3.5vw, 46px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
  .risk-value.red   { color: #f43f5e; }
  .risk-value.amber { color: #f59e0b; }
  .risk-value.teal  { color: #10b981; }
  .problem-item .risk-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

  .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding: 60px 0; }
  .feature-row.reverse { direction: rtl; }
  .feature-row.reverse .feature-text { direction: ltr; }
  .feature-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 850; margin-bottom: 24px; letter-spacing: -0.03em; }
  .feature-text p { color: var(--text-muted); font-size: 19px; margin-bottom: 24px; }
  .feature-image { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4 / 3; }
  .feature-image img { width: 100%; height: 100%; object-fit: cover; }

  /* --- 8. ACCORDION & AUDIT --- */
  .acc-item { background: rgba(22, 28, 45, 0.5); backdrop-filter: blur(5px); border: 1px solid var(--border); border-radius: 20px; margin-bottom: 12px; overflow: hidden; }
  .acc-header { padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
  .plus-icon { width: 32px; height: 32px; background: var(--accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 800; transition: 0.3s; }
  .acc-content { max-height: 0; padding: 0 32px; opacity: 0; overflow: hidden; transition: 0.3s ease; color: var(--text-muted); font-size: 17px; }
  .acc-item.active .plus-icon { transform: rotate(45deg); background: var(--danger); color: white; }
  .acc-item.active .acc-content { max-height: 500px; padding-bottom: 32px; opacity: 1; }

  .quiz-card { background: rgba(22, 28, 45, 0.6); border: 1px solid var(--border); border-radius: 32px; padding: 60px; margin: 50px 0; scroll-margin-top: 100px; }

  /* === QUIZ PROGRESS BAR — sticky bottom === */
  .quiz-progress-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 14px 40px 16px;
  }

  .quiz-progress-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .quiz-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .quiz-progress-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.3px;
  }

  .quiz-progress-label span {
    color: var(--accent);
    font-weight: 800;
  }

  .quiz-progress-pct {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    font-family: monospace;
    letter-spacing: 0.5px;
  }

  .quiz-progress-track {
    position: relative;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: visible;
  }

  .quiz-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }

  .quiz-progress-steps {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .quiz-progress-step {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
  }

  .quiz-progress-step--active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
    transform: scale(1.35);
  }

  .quiz-progress-step--done {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1);
    box-shadow: none;
  }

  .quiz-progress-wrap.quiz-complete {
    display: none;
  }

  /* Hidden until first answer — slides up from bottom */
  .quiz-progress-wrap {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .quiz-progress-wrap.quiz-progress-visible {
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .quiz-progress-wrap { padding: 10px 20px 12px; }
  }
  .opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .opt { padding: 18px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg); color: white; cursor: pointer; font-weight: 600; transition: 0.2s; }
  .opt.active { background: var(--accent); border-color: var(--accent); }

  /* Fixed Results Styling to match your HTML structure */
  .results-dash { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
  .res-pill { 
    background: rgba(255,255,255,0.03); padding: 20px; border-radius: 16px; border: 1px solid var(--border); 
    display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100px; gap: 8px;
  }
/* --- UPDATED AUDIT RESULTS STYLING --- */
    .results-dash { 
      display: grid; 
      grid-template-columns: repeat(3, 1fr); 
      gap: 24px; 
      margin-top: 40px; 
      padding-top: 40px; 
      border-top: 1px solid var(--border); 
    }
    
    .res-group {
      display: flex;
      flex-direction: column;
      gap: 12px; /* Space between label and pill */
      text-align: center;
    }

    .res-label {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
    }

    .res-pill { 
      background: rgba(255,255,255,0.03); 
      padding: 20px; 
      border-radius: 16px; 
      border: 1px solid var(--border); 
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
    }

    .res-pill strong { 
      font-size: 26px; 
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    /* Bonus: Improved Slider Gradient for Readability */
    .slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 40px;
      background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.95) 100%);
      text-align: left;
    }

  /* --- 9. CTA SECTION --- */
  .cta-container { 
    background: white; color: #000; border-radius: 40px; padding: 80px; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin: 40px 0px;
  }
  .cta-text h2 {
    color: #000;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 850;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }
  .cta-text p { color: #475569; text-align: left; }
  input, select {
    width: 100%; padding: 18px; border-radius: 12px; border: 1px solid #cbd5e1;
    background: #f8fafc; margin-bottom: 25px; font-size: 16px; font-family: inherit;
  }
  .btn-submit {
    width: 100%; padding: 22px; border-radius: 12px; background: var(--accent);
    color: white; font-weight: 800; border: none; font-size: 18px; cursor: pointer;
  }
      
      
      
/* --- COMPARISON TABLE STYLES --- */
.comparison-wrap {
  background: rgba(22, 28, 45, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
  font-size: 15px;
  color: var(--text-muted);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Highlight the "Audit" Column */
.comparison-table .highlight {
  background: rgba(59, 130, 246, 0.05); /* Soft Blue Tint */
  text-align: center;
}

.comparison-table th.highlight {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}


      
/* audience box — single authoritative block */
.audience-band {
  max-width: 1100px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Even gap between every card */
}
      
/* deliverables section */
.deliverables-list {
  max-width: 980px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.deliverable-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.deliverable-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  padding-top: 6px;
}

.deliverable-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.deliverable-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}


      
      
/* --- PROFESSIONAL SYSTEM FOOTER --- */
.site-footer {
  padding: 120px 0 60px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.footer-col {
  position: relative;
}



.footer-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 4px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8; /* Slate-400 for premium readability */
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #475569;
}

.footer-security span {
  padding-left: 20px;
  position: relative;
}

.footer-security span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}






  /* ─────────────────────────────────────────────────
     BENTO GRID
  ───────────────────────────────────────────────── */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    width: 100%;
  }

  @keyframes flash {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
  }

  /* ─────────────────────────────────────────────────
     REVENUE DIAGNOSTIC WIDGET
  ───────────────────────────────────────────────── */
  .modern-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    outline: none;
  }
  .modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border: 3px solid #0b0f1a;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  }
  .diag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .diag-footer {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* ─────────────────────────────────────────────────
     AUDIENCE ROWS
  ───────────────────────────────────────────────── */
  .audience-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    align-items: stretch;
    background: rgba(22, 28, 45, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: border-color 0.2s;
  }
  .audience-row:hover { border-color: rgba(59, 130, 246, 0.35); }
  .audience-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
  }
  .audience-kicker {
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(59, 130, 246, 0.12);
    padding: 5px 10px;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }
  .audience-label h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .audience-copy {
    display: flex;
    align-items: center;
    padding: 28px 36px;
  }
  .audience-copy p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-muted);
  }

  /* ─────────────────────────────────────────────────
     QUIZ SUMMARY PANELS
  ───────────────────────────────────────────────── */
  .quiz-summary {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .quiz-summary.quiz-step--visible {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
  }
  .quiz-summary-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .quiz-summary-icon.caution {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
  }
  .quiz-summary-icon.critical {
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.3);
    color: #f43f5e;
  }
  .quiz-summary-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
  }
  .quiz-summary-badge.caution {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
  }
  .quiz-summary-badge.critical {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border-color: rgba(244, 63, 94, 0.2);
  }
  .quiz-summary-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .quiz-summary-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 12px;
  }
  .quiz-summary-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .quiz-summary-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .quiz-summary-cta:hover { opacity: 0.85; }
  .stable-cta   { background: #10b981; color: #fff; }
  .guide-cta    { background: rgba(255,255,255,0.06); color: var(--text-main); border: 1px solid var(--border); }
  .audit-cta    { background: var(--accent); color: #fff; }
  .critical-cta { background: #f43f5e; color: #fff; }

  /* ─────────────────────────────────────────────────
     QUIZ STEP REVEAL
  ───────────────────────────────────────────────── */
  .opt.locked        { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
  .opt.active.locked { opacity: 1; }

  .quiz-step {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0px solid var(--border);
    pointer-events: none;
    transition:
      max-height      0.55s cubic-bezier(0.4, 0, 0.2, 1),
      opacity         0.45s ease 0.1s,
      margin-bottom   0.55s ease,
      padding-top     0.55s ease,
      padding-bottom  0.55s ease,
      border-top-width 0.3s ease;
  }
  .quiz-step--visible {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 28px;
    padding-top: 28px;
    padding-bottom: 4px;
    border-top: 1px solid var(--border);
    pointer-events: auto;
  }
  .quiz-step[data-question="0"].quiz-step--visible {
    border-top: none;
    padding-top: 0;
  }
  #results-metrics {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
  }
  #results-metrics.quiz-step--visible { opacity: 1; }

  /* ─────────────────────────────────────────────────
     RESPONSIVE — CONSOLIDATED
  ───────────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .col-8, .burn-box { grid-column: span 12 !important; }
  }

  @media (max-width: 900px) {
    .col-8, .col-4 { grid-column: span 12; }
    .bento-grid    { margin-top: 20px; }
    .slider-viewport { aspect-ratio: 4 / 3; }
    .footer-grid   { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  }

  @media (min-width: 901px) {
    .footer-col:not(:last-child) {
      border-right: 1px solid rgba(255,255,255,0.08);
      padding-right: 40px;
    }
  }

  @media (max-width: 768px) {
    .container        { padding: 0 20px; }
    .hero-header      { padding-top: 30px !important; padding-bottom: 0; }
    .eyebrow          { font-size: 11px !important; letter-spacing: 1px !important; margin-bottom: 12px !important; }
    .hero-header h1   { font-size: 7vw !important; line-height: 1.2 !important; margin-bottom: 16px !important; }
    .hero-header .hero-sub { font-size: 16px !important; margin-bottom: 24px !important; padding: 0 10px; }
    .btn-hero         { padding: 16px 32px !important; font-size: 16px !important; }
    .slider-viewport  { aspect-ratio: 1 / 1.1 !important; }
    .slide-caption    { padding: 20px !important; padding-bottom: 40px !important; background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 50%, #000 100%) !important; }
    .slide-caption h3 { font-size: 20px !important; margin-bottom: 6px !important; }
    .slide-caption p  { font-size: 14px !important; line-height: 1.4 !important; margin-bottom: 0 !important; }
    .btn-slider       { display: none !important; }
    .slider-nav       { bottom: 15px !important; right: 20px !important; }
    .nav-cta-group    { gap: 6px; }
    .nav-btn          { padding: 6px 10px !important; font-size: 12px !important; white-space: nowrap; letter-spacing: -0.2px; }
    .phase-grid, .problem-grid, .feature-row, .results-dash, .opt-grid { grid-template-columns: 1fr !important; }
    .burn-box         { padding: 30px 20px !important; }
    .diag-grid        { grid-template-columns: 1fr; gap: 30px; }
    .diag-footer      { flex-direction: column; align-items: flex-start; gap: 15px; }
    .diag-header      { flex-direction: column; align-items: flex-start !important; gap: 10px; }
    #leakValue        { font-size: 32px !important; }
    #leakDesc         { text-align: left !important; width: 100%; }
    #impact-number    { font-size: 48px !important; }
    .phase-grid       { grid-template-columns: 1fr !important; }
    .audience-row     { grid-template-columns: 1fr; }
    .audience-label   { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 24px; }
    .audience-copy    { padding: 20px 24px; }
    .audience-copy p  { font-size: 15px; line-height: 1.55; }
    .quiz-progress-wrap { padding: 10px 20px 12px; }
    .quiz-step--visible { max-height: 400px; }
    .quiz-summary       { flex-direction: column; gap: 14px; max-height: none !important; }
    .quiz-summary-icon  { width: 40px; height: 40px; font-size: 18px; }
    .quiz-summary-body  { width: 100%; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
    .quiz-summary-body h3 { font-size: 18px; }
    .quiz-summary-body p  { font-size: 15px; }
    .quiz-summary-ctas  { flex-direction: column; width: 100%; }
    .quiz-summary-cta   { text-align: center; margin-top: 8px; width: 100%; box-sizing: border-box; }
    .quiz-card          { padding: 24px 20px; box-sizing: border-box; }
    .cta-container      { grid-template-columns: 1fr; gap: 40px; padding: 40px 40px; }
    .comparison-wrap    { overflow-x: auto; }
    .comparison-table th, .comparison-table td { padding: 16px; font-size: 14px; min-width: 140px; }
    .deliverable-row    { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
    .deliverable-number { padding-top: 0; }
    .deliverable-content h3 { font-size: 20px; }
    .deliverable-content p  { font-size: 16px; line-height: 1.55; }
      
    .feature-row {
  gap: 32px !important;
  padding: 40px 0 !important;
  align-items: start;
}
      

  }

  @media (max-width: 600px) {
    .burn-box { padding: 30px 20px !important; }
    #impact-number { font-size: 48px !important; }
  }