
  @font-face {
    font-family: 'Sora';
    src: url(../fonts/sora.woff2) format('woff2');
    font-weight: 500 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Plex Sans';
    src: url(../fonts/plex-sans.woff2) format('woff2');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Plex Mono';
    src: url(../fonts/plex-mono-400.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Plex Mono';
    src: url(../fonts/plex-mono-500.woff2) format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --ink: #0a0c0a;
    --charcoal: #12150f;
    --charcoal-soft: #1c2117;
    --green-500: #43d65c;
    --green-600: #2fbe49;
    --green-700: #1c8f38;
    --green-tint: #bdf5c9;
    --paper: #f5f6ef;
    --paper-raised: #ffffff;
    --ink-900: #14160f;
    --ink-600: #4c5245;
    --line-light: rgba(20, 22, 15, 0.12);
    --line-dark: rgba(245, 246, 240, 0.14);
    --shadow: 0 1px 2px rgba(10, 12, 10, 0.06), 0 20px 44px -22px rgba(10, 12, 10, 0.35);
  }

  * { box-sizing: border-box; }
  html { color-scheme: dark; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink-900);
    font-family: 'Plex Sans', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; text-wrap: balance; margin: 0; }
  .mono { font-family: 'Plex Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 640px) { .wrap { padding: 0 20px; } }

  .on-dark { background: var(--ink); color: var(--paper); }
  .on-charcoal { background: var(--charcoal); color: var(--paper); }
  .on-light { background: var(--paper); color: var(--ink-900); }

  .eyebrow {
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--green-600);
  }
  .on-dark .eyebrow, .on-charcoal .eyebrow { color: var(--green-500); }

  /* ---------- TOP STRIP ---------- */
  .strip {
    background: var(--ink);
    color: rgba(245, 246, 240, 0.6);
    font-size: 0.82rem;
  }
  .strip .wrap { display: flex; justify-content: space-between; align-items: center; height: 40px; }
  .strip .contacts { display: flex; gap: 22px; }
  .strip .contacts a { text-decoration: none; display: flex; align-items: center; gap: 7px; color: inherit; transition: color .15s ease; }
  .strip .contacts a:hover { color: var(--green-500); }
  .strip svg { width: 13px; height: 13px; flex-shrink: 0; }
  .strip .hours { display: flex; align-items: center; gap: 7px; }
  @media (max-width: 640px) {
    .strip .hours { display: none; }
    .strip .contacts a:nth-child(2) { display: none; }
  }

  /* ---------- NAV ---------- */
  nav.top {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--ink) 96%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
  }
  nav.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
  .brand { display: flex; align-items: center; gap: 11px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--paper); }
  .brand-logo-nav { height: 92px; width: auto; display: block; flex-shrink: 0; }
  @media (max-width: 640px) {
    nav.top .wrap { height: 68px; gap: 8px; }
    .brand-logo-nav { height: 60px; width: auto; flex-shrink: 0; }
    nav.top .btn-primary { padding: 8px 12px; font-size: 0.76rem; white-space: nowrap; }
  }
  nav.top .navlinks { display: flex; gap: 30px; font-size: 0.92rem; color: rgba(245, 246, 240, 0.65); }
  nav.top .navlinks a { text-decoration: none; transition: color .15s ease; }
  nav.top .navlinks a:hover, nav.top .navlinks a:focus-visible { color: var(--paper); }
  @media (max-width: 820px) { nav.top .navlinks { display: none; } }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    font-family: 'Plex Sans', sans-serif; font-weight: 600; font-size: 0.92rem;
    text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  }
  .btn:focus-visible { outline: 2px solid var(--green-500); outline-offset: 2px; }
  .btn-primary { background: var(--green-500); color: var(--ink-900); box-shadow: var(--shadow); }
  .btn-primary:hover { transform: translateY(-1px); background: var(--green-600); }
  .btn-ghost-dark { border-color: rgba(245,246,240,0.3); color: var(--paper); }
  .btn-ghost-dark:hover { border-color: var(--green-500); color: var(--green-500); }
  .btn-ghost-light { border-color: var(--line-light); color: var(--ink-900); }
  .btn-ghost-light:hover { border-color: var(--ink-900); }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-image: url(../images/hero-bg.webp);
    background-size: cover;
    background-position: 78% 28%;
  }
  .hero .wrap { display: grid; grid-template-columns: 1.05fr 0.85fr; gap: 8px; align-items: center; }
  .hero-mobile-photo { display: none; }

  .hero-copy { padding: 64px 0; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 8px; border-radius: 999px;
    background: rgba(245, 246, 240, 0.06); border: 1px solid var(--line-dark);
    font-size: 0.82rem; color: rgba(245, 246, 240, 0.75); margin-bottom: 26px;
  }
  .hero-badge .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--green-500); display: grid; place-items: center; flex-shrink: 0; }
  .hero-badge .dot svg { width: 12px; height: 12px; color: var(--ink-900); }

  .hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 3.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.04;
    color: var(--paper);
    margin-bottom: 22px;
  }
  .hero h1 em { font-style: normal; color: var(--green-500); }
  .hero p.lede { font-size: 1.14rem; color: rgba(245, 246, 240, 0.68); max-width: 46ch; margin: 0 0 32px; }
  .hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
  .trust-row { display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(245, 246, 240, 0.6); }
  .trust-row span { display: flex; align-items: center; gap: 7px; }
  .trust-row svg { width: 15px; height: 15px; color: var(--green-500); flex-shrink: 0; }

  @media (max-width: 980px) {
    .hero {
      min-height: 0;
      background-image: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas:
        "photo"
        "badge"
        "lede"
        "ctas"
        "trust";
      row-gap: 18px;
    }
    .hero .wrap { display: contents; }
    .hero-copy { display: contents; }

    .hero-mobile-photo {
      grid-area: photo;
      display: block;
      width: 100%;
      aspect-ratio: 900 / 1273;
      background-image: url(../images/hero-bg-mobile.webp);
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero h1 {
      grid-area: photo;
      align-self: end;
      z-index: 1;
      margin: 0 20px 22px;
      text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
    }
    .hero-badge { grid-area: badge; margin: 26px 20px 0; }
    .hero p.lede {
      grid-area: lede;
      margin: 0 20px;
      font-size: 1.02rem;
      line-height: 1.6;
      color: rgba(245, 246, 240, 0.8);
    }
    .hero .ctas { grid-area: ctas; margin: 0 20px; }
    .hero .trust-row { grid-area: trust; margin: 0 20px 32px; }
  }


  /* ---------- VALUE BAR ---------- */
  /* ---------- CHI SONO ---------- */
  .about-rows { display: flex; flex-direction: column; gap: 68px; }
  .feature-photo {
    width: 100%; aspect-ratio: 900 / 506; object-fit: cover;
    border-radius: 20px; box-shadow: var(--shadow); display: block;
  }

  .value-bar { border-bottom: 1px solid var(--line-light); }
  .value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 860px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
  .value-item {
    display: flex; align-items: center; gap: 14px; justify-content: center;
    padding: 28px 18px; border-left: 1px solid var(--line-light);
  }
  .value-item:first-child { border-left: none; }
  @media (max-width: 860px) {
    .value-item { border-left: none; border-top: 1px solid var(--line-light); }
    .value-item:nth-child(2n+1) { border-left: none; }
    .value-item:nth-child(-n+2) { border-top: none; }
    .value-item:nth-child(2n) { border-left: 1px solid var(--line-light); }
  }
  .value-item svg { width: 24px; height: 24px; color: var(--green-700); flex-shrink: 0; }
  .value-item span { font-size: 0.9rem; font-weight: 600; color: var(--ink-900); line-height: 1.3; }

  /* ---------- SETTORI STRIP ---------- */
  .settori { padding: 30px 0; border-bottom: 1px solid var(--line-light); }
  .settori .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
  .settori .label { font-size: 0.78rem; color: var(--ink-600); flex-shrink: 0; }
  .settori-chips { display: flex; gap: 10px; flex-wrap: wrap; }
  .chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-light);
    font-size: 0.82rem; color: var(--ink-600);
  }
  .chip svg { width: 13px; height: 13px; color: var(--green-700); }

  /* ---------- SECTION SCAFFOLDING ---------- */
  section { padding: 92px 0; }
  @media (max-width: 640px) { section { padding: 60px 0; } }
  .section-head { max-width: 62ch; margin-bottom: 50px; }
  .section-head h2 { font-size: clamp(1.75rem, 2.7vw, 2.35rem); font-weight: 700; letter-spacing: -0.015em; margin: 12px 0 14px; }
  .section-head p { color: var(--ink-600); font-size: 1.04rem; margin: 0; }
  .on-dark .section-head h2, .on-charcoal .section-head h2 { color: var(--paper); }
  .on-dark .section-head p, .on-charcoal .section-head p { color: rgba(245, 246, 240, 0.65); }

  /* ---------- SERVICES ---------- */
  .panel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 18px; overflow: hidden; }
  @media (max-width: 900px) { .panel-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .panel-grid { grid-template-columns: 1fr; } }
  .switch-card {
    background: var(--charcoal);
    padding: 28px 24px 26px;
    display: flex; flex-direction: column; gap: 15px;
    transition: background .15s ease;
  }
  .switch-card:hover { background: var(--charcoal-soft); }
  .switch-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--green-500); color: var(--ink-900);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .switch-icon svg { width: 21px; height: 21px; }
  .switch-card h3 { font-size: 1.02rem; font-weight: 600; font-family: 'Plex Sans'; color: var(--paper); }
  .switch-card p { margin: 0; font-size: 0.9rem; color: rgba(245, 246, 240, 0.6); }
  .switch-toggle {
    margin-top: auto; display: flex; align-items: center; gap: 8px;
    font-family: 'Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.04em;
    color: var(--green-500); text-transform: uppercase; padding-top: 10px; border-top: 1px dashed var(--line-dark);
  }
  .switch-toggle .led { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(67, 214, 92, 0.22); }

  /* ---------- RISULTATI ---------- */
  .compare { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  @media (max-width: 900px) { .compare { grid-template-columns: 1fr; gap: 40px; } }
  .compare-list { display: flex; flex-direction: column; gap: 24px; }
  .compare-item { display: flex; gap: 18px; }
  .compare-item .num { font-family: 'Plex Mono', monospace; font-size: 0.82rem; color: var(--green-700); padding-top: 3px; flex-shrink: 0; width: 22px; }
  .compare-item h3 { font-size: 1.04rem; font-weight: 600; margin-bottom: 5px; font-family: 'Plex Sans'; }
  .compare-item p { margin: 0; color: var(--ink-600); font-size: 0.95rem; }

  .bill {
    background: var(--ink); color: var(--paper);
    border-radius: 18px; padding: 30px 30px 26px;
    box-shadow: var(--shadow); position: relative; overflow: hidden;
  }
  .bill::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(67, 214, 92, 0.14), transparent 60%);
    pointer-events: none;
  }
  .bill-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; position: relative; }
  .bill-head .date { font-family: 'Plex Mono', monospace; font-size: 0.78rem; color: rgba(245,246,240,0.45); }
  .bill-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; margin: 4px 0 18px; position: relative; }
  .bill-rows { display: flex; flex-direction: column; position: relative; }
  .bill-row {
    display: grid; grid-template-columns: 20px 1fr auto auto; align-items: center;
    gap: 12px; padding: 12px 0; border-top: 1px solid rgba(245,246,240,0.09);
    font-size: 0.93rem;
  }
  .bill-row:first-child { border-top: none; }
  .bill-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
  .bill-row .was { font-family: 'Plex Mono', monospace; text-decoration: line-through; color: rgba(245,246,240,0.35); font-size: 0.86rem; }
  .bill-row .now { font-family: 'Plex Mono', monospace; font-weight: 500; color: var(--green-500); min-width: 66px; text-align: right; }
  .bill-total {
    display: flex; justify-content: space-between; align-items: center; position: relative;
    margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(245,246,240,0.18);
  }
  .bill-total .label { font-size: 0.85rem; color: rgba(245,246,240,0.55); }
  .bill-total .value { font-family: 'Plex Mono', monospace; font-size: 1.8rem; font-weight: 500; color: var(--green-500); }
  .bill-total .value small { font-size: 0.95rem; font-weight: 400; opacity: 0.7; }

  /* ---------- PERCHE NOI ---------- */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 18px; overflow: hidden; }
  @media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card { background: var(--ink); padding: 30px 26px; }
  .why-card h3 { font-family: 'Sora'; font-weight: 700; font-size: 1.08rem; color: var(--paper); margin-bottom: 10px; }
  .why-card p { margin: 0; color: rgba(245,246,240,0.62); font-size: 0.94rem; }

  /* ---------- TESTIMONIALS ---------- */
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
  .testi-card { background: var(--paper-raised); border: 1px solid var(--line-light); border-radius: 14px; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
  .testi-quote { font-size: 0.98rem; line-height: 1.6; margin: 0; }
  .testi-quote::before { content: "\201C"; color: var(--green-700); font-family: 'Sora'; }
  .testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
  .testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--green-500); display: grid; place-items: center; font-family: 'Sora'; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
  .testi-name { font-weight: 600; font-size: 0.9rem; }
  .testi-role { font-size: 0.8rem; color: var(--ink-600); }

  /* ---------- CONTACT ---------- */
  .contact-card {
    background: var(--ink); color: var(--paper);
    border-radius: 22px; padding: 54px; position: relative; overflow: hidden;
    box-shadow: var(--shadow);
  }
  @media (max-width: 640px) { .contact-card { padding: 30px 24px; } }
  .contact-card::after {
    content: ""; position: absolute; right: -70px; top: -70px; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(67, 214, 92, 0.18), transparent 70%);
  }
  .contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; position: relative; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-card h2 { font-size: clamp(1.65rem, 2.7vw, 2.15rem); margin-bottom: 15px; color: var(--paper); }
  .contact-card p.lede { color: rgba(245,246,240,0.68); max-width: 42ch; margin: 0 0 30px; }
  .contact-methods { display: flex; flex-direction: column; gap: 4px; }
  .contact-method {
    display: flex; align-items: center; gap: 14px; padding: 17px 0;
    border-top: 1px solid rgba(245,246,240,0.14); text-decoration: none; color: inherit;
    transition: gap .15s ease;
  }
  .contact-method:first-child { border-top: none; }
  .contact-method:hover { gap: 18px; }
  .contact-method:hover .cm-value { color: var(--green-500); }
  .cm-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(67, 214, 92, 0.12); display: grid; place-items: center; flex-shrink: 0; }
  .cm-icon svg { width: 18px; height: 18px; color: var(--green-500); }
  .cm-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(245,246,240,0.5); }
  .cm-value { font-family: 'Plex Mono', monospace; font-size: 1.04rem; transition: color .15s ease; }
  .contact-side {
    background: rgba(245,246,240,0.05); border: 1px solid rgba(245,246,240,0.12);
    border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 16px; justify-content: center;
  }
  .contact-side .zone-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(245,246,240,0.5); }
  .contact-side .zone-value { font-family: 'Sora'; font-weight: 700; font-size: 1.15rem; }
  .contact-side hr { border: none; border-top: 1px solid rgba(245,246,240,0.14); margin: 2px 0; }
  .contact-side .hours-note { font-size: 0.88rem; color: rgba(245,246,240,0.6); }

  /* ---------- FEATURE ROWS (fotovoltaico / pos) ---------- */
  .features { display: flex; flex-direction: column; gap: 68px; }
  .feature-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .feature-row.reverse { grid-template-columns: 0.95fr 1.05fr; }
  .feature-row.reverse .feature-visual { order: -1; }
  @media (max-width: 900px) {
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse .feature-visual { order: 0; }
  }
  .feature-text .eyebrow { display: block; margin-bottom: 14px; }
  .feature-text h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px; }
  .feature-text p { color: var(--ink-600); font-size: 1.02rem; margin: 0 0 26px; max-width: 46ch; }
  .feature-list { display: flex; flex-direction: column; gap: 11px; margin: -8px 0 26px; padding: 0; list-style: none; }
  .feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--ink-600); }
  .feature-list svg { width: 16px; height: 16px; color: var(--green-700); flex-shrink: 0; }
  .feature-visual {
    background: var(--ink); border-radius: 20px; padding: 34px; color: var(--paper);
    box-shadow: var(--shadow); position: relative; overflow: hidden; min-height: 260px;
    display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  }
  .feature-visual::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(67, 214, 92, 0.16), transparent 60%);
    pointer-events: none;
  }
  .feature-icon-lg {
    width: 56px; height: 56px; border-radius: 14px; background: var(--green-500); color: var(--ink-900);
    display: grid; place-items: center; position: relative;
  }
  .feature-icon-lg svg { width: 28px; height: 28px; }
  .feature-chips { display: flex; flex-direction: column; gap: 11px; position: relative; }
  .feature-chip { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(245, 246, 240, 0.75); }
  .feature-chip svg { width: 15px; height: 15px; color: var(--green-500); flex-shrink: 0; }
  .feature-badge {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px;
    background: rgba(67, 214, 92, 0.15); color: var(--green-500); font-size: 0.76rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; position: relative; align-self: flex-start;
  }

  /* ---------- PREZZO ---------- */
  .price-card { background: var(--charcoal); border-radius: 22px; padding: 44px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
  @media (max-width: 480px) {
    .price-card { padding: 28px 22px; }
    .price-now { font-size: 2.3rem; }
    .price-row { flex-wrap: wrap; gap: 10px; }
  }
  .price-card::before {
    content: ""; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px;
    border-radius: 50%; background: radial-gradient(circle, rgba(67, 214, 92, 0.16), transparent 70%);
  }
  .price-row { display: flex; align-items: baseline; gap: 18px; margin: 18px 0 6px; position: relative; }
  .price-was { font-size: 1.3rem; color: rgba(245, 246, 240, 0.4); text-decoration: line-through; }
  .price-now { font-size: 3rem; font-weight: 700; color: var(--green-500); }
  .price-note { font-size: 0.86rem; color: rgba(245, 246, 240, 0.55); margin-bottom: 28px; position: relative; }
  .price-checklist { display: flex; flex-direction: column; gap: 14px; margin: 0 0 30px; padding: 0; position: relative; }
  .price-checklist li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: rgba(245, 246, 240, 0.85); }
  .price-checklist svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }

  footer { background: var(--ink); padding: 34px 0 46px; border-top: 1px solid var(--line-dark); }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(245,246,240,0.5); }
  footer .brand { color: var(--paper); font-size: 0.9rem; }
  footer .brand-logo { height: 84px; width: auto; display: block; }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal { transition: opacity 0.45s ease-out, transform 0.45s ease-out; }
  .js-reveal-ready .reveal { opacity: 0; transform: translateY(10px); }
  .js-reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .panel-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
  .panel-grid > .reveal:nth-child(2) { transition-delay: 70ms; }
  .panel-grid > .reveal:nth-child(3) { transition-delay: 140ms; }
  .panel-grid > .reveal:nth-child(4) { transition-delay: 210ms; }
  .panel-grid > .reveal:nth-child(5) { transition-delay: 280ms; }

  .why-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
  .why-grid > .reveal:nth-child(2) { transition-delay: 90ms; }
  .why-grid > .reveal:nth-child(3) { transition-delay: 180ms; }

  .testi-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
  .testi-grid > .reveal:nth-child(2) { transition-delay: 90ms; }
  .testi-grid > .reveal:nth-child(3) { transition-delay: 180ms; }

  .value-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
  .value-grid > .reveal:nth-child(2) { transition-delay: 70ms; }
  .value-grid > .reveal:nth-child(3) { transition-delay: 140ms; }
  .value-grid > .reveal:nth-child(4) { transition-delay: 210ms; }

  /* ---------- HERO LOAD-IN ---------- */
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-badge, .hero h1, .hero p.lede, .hero .ctas, .hero .trust-row {
      opacity: 0;
      animation: heroFadeUp 0.5s ease-out forwards;
    }
    .hero-badge { animation-delay: .05s; }
    .hero h1 { animation-delay: .16s; }
    .hero p.lede { animation-delay: .32s; }
    .hero .ctas { animation-delay: .44s; }
    .hero .trust-row { animation-delay: .54s; }
  }
  @media (prefers-reduced-motion: no-preference) and (max-width: 980px) {
    .hero h1 { animation-delay: .05s; }
    .hero-badge { animation-delay: .16s; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }
