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

  :root {
    --green-dark: #2a6b1f;
    --green-mid: #3a8a2a;
    --green-light: #4caf35;
    --green-bar: #5cb85c;
    --red: #c0392b;
    --gold: #e8a020;
    --white: #ffffff;
    --off-white: #f8f9f5;
    --gray-light: #f0f0ec;
    --gray-text: #444;
    --dark: #1a1a1a;
  }

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--gray-text);
    line-height: 1.65;
    font-size: 16px;
    background: #fff;
  }

  /* ─── HEADER ─── */
  .site-header {
    background: #fff;
    padding: 0;
    position: relative;
    z-index: 10;
  }
  .site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .logo-area {
    display: flex;
    align-items: center;
    position: relative;
    bottom: -26px;
    z-index: 11;
  }
  .logo-area img {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  }
  @media (max-width: 600px) {
    .site-header-inner {
      flex-direction: column;
      align-items: center;
      padding: 6px 16px 0;
      gap: 4px;
    }
    .header-phone {
      margin-bottom: 2px;
      font-size: 0.95rem;
      padding: 7px 14px;
      order: 1 !important;
    }
    .logo-area {
      width: 100%;
      justify-content: center;
      bottom: -21px;
      order: 2 !important;
    }
    .logo-area img { height: 52px; }
  }
  .header-phone {
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--green-light);
    padding: 8px 18px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
  }
  .header-phone:hover { background: var(--gold); color: #1a1a1a; }
  .green-stripe { height: 5px; background: var(--green-bar); }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, #1b4d13 0%, #2a6b1f 50%, #1e5518 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    min-height: 560px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
  }
  .hero-text {
    padding: 44px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-photo {
    position: relative;
    overflow: hidden;
    height: 600px;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,77,19,0.35) 0%, transparent 40%);
  }
  @media (max-width: 780px) {
    .hero-inner { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 48px 24px 32px; }
    .hero-photo { height: 240px; }
  }
  .hero-eyebrow {
    background: var(--gold);
    color: #1a1a1a;
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
  }
  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #c8e6c9;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.65;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .btn-primary {
    background: var(--gold);
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: #d4931c; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: #fff; }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .stat-bubble { text-align: center; }
  .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 0.8rem; color: #a5d6a7; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

  /* ─── SECTION COMMON ─── */
  .section { padding: 64px 24px; }
  .section-alt { background: var(--off-white); }
  .container { max-width: 1040px; margin: 0 auto; }
  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
  }
  h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  h2 em { font-style: normal; color: var(--green-dark); }
  h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
  .lead {
    font-size: 1.12rem;
    color: #555;
    max-width: 680px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  /* ─── CALLOUT BOX ─── */
  .callout-box {
    background: var(--green-dark);
    color: #fff;
    border-radius: 12px;
    padding: 32px 36px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
  }
  .callout-box h3 { color: var(--gold); font-size: 1.35rem; margin-bottom: 12px; position: relative; z-index: 1; }
  .callout-box p { color: #c8e6c9; line-height: 1.7; position: relative; z-index: 1; }
  #callout-fog-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }

  .problem-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 36px;
    align-items: start;
  }
  .problem-copy .lead {
    max-width: none;
  }
  .problem-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .case-study-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 48px;
    align-items: start;
  }
  .case-study-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mini-player-card {
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4f8f1 0%, #ebf4e7 100%);
    border: 1px solid #d9e7d2;
    box-shadow: 0 14px 34px rgba(22, 45, 18, 0.12);
  }
  .mini-player-frame {
    position: relative;
    width: 100%;
    aspect-ratio: var(--mini-player-ratio, 9 / 16);
    border-radius: 14px;
    overflow: hidden;
    background: #0d120d;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  .mini-player-frame--landscape {
    --mini-player-ratio: 16 / 9;
  }
  .mini-player-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #101510;
  }
  .mini-player-audio-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.42);
    background: rgba(14, 20, 16, 0.34);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.22),
      0 8px 18px rgba(0,0,0,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }
  .mini-player-audio-toggle:hover,
  .mini-player-audio-toggle:focus-visible {
    background: rgba(20, 28, 22, 0.5);
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      0 10px 22px rgba(0,0,0,0.28);
  }
  .mini-player-restart {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 999px;
    background: rgba(14, 20, 16, 0.34);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.24),
      0 14px 32px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  }
  .mini-player-restart::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
      rgba(255,255,255,0.14)
      url("../icons/restart-video.png") center / 18px 18px no-repeat;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    flex-shrink: 0;
  }
  .mini-player-frame.is-ended .mini-player-restart {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .mini-player-restart:hover,
  .mini-player-restart:focus-visible {
    background: rgba(20, 28, 22, 0.5);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      0 18px 36px rgba(0,0,0,0.32);
  }
  .mini-player-captions {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 92%;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(5, 9, 6, 0.72);
    color: #fff;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.45;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
  }
  .mini-player-captions.is-visible {
    opacity: 1;
  }
  .mini-player-caption {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #56714c;
  }

  @media (max-width: 700px) {
    .two-col, .three-col { grid-template-columns: 1fr; }
    .problem-layout { gap: 24px; }
    .problem-sidebar {
      max-width: 420px;
      width: 100%;
      margin: 0 auto;
    }
    .case-study-layout {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .case-study-sidebar {
      position: static;
      width: calc(100% + 48px); /* break out of section's 24px padding each side */
      max-width: none;
      margin-left: -24px;
      margin-right: -24px;
    }
    .case-study-sidebar .sidebar-inset {
      margin-left: 24px;
      margin-right: 24px;
    }
    .mini-player-card {
      padding: 12px;
      border-radius: 16px;
    }
    .mini-player-frame {
      border-radius: 12px;
    }
    .mini-player-audio-toggle {
      top: 10px;
      right: 10px;
      font-size: 0.68rem;
      padding: 7px 10px;
    }
    .mini-player-restart {
      min-width: 124px;
      padding: 12px 16px;
      font-size: 0.72rem;
    }
    .mini-player-restart::before {
      width: 30px;
      height: 30px;
      background-size: 16px 16px;
    }
    .mini-player-captions {
      width: calc(100% - 20px);
      bottom: 10px;
      font-size: 0.78rem;
      padding: 6px 9px;
    }
    .hero-stats {
      gap: 24px 20px;
      justify-content: center;
    }
    .stat-bubble {
      flex: 0 1 calc(50% - 10px);
      min-width: 130px;
    }
    .stat-bubble.primary-stat { order: 1; }
    .stat-bubble.secondary-stat { order: 2; }
  }

  /* ─── PROBLEM CARDS ─── */
  .problem-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--red);
    border-radius: 8px;
    padding: 22px;
  }
  .problem-card .icon { font-size: 2rem; margin-bottom: 10px; }
  .problem-card h3 { color: var(--red); font-size: 1rem; }
  .problem-card p { font-size: 0.92rem; color: #666; margin-top: 6px; }

  /* ─── COMPARISON ─── */
  .comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; border: 1px solid #e0e0e0; }
  .comp-side { padding: 28px 28px; }
  .comp-side.bad { background: #fdf3f3; border-right: 1px solid #e0e0e0; }
  .comp-side.good { background: #f2fdf0; }
  .comp-header {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid;
  }
  .comp-side.bad .comp-header { color: var(--red); border-color: #f1a0a0; }
  .comp-side.good .comp-header { color: var(--green-dark); border-color: #90c97e; }
  .comp-item {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 12px; font-size: 0.93rem;
  }
  .comp-item .dot { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

  @media (max-width: 640px) { .comparison-grid { grid-template-columns: 1fr; } }

  /* ─── SCIENCE BOX ─── */
  .science-box {
    background: linear-gradient(135deg, #1b4d13, #2a6b1f);
    color: #fff;
    border-radius: 12px;
    padding: 36px;
    margin: 36px 0;
  }
  @media (max-width: 600px) {
    .science-box { padding: 20px 16px; }
  }
  .science-box h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 16px; }
  .science-steps { display: flex; flex-direction: column; gap: 12px; }
  .science-step { display: flex; gap: 14px; align-items: flex-start; }
  .step-num {
    background: var(--gold);
    color: #1a1a1a;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    flex-shrink: 0;
  }
  .science-step p { color: #c8e6c9; font-size: 0.95rem; line-height: 1.6; }
  .science-step p strong { color: #fff; }

  /* ─── RESULTS ─── */
  .results-big {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 36px 0;
  }
  .result-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .result-card .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 6px;
  }
  .result-card .arrow {
    font-size: 1.1rem;
    color: var(--green-light);
    font-weight: 700;
  }
  .result-card .label { font-size: 0.85rem; color: #777; font-weight: 500; margin-top: 6px; }
  .result-card .source { font-size: 0.75rem; color: #aaa; margin-top: 4px; font-style: italic; }

  /* ─── TESTIMONIAL ─── */
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--green-mid);
    position: relative;
  }
  .testimonial-card .quote-mark {
    font-size: 4rem;
    color: #d4e8cf;
    line-height: 0.6;
    font-family: Georgia, serif;
    position: absolute;
    top: 20px; left: 20px;
    pointer-events: none;
  }
  .testimonial-card blockquote {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    padding-left: 24px;
    margin-bottom: 16px;
  }
  .testimonial-card blockquote strong { font-style: normal; color: var(--dark); }
  .testimonial-source {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.9rem;
    padding-left: 24px;
  }
  .testimonial-source span { display: block; color: #888; font-weight: 400; font-size: 0.82rem; }

  /* ─── VIDEO SECTION ─── */
  .video-section { background: #1a2e1a; color: #fff; }
  .video-section .section-label { color: #81c784; }
  .video-section h2 { color: #fff; }
  .video-section h2 em { color: var(--gold); }
  .video-section .lead { color: #a5c8a0; }
  .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
  .video-placeholder {
    background: #243824;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3a5a3a;
  }
  .video-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    border-radius: 10px;
  }
  .video-embed-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  .video-label {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: #a5d6a7;
    font-weight: 600;
  }
  .video-label span { display: block; color: #6a9f6a; font-size: 0.78rem; font-weight: 400; }
  .video-placeholder-wide { max-width: 720px; }

  /* ─── GALLERY ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 28px;
  }
  .gallery-item {
    position: relative;
    background: #243824;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a5a3a;
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
  }
  .gallery-item .gi-icon { font-size: 2rem; color: #4a7a4a; }
  .gallery-item .gi-label { font-size: 0.75rem; color: #5a8a5a; text-align: center; padding: 0 12px; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  @media (min-width: 781px) {
    .gallery-item {
      cursor: zoom-in;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }
    .gallery-grid .gallery-item::after {
      content: attr(data-hover-caption);
      position: absolute;
      inset: auto 0 0 0;
      padding: 44px 14px 14px;
      background: linear-gradient(to top, rgba(6,10,6,0.9) 0%, rgba(6,10,6,0.62) 45%, rgba(6,10,6,0) 100%);
      color: #f5fbf5;
      font-size: 0.88rem;
      line-height: 1.4;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.18s ease, transform 0.18s ease;
      pointer-events: none;
    }
    .gallery-item:hover {
      transform: translateY(-2px);
      border-color: #7daf7d;
      box-shadow: 0 10px 28px rgba(0,0,0,0.24);
    }
    .gallery-grid .gallery-item:hover::after {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    background: rgba(8,13,8,0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2000;
  }
  .gallery-lightbox.is-open { opacity: 1; pointer-events: auto; }
  .gallery-lightbox-dialog {
    position: relative;
    width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 14px;
    overflow: hidden;
    background: #182618;
    box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  }
  .gallery-lightbox img {
    display: block;
    width: 100%;
    max-height: calc(88vh - 58px);
    object-fit: contain;
    background: #0d150d;
  }
  .gallery-lightbox-caption {
    padding: 14px 18px;
    font-size: 0.92rem;
    color: #d4e7d4;
    background: rgba(16,28,16,0.96);
  }
  .gallery-lightbox-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }
  .gallery-lightbox-close:hover { background: rgba(255,255,255,0.24); }
  @media (max-width: 780px) { .gallery-lightbox { display: none; } }

  /* ─── SET & FORGET ─── */
  .set-forget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; }
  .sf-card {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
  }
  .sf-card .sf-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .sf-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
  .sf-card p { font-size: 0.9rem; color: #666; line-height: 1.65; }
  @media (max-width: 640px) { .set-forget-grid { grid-template-columns: 1fr; } }
  @media (max-width: 860px) {
    .set-forget-outer { grid-template-columns: 1fr !important; }
    .how-sun-grid { grid-template-columns: 1fr !important; }
  }

  /* ─── BARN PROTECTION ─── */
  .protect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  @media (max-width: 700px) { .protect-grid { grid-template-columns: 1fr; } }
  .protect-list { list-style: none; margin-top: 20px; }
  .protect-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.97rem;
  }
  .protect-list li:last-child { border-bottom: none; }
  .protect-list .li-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
  .protect-list .li-text strong { display: block; color: var(--dark); margin-bottom: 2px; }
  .protect-list .li-text { color: #666; font-size: 0.9rem; }

  .highlight-panel {
    background: var(--green-dark);
    border-radius: 12px;
    padding: 32px;
    color: #fff;
    text-align: center;
  }
  .highlight-panel .big-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
  }
  .highlight-panel p { color: #a5d6a7; margin-top: 10px; font-size: 0.95rem; }

  /* ─── WORKER HEALTH ─── */
  .worker-callout {
    background: linear-gradient(to right, #f9f4e8, #fff8ea);
    border-left: 5px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 28px 32px;
    margin: 28px 0;
  }
  .worker-callout h3 { color: #7a5a10; font-size: 1.15rem; margin-bottom: 10px; }
  .worker-callout p { color: #5a4a20; line-height: 1.7; }

  /* ─── HOW IT WORKS ─── */
  .how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
  .how-step {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }
  .how-step .step-icon { font-size: 2.5rem; margin-bottom: 12px; }
  .how-step h3 { font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
  .how-step p { font-size: 0.85rem; color: #777; }

  /* ─── COLONIES ─── */
  .colony-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 28px; }
  .colony-badge {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
  }
  .colony-badge .c-name { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
  .colony-badge .c-detail { font-size: 0.8rem; color: #888; margin-top: 4px; }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: linear-gradient(135deg, #1b4d13, #2a6b1f);
    color: #fff;
    padding: 70px 24px;
    text-align: center;
  }
  .final-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
  .final-cta h2 em { color: var(--gold); font-style: normal; }
  .final-cta .sub { color: #a5d6a7; font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-lg {
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.1s;
  }
  .btn-cta-lg:hover { transform: translateY(-2px); }
  .btn-gold { background: var(--gold); color: #1a1a1a; }
  .btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
  .btn-outline-white:hover { border-color: #fff; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .contact-item { text-align: center; }
  .contact-item .ci-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #6fa66f; margin-bottom: 6px; }
  .contact-item a { color: #fff; font-weight: 700; font-size: 1rem; text-decoration: none; }
  .contact-item a:hover { color: var(--gold); }
  @media (max-width: 500px) { .contact-grid { grid-template-columns: 1fr; } }

  /* ─── FOOTER ─── */
  footer {
    background: #111;
    color: #888;
    padding: 24px;
    text-align: center;
    font-size: 0.82rem;
  }
  footer a { color: #aaa; text-decoration: none; }
  footer a:hover { color: #fff; }

  /* ─── STICKY MOBILE CTA ─── */
  .mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--gold);
    color: #1a1a1a;
    text-align: center;
    padding: 14px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    font-weight: 700;
    font-size: 1rem;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  }
  @media (max-width: 700px) { .mobile-sticky-cta { display: block; } }

  /* ─── DIVIDER ─── */
  .divider { height: 4px; background: linear-gradient(to right, var(--green-dark), var(--green-light), var(--green-dark)); }

  /* ─── FAQ ─── */
  .faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
  .faq-q { font-weight: 700; color: var(--dark); font-size: 1.02rem; margin-bottom: 10px; }
  .faq-a { color: #666; line-height: 1.7; font-size: 0.95rem; }
  .faq-a strong { color: var(--dark); }

  /* ─── BADGE ROW ─── */
  .badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
  @media (max-width: 600px) { .badge-row { justify-content: center; } }
  .badge {
    background: var(--off-white);
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 0.96rem;
    color: var(--green-dark);
    font-weight: 600;
  }

  /* ─── ENVIRONMENT BAND ─── */
  .env-band {
    background: var(--green-dark);
    color: #fff;
    padding: 20px 24px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .env-band em { color: var(--gold); font-style: normal; font-weight: 700; }

  /* ─── CALLOUT BOX — moisture wisp fog ─── */
  .callout-box {
    position: relative;
    overflow: hidden;
  }
  #callout-fog-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .callout-box h3,
  .callout-box p {
    position: relative;
    z-index: 1;
  }


  /* ─── COUNT-UP ANIMATION ─── */
  .count-up { display: inline; }

  /* ─── PROOF STRIP ANIMATION ─── */
  .proof-num {
    transition: opacity 0.3s;
  }
  .proof-num.counting { opacity: 0.85; }

  /* ─── COMPARISON GRID ANIMATION ─── */
  .comp-item {
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .comp-side.good .comp-item {
    transform: translateX(12px);
  }
  .comp-item.visible {
    opacity: 1;
    transform: translateX(0);
  }
  @media (max-width: 900px) {
    .comp-item {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* ─── PULL QUOTE ─── */
  .pull-quote {
    margin: 40px 0 32px;
    padding: 0 0 0 28px;
    border-left: 5px solid var(--gold);
  }
  .pull-quote-text {
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    font-style: italic;
  }
  .pull-quote-text em {
    font-style: normal;
    color: var(--green-dark);
  }
  .pull-quote-source {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted, #888);
  }

  /* ─── SCROLL FADE-IN ─── */
  .fade-in-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── HERO PHOTO ZOOM ─── */
  .hero-photo img {
    transition: transform 8s ease-out;
    transform: scale(1.04);
  }
  .hero-photo img.loaded {
    transform: scale(1.0);
  }

  /* ─── COLONY BADGE HOVER ─── */
  .colony-badge {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: default;
  }
  .colony-badge:hover {
    border-color: var(--green-mid);
    box-shadow: 0 4px 16px rgba(42,107,31,0.12);
    transform: translateY(-2px);
  }

  .turnaround-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  @media (max-width: 700px) {
    .turnaround-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* ─── RESULT CARD ANIMATION ─── */
  .result-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .result-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
