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

  :root {
    --midnight: #20334F; /* gs-dark-navy */
    --navy:     #365072; /* gs-navy */
    --mist:     #DDD9D6; /* gs-grey-light */
    --sky:      #87C7EC; /* gs-sky */
    --shift:    #FB9A2D; /* gs-amber */
    --cloud:    rgba(255, 255, 255, 0.82); /* body text on dark */
    --slate:    #BDB5AF; /* gs-grey */
    --white:    #ffffff;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans:  'Montserrat', Helvetica, Arial, sans-serif;
    --mono:  'JetBrains Mono', monospace;
    --label: 'Montserrat', Helvetica, Arial, sans-serif;
    --navy-rgb: 54, 80, 114; /* for rgba() usage */

    /* Geidans Solutions brand palette */
    --color-gs-navy:       #365072; /* Pantone 295  - primary background, nav, headers */
    --color-gs-dark-navy:  #20334F; /* Dark accent  - hover states, deep surfaces */
    --color-gs-sky:        #87C7EC; /* Pantone 2905 - highlights, links, accents */
    --color-gs-amber:      #FB9A2D; /* Pantone 130  - CTA buttons, badges, warnings */
    --color-gs-grey:       #BDB5AF; /* Warm Grey 3  - borders, muted text */
    --color-gs-grey-light: #DDD9D6; /* Warm Grey 50% - backgrounds, dividers */
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--white);
    background: var(--navy);
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(32, 51, 79, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(135, 199, 236, 0.08);
    padding: 0 5vw;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .nav-logo-name {
    font-family: var(--serif);
    font-size: 27px;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
  }

  .nav-logo-sub {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
  }

  .nav-logo-by {
    font-family: var(--label);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--slate);
  }

  .nav-logo-img {
    height: 11px;
    width: auto;
    vertical-align: middle;
    opacity: 0.75;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--cloud);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--shift);
    color: var(--midnight) !important;
    font-weight: 700 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px !important;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-qualify {
    background: var(--midnight);
    color: var(--shift) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(251, 154, 45, 0.4);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-qualify:hover {
    background: rgba(251, 154, 45, 0.07);
    border-color: rgba(251, 154, 45, 0.7);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(135, 199, 236, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(135, 199, 236, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(135, 199, 236, 0.35);
    border-radius: 100px;
    padding: 6px 14px;
  }

  .eyebrow-sovereignty {
    color: var(--white);
    border-color: rgba(135, 199, 236, 0.35);
  }

  .eyebrow-sovereignty::before {
    background: var(--sky);
  }

  .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--sky);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 8.5vw, 110px);
    line-height: 0.97;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 40px;
  }

  .hero h1 .accent { color: var(--sky); font-style: italic; }

  .hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--cloud);
    max-width: 600px;
    margin-bottom: 16px;
    line-height: 1.65;
  }

  .hero-sub2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--cloud);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.65;
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--shift);
    color: var(--midnight);
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.15s;
  }

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

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cloud);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid rgba(135, 199, 236, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { color: var(--white); border-color: rgba(135, 199, 236, 0.7); }

  .hero-trust {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
  }

  .hero-trust span { color: var(--sky); margin: 0 6px; }


  /* SECTIONS */
  section { padding: 96px 5vw; }

  .section-label {
    font-family: var(--label);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 20px;
    display: block;
  }

  h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }

  .intro {
    font-size: 17px;
    font-weight: 400;
    color: var(--cloud);
    max-width: 600px;
    margin-bottom: 56px;
    line-height: 1.7;
  }

  /* PROBLEM */
  .problem { background: var(--color-gs-dark-navy); }

  .problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .problem-card {
    background: var(--navy);
    padding: 40px 36px;
    border-radius: 6px;
    position: relative;
    transition: background 0.2s;
  }

  .problem-card:hover { background: rgba(var(--navy-rgb), 0.4); }

  .problem-card-num {
    font-family: var(--label);
    font-size: 14px;
    letter-spacing: 0.10em;
    color: var(--slate);
    margin-bottom: 16px;
    display: block;
  }

  .problem-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .problem-card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--slate);
    line-height: 1.65;
    max-width: 640px;
  }

  .problem-card p + p { margin-top: 12px; }

  /* PRICING */
  .pricing-section {
    background: var(--navy);
    padding: 96px 5vw;
  }

  .price-card {
    background: var(--midnight);
    border: 1px solid rgba(135, 199, 236, 0.15);
    border-radius: 8px;
    max-width: 760px;
    padding: 40px;
    margin-top: 48px;
  }

  .price-type {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 16px;
  }

  .price-amount {
    font-family: var(--serif);
    font-size: 40px;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .price-amount span {
    color: var(--sky);
  }

  .price-formula {
    font-size: 15px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 16px;
  }

  .price-example {
    font-size: 15px;
    font-weight: 600;
    color: var(--shift);
    line-height: 1.6;
    padding: 16px 20px;
    background: rgba(251, 154, 45, 0.07);
    border: 1px solid rgba(251, 154, 45, 0.2);
    border-radius: 5px;
    margin-bottom: 24px;
  }

  .price-detail {
    font-size: 15px;
    font-weight: 400;
    color: var(--cloud);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .price-guarantee {
    border-top: 1px solid rgba(135, 199, 236, 0.1);
    padding-top: 20px;
  }

  .price-guarantee p {
    font-size: 15px;
    font-weight: 400;
    color: var(--cloud);
    font-style: italic;
    line-height: 1.6;
  }

  /* QUALIFICATION TOOL */
  .qualify-section {
    background: var(--midnight);
  }

  #book-form {
    background: var(--navy);
  }

  /* Override browser autofill styling on AuditForm fields */
  #book-form input:-webkit-autofill,
  #book-form input:-webkit-autofill:hover,
  #book-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white);
    -webkit-box-shadow: 0 0 0px 1000px var(--color-gs-navy) inset;
    box-shadow: 0 0 0px 1000px var(--color-gs-navy) inset;
    border-color: rgba(135, 199, 236, 0.15);
    transition: background-color 5000s ease-in-out 0s;
  }

  #af-spend {
    cursor: pointer;
    color: var(--slate);
    background: var(--midnight);
  }

  #af-spend.is-filled {
    color: var(--white);
  }

  #af-spend option {
    background: var(--midnight);
    color: var(--white);
  }

  #af-spend option:disabled {
    color: var(--slate);
  }

  .qualify-intro {
    max-width: 680px;
    margin-bottom: 16px;
  }

  .qualify-intro p {
    font-size: 16px;
    font-weight: 400;
    color: var(--cloud);
    margin-bottom: 8px;
    line-height: 1.65;
  }

  .qualify-intro .timer {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--shift);
    text-transform: uppercase;
  }

  .quiz-container {
    background: var(--midnight);
    border: 1px solid rgba(135, 199, 236, 0.22);
    border-radius: 8px;
    padding: 36px 40px;
    max-width: 960px;
    position: relative;
  }

  .quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(135, 199, 236, 0.12);
    border-radius: 1px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: var(--shift);
    border-radius: 1px;
    transition: width 0.4s ease;
  }

  .progress-label {
    font-family: var(--label);
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--slate);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .quiz-question {
    display: none;
  }

  .quiz-question.active {
    display: block;
  }

  .quiz-question h3 {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .quiz-question .q-hint {
    font-size: 13px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 20px;
  }

  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid rgba(135, 199, 236, 0.12);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }

  .quiz-option:hover {
    border-color: rgba(135, 199, 236, 0.4);
    background: rgba(135, 199, 236, 0.04);
  }

  .quiz-option.selected {
    border-color: var(--sky);
    background: rgba(135, 199, 236, 0.08);
  }

  .quiz-option .opt-label {
    font-family: var(--label);
    font-size: 13px;
    color: var(--sky);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-width: 24px;
  }

  .opt-text { flex: 1; }

  .opt-tag {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--shift);
    padding: 4px 10px;
    border: 1px solid rgba(251, 154, 45, 0.3);
    border-radius: 3px;
    white-space: nowrap;
    align-self: center;
  }

  .quiz-multi-hint {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.10em;
    color: var(--slate);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .btn-quiz-next {
    background: var(--shift);
    color: var(--midnight);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-quiz-next:hover { opacity: 0.88; }
  .btn-quiz-next:disabled { opacity: 0.35; cursor: not-allowed; }

  .btn-quiz-back {
    background: transparent;
    color: var(--slate);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .btn-quiz-back:hover { color: var(--cloud); }

  /* RESULTS */
  .quiz-result {
    display: none;
  }

  .quiz-result.active {
    display: block;
    animation: result-enter 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes result-enter {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 28px;
  }

  .badge-qualify { background: rgba(251, 154, 45, 0.12); color: var(--shift); border: 1px solid rgba(251, 154, 45, 0.3); }
  .badge-likely { background: rgba(135, 199, 236, 0.1); color: var(--sky); border: 1px solid rgba(135, 199, 236, 0.3); }
  .badge-closer { background: rgba(135, 199, 236, 0.06); color: var(--cloud); border: 1px solid rgba(135, 199, 236, 0.2); }
  .badge-blocked { background: rgba(189, 181, 175, 0.1); color: var(--slate); border: 1px solid rgba(189, 181, 175, 0.3); }

  .result-title {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .result-sub {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.10em;
    color: var(--slate);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .result-body {
    font-size: 16px;
    font-weight: 400;
    color: var(--cloud);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
  }

  .result-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--shift);
    color: var(--midnight);
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 12px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
  }

  .result-cta:hover { opacity: 0.88; }

  .result-no-pitch {
    font-size: 13px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 32px;
    display: block;
  }

  .result-share {
    border-top: 1px solid rgba(135, 199, 236, 0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

  .result-share p {
    font-size: 14px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 14px;
  }

  .share-form {
    display: flex;
    gap: 10px;
  }

  .share-input {
    flex: 1;
    background: rgba(135, 199, 236, 0.05);
    border: 1px solid rgba(135, 199, 236, 0.15);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .share-input::placeholder { color: var(--slate); }
  .share-input:focus { border-color: rgba(135, 199, 236, 0.5); }

  .share-btn {
    background: transparent;
    border: 1px solid rgba(135, 199, 236, 0.2);
    color: var(--cloud);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }

  .share-btn:hover { border-color: rgba(135, 199, 236, 0.4); color: var(--white); }

  .btn-restart {
    background: transparent;
    color: var(--slate);
    font-family: var(--sans);
    font-size: 13px;
    padding: 8px 0;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    transition: color 0.2s;
  }

  .btn-restart:hover { color: var(--cloud); }

  /* QUIZ REPORT PANEL */
  .quiz-result-layout {
    display: block;
  }

  .quiz-result-layout.has-report {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .quiz-result-layout.has-report .quiz-result.active {
    flex: 1;
    min-width: 0;
  }

  .quiz-report-outer {
    width: 420px;
    flex-shrink: 0;
    overflow: hidden;
    max-width: 0;
    transition: max-width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .quiz-report-outer.visible {
    max-width: 440px;
  }

  .quiz-report-inner {
    width: 420px;
    background: var(--navy);
    border: 1px solid rgba(135, 199, 236, 0.15);
    border-radius: 8px;
    padding: 28px 24px;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.4s ease 0.28s, transform 0.4s ease 0.28s;
  }

  .quiz-report-outer.visible .quiz-report-inner {
    opacity: 1;
    transform: translateX(0);
  }

  .report-heading {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    display: block;
    margin-bottom: 20px;
  }

  .report-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
  }

  .report-table-row td {
    border-top: 1px solid rgba(135, 199, 236, 0.1);
    padding: 11px 0;
    vertical-align: top;
  }

  .report-table-left {
    width: 40%;
    padding-right: 16px !important;
  }

  .report-table-right {
    width: 60%;
    padding-left: 16px !important;
    border-left: 1px solid rgba(135, 199, 236, 0.1);
    font-size: 13px;
    color: var(--cloud);
    line-height: 1.65;
  }

  .report-row-label {
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--sky);
    display: block;
    margin-bottom: 3px;
  }

  .report-row-answer {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    display: block;
    line-height: 1.4;
  }

  .report-footer {
    font-size: 12px;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
  }

  .report-footer-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--sky);
    font-size: 12px;
    font-family: var(--sans);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .report-contact-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 11px 16px;
    background: transparent;
    border: 1px solid rgba(135, 199, 236, 0.3);
    border-radius: 4px;
    color: var(--sky);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-align: center;
  }

  .report-contact-btn:hover {
    background: rgba(135, 199, 236, 0.08);
    border-color: rgba(135, 199, 236, 0.5);
  }

  /* SOLUTION */
  .solution { background: var(--midnight); }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .step {
    background: var(--navy);
    padding: 40px 36px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }

  .step:hover { background: rgba(54, 80, 114, 0.7); }

  .step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sky);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .step:hover::before { opacity: 1; }

  .step-num {
    font-family: var(--label);
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
  }

  .step h3 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .step p {
    font-size: 16px;
    font-weight: 400;
    color: var(--slate);
    line-height: 1.65;
    max-width: 640px;
  }

  /* GEIDANS ADVANTAGE */
  .advantage {
    background: var(--navy);
  }

  .advantage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
  }

  .advantage-text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--cloud);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .proof-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .proof-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(135, 199, 236, 0.1);
    border-radius: 6px;
  }

  .proof-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--shift);
    flex-shrink: 0;
  }

  .proof-point span {
    font-size: 14px;
    font-weight: 400;
    color: var(--cloud);
  }

  /* FAQS */
  .faqs { background: var(--navy); }

  .faq-list {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid rgba(135, 199, 236, 0.08);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    gap: 16px;
    transition: background 0.2s;
  }

  .faq-q:hover { background: rgba(135, 199, 236, 0.03); }

  .faq-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(135, 199, 236, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
    padding-bottom: 1px;
    color: var(--sky);
    transition: transform 0.2s;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-item.open .faq-q { padding-bottom: 8px; }

  .faq-a {
    display: none;
    padding: 0 28px 24px;
    font-size: 15px;
    font-weight: 400;
    color: var(--slate);
    line-height: 1.7;
  }

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

  /* FINAL CTA */
  .final-cta {
    background: var(--midnight);
    padding: 120px 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(135, 199, 236, 0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .final-cta .section-label { text-align: center; display: block; }

  .final-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin: 0 auto 20px;
    max-width: 700px;
  }

  .final-cta p {
    font-size: 17px;
    font-weight: 400;
    color: var(--cloud);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.65;
  }

  .final-cta .btn-primary {
    font-size: 18px;
    padding: 16px 40px;
    margin-bottom: 24px;
  }

  .final-trust {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .final-trust-item {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 24px;
    border-right: 1px solid rgba(135, 199, 236, 0.15);
  }

  .final-trust-item:first-child { border-left: 1px solid rgba(135, 199, 236, 0.15); }
  .final-trust-item:last-child { border-right: 1px solid rgba(135, 199, 236, 0.15); }

  /* FOOTER */
  footer {
    background: var(--midnight);
    border-top: 1px solid rgba(135, 199, 236, 0.08);
    padding: 40px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 20px;
  }

  .footer-left {}

  .footer-tagline {
    font-size: 15px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 4px;
  }

  .footer-sub {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--slate);
  }

  .footer-copy {
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
  }

  .iso-badge {
    max-height: 140px;
    max-width: 140px;
    width: auto;
    height: auto;
    display: block;
    margin-top: 20px;
  }

  .iso-badge--footer {
    max-height: 70px;
    max-width: 70px;
    width: auto;
    height: auto;
    display: block;
    margin-top: 10px;
  }

  /* ANIMATIONS */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes glowPulse {
    0%, 100% { opacity: 0.06; transform: scale(1); }
    50% { opacity: 0.10; transform: scale(1.08); }
  }

  /* Nav slides in from top */
  nav {
    animation: fadeInDown 0.5s ease both;
  }

  /* Hero radial glow breathes */
  .hero::before {
    animation: glowPulse 6s ease-in-out infinite;
  }

  /* Scroll-triggered fade-in */
  .anim-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

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

  .hero-inner > * {
    animation: fadeInUp 0.7s ease both;
  }

  .hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-inner > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-inner > *:nth-child(6) { animation-delay: 0.6s; }

  /* Change 3: Two-column quiz layout with live savings right panel */
  .quiz-outer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(135, 199, 236, 0.22);
    border-radius: 8px;
    overflow: hidden;
    max-width: 1100px;
  }

  .quiz-outer .quiz-container {
    background: var(--midnight);
    border: none;
    border-radius: 0;
    max-width: none;
  }

  .quiz-right-panel {
    background: var(--midnight);
    padding: 48px;
    border-left: 1px solid rgba(135, 199, 236, 0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .qrp-savings {
    flex: 1;
  }

  .qrp-label {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 16px;
  }

  @keyframes fadeInAmount {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .qrp-estimate-fade {
    animation: fadeInAmount 0.35s ease;
  }

  .qrp-amount {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 34px);
    color: var(--shift);
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .qrp-placeholder {
    font-size: 15px;
    color: var(--slate);
    font-style: italic;
    line-height: 1.55;
  }

  .qrp-sweet-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--shift);
    padding: 4px 10px;
    border: 1px solid rgba(251, 154, 45, 0.3);
    border-radius: 3px;
  }

  .qrp-reassurance {
    border-top: 1px solid rgba(135, 199, 236, 0.1);
    padding-top: 28px;
  }

  .qrp-reassurance-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .qrp-shield {
    color: var(--slate);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .qrp-reassurance-body {
    font-size: 13px;
    font-weight: 400;
    color: var(--slate);
    line-height: 1.6;
  }

  /* Change 9: Pricing reassurance below final CTA trust badges */
  .final-cta-reassurance {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    text-align: center;
    max-width: 540px;
    margin: 16px auto 0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-qualify { display: none; }
    .advantage-inner { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .quiz-container { padding: 28px 24px; }
    footer { flex-direction: column; text-align: center; }
    /* Change 3: stack right panel below on mobile */
    .quiz-outer { grid-template-columns: 1fr; }
    .quiz-right-panel { border-left: none; border-top: 1px solid rgba(135, 199, 236, 0.1); padding: 28px 24px; }
    .quiz-result-layout.has-report { flex-direction: column; }
    .quiz-report-outer { width: 100%; max-width: none !important; max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
    .quiz-report-outer.visible { max-height: 800px; }
    .quiz-report-inner { width: 100%; transform: none; }
  }

  /* Laptop screen fix: reduces whitespace in the quiz/eligibility section so all
     answer options and the Continue button fit in a typical laptop viewport
     (768–900px tall) without scrolling. */
  @media (max-height: 900px) and (min-width: 769px) {
    #qualify {
      scroll-margin-top: 64px;
    }
    .qualify-section {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .qualify-section .section-label {
      margin-bottom: 6px;
    }
    .qualify-section h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      margin-bottom: 6px;
    }
    .qualify-section .intro {
      margin-bottom: 14px;
      font-size: 14px;
      line-height: 1.5;
    }
    .quiz-container {
      padding: 22px 28px;
    }
    .quiz-progress {
      margin-bottom: 12px;
    }
    .quiz-question h3 {
      font-size: 17px;
      margin-bottom: 4px;
    }
    .quiz-question .q-hint {
      margin-bottom: 10px;
      font-size: 12px;
    }
    .quiz-options {
      gap: 4px;
    }
    .quiz-option {
      padding: 7px 12px;
      font-size: 13px;
    }
    .quiz-nav {
      margin-top: 12px;
    }
    .btn-quiz-next {
      padding: 10px 24px;
      font-size: 14px;
    }
  }
