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

  :root {
    --green: #1C3A1E;
    --lime: #7CB518;
    --tan: #C9A96E;
    --offwhite: #F5F2EC;
    --dark: #111810;
    --mid: #3a5a3c;
    --text: #2a2a2a;
    --muted: #6b7280;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--offwhite);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; }

  /* ── LAUNCH BANNER ── */
  .launch-banner {
    background: var(--lime);
    color: var(--dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .launch-banner span { opacity: 0.75; font-weight: 400; margin-left: 8px; }

  /* ── NAV ── */
  nav {
    background: var(--green);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--offwhite);
    letter-spacing: 0.05em;
  }
  .nav-logo span { color: var(--lime); }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(245,242,236,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--lime); }

  .nav-phone { font-weight: 600; white-space: nowrap; }

  .nav-cta {
    background: var(--lime);
    color: var(--dark) !important;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
  }
  .nav-cta:hover { background: #8fd11e; color: var(--dark) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--offwhite);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    background: var(--green);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 5%;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 70% 50%, rgba(124,181,24,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 50%);
  }

  /* Grass texture lines */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      180deg,
      transparent,
      transparent 3px,
      rgba(124,181,24,0.03) 3px,
      rgba(124,181,24,0.03) 4px
    );
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-image-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--offwhite);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  }

  .hero-logo-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(124,181,24,0.15);
    border: 1px solid rgba(124,181,24,0.3);
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
  }

  .hero-slogan {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--lime);
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--offwhite);
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .hero h1 .accent { color: var(--lime); }
  .hero h1 .accent-tan { color: var(--tan); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245,242,236,0.7);
    margin-bottom: 16px;
    max-width: 520px;
    font-weight: 300;
  }

  .hero-turf-note {
    font-size: 0.9rem;
    color: var(--tan);
    margin-bottom: 36px;
    font-style: italic;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--lime);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: #8fd11e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,181,24,0.3); }

  .btn-secondary {
    background: transparent;
    color: var(--offwhite);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(245,242,236,0.3);
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--offwhite); background: rgba(245,242,236,0.05); }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--dark);
    padding: 28px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-bottom: 2px solid var(--lime);
  }

  .stat {
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--lime);
    line-height: 1;
  }
  .stat-num.stat-text {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .stat-label {
    font-size: 0.75rem;
    color: rgba(245,242,236,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* ── TURF INTERCEPT ── */
  .turf-intercept {
    background: var(--tan);
    padding: 22px 5%;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .turf-intercept-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  .turf-intercept p {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    flex: 1;
  }
  .turf-intercept strong { font-weight: 700; }
  .turf-intercept a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    white-space: nowrap;
  }

  /* ── SECTIONS ── */
  section { padding: 80px 5%; }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green);
    margin-bottom: 16px;
    line-height: 1.05;
  }

  .section-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 48px;
  }

  /* ── HOW IT WORKS ── */
  .how-it-works { background: var(--offwhite); }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: steps;
  }

  .step {
    background: white;
    border-radius: 8px;
    padding: 32px 28px;
    border-top: 3px solid var(--lime);
    position: relative;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(28,58,30,0.08);
    line-height: 1;
    margin-bottom: 12px;
  }

  .step h3 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
  }

  .step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── COMPARISON TABLE ── */
  .comparison { background: var(--green); }
  .comparison .section-title { color: var(--offwhite); }
  .comparison .section-lead { color: rgba(245,242,236,0.6); }
  .comparison .section-eyebrow { color: var(--lime); }

  .comp-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
  }

  .comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    background: rgba(255,255,255,0.04);
  }

  .comp-table th {
    padding: 18px 20px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(255,255,255,0.1);
  }

  .comp-table th:first-child { text-align: left; color: rgba(245,242,236,0.5); font-size: 0.8rem; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }
  .comp-table th.col-hydro { color: var(--lime); }
  .comp-table th.col-turf { color: rgba(245,242,236,0.7); }
  .comp-table th.col-seed { color: rgba(245,242,236,0.7); }

  .comp-table td {
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(245,242,236,0.8);
  }

  .comp-table td:first-child {
    text-align: left;
    color: rgba(245,242,236,0.55);
    font-size: 0.85rem;
  }

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

  .tick { color: var(--lime); font-size: 1.1rem; font-weight: 700; }
  .cross { color: #e57373; font-size: 1rem; }
  .mid-mark { color: var(--tan); }

  .comp-table .hydro-col {
    background: rgba(124,181,24,0.08);
  }

  /* ── COVERAGE ── */
  .coverage { background: white; }

  .towns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
  }

  .town-card {
    background: var(--offwhite);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    border-left: 3px solid var(--lime);
    display: block;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }

  .town-card:hover {
    background: #ece7dc;
    transform: translateY(-2px);
  }

  .town-card .town-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green);
  }

  .town-card .town-region {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 3px;
  }

  .coverage-note {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
  }

  /* ── BEFORE & AFTER ── */
  .before-after { background: var(--offwhite); }

  .ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 20px;
  }

  .ba-item { text-align: center; }

  .ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    cursor: ew-resize;
  }

  .ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
  }

  .ba-img-before {
    clip-path: inset(0 50% 0 0);
  }

  .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 3;
    pointer-events: none;
  }

  .ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5px;
    width: 3px;
    background: var(--offwhite);
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
  }

  .ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--offwhite);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  }

  .ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
  }

  .ba-label {
    position: absolute;
    top: 14px;
    background: rgba(17,24,16,0.55);
    color: var(--offwhite);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
  }
  .ba-label-before { left: 14px; }
  .ba-label-after { right: 14px; }

  .ba-caption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--muted);
  }

  .ba-disclaimer {
    text-align: center;
    max-width: 640px;
    margin: 28px auto 0;
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
  }

  /* ── PRICING ── */
  .pricing { background: var(--offwhite); }

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

  .pricing-note {
    text-align: center;
    max-width: 640px;
    margin: 32px auto 0;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.5;
  }

  .price-card {
    background: white;
    border-radius: 10px;
    padding: 36px 28px;
    border: 1.5px solid rgba(28,58,30,0.08);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

  .price-card.featured {
    border-color: var(--lime);
    border-width: 2px;
  }

  .price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .price-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
  }

  .price-unit {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .price-features {
    list-style: none;
    margin-bottom: 28px;
  }

  .price-features li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 7px 0;
    border-bottom: 1px solid var(--offwhite);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .price-features li::before {
    content: '✓';
    color: var(--lime);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ── WHY HYDROSEED (vs turf) ── */
  .why-hydro { background: var(--green); }
  .why-hydro .section-title { color: var(--offwhite); }
  .why-hydro .section-lead { color: rgba(245,242,236,0.6); }

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

  .reason-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 28px 24px;
    border: 1px solid rgba(124,181,24,0.2);
  }

  .reason-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .reason-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 8px;
  }

  .reason-card p {
    font-size: 0.88rem;
    color: rgba(245,242,236,0.65);
    line-height: 1.6;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: white; }

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

  .testimonial {
    background: var(--offwhite);
    border-radius: 8px;
    padding: 28px;
    border-left: 4px solid var(--lime);
  }

  .testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
  }

  .testimonial-location {
    font-size: 0.8rem;
    color: var(--muted);
  }

  .stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  /* ── INTEREST FORM ── */
  .interest-form-section {
    background: var(--offwhite);
  }

  .form-wrapper {
    max-width: 640px;
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    border: 2px solid rgba(28,58,30,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  }

  .form-launch-note {
    background: rgba(124,181,24,0.1);
    border: 1px solid rgba(124,181,24,0.25);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--green);
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(28,58,30,0.15);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--offwhite);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--lime);
    background: white;
  }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--lime);
    color: var(--dark);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: #8fd11e; transform: translateY(-1px); }

  .form-disclaimer {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--lime);
    padding: 60px 5%;
    text-align: center;
  }

  .cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 12px;
  }

  .cta-band p {
    font-size: 1.05rem;
    color: rgba(17,24,16,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-dark {
    background: var(--dark);
    color: var(--offwhite);
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }
  .btn-dark:hover { background: var(--green); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 48px 5% 32px;
    color: rgba(245,242,236,0.5);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--offwhite);
    margin-bottom: 12px;
  }

  .footer-brand .footer-logo span { color: var(--lime); }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--offwhite);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; font-size: 0.85rem; }
  .footer-col ul li a { color: rgba(245,242,236,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--lime); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
  }

  .footer-seo-towns {
    font-size: 0.78rem;
    color: rgba(245,242,236,0.25);
    line-height: 1.8;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 0 4%; }
    .nav-logo-img { height: 36px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: var(--green);
      padding: 20px 4%;
      gap: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .hamburger { display: flex; }

    .hero { min-height: auto; padding: 48px 4% 60px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-panel { order: -1; padding: 16px; }

    .stats-strip {
      grid-template-columns: repeat(2, 1fr);
      padding: 24px 4%;
    }

    section { padding: 60px 4%; }

    .form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .towns-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-handle-circle { width: 32px; height: 32px; font-size: 0.9rem; }

    .comp-table th, .comp-table td { padding: 12px 14px; font-size: 0.85rem; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { text-align: center; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-num { font-size: 2rem; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
