/* =========================================================
   LMBR — styles-yards.css
   Styles for the For Lumber Yards page (/for-yards)
   Shared with How It Works — Yards (/how-it-works-for-yards)
   via the .hero--hiw toggle class applied by JavaScript.

   FILE STRUCTURE
   =========================================================
    1.  Design Tokens (CSS Variables)
    2.  Base Reset + Body
    3.  Navigation (desktop)
    4.  Hero Section
    5.  Hero Animations
    6.  Page Toggle Bar (What We're Building / How It Works)
    7.  Problems Section
    8.  Value Props / Solutions Section
    9.  Social Proof Section
   10.  CTA / Form Section
   11.  Founder Note Section
   12.  Callback Line
   13.  What Happens Next Section
   14.  Footer
   15.  Hamburger / Mobile Drawer Nav
   16.  How It Works — Steps Layout
   17.  How It Works — Step Illustrations
   18.  How It Works — Summary Cards
   19.  HIW Hero (Light Mode Override)
   20.  Responsive — Tablet (max 1024px)
   21.  Responsive — Collapse Breakpoint (max 860px)
   22.  Responsive — Mobile (max 768px)
   23.  Responsive — Small Mobile (max 480px)
   24.  Responsive — Large Screens (min 1400px)
   25.  Responsive — Ultra Wide (min 1800px)
   26.  Desktop UX Refinements
   ========================================================= */

/* =========================================================
   1. DESIGN TOKENS & BASE RESET
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; }
    html { scroll-padding-top: 68px; }

    :root {
      --green-dark: #0e1a0c;
      --green-mid: #213518;
      --green-accent: #2a4520;
      --green-bright: #375e28;
      --cream-mid: #ede8df;
      --warm-white: #faf8f4;
      --text-dark: #1a1a1a;
      --text-mid: #444;
      --text-light: #777;
      --border: #d8d0c4;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
    }

    /* =========================================================
       3. NAVIGATION — DESKTOP
       Fixed nav bar, transparent over hero, dark on scroll.
       .scrolled class added by JS after 10px scroll.
       .hero--hiw-active switches to light mode when HIW toggle active.
       ========================================================= */

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      min-height: 64px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.3s, border-color 0.3s;
    }
    nav.scrolled {
      background: var(--green-dark);
      border-color: rgba(255,255,255,0.08);
    }
    nav.scrolled.hero--hiw-active {
      background: var(--warm-white);
      border-color: var(--border);
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .nav-link {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 20px;
      transition: color 0.25s ease;
      letter-spacing: 0.01em;
    }
    .nav-link:hover { color: #fff; }
    .nav-link.active {
      color: #fff;
      font-weight: 600;
      border-bottom: 2px solid #a67c52;
      border-radius: 0;
      padding-bottom: 4px;
    }
    .nav-cta {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      padding: 9px 20px;
      background: var(--green-dark);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 20px;
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      letter-spacing: 0.02em;
    }
    .nav-cta:hover { background: var(--green-mid); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }


    /* ── HERO EYEBROW LABEL ──
       Matches reference: small caps, very wide tracking, low opacity.
       Sits above the headline to identify the page/audience. */
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #a67c52 !important;
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeUp 0.8s 0.1s forwards;
    }

    /* =========================================================
       4. HERO SECTION
       Two-column grid: content left (44%), image right (56%).
       margin-top: 0 + padding-top on content = hero bleeds behind nav.
       .hero--hiw class (toggled by JS) switches to light/white mode.
       ========================================================= */

    .hero {
      margin-top: 0;
      position: relative;
      min-height: 0;
      display: grid;
      grid-template-columns: 44% 56%;
      overflow: hidden;
      background: var(--green-dark);
    }

    .hero-content {
      background: var(--green-dark);
      padding: 104px 56px 48px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    /* No hard diagonal cut — the gradient on the image side handles the fade */

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 5vw, 80px);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      letter-spacing: -1px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero p {
      font-size: 18px;
      color: rgba(255,255,255,0.82);
      line-height: 1.6;
      max-width: 420px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .btn-primary {
      display: inline-block;
      padding: 14px 28px;
      background: var(--green-bright);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      align-self: flex-start;
      opacity: 0;
      animation: fadeInBtn 0.8s 0.6s forwards;
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }
    .btn-primary:hover { background: var(--green-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); filter: brightness(1.12); }

    .hero-image {
      position: relative;
      overflow: hidden;
      background: var(--green-dark);
    }
    .hero-image::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 55%;
      height: 100%;
      background: linear-gradient(to right, var(--green-dark) 0%, rgba(22,35,20,0.6) 50%, transparent 100%);
      z-index: 2;
      pointer-events: none;
    }
    .hero-image img {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      filter: brightness(0.82) saturate(1.05);
    }

    .hero-accent {
      color: var(--green-bright);
      filter: brightness(1.4);
    }

    /* =========================================================
       5. HERO ANIMATIONS
       fadeUp: used for h1, p, and toggle bar entrance on load.
       fadeInBtn: opacity-only fade for the toggle buttons.
       Delays are staggered: h1=0.2s, p=0.4s, buttons=0.6s.
       ========================================================= */

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInBtn {
      to { opacity: 1; }
    }

    /* =========================================================
       7. PROBLEMS SECTION
       Three-column grid of problem cards.
       Headline centered above, cards separated by left border.
       Icons use the brand gold (#a67c52).
       ========================================================= */

    .problems {
      display: flex;
      flex-direction: column;
      padding: 44px 80px 40px;
      background: var(--warm-white);
      gap: 32px;
    }

    .problems-headline {
      text-align: center;
    }

    .problems-headline h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }

    .problems-headline h2 em {
      font-style: normal;
      color: var(--green-bright);
    }

    .problems-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .problem-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      padding: 0 32px;
      border-left: 1px solid var(--border);
    }
    .problem-item:first-child { border-left: none; padding-left: 0; }
    .problem-item {
      transition: opacity 0.2s ease;
    }
    .problem-item:hover { opacity: 0.85; }

    .problem-icon {
      width: 56px; height: 56px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #a67c52;
      flex-shrink: 0;
    }
    .problem-icon svg { width: 26px; height: 26px; }
    .problem-icon i { font-size: 26px; line-height: 1; }

    .problem-item h3 {
      font-size: 21px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .problem-item p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* =========================================================
       8. VALUE PROPS / SOLUTIONS SECTION
       Full-bleed dark section with forest-photo.jpg background.
       ::before = the photo with filter, ::after = dark green overlay.
       All child elements need position: relative + z-index: 2.
       ========================================================= */

    .value-props {
      position: relative;
      padding: 48px 80px 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      overflow: hidden;
      text-align: center;
    }
    .value-props::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('forest-photo.jpg');
      background-size: cover;
      background-position: center 40%;
      filter: saturate(0.6) brightness(0.5);
      z-index: 0;
    }
    .value-props::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(22,35,20,0.72);
      z-index: 1;
    }

    .value-headline {
      position: relative;
      z-index: 2;
      border-left: none;
      padding-left: 0;
    }

    .value-headline h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.2vw, 50px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .value-headline h2 span.vp-line {
      display: block;
      line-height: 1.2;
    }
    .value-headline h2 span.vp-line + span.vp-line {
      margin-top: 0.3em;
    }
    .value-headline h2 u {
      text-decoration-color: #a67c52;
      text-underline-offset: 5px;
    }

    .value-cards {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      width: 100%;
      max-width: 900px;
    }

    .value-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      padding: 0 24px;
      border-left: 1px solid rgba(255,255,255,0.12);
    }
    .value-card:first-child { border-left: none; }

    .value-card-icon {
      color: #a67c52;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .value-card-icon svg { width: 40px; height: 40px; }
    .value-card-icon i { font-size: 40px; line-height: 1; }

    .value-card h3 {
      font-size: 16px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      line-height: 1.4;
    }
    .value-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    /* =========================================================
       9. SOCIAL PROOF SECTION
       Centered one-liner with an icon, sits between solutions and CTA.
       ========================================================= */

    .social-proof {
      padding: 24px 80px;
      background: var(--warm-white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .proof-inner {
      display: flex;
      align-items: flex-start;
      gap: 28px;
      max-width: 640px;
    }

    .proof-icon {
      width: 64px; height: 64px;
      background: var(--cream-mid);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .proof-icon svg { width: 28px; height: 28px; color: var(--green-dark); }

    .proof-text h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .proof-text p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* =========================================================
       10. CTA / FORM SECTION
       Dark green two-column section: copy left, form right.
       Form uses Formspree (see action attribute in HTML).
       Custom checkbox styling hides native input, styles span sibling.
       ========================================================= */

    #cta, #buyers-cta {
      scroll-margin-top: 0;
    }
    .cta-section {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      padding: 36px 80px 44px;
      background: var(--green-dark);
      align-items: start;
    }
    .cta-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .cta-left > p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .cta-divider { width: 48px; height: 3px; background: #a67c52; border-radius: 2px; margin: 24px 0; }
    .cta-trouble { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
    .cta-trouble a { color: rgba(255,255,255,0.55); text-decoration: underline; }

    .cta-form { display: flex; flex-direction: column; gap: 12px; }
    .form-top-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .field-group { display: flex; flex-direction: column; gap: 8px; }
    .field-group label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
    .field-group input,
    .field-group textarea,
    .field-group select {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 13px 16px;
      font-size: 15px;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s;
      width: 100%;
    }
    .field-group input::placeholder,
    .field-group textarea::placeholder { color: rgba(255,255,255,0.25); }
    .field-group input:focus,
    .field-group textarea:focus,
    .field-group select:focus { outline: none; border-color: rgba(255,255,255,0.35); }
    .field-group select { color: rgba(255,255,255,0.7); }
    .field-group select option { background: var(--green-dark); color: #fff; }
    .field-group textarea { resize: vertical; min-height: 90px; }

    /* Optional divider */
    .form-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .form-divider::before,
    .form-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.15);
    }

    /* Optional-fields disclosure */
    .form-more {
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 10px;
      background: rgba(255,255,255,0.03);
    }
    .form-more-toggle {
      display: flex;
      align-items: center;
      gap: 4px 12px;
      flex-wrap: wrap;
      padding: 14px 16px;
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .form-more-toggle::-webkit-details-marker { display: none; }
    .form-more-label {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
    }
    .form-more-hint {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
    }
    .form-more-caret {
      margin-left: auto;
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      transition: transform 0.2s ease;
    }
    .form-more[open] .form-more-caret { transform: rotate(180deg); }
    .form-more-body {
      padding: 4px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* Toggle groups */
    .form-toggles {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .toggle-divider {
      width: 1px;
      background: rgba(255,255,255,0.1);
    }

    .toggle-group {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .toggle-label {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }
    .toggle-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      margin-top: -6px;
      margin-bottom: 4px;
    }

    .radio-option,
    .checkbox-option {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      cursor: pointer;
      transition: color 0.15s;
      user-select: none;
    }
    .radio-option:hover,
    .checkbox-option:hover { color: #fff; }

    .radio-option input,
    .checkbox-option input { display: none; }

    .radio-circle {
      width: 16px; height: 16px;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      flex-shrink: 0;
      transition: border-color 0.15s, background 0.15s;
      position: relative;
    }
    .radio-option input:checked ~ .radio-circle {
      border-color: var(--green-bright);
      background: var(--green-bright);
    }
    .radio-option input:checked ~ .radio-circle::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 5px; height: 5px;
      background: #fff;
      border-radius: 50%;
    }
    .radio-option input:checked ~ span:last-child { color: #fff; }

    .checkbox-box {
      width: 16px; height: 16px;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 3px;
      flex-shrink: 0;
      transition: border-color 0.15s, background 0.15s;
      position: relative;
    }
    .checkbox-option input:checked ~ .checkbox-box {
      border-color: var(--green-bright);
      background: var(--green-bright);
    }
    .checkbox-option input:checked ~ .checkbox-box::after {
      content: '';
      position: absolute;
      top: 2px; left: 4px;
      width: 5px; height: 8px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      transform: rotate(45deg);
    }
    .checkbox-option input:checked ~ span:last-child { color: #fff; }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background: #fff;
      color: var(--green-dark);
      border: none;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      margin-top: 8px;
      min-height: 52px;
    }
    .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
    .form-security { font-size: 11px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
    .form-security i { font-size: 13px; }

    /* =========================================================
       11. FOUNDER NOTE SECTION
       Dark brown background (#3d2e1e), max 600px text column.
       Headline uses Playfair Display, body uses DM Sans italic.
       ========================================================= */

    .founder-note {
      background: #3d2e1e;
      padding: 44px 80px;
      display: flex;
      justify-content: center;
    }

    .founder-inner {
      max-width: 680px;
      width: 100%;
    }

    .founder-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }

    .founder-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 32px;
    }

    .founder-body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 28px;
    }

    .founder-body p {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-style: italic;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
    }

    .founder-sig {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
    }

    .founder-sig strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      font-style: normal;
      margin-bottom: 4px;
    }

    .founder-sig span {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
    }

    /* =========================================================
       12. CALLBACK LINE
       Full-width cream band used as a section transition.
       width: 100vw + left: 50% + translateX(-50%) breaks out
       of any parent padding container.
       ========================================================= */

    .callback-line {
      background: var(--cream-mid);
      padding: 22px 80px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    .callback-quote {
      max-width: 760px;
      margin: 0 auto;
      border-left: 3px solid #a67c52;
      padding-left: 22px;
    }
    .callback-meta {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 6px 14px;
      margin-bottom: 9px;
    }
    .callback-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #a67c52;
    }
    .callback-tags {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-left: auto;
    }
    .callback-tags .dot { margin: 0 7px; opacity: 0.5; }
    .callback-line p {
      font-size: 15px;
      font-style: italic;
      color: var(--text-mid);
      text-align: left;
      max-width: 100%;
      margin: 0;
      line-height: 1.5;
    }

    /* =========================================================
       13. WHAT HAPPENS NEXT SECTION
       Simple centered copy block, light background.
       ========================================================= */

    .whats-next {
      background: var(--warm-white);
      padding: 48px 80px;
      display: flex;
      justify-content: center;
      border-top: 1px solid var(--border);
    }
    .whats-next-inner {
      max-width: 560px;
      width: 100%;
    }
    .whats-next h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }
    .whats-next-steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .next-step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .next-step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .next-step p {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.65;
      padding-top: 3px;
    }

    /* ── FOUNDER QUOTE MARKS ── */
    .founder-note {
      position: relative;
    }
    .founder-qmark-open,
    .founder-qmark-close {
      font-family: 'Playfair Display', serif;
      font-size: 120px;
      line-height: 1;
      color: rgba(255,255,255,0.08);
      position: absolute;
      user-select: none;
      pointer-events: none;
    }
    .founder-qmark-open {
      top: 16px;
      left: 24px;
    }
    .founder-qmark-close {
      bottom: 16px;
      right: 24px;
    }

    /* ── FOOTER ── */
    footer {
      background: #0e1a0e;
      padding: 18px 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-copy {
      font-size: 12.5px;
      color: rgba(255,255,255,0.35);
    }

    /* ── RESPONSIVE ── */
    /* =========================================================
       20. RESPONSIVE — TABLET (max-width: 1024px)
       CTA section adjusts column widths at medium screens.
       ========================================================= */


/* =========================================================
   MAP SECTION
   Full-width image between callback line and problems
   ========================================================= */
.map-section {
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  line-height: 0;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .map-section { border-left: none; border-right: none; }
}

    /* =========================================================
       21. RESPONSIVE — COLLAPSE BREAKPOINT (max-width: 860px)
       Problems and value cards collapse from 3-col to 1-col
       at the same breakpoint for visual consistency.
       ========================================================= */

    @media (max-width: 860px) {
      .value-props { padding: 48px 24px; gap: 36px; }
      .value-cards { grid-template-columns: 1fr; max-width: 100%; }
      .value-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0 0; }
      .value-card:first-child { border-top: none; padding-top: 0; }
      .problems-list { grid-template-columns: 1fr; gap: 28px; }
      .problem-item { border-left: none; border-top: 1px solid var(--border); padding: 20px 0 0; align-items: flex-start; text-align: left; flex-direction: row; gap: 16px; }
      .problem-item:first-child { border-top: none; padding-top: 0; }
    }

    /* =========================================================
       22. RESPONSIVE — MOBILE (max-width: 768px)
       Core mobile layout adjustments.
       Hero collapses to single column.
       Form fields stack vertically.
       All inputs get font-size: 16px to prevent iOS zoom.
       ========================================================= */

    @media (max-width: 768px) {
      nav { padding: 12px 24px; }
      .logo img { height: 40px; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-content { padding: 88px 28px 36px; }
      .hero-image { height: 260px; }
      .hero-image::before { width: 40%; }
      .problems { padding: 36px 24px 32px; gap: 14px; }
      .problems-headline h2 { font-size: clamp(22px, 6vw, 32px); }
      .value-props { padding: 36px 24px 40px; gap: 28px; }
      .social-proof { padding: 20px 20px; }
      .founder-note { padding: 36px 10px; }
      .whats-next { padding: 32px 20px; }
      .cta-section { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }
      .form-top-row { grid-template-columns: 1fr; }
      .form-toggles { grid-template-columns: 1fr; }
      .toggle-divider { width: 100%; height: 1px; }
      footer { padding: 24px; }
    }

    /* =========================================================
       15. HAMBURGER / MOBILE DRAWER NAV
       Hamburger: hidden on desktop, visible on mobile (<768px).
       Three <span> elements animate into an X when .open is added.
       Drawer: slides in from left, 260px wide.
       Overlay: dark backdrop, closes drawer on tap.
       ========================================================= */

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 201;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-drawer {
      position: fixed;
      top: 0; left: 0;
      width: 260px;
      height: 100%;
      background: var(--warm-white);
      z-index: 200;
      transform: translateX(-100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      padding: 80px 28px 40px;
      border-right: 1px solid var(--border);
      box-shadow: 4px 0 24px rgba(0,0,0,0.08);
    }
    .nav-drawer.open { transform: translateX(0); }

    .drawer-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 32px;
    }
    .drawer-link {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-mid);
      text-decoration: none;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }
    .drawer-link:last-child { border-bottom: none; }
    .drawer-link:hover,
    .drawer-link.active { color: var(--text-dark); font-weight: 600; }

    .drawer-cta {
      display: inline-block;
      padding: 13px 24px;
      background: var(--green-dark);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 20px;
      letter-spacing: 0.02em;
      text-align: center;
      transition: background 0.25s ease;
    }
    .drawer-cta:hover { background: var(--green-mid); }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.35);
      z-index: 199;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.32s ease;
    }
    .nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    body.nav-open {
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
      }
    }

    /* ── PAGE VIEW TOGGLE ── */
    .page-toggle-bar {
      display: flex;
      gap: 8px;
      opacity: 0;
      animation: fadeInBtn 0.8s 0.6s forwards;
    }
    .page-toggle-btn {
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.03em;
      cursor: pointer;
      border: 1.5px solid rgba(255,255,255,0.25);
      background: transparent;
      color: rgba(255,255,255,0.6);
      font-family: 'DM Sans', sans-serif;
      transition: all 0.25s ease;
    }
    .page-toggle-btn.active {
      background: #fff;
      color: var(--green-dark);
      border-color: #fff;
    }
    .page-toggle-btn:not(.active):hover {
      border-color: rgba(255,255,255,0.6);
      color: #fff;
    }
    @media (max-width: 768px) {
      .page-toggle-bar { flex-wrap: wrap; }
      .page-toggle-btn { font-size: 12px; padding: 8px 16px; }
    }

    /* =========================================================
       16. HOW IT WORKS — STEPS LAYOUT
       Three-column grid: step number | text | illustration.
       Step numbers connect via ::after pseudo-element line.
       Step illustrations hidden on mobile.
       ========================================================= */

    /* Page wrap constrains step content width */
    .page-wrap {
      padding: 0 80px 0;
    }

    /* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }

    .step {
      display: grid;
      grid-template-columns: 56px 1fr 1fr;
      gap: 0 32px;
      align-items: start;
      padding: 0 80px 48px;
      border-bottom: none;
      margin: 0 -80px;
      background: none !important;
      position: relative;
    }
    .step:first-child { border-top: none; padding-top: 48px; }
    .step:nth-child(even) { background: none !important; }

    /* Number column with connecting line */
    .step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      margin-top: 4px;
    }

    /* Vertical line — runs down the number column only */
    .step-num::after {
      content: '';
      position: absolute;
      top: 44px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      background: var(--border);
      bottom: calc(-48px);
      z-index: 1;
    }
    .step:last-child .step-num::after { display: none; }

    /* Number column stretches full step height to contain the line */
    .step > .step-num {
      align-self: stretch;
      position: relative;
    }

    .step-left { display: flex; flex-direction: column; gap: 12px; }

    .step-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.2vw, 32px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.3px;
      color: var(--text-dark);
      margin-top: 8px;
    }

    .step-left p {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.7;
    }

    .step-checklist {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }
    .step-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.5;
      list-style: none;
    }
    .check-icon {
      width: 18px; height: 18px;
      border: 1.5px solid var(--green-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .check-icon svg { width: 9px; height: 9px; }

    /* --- Step Illustration (right column) --- */
    .step-right {
      background: var(--cream-mid);
      border-radius: 16px;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      width: 100%;
    }
    .step-illustration {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .doc-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .doc-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: var(--text-light);
    }
    .doc-label { width: 80px; flex-shrink: 0; }
    .doc-line {
      flex: 1;
      height: 10px;
      background: var(--cream-mid);
      border-radius: 4px;
    }
    .doc-line.filled { background: #c8d4c0; }
    .check-rows { display: flex; flex-direction: column; gap: 10px; }
    .check-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .check-circle {
      width: 20px; height: 20px;
      border-radius: 50%;
      border: 1.5px solid var(--green-bright);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .check-circle.filled { background: var(--green-dark); border-color: var(--green-dark); }
    .check-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; }
    .check-bar.dark { background: #b0c0a8; }
    .network {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      position: relative;
    }
    .network-node {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-mid);
    }
    .network-center {
      grid-column: 1 / -1;
      background: var(--green-dark);
      color: #fff;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
    }
    .response-rows { display: flex; flex-direction: column; gap: 10px; }
    .response-row {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-mid);
    }
    .response-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); flex-shrink: 0; }
    .response-bar { flex: 1; height: 8px; background: var(--cream-mid); border-radius: 4px; }
    .response-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* =========================================================
       18. HOW IT WORKS — SUMMARY CARDS
       Three-column grid of summary cards at bottom of HIW view.
       ========================================================= */

    .summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      padding: 44px 80px;
      margin: 0 -80px;
      background: var(--cream-mid);
      border-top: 1px solid var(--border);
    }
    .summary-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .summary-icon {
      width: 48px; height: 48px;
      background: var(--cream-mid);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
    }
    .summary-icon svg { width: 22px; height: 22px; }
    .summary-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-dark);
    }
    .summary-card p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.65;
    }

    @media (max-width: 768px) {
      .page-wrap { padding: 0 20px; }
      .step {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto;
        column-gap: 20px;
        row-gap: 0;
        padding: 36px 20px;
        margin: 0 -20px;
        align-items: start;
        position: relative;
      }

      /* Number top-left, text top-right */
      .step > .step-num {
        grid-column: 1;
        grid-row: 1;
        width: 36px; height: 36px;
        font-size: 13px;
        align-self: start;
        margin-top: 4px;
      }

      /* Text sits in column 2 */
      .step > .step-left {
        grid-column: 2;
        grid-row: 1;
      }

      /* Hide illustration on mobile */
      .step > .step-right { display: none !important; }

      /* Kill the ::after line on the circle — use step::after instead */
      .step > .step-num::after { display: none !important; }

      /* Line runs down col 1 from bottom of circle to bottom of step */
      .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: calc(36px + 4px + 36px);
        left: calc(20px + 18px);
        transform: translateX(-50%);
        width: 2px;
        bottom: 0;
        background: var(--border);
        z-index: 1;
      }
      .summary {
        grid-template-columns: 1fr;
        padding: 36px 20px;
        margin: 0 -20px;
        gap: 32px;
      }
    }

    /* =========================================================
       24. RESPONSIVE — LARGE SCREENS (min-width: 1400px)
       Sections gain progressive side padding as viewport grows
       so content does not stretch edge-to-edge on large monitors.
       Typography clamp maximums raised for better scaling.
       ========================================================= */

    @media (min-width: 1400px) {
      .hero { max-width: 100%; }
      .hero-content { padding: 120px 80px 56px 96px; }

      .problems,
      .value-props,
      .social-proof,
      .founder-note,
      .whats-next,
      .callback-line {
        padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
        padding-right: max(80px, calc((100vw - 1400px) / 2 + 80px));
      }

      .page-wrap {
        max-width: 1400px;
        margin: 0 auto;
      }

      .hero h1 { font-size: clamp(52px, 4.8vw, 88px); }
      .problems-headline h2 { font-size: clamp(28px, 2.4vw, 48px); }
      .value-headline h2 { font-size: clamp(28px, 2.6vw, 56px); }
      .founder-headline { font-size: clamp(28px, 2.4vw, 52px); }
    }

    /* =========================================================
       25. RESPONSIVE — ULTRA WIDE (min-width: 1800px)
       Hard content cap: all sections center within 1600px.
       Beyond this width nothing spreads further.
       ========================================================= */

    @media (min-width: 1800px) {
      .problems,
      .value-props,
      .social-proof,
      .founder-note,
      .whats-next,
      .callback-line {
        padding-left: calc((100vw - 1600px) / 2);
        padding-right: calc((100vw - 1600px) / 2);
      }
    }

    /* =========================================================
       19. HIW HERO — LIGHT MODE OVERRIDE
       When .hero--hiw is toggled by JS (HIW view active),
       the hero switches from dark green to warm white.
       All overrides use .hero.hero--hiw for specificity.
       Nav link colors also switch via .hero--hiw-active on #nav.
       ========================================================= */

    .hero.hero--hiw {
      background: var(--warm-white) !important;
    }
    .hero.hero--hiw .hero-content {
      background: var(--warm-white) !important;
    }
    .hero.hero--hiw h1 {
      color: var(--text-dark) !important;
    }
    .hero.hero--hiw .hero-accent {
      color: var(--green-bright) !important;
      filter: none !important;
    }
    .hero.hero--hiw p {
      color: var(--text-mid) !important;
    }
    /* Toggle buttons — dark on light background */
    .hero.hero--hiw .page-toggle-btn {
      border-color: rgba(22,35,20,0.3);
      color: rgba(22,35,20,0.6);
      background: transparent;
    }
    .hero.hero--hiw .page-toggle-btn.active {
      background: var(--green-dark);
      color: #fff;
      border-color: var(--green-dark);
    }
    .hero.hero--hiw .page-toggle-btn:not(.active):hover {
      border-color: var(--green-dark);
      color: var(--green-dark);
    }
    /* Nav links — dark on light background */
    .hero--hiw-active .nav-link {
      color: rgba(22,35,20,0.7);
    }
    .hero--hiw-active .nav-link:hover { color: var(--green-dark); }
    .hero--hiw-active .nav-link.active {
      color: var(--green-dark);
      border-bottom-color: #a67c52;
    }
    .hero--hiw-active .hamburger span { background: var(--text-dark); }
    /* Image — lighter fade to white */
    .hero.hero--hiw .hero-image::before {
      background: linear-gradient(to right, var(--warm-white) 0%, rgba(250,248,244,0.55) 45%, transparent 100%);
    }
    .hero.hero--hiw .hero-image img {
      filter: brightness(0.9) saturate(0.85);
    }
    @media (max-width: 768px) {
      .hero.hero--hiw .hero-content { background: var(--warm-white) !important; padding: 88px 28px 36px; }
      .hero.hero--hiw .hero-image { background: var(--warm-white); }
    }

    /* ════════════════════════════════════════════════
       COMPREHENSIVE MOBILE UX IMPROVEMENTS
       Applies to max-width: 768px only
       No content removed, no copy changed
    ════════════════════════════════════════════════ */

    @media (max-width: 768px) {

      /* ── BASE ── */
      html { scroll-padding-top: 60px; }
      body { font-size: 16px; }

      /* ── NAV ── */
      nav {
        padding: 12px 20px;
        height: 56px;
      }
      .logo img { height: 40px; }
      .nav-cta { display: none; }

      /* ── HERO ── */
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-content {
        padding: 72px 24px 32px;
      }
      .hero h1 {
        font-size: clamp(30px, 8vw, 44px);
        margin-bottom: 12px;
        line-height: 1.1;
      }
      .hero p {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.55;
      }
      .hero-image {
        height: 200px;
      }
      .page-toggle-bar {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
      }
      .page-toggle-btn {
        font-size: 12px;
        padding: 8px 16px;
      }

      /* ── CALLBACK LINE ── */
      .callback-line {
        padding: 22px 20px;
      }
      .callback-quote { padding-left: 16px; }
      .callback-tags { margin-left: 0; flex-basis: 100%; }
      .callback-line p {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        max-width: 100%;
      }

      /* ── PROBLEMS SECTION ── */
      .problems {
        padding: 36px 4px 32px;
        gap: 12px;
      }
      .problems-headline {
        text-align: center;
        margin-bottom: 12px;
      }
      .problems-headline h2 {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.2;
      }
      .problems-list {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .problem-item {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 20px 0;
        text-align: left;
        align-items: flex-start;
        flex-direction: row;
        gap: 16px;
      }
      .problem-item:first-child { border-top: none; padding-top: 8px; }
      .problem-icon {
        width: 40px; height: 40px;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .problem-icon i { font-size: 18px; }
      .problem-item-text { flex: 1; }
      .problem-item h3 {
        font-size: 17px;
        margin-bottom: 4px;
      }
      .problem-item p {
        font-size: 14px;
        line-height: 1.55;
      }

      /* ── VALUE PROPS (SOLUTIONS) ── */
      .value-props {
        padding: 44px 20px;
        gap: 28px;
      }
      .value-headline h2 {
        font-size: clamp(26px, 7vw, 36px);
        line-height: 1.2;
      }
      .value-cards {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
      }
      .value-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
      }
      .value-card:first-child { border-top: none; padding-top: 4px; }
      .value-card-icon {
        flex-shrink: 0;
        margin-top: 2px;
      }
      .value-card-icon i { font-size: 28px; }
      .value-card-text { flex: 1; }
      .value-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
        color: rgba(255,255,255,0.9);
      }
      .value-card p {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        line-height: 1.55;
      }

      /* ── SOCIAL PROOF ── */
      .social-proof {
        padding: 24px 20px;
        display: block;
        width: 100%;
        box-sizing: border-box;
      }
      .proof-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        max-width: none;
        width: 100%;
        box-sizing: border-box;
      }
      .proof-icon { display: none; }
      .proof-text {
        flex: none;
        width: 100%;
        min-width: 0;
      }
      .proof-text h3 {
        text-align: left;
        white-space: normal;
      }
      .proof-text p,
      .social-proof p,
      .proof-inner p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
        white-space: normal;
      }

      /* ── FOUNDER NOTE ── */
      .founder-note {
        padding: 40px 10px;
      }
      .founder-inner {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
      }
      .founder-label {
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-bottom: 12px;
      }
      .founder-headline {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 20px;
        line-height: 1.2;
      }
      .founder-body {
        gap: 14px;
        margin-bottom: 28px;
      }
      .founder-body p {
        font-size: 14px;
        line-height: 1.75;
      }
      .founder-sig strong {
        font-size: 14px;
      }
      .founder-sig span {
        font-size: 12px;
      }

      /* ── CTA / FORM ── */
      .cta-section { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }
      .field-group input,
      .field-group textarea,
      .field-group select { font-size: 16px; padding: 12px 13px; }
      .form-top-row { grid-template-columns: 1fr; }
      .form-toggles {
        grid-template-columns: 1fr;
        border-radius: 12px;
      }
      .toggle-group { padding: 16px; gap: 12px; }
      .toggle-label { font-size: 13px; }
      .toggle-sub { font-size: 11px; }
      .toggle-divider { width: 100%; height: 1px; }
      .radio-option,
      .checkbox-option { font-size: 13px; gap: 12px; }
      .checkbox-box { width: 18px; height: 18px; border-radius: 4px; }

      /* ── WHATS NEXT ── */
      .whats-next { padding: 36px 20px; }
      .whats-next-inner { gap: 20px; }
      .whats-next h2 {
        font-size: clamp(22px, 6vw, 30px);
      }
      .next-steps { gap: 12px; }

      /* ── FOOTER ── */
      footer { padding: 18px 20px; }

      /* ── STICKY BOTTOM CTA ── */
      .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 90;
        padding: 28px 20px 18px;
        background: linear-gradient(to top, var(--warm-white) 0%, var(--warm-white) 55%, rgba(250,248,244,0.85) 78%, rgba(250,248,244,0) 100%);
        pointer-events: none;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      .sticky-cta.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
      }
      .sticky-cta a {
        flex: 1;
        display: block;
        text-align: center;
        background: var(--green-dark);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding: 15px 24px;
        border-radius: 30px;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 6px 24px rgba(22,35,20,0.28), 0 2px 6px rgba(22,35,20,0.18);
      }
    }

    /* =========================================================
       23. RESPONSIVE — SMALL MOBILE (max-width: 480px)
       Extra tightening for very small phone screens.
       ========================================================= */

    @media (max-width: 480px) {
      .hero-content { padding: 68px 20px 28px; }
      .problems { padding: 28px 16px 20px; }
      .value-props { padding: 32px 16px 36px; }
      .founder-note { padding: 36px 10px; }
      .cta-section { padding: 28px 16px; }
      /* Social proof: stack icon above full-width text — cannot be a narrow column */
      .social-proof { padding: 24px 18px; display: block; }
      .proof-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        max-width: none;
      }
      .proof-text { width: 100%; flex: none; }
      .proof-text h3, .proof-text p { text-align: left; }
    }

    /* =========================================================
       26. DESKTOP UX REFINEMENTS
       Targeted overrides to improve pacing, hierarchy,
       and section transitions on desktop.
       Applied after all base styles so specificity wins cleanly.
       =========================================================
       Desktop-only improvements to flow,
       pacing, hierarchy and transitions.
       No content changed.
    ════════════════════════════════════════ */

    /* ── SECTION TRANSITIONS — reduce stacked-band feeling ── */
    /* Wrapped in min-width: 769px so these don't override mobile rules */
    @media (min-width: 769px) {

    /* Subtle top shadow on sections emerging from below dark sections */
    .problems {
      box-shadow: 0 -1px 0 var(--border);
    }

    /* Problems — tighten vertical, let headline breathe more */
    .problems {
      padding: 56px 80px 52px;
      gap: 40px;
    }

    /* Problem card — first card slightly more prominent */
    .problem-item:first-child h3 {
      font-size: 22px;
    }

    } /* end min-width: 769px */

    /* Value props section — tighter top */
    .value-props {
      padding-top: 60px;
      padding-bottom: 52px;
    }

    /* Social proof — compress, reduce weight */
    .social-proof {
      padding: 24px 80px;
    }
    .proof-icon {
      width: 52px; height: 52px;
    }
    .proof-icon svg { width: 22px; height: 22px; }
    .proof-text h3 { font-size: 16px; }
    .proof-text p { font-size: 14px; }

    /* Founder note — narrower text, less padding */
    .founder-note {
      padding: 44px 80px;
    }
    .founder-inner {
      max-width: 760px;
    }
    .founder-headline {
      font-size: clamp(26px, 2.6vw, 38px);
      margin-bottom: 24px;
    }
    .founder-body {
      gap: 14px;
      margin-bottom: 28px;
    }
    .founder-body p {
      font-size: 14.5px;
      line-height: 1.75;
    }
    .founder-sig {
      padding-top: 16px;
    }

    /* CTA form — improve flow into it */
    .field-group label {
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      letter-spacing: 0.06em;
    }
    .btn-submit {
      margin-top: 8px;
      letter-spacing: 0.1em;
    }

    /* Steps — tighten, emphasise numbers */
    .step {
      padding: 0 80px 52px;
    }
    .step:first-child { padding-top: 52px; }
    .step-num {
      width: 48px; height: 48px;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 2px 12px rgba(22,35,20,0.25);
    }
    .step-num::after {
      top: 48px;
      bottom: calc(-52px);
    }
    .step-left h2 {
      font-size: clamp(24px, 2.4vw, 34px);
    }
    .step-left p {
      font-size: 15.5px;
      max-width: 440px;
    }

    /* Callback line — stronger presence as transition */
    .callback-line {
      padding: 24px 80px;
    }
    .callback-line p {
      font-size: 16px;
      letter-spacing: 0.01em;
    }

    /* Page wrap — slightly tighter max on large screens */
    @media (min-width: 1200px) and (max-width: 1399px) {
      .step { padding: 0 60px 48px; }
      .step:first-child { padding-top: 48px; }
      .problems { padding: 56px 60px 52px; }
      .value-props { padding: 60px 60px 52px; }
      .founder-note { padding: 56px 60px; }
      .cta-section { padding: 52px 60px 56px; }
      .callback-line { padding: 32px 60px; }
    }


/* =========================================================
   FINAL MOBILE OVERRIDE — founder note full-width fix.
   Highest specificity + last in file = wins over any
   stray padding/width rule. Forces symmetric narrow
   padding and full-width inner text column on phones.
   ========================================================= */
@media (max-width: 768px) {
  body .founder-note {
    padding-left: 16px !important;
    padding-right: 16px !important;
    display: block !important;
  }
  body .founder-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

