:root {
      --brand-blue:       #4A7A9B;
      --brand-blue-hover: #3a6b8f;
      --light-blue:       #c8dfee;
      --alt-bg:           #EDE8DF;
      --page-bg:          #F5F1EC;
      --text:             #1a1917;
      --footer-bg:        #1a1917;
      --font-body:        'Outfit', sans-serif;
      --font-heading:     'Nunito', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--page-bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ════════════════════════════════════════════
       NAVIGATION
    ════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
    }
    .nav__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__logo {
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: 1.35rem;
      color: var(--text);
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav__links a {
      font-size: 0.93rem;
      font-weight: 500;
      color: var(--text);
      white-space: nowrap;
      transition: color 0.15s;
    }
    .nav__links a:hover { color: var(--brand-blue); }
    .nav__cta {
      font-size: 0.93rem;
      font-weight: 600;
      color: #fff;
      background: var(--brand-blue-hover);
      padding: 0.6rem 1.4rem;
      border-radius: 50px;
      white-space: nowrap;
      margin-left: 0.5rem;
      transition: background 0.15s;
    }
    .nav__cta:hover { background: #2e5a7a; }

    /* Mobile burger — hidden on desktop */
    .nav__burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav__burger span {
      display: block; width: 22px; height: 2px;
      background: var(--text); border-radius: 2px;
    }
    .nav__drawer {
      display: none;
      flex-direction: column;
      background: var(--page-bg);
      border-top: 1px solid rgba(0,0,0,0.06);
      padding: 1rem 0 1.5rem;
    }
    .nav__drawer a {
      padding: 0.7rem 2.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .nav__drawer .nav__cta { margin: 1rem 2.5rem 0; display: inline-block; text-align: center; }

    /* Scrolled state — triggered by JS */
    .nav--scrolled {
      background: rgba(245,241,236,0.92) !important;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.08) !important;
      box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    }

    /* ════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════ */
    .hero {
      background: var(--page-bg);
      padding-top: 72px;  /* offset for fixed nav */
      overflow: hidden;
    }
    .hero__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2.5rem 3rem;
      display: grid;
      grid-template-columns: 52% 48%;
      align-items: center;
      min-height: calc(100vh - 72px);
    }

    /* Left */
    .hero__left { padding-right: 2rem; }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      border: 1.5px solid #c8c4bf;
      border-radius: 50px;
      padding: 0.45rem 1.1rem;
      margin-bottom: 2rem;
    }
    .hero__badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--brand-blue);
      flex-shrink: 0;
    }
    .hero__badge-text {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--text);
    }

    .hero__headline {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 4rem;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 1.6rem;
    }
    .hero__headline-handled {
      display: block;
      font-style: italic;
      color: var(--brand-blue);
    }

    .hero__body {
      font-size: 1.05rem;
      font-weight: 400;
      color: #4a4845;
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 2.25rem;
    }

    .hero__ctas {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .btn-primary {
      font-size: 0.95rem; font-weight: 600;
      color: #fff; background: var(--brand-blue-hover);
      padding: 0.85rem 1.75rem;
      border-radius: 50px; border: none; cursor: pointer;
      transition: background 0.15s; white-space: nowrap;
    }
    .btn-primary:hover { background: #2e5a7a; }
    .btn-outline {
      font-size: 0.95rem; font-weight: 500;
      color: var(--text); background: transparent;
      padding: 0.85rem 1.75rem;
      border-radius: 50px;
      border: 1.5px solid #c8c4bf;
      cursor: pointer; transition: border-color 0.15s; white-space: nowrap;
    }
    .btn-outline:hover { border-color: var(--text); }

    .hero__stats {
      display: flex;
      align-items: stretch;
    }
    .hero__stat { padding-right: 2rem; }
    .hero__stat + .hero__stat {
      padding-left: 2rem;
      border-left: 1.5px solid #d0ccc8;
    }
    .hero__stat-number {
      font-size: 1.55rem; font-weight: 800;
      color: var(--text); line-height: 1.1; display: block;
    }
    .hero__stat-label {
      font-size: 0.67rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: #6b6560; display: block; margin-top: 0.15rem;
    }

    /* Right */
    .hero__right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }
    .hero__circle {
      position: absolute;
      width: 900px; height: 900px;
      border-radius: 50%;
      background: var(--light-blue);
      top: -280px;
      right: -280px;
      z-index: 0;
    }
    .hero__finn-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @keyframes finnFloat {
      0%   { transform: translateY(0px) rotate(-1deg); }
      25%  { transform: translateY(-10px) rotate(0.5deg); }
      50%  { transform: translateY(-18px) rotate(1deg); }
      75%  { transform: translateY(-8px) rotate(-0.5deg); }
      100% { transform: translateY(0px) rotate(-1deg); }
    }
    .hero__finn-img {
      width: 420px;
      max-width: 100%;
      display: block;
      position: relative;
      z-index: 1;
      animation: finnFloat 4s ease-in-out infinite;
      transform-origin: center bottom;
      filter: drop-shadow(0 24px 32px rgba(0,0,0,0.13));
    }
    
    /* Placeholder until finn_laptop.png is added */
    .hero__finn-placeholder {
      width: 420px; max-width: 100%;
      aspect-ratio: 1 / 1.1;
      background: rgba(74,122,155,0.07);
      border: 2px dashed rgba(74,122,155,0.25);
      border-radius: 16px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.75rem; color: rgba(74,122,155,0.5);
    }
    .hero__finn-placeholder span:first-child { font-size: 3.5rem; }
    .hero__finn-placeholder span:last-child  { font-size: 0.82rem; font-weight: 600; text-align: center; line-height: 1.5; }

    /* ════════════════════════════════════════════
       SERVICES / PRICING
    ════════════════════════════════════════════ */
    .services {
      background: var(--alt-bg);
      padding: 4rem 0 5rem;
    }
    .services__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .services__label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 2.5rem;
    }
    .services__intro {
      font-size: 1rem;
      font-weight: 400;
      color: #3a3835;
      line-height: 1.6;
      max-width: 520px;
      margin-bottom: 2.25rem;
    }

    /* Tab bar */
    .tab-bar {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .tab-btn {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 0.55rem 1.2rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
      background: rgba(255,255,255,0.55);
      color: #5a5754;
    }
    .tab-btn:hover  { background: rgba(255,255,255,0.85); color: var(--text); }
    .tab-btn.active { background: var(--brand-blue-hover); color: #ffffff; }

    /* Tab panels */
    .tab-panel        { display: none; }
    .tab-panel.active { display: block; }

    /* Pricing grid — 3 columns */
    /* Pricing grid — all 3 cards are direct children, equal height */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.25rem;
      align-items: stretch;
    }

    /* Card wrapper — internal CSS grid locks each section to same row */
    .pricing-card {
      background: #ffffff;
      border-radius: 14px;
      border: 1.5px solid rgba(0,0,0,0.09);
      overflow: visible;
      display: grid;
      grid-template-rows: auto 1fr;  /* header | body */
      position: relative;
    }
    .pricing-card--popular {
      border-color: var(--brand-blue);
      border-width: 2px;
    }

    /* Badge: sits above card, centred, absolute so card height is unaffected */
    .popular-badge {
      position: absolute;
      top: -16px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      white-space: nowrap;
    }
    .popular-badge__inner {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      background: var(--brand-blue);
      padding: 0.3rem 1rem;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(74,122,155,0.35);
    }

    /* Tier header bar */
    .card-tier-row {
      padding: 0.65rem 1.25rem;
      background: #f0f4f7;
    }
    .card-tier-pill {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #5a849e;
      background: #ddeaf4;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
    }

    /* Card body — flex column, features grow, button stays at bottom */
    .card-body {
      padding: 1.5rem 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 0 0 14px 14px;
    }
    .card-top { flex: 0 0 auto; }
    .card-features { flex: 1; margin: 0.75rem 0 1.25rem; }
    .card-btn { margin-top: auto; flex: 0 0 auto; }

    .card-price {
      display: flex;
      align-items: baseline;
      gap: 0.1rem;
      margin-bottom: 0.3rem;
    }
    .card-price__amount {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }
    .card-price__per {
      font-size: 0.9rem;
      font-weight: 400;
      color: #6b6560;
    }

    .card-name {
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    .card-desc {
      font-size: 0.85rem;
      color: #6b6560;
      line-height: 1.6;
      margin-bottom: 1.25rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .card-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.75rem;
    }
    .card-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.875rem;
      color: #2a2825;
      line-height: 1.5;
    }
    .card-feature::before {
      content: "";
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--brand-blue);
      flex-shrink: 0;
      margin-top: 0.5em;
    }

    .card-btn {
      display: block;
      width: 100%;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: #ffffff;
      background: var(--brand-blue-hover);
      border: none;
      border-radius: 10px;
      padding: 0.85rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: background 0.15s;
    }
    .card-btn:hover { background: #2e5a7a; }

    /* ════════════════════════════════════════════
       SERVICES NOTE BAR
    ════════════════════════════════════════════ */
    .services__note {
      text-align: center;
      font-size: 0.82rem;
      font-weight: 400;
      color: #6b6560;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    /* ════════════════════════════════════════════
       FINN PEEK — between services & calculator
    ════════════════════════════════════════════ */
    .finn-peek-section {
      background: var(--alt-bg);   /* same as services bg — no break */
      display: flex;
      justify-content: center;
      padding: 1.5rem 0 0;
    }
    .finn-peek-img {
      height: 80px;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
    }
    /* Emoji placeholder until finn_peek3.png is added */
    .finn-peek-placeholder {
      font-size: 3.5rem;
      line-height: 1;
      opacity: 0.5;
    }

    /* ════════════════════════════════════════════
       CALCULATOR
    ════════════════════════════════════════════ */
    .calc-section {
      background: var(--alt-bg);
      padding: 4rem 0 5rem;
    }
    .calc-section__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    /* Header — centred */
    .calc-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .calc-header__label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .calc-header__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      color: var(--text);
      line-height: 1.12;
      margin-bottom: 0.9rem;
    }
    .calc-header__sub {
      font-size: 0.95rem;
      color: #6b6560;
      font-weight: 400;
    }

    /* White two-column card */
    .calc-card {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }

    /* Left column */
    .calc-left {
      padding: 2.5rem 2.25rem 2.5rem 2.5rem;
      border-right: 1px solid rgba(0,0,0,0.07);
    }
    .calc-left__title {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.45rem;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 0.85rem;
    }
    .calc-left__body {
      font-size: 0.9rem;
      color: #6b6560;
      line-height: 1.65;
      margin-bottom: 2rem;
    }

    /* Field group */
    .calc-field { margin-bottom: 1.75rem; }
    .calc-field:last-child { margin-bottom: 0; }

    .calc-field__label {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #6b6560;
      margin-bottom: 0.4rem;
    }
    .calc-field__value {
      display: block;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    /* Range slider */
    .calc-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 4px;
      background: #ddd9d4;
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }
    .calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--brand-blue-hover);
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(58,107,143,0.35);
    }
    .calc-slider::-moz-range-thumb {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--brand-blue-hover);
      cursor: pointer;
      border: none;
      box-shadow: 0 2px 8px rgba(58,107,143,0.35);
    }

    /* Right column — output rows */
    .calc-right {
      padding: 2.5rem 2.5rem 2.5rem 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .calc-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }
    .calc-row__label {
      font-size: 0.92rem;
      color: #3a3835;
      font-weight: 400;
    }
    /* Blue monetary values */
    .calc-row__val--blue {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.05rem;
      color: #c0392b;   /* red-ish for DIY cost — matches screenshot */
    }
    /* The "Oh Bother" and "saving" rows use the teal blue */
    .calc-row:nth-child(3) .calc-row__val--blue,
    .calc-row:nth-child(5) .calc-row__val--blue {
      color: var(--brand-blue-hover);
    }
    /* Dark bold for hours */
    .calc-row__val--dark {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--text);
    }

    .calc-divider {
      height: 1px;
      background: rgba(0,0,0,0.07);
      margin: 0;
    }

    .calc-note {
      font-size: 0.87rem;
      color: #6b6560;
      line-height: 1.6;
      margin-top: 1.25rem;
    }
    .calc-note strong { color: var(--text); }

    .calc-cta {
      display: block;
      margin-top: 1.5rem;
      background: var(--brand-blue-hover);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      text-align: center;
      padding: 0.9rem 1.5rem;
      border-radius: 10px;
      transition: background 0.15s;
    }
    .calc-cta:hover { background: #2e5a7a; }

    /* ════════════════════════════════════════════
       PACKAGE FINDER QUIZ
    ════════════════════════════════════════════ */
    .quiz-section {
      background: var(--page-bg);
      padding: 5rem 0 6rem;
    }
    .quiz-section__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    /* Header */
    .quiz-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .quiz-header__label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .quiz-header__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .quiz-header__sub {
      font-size: 0.95rem;
      color: #6b6560;
    }

    /* Outer wrapper: card + finn side by side */
    .quiz-outer {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      position: relative;
      max-width: 760px;
      margin: 0 auto;
    }

    /* White card */
    .quiz-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.08);
      padding: 2.5rem;
      flex: 1;
      min-width: 0;
    }

    /* 4-segment progress bar */
    .quiz-progress {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.35rem;
      margin-bottom: 2rem;
    }
    .quiz-seg {
      height: 4px;
      background: #e0dcd7;
      border-radius: 2px;
      transition: background 0.25s;
    }
    .quiz-seg--active { background: #b0c8d8; }
    .quiz-seg--done   { background: var(--brand-blue-hover); }

    /* Steps */
    .quiz-step        { display: none; }
    .quiz-step.active { display: block; }

    .quiz-question {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    /* 2×2 options grid */
    .quiz-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 1.75rem;
    }
    .quiz-option {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 1rem 1.15rem;
      background: #ffffff;
      border: 1.5px solid #d8d4cf;
      border-radius: 10px;
      cursor: pointer;
      text-align: left;
      transition: border-color 0.15s, background 0.15s;
    }
    .quiz-option:hover {
      border-color: var(--brand-blue);
      background: #f4f8fb;
    }
    .quiz-option--selected {
      border-color: var(--brand-blue-hover);
      background: #eef4f9;
    }
    .quiz-option__title {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--text);
    }
    .quiz-option__sub {
      font-size: 0.78rem;
      color: #6b6560;
      font-weight: 400;
    }

    /* Nav row */
    .quiz-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .quiz-nav__label {
      font-size: 0.82rem;
      color: #6b6560;
      font-weight: 500;
    }
    .quiz-nav__btns {
      display: flex;
      gap: 0.5rem;
    }

    /* Next button */
    .quiz-next {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      color: #ffffff;
      background: var(--brand-blue-hover);
      border: none;
      border-radius: 50px;
      padding: 0.6rem 1.25rem;
      cursor: pointer;
      transition: background 0.15s, opacity 0.15s;
    }
    .quiz-next:hover:not(:disabled) { background: #2e5a7a; }
    .quiz-next--disabled,
    .quiz-next:disabled {
      background: #c8c4bf;
      cursor: default;
      opacity: 1;
    }

    /* Back button */
    .quiz-back-btn {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      color: #6b6560;
      background: transparent;
      border: 1.5px solid #d8d4cf;
      border-radius: 50px;
      padding: 0.6rem 1.1rem;
      cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }
    .quiz-back-btn:hover { border-color: var(--text); color: var(--text); }

    /* Result panel */
    .quiz-result           { display: none; text-align: center; }
    .quiz-result--show     { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
    .quiz-result__emoji    { font-size: 2.5rem; }
    .quiz-result__title    { font-weight: 800; font-size: 1.5rem; color: var(--text); }
    .quiz-result__desc     { font-size: 0.92rem; color: #6b6560; max-width: 340px; }
    .quiz-result__pkg {
      background: var(--brand-blue-hover); color: #fff;
      font-weight: 700; font-size: 1rem;
      padding: 0.65rem 1.5rem;
      border-radius: 8px;
    }
    .quiz-restart {
      background: none; border: none;
      color: var(--brand-blue); font-size: 0.85rem;
      font-weight: 600; cursor: pointer;
      text-decoration: underline;
      font-family: var(--font-body);
    }

    /* Finn to the right of the card */
    .quiz-finn {
      width: 110px;
      flex-shrink: 0;
      display: flex;
      align-items: flex-start;
      padding-top: 3rem;
      margin-left: -1rem;   /* slightly overlaps card edge like in screenshot */
    }
    .quiz-finn img {
      width: 100px;
    }
    .quiz-finn__placeholder {
      font-size: 4rem;
      line-height: 1;
      opacity: 0.6;
    }

    /* ════════════════════════════════════════════
       STATS BANNER
    ════════════════════════════════════════════ */
    .stats {
      background: var(--brand-blue);
      color: #ffffff;
      padding: 3.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .stats__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
      position: relative;
      z-index: 1;
    }
    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat__num {
      display: block;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.05;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }
    /* "Xero" uses italic style matching screenshot */
    .stat__num--italic {
      font-style: italic;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    .stat__label {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      line-height: 1.4;
    }
    /* Finn at right edge */
    .stats__finn {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 120%;
      opacity: 0.18;
      pointer-events: none;
    }
    .stats__finn-ph {
      position: absolute;
      right: 2rem;
      bottom: 0;
      font-size: 4rem;
      line-height: 1;
      opacity: 0.25;
      pointer-events: none;
    }

    /* ════════════════════════════════════════════
       WHY OH BOTHER
    ════════════════════════════════════════════ */
    .why {
      background: var(--page-bg);
      padding: 5rem 0 6rem;
    }
    .why__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }
    .why__header {
      margin-bottom: 3rem;
    }
    .why__label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .why__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .why__sub {
      font-size: 1rem;
      color: #6b6560;
      line-height: 1.65;
      max-width: 500px;
    }

    /* 3-col grid, 5 cards — last 2 centred */
    .why__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    /* Centre cards 4 & 5 in the second row */
    .why-card:nth-child(4) { grid-column: 1; }
    .why-card:nth-child(5) { grid-column: 2; }

    .why-card {
      background: #ffffff;
      border-radius: 14px;
      border: 1.5px solid rgba(0,0,0,0.08);
      padding: 1.75rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .why-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.09);
      transform: translateY(-3px);
    }

    /* Icon box — matches the soft-coloured square in screenshot */
    .why-card__icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--alt-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1.1rem;
    }
    .why-card__title {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .why-card__desc {
      font-size: 0.875rem;
      color: #6b6560;
      line-height: 1.65;
    }

    /* ════════════════════════════════════════════
       HOW IT WORKS
    ════════════════════════════════════════════ */
    .how {
      background: var(--alt-bg);
      padding: 5rem 0 6rem;
    }
    .how__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }
    .how__header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .how__label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .how__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--text);
      margin-bottom: 0.9rem;
    }
    .how__sub {
      font-size: 0.95rem;
      color: #6b6560;
    }

    /* Steps row */
    .how__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
      text-align: center;
    }

    /* Horizontal connecting line — sits behind the circles at circle mid-height */
    .how__line {
      position: absolute;
      top: 34px;           /* half of 68px circle */
      left: calc(16.66% + 34px);
      right: calc(16.66% + 34px);
      height: 1.5px;
      background: #c8c4be;
      z-index: 0;
    }

    .how__step { position: relative; z-index: 1; }

    .how__step-num {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: var(--brand-blue);
      color: #ffffff;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 16px rgba(74,122,155,0.30);
    }

    .how__step-title {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 0.6rem;
    }
    .how__step-desc {
      font-size: 0.875rem;
      color: #6b6560;
      line-height: 1.65;
      max-width: 280px;
      margin: 0 auto;
    }

    /* ════════════════════════════════════════════
       CLIENT PORTAL CTA
    ════════════════════════════════════════════ */
    .portal {
      background: var(--page-bg);
      padding: 5rem 0 6rem;
    }
    .portal__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 4rem;
      align-items: start;
    }

    .portal__label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .portal__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .portal__body {
      font-size: 0.95rem;
      color: #6b6560;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .portal__features {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-bottom: 2rem;
    }
    .portal__feature {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
    }
    .portal__feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--alt-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .portal__feature-title {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 0.2rem;
    }
    .portal__feature-desc {
      font-size: 0.83rem;
      color: #6b6560;
      line-height: 1.6;
    }
    .portal__cta {
      display: inline-block;
      width: auto;
      padding: 0.85rem 1.75rem;
      border-radius: 50px;
    }

    /* Right: mockup */
    .portal__right { position: relative; }
    .portal__included-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: var(--text);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      margin-bottom: 0.75rem;
      float: right;
    }

    /* Portal mockup card */
    .portal-mockup {
      background: #ffffff;
      border-radius: 14px;
      border: 1.5px solid rgba(0,0,0,0.09);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      overflow: hidden;
      font-size: 0.82rem;
      clear: both;
    }
    .pm-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.85rem 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      background: #fff;
    }
    .pm-header__brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 0.82rem;
      color: var(--text);
    }
    .pm-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--brand-blue);
      display: inline-block;
    }
    .pm-header__client { font-size: 0.75rem; color: #6b6560; }

    .pm-stats {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .pm-stat {
      padding: 0.9rem 1.25rem;
      border-right: 1px solid rgba(0,0,0,0.07);
    }
    .pm-stat:last-child { border-right: none; }
    .pm-stat__label {
      font-size: 0.65rem;
      color: #6b6560;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.25rem;
    }
    .pm-stat__val {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.1rem;
    }
    .pm-stat__val--blue { color: var(--brand-blue); }
    .pm-stat__val--dark { color: var(--text); font-size: 0.92rem; }

    .pm-section-label {
      padding: 0.6rem 1.25rem 0.2rem;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6b6560;
    }

    .pm-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 0.55rem 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .pm-row__title { font-weight: 600; font-size: 0.8rem; color: var(--text); }
    .pm-row__meta  { font-size: 0.7rem; color: #6b6560; }
    .pm-row__hrs   { font-weight: 700; font-size: 0.8rem; color: #6b6560; flex-shrink: 0; }

    .pm-message {
      margin: 0.6rem 1.25rem;
      background: #eef4f9;
      border-radius: 8px;
      padding: 0.65rem 0.9rem;
    }
    .pm-message__who  { font-weight: 700; font-size: 0.72rem; color: var(--brand-blue-hover); margin-bottom: 0.25rem; }
    .pm-message__text { font-size: 0.78rem; color: var(--text); line-height: 1.5; }

    .pm-reply {
      display: flex;
      gap: 0.5rem;
      padding: 0.65rem 1.25rem 0.9rem;
      align-items: center;
    }
    .pm-reply input {
      flex: 1;
      border: 1.5px solid #e0dcd7;
      border-radius: 50px;
      padding: 0.45rem 0.85rem;
      font-size: 0.78rem;
      color: #6b6560;
      background: var(--page-bg);
      font-family: var(--font-body);
    }
    .pm-reply-btn {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--brand-blue-hover);
      border: none;
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ════════════════════════════════════════════
       CREDENTIALS
    ════════════════════════════════════════════ */
    .creds {
      /* Light blue tinted background — matching screenshot */
      background: #daeaf5;
      padding: 5rem 0 6rem;
    }
    .creds__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: center;
    }
    .creds__label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .creds__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .creds__body {
      font-size: 0.95rem;
      color: #3a3835;
      line-height: 1.7;
    }

    /* Stacked credential cards */
    .creds__right {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .cred-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1.5px solid rgba(0,0,0,0.08);
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .cred-card__icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      background: #f0f4f7;
    }
    .cred-card__icon--green { background: #eaf7ee; }
    .cred-card__icon--red   { background: #fdf0f0; }
    .cred-card__icon--grey  { background: #f0f4f7; }
    .cred-card__title {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 0.15rem;
    }
    .cred-card__desc {
      font-size: 0.8rem;
      color: #6b6560;
    }

    /* ════════════════════════════════════════════
       FAQ
    ════════════════════════════════════════════ */
    .faq {
      background: var(--page-bg);
      padding: 5rem 0 6rem;
    }
    .faq__inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }
    .faq__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .faq__label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .faq__sub {
      font-size: 0.95rem;
      color: #6b6560;
      margin-top: 0.5rem;
    }

    /* Accordion list */
    .faq__list { display: flex; flex-direction: column; }

    .faq-item { border-bottom: 1px solid rgba(0,0,0,0.09); }
    .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.09); }

    .faq-q {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 0;
      background: none;
      border: none;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      text-align: left;
      transition: color 0.15s;
    }
    .faq-q:hover { color: var(--brand-blue); }

    .faq-icon {
      font-size: 1.2rem;
      font-weight: 400;
      color: #6b6560;
      flex-shrink: 0;
      transition: transform 0.25s, color 0.15s;
      line-height: 1;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      color: var(--brand-blue);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-a p {
      padding: 0 0 1.25rem;
      font-size: 0.9rem;
      color: #6b6560;
      line-height: 1.7;
    }

    /* ════════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════════ */
    .contact {
      background: var(--page-bg);
      padding: 5rem 0 6rem;
    }
    .contact__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 5rem;
      align-items: start;
    }
    .contact__label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 1rem;
    }
    .contact__heading {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.6rem);
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .contact__body {
      font-size: 0.95rem;
      color: #6b6560;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .contact__info {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      margin-bottom: 2rem;
    }
    .contact__info-item {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
    }
    .contact__info-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--alt-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .contact__info-title {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #6b6560;
      margin-bottom: 0.2rem;
    }
    .contact__info-val {
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5;
    }

    /* Social icon circles — dark filled */
    .contact__socials {
      display: flex;
      gap: 0.6rem;
    }
    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--text);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 700;
      transition: background 0.15s;
    }
    .social-btn:hover { background: var(--brand-blue-hover); }

    /* Dark form card */
    .contact__card {
      background: var(--text);
      border-radius: 16px;
      padding: 2.25rem;
      color: #ffffff;
    }
    .contact__card-title {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.15rem;
      color: #ffffff;
      margin-bottom: 1rem;
    }

    /* 3-segment progress bar */
    .form-progress {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.35rem;
      margin-bottom: 1.25rem;
    }
    .form-seg {
      height: 3px;
      background: rgba(255,255,255,0.15);
      border-radius: 2px;
      transition: background 0.3s;
    }
    .form-seg--active { background: var(--brand-blue); }
    .form-seg--done   { background: var(--brand-blue); }

    .form-step-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1.5rem;
    }

    .form-panel        { display: none; flex-direction: column; gap: 1rem; }
    .form-panel.active { display: flex; }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
    .form-group label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: #ffffff;
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: border-color 0.15s, background 0.15s;
      width: 100%;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--brand-blue);
      background: rgba(255,255,255,0.11);
    }
    .form-group select option { background: var(--text); color: #fff; }
    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-notice {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.5;
    }

    .form-nav {
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
      margin-top: 0.25rem;
    }
    .form-next-btn {
      background: var(--brand-blue-hover);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.7rem 1.5rem;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.15s;
    }
    .form-next-btn:hover { background: #2e5a7a; }
    .form-back-btn {
      background: transparent;
      color: rgba(255,255,255,0.45);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      padding: 0.7rem 1.25rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.88rem;
      cursor: pointer;
      transition: color 0.15s, border-color 0.15s;
    }
    .form-back-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

    .form-status {
      padding: 0.75rem 1rem;
      border-radius: 8px;
      font-size: 0.88rem;
      margin-bottom: 0.75rem;
    }

    /* ════════════════════════════════════════════
       FINN PEEK — between contact & footer
    ════════════════════════════════════════════ */
    .footer-finn {
      background: var(--page-bg);
      display: flex;
      justify-content: center;
      padding: 2rem 0 0;
    }
    .footer-finn__img {
      height: 90px;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    }
    .footer-finn__ph {
      font-size: 4rem;
      line-height: 1;
      opacity: 0.5;
    }

    /* ════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════ */
    .footer {
      background: var(--footer-bg);
      color: #ffffff;
      padding: 3.5rem 0 0;
    }
    .footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
    }
    .footer__logo {
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: 1.3rem;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }
    .footer__tagline {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.65;
      max-width: 240px;
    }
    .footer__col-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1.1rem;
    }
    .footer__links {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .footer__links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.15s;
    }
    .footer__links a:hover { color: #ffffff; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 1.5rem 0;
      text-align: center;
    }
    .footer__bottom p {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.3);
      line-height: 1.6;
    }

    /* ════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .nav__links, .nav__cta { display: none; }
      .nav__burger { display: flex; }
      .hero__inner { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; }
      .hero__right { order: -1; margin-bottom: 2rem; }
      .hero__left  { padding-right: 0; }
      .hero__circle {
      position: absolute;
      width: 900px; height: 900px;
      border-radius: 50%;
      background: #EBEBEB;
      top: -280px;
      right: -280px;
      transform: none;
      z-index: 0;
    }
      .hero__headline { font-size: 2.8rem; }
      .pricing-grid { grid-template-columns: 1fr; }
      .calc-card { grid-template-columns: 1fr; }
      .calc-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
      .quiz-options { grid-template-columns: 1fr; }
      .quiz-finn { display: none; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .why__grid { grid-template-columns: 1fr 1fr; }
      .why-card:nth-child(4), .why-card:nth-child(5) { grid-column: auto; }
      .how__steps { grid-template-columns: 1fr; }
      .how__line { display: none; }
      .portal__inner { grid-template-columns: 1fr; }
      .creds__inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer__brand { grid-column: 1 / -1; }
      .form-row-2 { grid-template-columns: 1fr; }
    }
    @media (max-width: 580px) {
      .hero__headline { font-size: 2.2rem; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .footer__grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .hero__headline { font-size: 2.2rem; }
      .services__inner, .hero__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
    }