  :root {
    --green: #2BC94B;
    --green-dark: #1FA63A;
    --green-deep: #166E28;
    --slate: #1A2A2E;
    --slate-2: #2D3D42;
    --ink: #0F1619;
    --bg: #F7F9F7;
    --card: #FFFFFF;
    --line: #E4E9E5;
    --muted: #5A6B6F;
    --warning: #E08A00;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 2px 8px rgba(15, 22, 25, 0.06);
    --shadow-lg: 0 8px 24px rgba(15, 22, 25, 0.1);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--green-deep); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* Announcement bar */
  .announce {
    background: var(--slate);
    color: #EAF5EC;
    font-size: 14px;
    text-align: center;
    padding: 10px 16px;
  }
  .announce strong { color: var(--green); }
  .announce a { color: #EAF5EC; text-decoration: underline; }

  /* Header */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: #FFFFFFE8;
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand-mark {
    width: 40px; height: 40px;
    background: var(--green);
    border-radius: 10px;
    display: grid; place-items: center;
    color: white; font-weight: 800; font-size: 18px;
  }
  .brand-mark img { width: 100%; height: 100%; border-radius: 10px; object-fit: contain; }
  .brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--slate); }
  .brand-name span { color: var(--green-dark); }
  nav.top { display: flex; gap: 22px; align-items: center; }
  nav.top a { color: var(--slate-2); font-weight: 500; }
  nav.top a.phone { color: var(--slate); font-weight: 700; }
  nav.top a.cta {
    background: var(--green);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
  }
  nav.top a.cta:hover { background: var(--green-dark); text-decoration: none; }

  /* Hamburger button */
  .menu-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    width: 44px; height: 44px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; padding: 0; margin-left: 4px;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle span {
    width: 22px; height: 2.5px; background: var(--slate);
    border-radius: 2px; transition: transform 0.22s ease, opacity 0.18s ease;
    display: block;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mobile drawer */
  .mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: white;
    z-index: 100;
    padding: 80px 22px 32px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.18);
    transform: translateX(105%);
    transition: transform 0.26s cubic-bezier(.2,.7,.2,1);
    overflow-y: auto;
    visibility: hidden;
  }
  .mobile-menu.open { transform: translateX(0); visibility: visible; }
  .mobile-menu a {
    display: block; padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--slate); font-weight: 600; font-size: 17px;
    text-decoration: none;
  }
  .mobile-menu a:hover { color: var(--green-dark); text-decoration: none; }
  .mobile-menu a.m-phone {
    margin-top: 18px; padding: 14px 16px; border: 2px solid var(--slate);
    border-radius: 10px; text-align: center; color: var(--slate);
  }
  .mobile-menu a.m-cta {
    margin-top: 12px; padding: 14px 16px; background: var(--green); color: white;
    border-radius: 10px; text-align: center; border: none;
    box-shadow: 0 4px 14px rgba(43,201,75,0.35);
  }
  .mobile-overlay {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(15,22,25,0.45);
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .mobile-overlay.show { opacity: 1; visibility: visible; }

  @media (max-width: 960px) {
    nav.top a:not(.cta) { display: none; }
    nav.top a.cta { padding: 9px 14px; font-size: 14px; }
    .menu-toggle { display: flex; }
  }
  @media (max-width: 420px) {
    nav.top a.cta { display: none; }
    .menu-toggle { margin-left: 8px; }
  }

  /* Hero */
  .hero {
    background:
      radial-gradient(ellipse at 80% -20%, rgba(43,201,75,0.18), transparent 55%),
      linear-gradient(180deg, #F5FBF6 0%, var(--bg) 100%);
    padding: 64px 20px 56px;
  }
  .hero-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(43,201,75,0.12);
    color: var(--green-deep);
    padding: 6px 12px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .eyebrow::before { content: "●"; color: var(--green); }
  h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--slate);
    margin-bottom: 18px;
  }
  h1 em { font-style: normal; color: var(--green-dark); }
  .lede {
    font-size: 18px;
    color: var(--slate-2);
    margin-bottom: 28px;
    max-width: 560px;
  }
  .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.08s, background 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 14px rgba(43,201,75,0.4);
  }
  .btn-primary:hover { background: var(--green-dark); text-decoration: none; }
  .btn-secondary {
    background: white;
    color: var(--slate);
    border: 2px solid var(--slate);
  }
  .btn-secondary:hover { background: var(--slate); color: white; text-decoration: none; }
  .hero-trust {
    display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
    font-size: 14px; color: var(--muted);
  }
  .hero-trust div { display: flex; align-items: center; gap: 6px; }
  .hero-trust svg { width: 16px; height: 16px; color: var(--green); }

  /* Hero illustration card */
  .hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .hero-card h3 { font-size: 22px; margin-bottom: 6px; color: var(--slate); }
  .hero-card p.sub { color: var(--muted); margin-bottom: 22px; font-size: 15px; }
  .pricing-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .pricing-split .box {
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
  }
  .pricing-split .box .tag {
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 6px;
  }
  .pricing-split .box .price {
    font-size: 28px; font-weight: 800; color: var(--slate); line-height: 1;
  }
  .pricing-split .box .note {
    font-size: 13px; color: var(--muted); margin-top: 8px;
  }
  .pricing-split .box.biz .price { color: var(--green-dark); }

  /* Sections */
  section { padding: 72px 20px; }
  .wrap { max-width: 1180px; margin: 0 auto; }
  h2 { font-size: clamp(28px, 3.5vw, 36px); letter-spacing: -0.01em; color: var(--slate); line-height: 1.15; }
  h2.center { text-align: center; }
  h3 { font-size: 20px; color: var(--slate); letter-spacing: -0.01em; }
  .section-sub {
    color: var(--muted);
    font-size: 17px;
    margin-top: 10px;
    max-width: 680px;
  }
  .section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

  /* Why / trust badges */
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  @media (max-width: 820px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
  .trust-card {
    background: white; padding: 24px; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .trust-card .icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(43,201,75,0.12);
    display: grid; place-items: center;
    color: var(--green-dark); margin-bottom: 14px;
  }
  .trust-card h4 { font-size: 16px; color: var(--slate); margin-bottom: 4px; }
  .trust-card p { font-size: 14px; color: var(--muted); }

  /* What we accept */
  .accept-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px;
  }
  @media (max-width: 820px) { .accept-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .accept-grid { grid-template-columns: 1fr; } }
  .accept-card {
    background: white; padding: 20px; border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  .accept-card h4 { font-size: 15px; color: var(--slate); margin-bottom: 6px; }
  .accept-card ul { list-style: none; }
  .accept-card li {
    font-size: 14px; color: var(--slate-2); padding: 3px 0;
  }
  .accept-card li::before { content: "✓ "; color: var(--green); font-weight: 700; }
  .accept-card-fee { border: 1px solid var(--warning); background: #FFFBF0; }
  .accept-card-fee h4 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .fee-badge {
    display: inline-block; background: var(--warning); color: white;
    font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 999px;
  }
  .fee-note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
  .accept-note {
    background: #FFF4E0; border-left: 4px solid var(--warning);
    padding: 16px 18px; border-radius: 6px; margin-top: 22px;
    font-size: 15px; color: var(--slate);
  }

  /* Pricing comparison */
  .pricing { background: white; }
  .pricing-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
  }
  @media (max-width: 820px) { .pricing-cards { grid-template-columns: 1fr; } }
  .price-card {
    background: var(--bg); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--line); position: relative;
  }
  .price-card.featured { border: 2px solid var(--green); background: white; box-shadow: var(--shadow-lg); }
  .price-card .plan-label {
    font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 10px;
  }
  .price-card.featured .plan-label { color: var(--green-dark); }
  .price-card h3 { font-size: 24px; margin-bottom: 14px; }
  .price-card .big-price {
    font-size: 42px; font-weight: 800; color: var(--slate); line-height: 1;
    margin: 8px 0 4px;
  }
  .price-card.featured .big-price { color: var(--green-dark); }
  .price-card .price-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
  .price-card ul.features { list-style: none; margin-top: 18px; }
  .price-card ul.features li {
    padding: 8px 0;
    font-size: 15px; color: var(--slate-2);
    border-bottom: 1px dashed var(--line);
  }
  .price-card ul.features li:last-child { border-bottom: none; }
  .price-card ul.features li::before {
    content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px;
  }
  .price-card ul.features li.x::before {
    content: "×"; color: #C0342D; font-weight: 900;
  }
  .price-card .card-cta {
    margin-top: 24px; display: block; text-align: center;
    background: var(--green); color: white; padding: 12px 18px;
    border-radius: 8px; font-weight: 700; text-decoration: none;
  }
  .price-card.featured .card-cta { background: var(--green-dark); }
  .price-card .card-cta:hover { background: var(--green-dark); text-decoration: none; }

  /* Screen / TV fees */
  .screen-fees {
    background: white;
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 36px;
  }
  .screen-fees-header h3 {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--slate);
  }
  .screen-fees-header h3::before {
    content: "!"; display: inline-grid; place-items: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--warning); color: white;
    font-weight: 900; font-size: 16px; line-height: 1;
  }
  .screen-fees-header p { color: var(--muted); margin-top: 10px; font-size: 15px; max-width: 680px; }
  .screen-fees-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px;
  }
  @media (max-width: 820px) { .screen-fees-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .screen-fees-grid { grid-template-columns: 1fr; } }
  .fee-card {
    background: #FFFBF0;
    border: 1px solid #F6D98C;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
  }
  .fee-card .fee-label {
    font-size: 13px; font-weight: 700; color: var(--slate-2);
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .fee-card .fee-price {
    font-size: 32px; font-weight: 800; color: var(--slate); line-height: 1;
  }
  .fee-card .fee-price span {
    font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 2px;
  }
  .fee-card .fee-sub {
    font-size: 12px; color: var(--muted); margin-top: 8px;
  }
  .screen-fees-note {
    font-size: 13px; color: var(--muted); margin-top: 20px; line-height: 1.55;
    padding-top: 18px; border-top: 1px solid var(--line);
  }

  /* Add-ons */
  .addons {
    background: var(--slate); color: #EAF5EC;
    border-radius: var(--radius-lg); padding: 32px;
    margin-top: 36px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
  }
  @media (max-width: 820px) { .addons { grid-template-columns: 1fr; } }
  .addons h3 { color: white; }
  .addons p { color: #B9CDC2; font-size: 15px; margin-top: 8px; }
  .addons .addon-box {
    background: var(--slate-2); padding: 18px; border-radius: 10px;
  }
  .addons strong { color: var(--green); }

  /* Form */
  .schedule { background: linear-gradient(180deg, #EEF7F0 0%, var(--bg) 100%); }
  .form-container {
    background: white; padding: 40px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); margin-top: 36px; max-width: 780px;
  }
  @media (max-width: 600px) { .form-container { padding: 24px; } }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
  .form-group label {
    font-weight: 600; font-size: 14px; color: var(--slate);
    margin-bottom: 6px;
  }
  .form-group .req { color: #C0342D; }
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: white;
    color: var(--ink);
    transition: border 0.1s, box-shadow 0.1s;
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(43,201,75,0.2);
  }
  .radio-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
  @media (max-width: 500px) { .radio-cards { grid-template-columns: 1fr; } }
  .radio-cards label {
    border: 2px solid var(--line);
    border-radius: 10px; padding: 16px;
    cursor: pointer; display: flex; gap: 12px; align-items: flex-start;
    background: white;
    transition: border 0.15s, background 0.15s;
  }
  .radio-cards label:hover { border-color: var(--green); }
  .radio-cards input[type="radio"] { margin-top: 3px; accent-color: var(--green); }
  .radio-cards input[type="radio"]:checked + div { color: var(--green-deep); }
  .radio-cards label:has(input:checked) { border-color: var(--green); background: rgba(43,201,75,0.06); }
  .radio-cards .r-title { font-weight: 700; color: var(--slate); }
  .radio-cards .r-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .checkbox-row {
    display: flex; align-items: flex-start; gap: 10px; margin: 12px 0;
    font-size: 14px; color: var(--slate-2);
  }
  .checkbox-row input[type="checkbox"] { accent-color: var(--green); margin-top: 3px; }
  .hidden { display: none !important; }
  .form-submit {
    width: 100%; padding: 16px;
    background: var(--green); color: white;
    border: none; border-radius: 10px;
    font-weight: 800; font-size: 17px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--green-dark); }
  .form-note {
    text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px;
  }
  .form-success {
    display: none;
    background: rgba(43,201,75,0.12); border: 1px solid var(--green);
    border-radius: 10px; padding: 20px; margin-bottom: 24px;
    color: var(--green-deep);
  }
  .form-success.show { display: block; }

  /* Grand opening / new location */
  .grand { background: var(--slate); color: #EAF5EC; }
  .grand-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .grand-grid { grid-template-columns: 1fr; gap: 32px; } }
  .grand-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(43,201,75,0.14); border: 1px solid rgba(43,201,75,0.45);
    color: var(--green); font-size: 12.5px; font-weight: 800; letter-spacing: 0.07em;
    text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
  }
  .grand-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: grandPulse 2s ease-in-out infinite; }
  @keyframes grandPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
  @media (prefers-reduced-motion: reduce) { .grand-badge .dot { animation: none; } }
  .grand h2 { color: #FFFFFF; margin: 18px 0 0; }
  .grand-lede { color: #C3D4C8; font-size: 17px; line-height: 1.65; margin: 14px 0 0; max-width: 58ch; }
  .grand-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 11px; }
  .grand-list li { position: relative; padding-left: 27px; color: #DCE8DF; font-size: 15px; }
  .grand-list li::before {
    content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
    border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
  }
  .grand-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 28px; }
  .grand-card-label { font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
  .grand-address { font-style: normal; font-size: 22px; font-weight: 800; line-height: 1.4; color: #FFFFFF; margin: 10px 0 0; }
  .grand-when { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); display: grid; gap: 4px; }
  .grand-when strong { color: var(--green); font-size: 16px; }
  .grand-when span { color: #A9BDAE; font-size: 14px; }
  .grand-map { display: inline-block; margin-top: 16px; color: #EAF5EC; font-weight: 700; font-size: 14px; }
  .grand-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14); color: #A9BDAE; font-size: 13.5px; line-height: 1.6; }
  .grand-note a, .grand-note strong { color: #EAF5EC; }
  .grand .btn-secondary { background: transparent; color: #EAF5EC; border-color: rgba(255,255,255,0.38); }
  .grand .btn-secondary:hover { background: var(--green); border-color: var(--green); color: var(--slate); }

  /* Form error */
  .form-error {
    display: none;
    background: rgba(224,138,0,0.10); border: 1px solid var(--warning);
    border-radius: 10px; padding: 18px 20px; margin-bottom: 22px;
    color: #7A4C00; font-size: 15px; line-height: 1.55;
  }
  .form-error.show { display: block; }
  .form-error a { color: #7A4C00; font-weight: 700; }

  /* Drop-off / location */
  .dropoff-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px;
    align-items: start;
  }
  @media (max-width: 820px) { .dropoff-grid { grid-template-columns: 1fr; } }
  .dropoff-grid iframe {
    width: 100%; height: 320px; border: 0; border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .info-block {
    background: white; padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--line);
  }
  .info-block dl { margin: 0; }
  .info-block dt { font-weight: 700; color: var(--slate); margin-top: 12px; font-size: 14px; }
  .info-block dt:first-child { margin-top: 0; }
  .info-block dd { color: var(--slate-2); margin-bottom: 4px; font-size: 15px; }
  .info-block .bc-note {
    background: var(--bg); padding: 14px; border-radius: 8px;
    font-size: 13px; color: var(--muted); margin-top: 18px;
    border-left: 3px solid var(--green);
  }

  /* FAQ */
  .faq { background: white; }
  .faq-list { margin-top: 36px; max-width: 820px; }
  details.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }
  details.faq-item:last-child { border-bottom: none; }
  details.faq-item summary {
    font-weight: 700; font-size: 17px; color: var(--slate);
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: "+"; font-size: 24px; font-weight: 300; color: var(--green-dark);
    transition: transform 0.2s;
  }
  details.faq-item[open] summary::after { transform: rotate(45deg); }
  details.faq-item p {
    margin-top: 12px; color: var(--slate-2); font-size: 15px; line-height: 1.6;
  }

  /* Impact / Why e-waste matters */
  #impact { background: linear-gradient(180deg, var(--bg) 0%, #EEF4EF 100%); }
  .impact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-top: 32px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  @media (max-width: 600px) { .impact-card { padding: 24px; } }
  .impact-card-head {
    display: flex; gap: 18px; align-items: flex-start;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px; margin-bottom: 24px;
  }
  .impact-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .impact-icon svg { width: 28px; height: 28px; }
  .impact-tv .impact-icon { background: rgba(224,138,0,0.14); color: var(--warning); }
  .impact-phone .impact-icon { background: rgba(43,201,75,0.14); color: var(--green-deep); }
  .impact-card-head h3 { font-size: 22px; margin-bottom: 4px; color: var(--slate); }
  .impact-card-head p { color: var(--muted); font-size: 15px; }
  .impact-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  @media (max-width: 820px) { .impact-stats { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .impact-stats { grid-template-columns: 1fr; } }
  .stat-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
  }
  .stat-number {
    font-size: 28px; font-weight: 800; color: var(--slate);
    line-height: 1; letter-spacing: -0.01em;
  }
  .impact-tv .stat-number { color: var(--warning); }
  .impact-phone .stat-number { color: var(--green-deep); }
  .stat-label {
    font-size: 12px; font-weight: 700; color: var(--slate-2);
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-top: 6px; margin-bottom: 10px;
  }
  .stat-body { font-size: 13px; color: var(--muted); line-height: 1.5; }
  .impact-facts {
    margin-top: 22px; padding: 18px 20px;
    background: #FFF4E0; border-left: 4px solid var(--warning);
    border-radius: 6px; font-size: 15px; color: var(--slate);
    line-height: 1.6;
  }
  .impact-facts strong { color: var(--slate); }

  .critical-box {
    background: #FFE8E5;
    border: 2px solid #C0342D;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
  }
  .critical-badge {
    display: inline-block;
    background: #C0342D; color: white;
    font-size: 11px; font-weight: 900;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px;
    margin-bottom: 14px;
  }
  .critical-box h4 {
    font-size: 20px; color: #8B1F1A; margin-bottom: 12px; letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .critical-box p { color: #4A2422; font-size: 15px; line-height: 1.6; }
  .critical-box strong { color: #8B1F1A; }
  .critical-steps {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-top: 18px;
  }
  @media (max-width: 600px) { .critical-steps { grid-template-columns: 1fr; } }
  .critical-steps .step {
    background: white; border: 1px solid #F0B8B2;
    border-radius: 8px; padding: 14px;
    font-size: 13px; color: var(--slate-2); line-height: 1.55;
  }
  .critical-steps .step strong { color: #8B1F1A; font-size: 14px; display: block; margin-bottom: 4px; }
  .critical-footnote {
    margin-top: 16px; font-size: 13px; font-style: italic; color: #6B2F2C;
  }

  .impact-callout {
    margin-top: 32px;
    background: var(--slate); color: #EAF5EC;
    padding: 24px 28px; border-radius: var(--radius-lg);
    font-size: 15px; line-height: 1.6;
  }
  .impact-callout strong { color: var(--green); }

  /* Buy-back / appraisal section */
  #buyback {
    background: linear-gradient(135deg, #0E2A3F 0%, #1A3A52 100%);
    color: #F6F1E4; position: relative; overflow: hidden;
  }
  #buyback::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,180,65,0.18), transparent 65%);
    pointer-events: none;
  }
  .buyback-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(242,180,65,0.18);
    color: #F2B441;
    padding: 6px 14px; border-radius: 999px;
    font-weight: 800; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .buyback-eyebrow::before { content: "$"; color: #F2B441; font-weight: 900; }
  #buyback h2 { color: white; }
  #buyback h2 em { font-style: normal; color: #F2B441; }
  .buyback-lede {
    font-size: 17px; line-height: 1.55;
    color: #C8D4DA; margin-top: 16px; max-width: 720px;
  }
  .buyback-list {
    display: grid; gap: 16px; margin-top: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
  .bb-item {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .bb-num {
    flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 50%;
    background: #F2B441; color: #0E2A3F;
    display: grid; place-items: center;
    font-weight: 900; font-size: 16px; line-height: 1;
  }
  .bb-item strong {
    display: block; color: white;
    font-size: 15px; margin-bottom: 4px;
  }
  .bb-item span {
    display: block; color: #B9C4CF;
    font-size: 13px; line-height: 1.5;
  }
  .buyback-callout {
    margin-top: 28px;
    padding: 18px 22px;
    background: rgba(43,201,75,0.1);
    border-left: 4px solid var(--green);
    border-radius: 6px;
    font-size: 15px; color: #EAF5EC; line-height: 1.55;
  }
  .buyback-callout strong { color: var(--green); }
  .buyback-cta-row {
    display: flex; gap: 18px; align-items: center;
    margin-top: 28px; flex-wrap: wrap;
  }
  .buyback-btn-primary {
    background: #F2B441; color: #0E2A3F !important;
    padding: 14px 24px; border-radius: 10px;
    font-weight: 800; font-size: 16px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 18px rgba(242,180,65,0.3);
    transition: background 0.15s, transform 0.08s;
  }
  .buyback-btn-primary:hover { background: #FFC961; text-decoration: none; }
  .buyback-btn-link {
    color: #C8D4DA !important; font-weight: 600; font-size: 15px;
  }
  .buyback-btn-link:hover { color: #F2B441 !important; text-decoration: none; }
  @media (max-width: 820px) {
    .buyback-list { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .buyback-list { gap: 12px; margin-top: 24px; }
    .bb-item { padding: 16px; }
    .buyback-cta-row { gap: 12px; }
    .buyback-btn-primary { width: 100%; justify-content: center; }
    .buyback-btn-link { width: 100%; text-align: center; }
    .buyback-callout { padding: 14px 18px; font-size: 14px; }
    .buyback-lede { font-size: 16px; }
  }

  /* === Tablet & mobile refinements === */
  /* Tablet zone (incl. Z Fold inner screen ~880px) */
  @media (max-width: 960px) {
    .header-inner { padding: 12px 18px; }
    section { padding: 56px 20px; }
    .hero { padding: 44px 20px 40px; }
    .hero-inner { gap: 36px; }
    .hero-card { padding: 26px; }
    h1 { font-size: clamp(30px, 5vw, 44px); }
    h2 { font-size: clamp(26px, 3.6vw, 32px); }
    .lede { font-size: 17px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .accept-grid { grid-template-columns: 1fr 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .screen-fees-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-stats { grid-template-columns: 1fr 1fr; }
    .addons { grid-template-columns: 1fr; }
    .dropoff-grid { grid-template-columns: 1fr; gap: 28px; }
    #data .wrap { grid-template-columns: 1fr !important; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  }

  /* Hero stacks earlier so Z Fold isn't cramped */
  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
  }

  /* Phone */
  @media (max-width: 600px) {
    /* Announcement bar */
    .announce { font-size: 12px; padding: 8px 12px; line-height: 1.45; }
    .announce a { display: inline-block; }

    /* Header */
    .header-inner { padding: 10px 14px; }
    .brand-mark { width: 34px; height: 34px; }
    .brand-name { font-size: 16px; }

    /* Section spacing */
    section { padding: 40px 16px; }
    h1 { font-size: clamp(28px, 7vw, 36px); margin-bottom: 12px; line-height: 1.1; }
    h2 { font-size: clamp(24px, 6vw, 30px); }
    .section-sub { font-size: 15px; }

    /* Hero */
    .hero { padding: 28px 16px 28px; }
    .hero-inner { gap: 22px; }
    .lede { font-size: 16px; margin-bottom: 20px; max-width: none; }
    .btn { padding: 12px 18px; font-size: 15px; width: 100%; justify-content: center; }
    .btn-row { gap: 10px; }
    .hero-trust { gap: 12px; margin-top: 20px; font-size: 13px; }
    .hero-card { padding: 20px; }
    .hero-card h3 { font-size: 19px; }
    .pricing-split .box { padding: 14px 12px; }
    .pricing-split .box .price { font-size: 24px; }

    /* Trust cards */
    .trust-grid { gap: 12px; margin-top: 28px; }
    .trust-card { padding: 18px; }
    .trust-card .icon { width: 38px; height: 38px; margin-bottom: 10px; }

    /* Accept grid */
    .accept-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
    .accept-card { padding: 16px; }
    .accept-note { padding: 14px; font-size: 14px; margin-top: 18px; }

    /* Pricing */
    .pricing-cards { gap: 16px; margin-top: 28px; }
    .price-card { padding: 24px 20px; }
    .price-card .big-price { font-size: 36px; }
    .price-card ul.features li { font-size: 14px; padding: 7px 0; }

    /* Screen fees */
    .screen-fees { padding: 22px 18px; margin-top: 26px; }
    .screen-fees-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
    .fee-card { padding: 14px 10px; }
    .fee-card .fee-price { font-size: 24px; }
    .fee-card .fee-label { font-size: 11px; }
    .fee-card .fee-sub { font-size: 11px; }
    .screen-fees-note { font-size: 12px; margin-top: 16px; padding-top: 14px; }

    /* Add-ons */
    .addons { padding: 22px 18px; gap: 14px; }
    .addons .addon-box { padding: 14px; }

    /* Data destruction */
    #data ul li { font-size: 15px !important; padding: 8px 0 !important; }
    #data > .wrap > div:last-child { padding: 28px 22px !important; }

    /* Form */
    .form-container { padding: 22px; margin-top: 24px; }
    .form-row { gap: 12px; margin-bottom: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-submit { padding: 14px; font-size: 16px; }

    /* Drop-off */
    .info-block { padding: 22px; }
    .info-block dd { font-size: 14px; }
    .dropoff-grid iframe { height: 240px; }

    /* FAQ */
    .faq-list { margin-top: 24px; }
    details.faq-item { padding: 16px 0; }
    details.faq-item summary { font-size: 16px; }
    details.faq-item p { font-size: 14px; margin-top: 10px; }

    /* Impact section */
    .impact-card { padding: 22px 18px; margin-top: 22px; }
    .impact-card-head { padding-bottom: 18px; margin-bottom: 18px; gap: 14px; }
    .impact-card-head h3 { font-size: 18px; }
    .impact-card-head p { font-size: 14px; }
    .impact-icon { width: 42px; height: 42px; }
    .impact-icon svg { width: 22px; height: 22px; }
    .impact-stats { gap: 10px; }
    .stat-card { padding: 14px 12px; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 11px; margin-top: 4px; margin-bottom: 8px; }
    .stat-body { font-size: 12px; line-height: 1.45; }
    .impact-facts { padding: 14px 16px; font-size: 14px; margin-top: 18px; }
    .critical-box { padding: 18px; margin-bottom: 22px; }
    .critical-badge { font-size: 10px; padding: 4px 10px; }
    .critical-box h4 { font-size: 17px; margin-bottom: 10px; }
    .critical-box p { font-size: 14px; }
    .critical-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
    .critical-steps .step { padding: 12px; font-size: 13px; }
    .critical-footnote { font-size: 12px; margin-top: 12px; }
    .impact-callout { padding: 20px 22px; font-size: 14px; margin-top: 24px; }

    /* Footer */
    footer { padding: 40px 18px 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { margin-top: 28px; padding-top: 18px; flex-direction: column; gap: 6px; }

    /* Floating call button — bigger tap target */
    .float-call { width: 60px; height: 60px; bottom: 16px; right: 16px; }
  }

  @media (max-width: 380px) {
    .impact-stats { grid-template-columns: 1fr; }
    .accept-grid { grid-template-columns: 1fr; }
    .screen-fees-grid { grid-template-columns: 1fr; }
    .pricing-split { grid-template-columns: 1fr; }
    .radio-cards { grid-template-columns: 1fr; }
  }

  /* Footer */
  footer {
    background: var(--slate); color: #B9CDC2;
    padding: 56px 20px 32px;
  }
  .footer-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  }
  @media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
  footer h5 { color: white; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
  footer a { color: #B9CDC2; }
  footer a:hover { color: var(--green); text-decoration: none; }
  footer ul { list-style: none; }
  footer ul li { padding: 4px 0; font-size: 14px; }
  .footer-bottom {
    max-width: 1180px; margin: 40px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: #7E9590;
  }

  /* Floating call button mobile */
  .float-call {
    display: none;
    position: fixed; bottom: 20px; right: 20px; z-index: 40;
    background: var(--green); color: white;
    width: 56px; height: 56px; border-radius: 50%;
    align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(15,22,25,0.25);
    text-decoration: none;
  }
  @media (max-width: 740px) { .float-call { display: flex; } }

  /* Utilities */
  .icon-svg { width: 24px; height: 24px; }

/* ============ Multi-page + motion layer ============ */

/* Scroll-reveal. Everything degrades to fully visible if JS or motion is off. */
.reveal { opacity: 0; transform: translateY(20px); }
.js .reveal { transition: opacity .55s cubic-bezier(.2,.7,.3,1), transform .55s cubic-bezier(.2,.7,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Reading-progress hairline */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--green); z-index: 100; transition: width .1s linear;
}

/* Sticky booking bar — phones only */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(26,42,46,.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(110%); transition: transform .25s ease;
}
.book-bar.show { transform: none; }
.book-bar-text { display: grid; line-height: 1.25; }
.book-bar-text strong { color: #fff; font-size: 14px; }
.book-bar-text span { color: #A9BDAE; font-size: 12px; }
.book-bar-cta {
  background: var(--green); color: #0F1619 !important; font-weight: 800; font-size: 15px;
  padding: 11px 20px; border-radius: 9px; text-decoration: none; white-space: nowrap;
}
@media (max-width: 740px) {
  .book-bar { display: flex; }
  .float-call { bottom: 76px; }
}

/* Page hero for interior pages */
.page-head { background: var(--slate); color: #EAF5EC; padding: 56px 20px 52px; }
.page-head .wrap { max-width: 900px; }
.page-head .crumb { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.page-head h1 { color: #fff; font-size: clamp(30px, 5vw, 44px); margin: 12px 0 0; }
.page-head p { color: #C3D4C8; font-size: 17px; line-height: 1.6; margin: 14px 0 0; max-width: 62ch; }

/* Teaser band linking to a full page */
.teaser-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px; font-weight: 800; font-size: 15px; color: var(--green-deep);
}
.teaser-cta .arr { transition: transform .18s ease; }
.teaser-cta:hover { text-decoration: none; }
.teaser-cta:hover .arr { transform: translateX(4px); }

/* Big animated stat figures (impact page) */
.figure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
@media (max-width: 860px) { .figure-grid { grid-template-columns: 1fr; } }
.figure {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
}
.figure .num {
  font-size: clamp(34px, 5vw, 46px); font-weight: 800; letter-spacing: -.02em;
  color: var(--green-deep); line-height: 1;
}
.figure .num .unit { font-size: 18px; font-weight: 700; color: var(--muted); margin-left: 6px; }
.figure .cap { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-top: 12px; }
.figure .sub { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 8px; }

/* Sourcing / arithmetic disclosure */
.workings {
  margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 12px;
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
}
.workings summary { cursor: pointer; font-weight: 700; color: var(--slate-2); }
.workings a { color: var(--green-deep); }
.workings p { margin-top: 8px; }

/* Form: our own validation messaging */
.field-error { display: block; color: #B0332B; font-size: 13px; font-weight: 600; margin-top: 6px; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #B0332B; }
.radio-cards.invalid, .checkbox-row.invalid { outline: 2px solid #B0332B; outline-offset: 6px; border-radius: 8px; }
