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

    :root {
      --orange:      #FF6B00;
      --orange-deep: #E15E00;
      --orange-ink:  #C75200;   /* accessible orange for text on light */
      --ink:         #141414;
      --ink-2:       #1f1f1f;
      --ink-3:       #2a2a2a;
      --paper:       #ffffff;
      --surface:     #f6f5f2;   /* warm off-white */
      --surface-2:   #eceae4;
      --line:        #e4e2db;
      --line-dark:   rgba(255,255,255,0.10);
      --muted:       #6c6a64;
      --muted-d:     #9b9890;   /* muted on dark */
      --wa:          #25D366;
      --radius:      14px;
      --radius-sm:   9px;
      --maxw:        1180px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--paper);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }

    /* ─── ICONS ─── */
    .icon { width: 24px; height: 24px; fill: none; stroke: currentColor;
            stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .icon.fill { fill: currentColor; stroke: none; }

    /* ─── TYPE ─── */
    h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; line-height: 1.08; letter-spacing: -0.02em; }
    h1 { font-size: clamp(34px, 4.7vw, 58px); font-weight: 900; }
    h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; }
    h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 11px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--orange-ink); margin-bottom: 18px;
    }
    .eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--orange); }
    .on-dark .eyebrow, .eyebrow.on-dark { color: var(--orange); }
    .lead { color: var(--muted); font-size: 17px; line-height: 1.7; }
    .on-dark .lead { color: var(--muted-d); }

    /* ─── LAYOUT ─── */
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
    .section { padding: 96px 0; }
    .section.tight { padding: 72px 0; }
    .bg-surface { background: var(--surface); }
    .bg-ink { background: var(--ink); color: #fff; }
    .center { text-align: center; }
    .center .eyebrow { justify-content: center; }
    .stack-head { max-width: 680px; }
    .center .stack-head { margin: 0 auto; }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
      text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      white-space: nowrap;
    }
    .btn .icon { width: 18px; height: 18px; }
    .btn:active { transform: translateY(1px); }
    .btn-orange { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: var(--orange-deep); }
    .btn-ink { background: var(--ink); color: #fff; }
    .btn-ink:hover { background: #000; }
    .btn-wa { background: var(--wa); color: #fff; }
    .btn-wa:hover { background: #1eb858; }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
    .btn-ghost:hover { border-color: var(--ink); }
    .btn-ghost-d { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
    .btn-ghost-d:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
    .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

    /* ─── HEADER ─── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: #fff; border-bottom: 1px solid var(--line);
      transition: box-shadow .3s ease;
      transform: translateZ(0);
      -webkit-backface-visibility: hidden; backface-visibility: hidden;
    }
    header.scrolled { background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,0.08); }
    .nav { max-width: var(--maxw); margin: 0 auto; padding: 14px 28px;
           display: flex; align-items: center; justify-content: space-between; }
    .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
    .brand .mark {
      width: 42px; height: 42px; border-radius: 9px; border: 2px solid var(--orange);
      color: var(--orange); display: flex; align-items: center; justify-content: center;
      font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -1px;
    }
    .brand .wordmark { display: flex; flex-direction: column; gap: 5px; color: var(--ink); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; line-height: 1; }
    .title-img { width: 130px; height: auto; display: block; }
    .brand .wordmark sup { color: var(--orange); font-size: 9px; }
    .brand .wordmark small { display: block; font-family: 'Inter'; font-weight: 500; font-size: 10.5px;
            letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0; }
    .nav-right { display: flex; align-items: center; gap: 18px; }
    .nav-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none;
                 font-weight: 600; font-size: 14px; }
    .nav-phone .icon { width: 17px; height: 17px; color: var(--orange); }
    .nav-phone small { display: block; color: var(--muted-d); font-size: 10.5px; font-weight: 500;
                       text-transform: uppercase; letter-spacing: 0.1em; }

    /* ─── FLOATING WHATSAPP ─── */
    .fab-wa {
      position: fixed; bottom: 24px; right: 24px; z-index: 1000;
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--wa); color: #fff; padding: 13px 20px; border-radius: 50px;
      font-weight: 700; font-size: 14px; text-decoration: none;
      box-shadow: 0 10px 30px rgba(37,211,102,0.4);
      transition: transform .15s ease;
    }
    .fab-wa:hover { transform: translateY(-2px); }
    .fab-wa .icon { width: 20px; height: 20px; }

    /* ─── PLACEHOLDER IMAGERY ─── */
    .ph {
      position: relative; overflow: hidden; border-radius: var(--radius);
      background:
        repeating-linear-gradient(45deg, #e9e7e1 0 14px, #e1dfd8 14px 28px);
      display: flex; align-items: center; justify-content: center;
      color: #98948a; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px;
      letter-spacing: 0.3px; text-align: center; padding: 16px; border: 1px solid var(--line);
    }
    .ph.dark {
      background: repeating-linear-gradient(45deg, #242424 0 14px, #1d1d1d 14px 28px);
      color: #6f6c66; border-color: var(--line-dark);
    }

    /* ─── HERO (full-bleed) ─── */
    #hero {
      position: relative; color: var(--ink); background: var(--surface);
      padding: 150px 0 84px; overflow: hidden;
    }
    /* web-view background design */
    #hero::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(46% 60% at 84% 8%, rgba(255,107,0,0.12), transparent 60%),
        radial-gradient(40% 55% at -4% 96%, rgba(255,107,0,0.07), transparent 60%);
    }
    #hero::after { content: ''; position: absolute; z-index: 0; pointer-events: none;
      top: -120px; right: -160px; width: 620px; height: 620px;
      background: url('images/bolt-watermark.svg') center / contain no-repeat; opacity: 0.05; }
    #hero > .container { position: relative; z-index: 1; }
    .hero-eyebrow { display: inline-flex; }
    .hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 52px; align-items: center; }
    .hero-inner { max-width: 620px; }
    .hero-photo-frame { position: relative; }
    .hero-photo-frame img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: center top;
      border-radius: 22px; display: block; box-shadow: 0 30px 64px rgba(20,20,20,0.22); }
    #hero h1 { font-size: clamp(38px, 5.4vw, 66px); text-transform: uppercase; line-height: 1.02; color: var(--ink); }
    .hero-sub { font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase; color: var(--orange);
      font-size: clamp(20px, 2.5vw, 31px); line-height: 1.05; letter-spacing: -0.01em; margin-top: 6px; }
    #hero .lead { margin: 20px 0 22px; max-width: 520px; color: var(--muted); }
    .hero-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0 0 30px; }
    .hero-points li { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15.5px; color: var(--ink); }
    .hero-points .icon { width: 22px; height: 22px; color: var(--orange-ink); flex-shrink: 0; }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .wbadge { display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
      background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
      box-shadow: 0 10px 26px rgba(20,20,20,0.07); }
    .wbadge .seal { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; }
    .wbadge .seal .icon { width: 24px; height: 24px; }
    .wbadge .seal-txt { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 17px; }
    .wbadge .wb-label { line-height: 1.2; }
    .wbadge .wb-label b { display: block; font-family: 'Archivo', sans-serif; font-size: 14px; color: var(--ink); }
    .wbadge .wb-label small { font-size: 11.5px; color: var(--muted); font-weight: 600; }
    .btn-arrow { padding-right: 8px; }
    .btn-arrow .arrow-circ { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.22);
      display: flex; align-items: center; justify-content: center; }
    .btn-arrow .arrow-circ .icon { width: 16px; height: 16px; }
    /* warranty figure (moved to Emergency section) */
    .warranty-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
    .warranty-figure img { width: 100%; max-width: 340px; height: auto; display: block;
      filter: drop-shadow(0 16px 34px rgba(20,20,20,0.18)); }
    .warranty-figure figcaption { display: inline-flex; align-items: center; gap: 9px; text-align: center;
      color: var(--ink); font-weight: 700; font-size: 14px; line-height: 1.45;
      background: rgba(255,107,0,0.10); border: 1px solid rgba(255,107,0,0.35);
      padding: 11px 18px; border-radius: 12px; }
    .warranty-figure figcaption .icon { width: 19px; height: 19px; color: var(--orange-ink); flex-shrink: 0; }

    /* ─── TRUST STRIP ─── */
    #trust { background: var(--paper); border-bottom: 1px solid var(--line); }
    #trust .row { display: grid; grid-template-columns: repeat(5, 1fr); }
    #trust .item {
      display: flex; align-items: center; gap: 12px; padding: 26px 22px;
      border-right: 1px solid var(--line); font-weight: 600; font-size: 14px;
    }
    #trust .item:last-child { border-right: none; }
    #trust .item .icon { width: 24px; height: 24px; color: var(--orange-ink); }

    /* ─── SPLIT (urgent / fail) ─── */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px; }
    .chip {
      display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
      border: 1px solid var(--line); border-radius: 50px; font-size: 13.5px; font-weight: 600;
      background: var(--paper);
    }
    .chip .icon { width: 17px; height: 17px; color: var(--orange-ink); }
    .split .ph { aspect-ratio: 4 / 4.6; height: 100%; }

    /* ─── FEATURE CARDS (why choose) ─── */
    .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
    .feature {
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 30px 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .feature:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,20,20,0.07); border-color: #d9d6cd; }
    .ico-tile {
      width: 50px; height: 50px; border-radius: 11px; background: rgba(255,107,0,0.10);
      color: var(--orange-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    }
    .feature h3 { margin-bottom: 8px; }
    .feature p { color: var(--muted); font-size: 14.5px; }

    /* ─── BIG CTA BAND ─── */
    .cta-band {
      margin-top: 32px; background: var(--ink); color: #fff; border-radius: 18px;
      padding: 48px 44px; display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden;
    }
    .cta-band::after { content: ''; position: absolute; inset: 0;
      background: radial-gradient(80% 130% at 100% 0%, rgba(255,107,0,0.22), transparent 60%); }
    .cta-band > * { position: relative; z-index: 1; }
    .cta-band h3 { font-size: 26px; margin-bottom: 6px; }
    .cta-band p { color: var(--muted-d); font-size: 15px; }

    /* ─── SOP STEPS ─── */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; position: relative; }
    .steps::before { content: ''; position: absolute; top: 34px; left: 16%; right: 16%;
      height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px); opacity: .5; }
    .step { text-align: center; position: relative; }
    .step .num {
      width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px;
      background: var(--ink-2); border: 2px solid var(--orange); color: var(--orange);
      display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
      box-shadow: 0 0 0 8px var(--ink);
    }
    .step .num .icon { width: 28px; height: 28px; }
    .step .kicker { color: var(--orange); font-weight: 700; font-size: 12px; letter-spacing: 0.16em;
                    text-transform: uppercase; margin-bottom: 6px; }
    .step h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
    .step p { color: var(--muted-d); font-size: 14.5px; }
    .note-band {
      margin-top: 52px; border: 1px solid rgba(255,107,0,0.30); background: rgba(255,107,0,0.07);
      border-radius: var(--radius); padding: 24px 30px; color: var(--muted-d); font-size: 14.5px;
      line-height: 1.75; text-align: center; max-width: 880px; margin-left: auto; margin-right: auto;
    }
    .note-band strong { color: var(--orange); }

    /* ─── BENEFITS (why it matters) ─── */
    #matters { position: relative; overflow: hidden; }
    #matters::before { content: ''; position: absolute; inset: 0;
      background: radial-gradient(70% 100% at 100% 50%, rgba(255,107,0,0.10), transparent 60%); }
    #matters .container { position: relative; z-index: 1; }
    .matters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .benefit-list { display: flex; flex-direction: column; gap: 8px; }
    .benefit {
      display: flex; gap: 18px; align-items: flex-start; padding: 22px 0;
      border-bottom: 1px solid var(--line-dark);
    }
    .benefit:last-child { border-bottom: none; }
    .benefit .b-ico { width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
      background: rgba(255,107,0,0.14); color: var(--orange); display: flex; align-items: center; justify-content: center; }
    .benefit h3 { color: #fff; margin-bottom: 4px; }
    .benefit p { color: var(--muted-d); font-size: 14px; }
    #matters .ph.dark { aspect-ratio: 4 / 4.8; height: 100%; }

    /* ─── CAUSES (why fail) ─── */
    .causes { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 34px; }
    .cause { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
    .cause .c-ico { width: 42px; height: 42px; border-radius: 9px; flex-shrink: 0;
      background: rgba(255,107,0,0.10); color: var(--orange-ink); display: flex; align-items: center; justify-content: center; }
    .cause h4 { font-family: 'Archivo'; font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
    .cause p { font-size: 13.5px; color: var(--muted); }

    /* ─── TESTIMONIALS ─── */
    .t-toprow { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
    .google-pill { display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
      border: 1px solid var(--line); border-radius: 50px; padding: 10px 18px; background: var(--paper); }
    .google-pill .g-score { font-family: 'Archivo'; font-weight: 800; font-size: 18px; color: var(--ink); }
    .google-pill .stars { color: var(--orange); font-size: 13px; letter-spacing: 1px; }
    .google-pill small { color: var(--muted); font-size: 12px; }
    .google-pill .icon { width: 18px; height: 18px; color: var(--orange-ink); }
    .carousel-wrap { position: relative; }
    .carousel { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; padding-bottom: 6px; }
    .carousel::-webkit-scrollbar { display: none; }
    .t-card { min-width: 340px; max-width: 360px; flex-shrink: 0; scroll-snap-align: start;
      background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
    .t-card .t-photo { height: 168px; }
    .t-card .t-body { padding: 24px 26px 26px; }
    .t-card .stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
    .t-card .review { color: #3a3a36; font-size: 14.5px; line-height: 1.7; margin-bottom: 22px; }
    .t-card .reviewer { display: flex; align-items: center; gap: 12px; }
    .t-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff;
      display: flex; align-items: center; justify-content: center; font-family: 'Archivo'; font-weight: 800; font-size: 16px; flex-shrink: 0; }
    .t-card .name { font-weight: 700; font-size: 14px; }
    .t-card .src { color: var(--muted); font-size: 12px; }
    .carousel-nav { display: flex; gap: 10px; }
    .cbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
      background: var(--paper); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all .15s ease; }
    .cbtn:hover { border-color: var(--orange); color: var(--orange-ink); }
    .cbtn .icon { width: 20px; height: 20px; }

    /* ─── FAQ ─── */
    .faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--paper); transition: border-color .2s; }
    .faq-item.open { border-color: var(--orange); }
    .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 20px 24px; font-family: 'Archivo'; font-weight: 700; font-size: 16px; color: var(--ink);
      display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-q .pm { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s ease; }
    .faq-q .pm .icon { width: 16px; height: 16px; }
    .faq-item.open .pm { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(135deg); }
    .faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .4s ease; }
    .faq-item.open .faq-a { opacity: 1; }
    .faq-a-inner { padding: 4px 24px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.8;
      transform: translateY(-6px); transition: transform .45s ease; }
    .faq-item.open .faq-a-inner { transform: none; }
    .faq-a-inner strong { color: var(--ink); }
    .faq-a-inner p { margin: 0 0 12px; }
    .faq-a-inner p:last-child { margin-bottom: 0; }
    .faq-a-inner ul { margin: 10px 0 0 18px; }
    .faq-a-inner li { margin-bottom: 4px; }

    /* ─── FINAL CTA ─── */
    #final { position: relative; overflow: hidden; text-align: center; }
    #final::before { content: ''; position: absolute; inset: 0;
      background: radial-gradient(70% 120% at 50% 0%, rgba(255,107,0,0.22), transparent 60%); }
    #final .container { position: relative; z-index: 1; }
    #final h2 { color: #fff; }
    #final .lead { margin: 16px auto 34px; max-width: 540px; }
    #final .btn-row { justify-content: center; }
    #final .resp { margin-top: 22px; color: var(--muted-d); font-size: 13.5px; }
    #final .resp strong { color: var(--orange); }

    /* ─── LOCATION ─── */
    .loc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: stretch; }
    .map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 420px; border: 1px solid var(--line); }
    .map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
    .info-box { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 40px;
      display: flex; flex-direction: column; }
    .info-box h2 { color: #fff; font-size: 30px; margin-bottom: 4px; }
    .info-box h2 span { color: var(--orange); }
    .info-box .sub { color: var(--muted-d); font-size: 14px; margin: 8px 0 28px; }
    .info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
    .info-row .icon { width: 20px; height: 20px; color: var(--orange); margin-top: 2px; }
    .info-row p { color: #d7d5cf; font-size: 14px; }
    .info-row strong { color: #fff; }
    .hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 20px; font-size: 13.5px; margin-top: 6px; }
    .hours .d { color: var(--muted-d); }
    .hours .t { color: var(--orange); font-weight: 600; }
    .info-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 28px; }
    .info-cta .btn { justify-content: center; }

    /* ─── FOOTER ─── */
    footer { background: #0e0e0e; color: var(--muted-d); padding: 40px 0; }
    footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    footer .f-brand { display: flex; align-items: center; gap: 11px; }
    footer .f-brand .mark { width: 36px; height: 36px; border-radius: 8px; border: 2px solid var(--orange);
      color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Archivo'; font-weight: 900; font-size: 17px; }
    footer .f-brand b { color: #fff; font-family: 'Archivo'; }
    footer .f-meta { font-size: 13px; text-align: right; line-height: 1.7; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .section { padding: 72px 0; }
      #hero { padding: 92px 0 0; }
      .hero-eyebrow { font-size: 10.5px; letter-spacing: 0.1em; margin-bottom: 14px; white-space: nowrap; }
      .hero-eyebrow::before { width: 16px; }
      .hero-grid { grid-template-columns: 40% 60%; gap: 0; align-items: stretch; }
      #hero h1 { font-size: clamp(30px, 10.5vw, 50px); }
      .hero-sub { font-size: 18px; margin-top: 7px; }
      #hero .lead { font-size: 13px; margin: 11px 0 16px; }
      .btn-row .btn { padding: 11px 16px; font-size: 13px; }
      #hero .btn-row { width: 100%; }
      #hero .btn-row .btn { max-width: 100%; width: auto; white-space: normal; flex-shrink: 0; }
      #hero .btn-row .btn .arrow-circ { flex-shrink: 0; }
      .hero-inner { max-width: none; padding: 4px 8px 36px 0; }
      .hero-photo-frame { margin: 0 -20px 0 0; align-self: stretch; }
      .hero-photo-frame img { width: 100%; height: 100%; min-height: 320px; aspect-ratio: auto; border-radius: 0;
        object-fit: cover; object-position: 62% 36%;
        clip-path: url(#heroTilt); box-shadow: none; }
      .split, .matters-grid, .loc-grid { grid-template-columns: 1fr; gap: 44px; }
      #urgent .warranty-figure { order: -1; }
      .sop-steps { grid-template-columns: 1fr; gap: 14px; }
      .sop-arrow { transform: rotate(90deg); margin: 0 auto; }
      .sop-steps { max-width: 380px; margin-left: auto; margin-right: auto; }
      .benefit-row { grid-template-columns: 1fr 1fr; }
      .warranty-card { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
      .wc-text h3 { font-size: 22px; }
      .hero-cards { transform: none; margin-top: 0; }
      .hero-cards .hc-grid { grid-template-columns: 1fr 1fr; }
      #after-hero-spacer { display: none; }
      .card-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr; gap: 40px; }
      .steps::before { display: none; }
      .nav-phone small { display: none; }
    }
    @media (max-width: 560px) {
      .container { padding: 0 20px; }
      .card-grid { grid-template-columns: 1fr; }
      .cta-band { padding: 36px 28px; }
      .info-box { padding: 30px 24px; }
      footer .container { flex-direction: column; text-align: center; }
      footer .f-meta { text-align: center; }
      .brand .wordmark small { display: none; }
      .hero-cards .hc-grid { grid-template-columns: 1fr; }
      .benefit-row { grid-template-columns: 1fr; }
      .warranty-card { padding: 26px 22px; }
      .wc-text h3 { font-size: 20px; }
      .wc-stat { padding: 16px 6px; }
      .wc-num { font-size: 21px; }
      .wc-lbl { font-size: 10.5px; }
    }
    /* ─── REAL IMAGERY ─── */
    .mark-img { height: 50px; width: auto; display: block; }
    footer .f-brand .mark-img { height: 64px; }
    .hero-photo { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--radius);
      display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
    .split-photo { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; border-radius: var(--radius); display: block; }
    .warranty-figure { display: flex; flex-direction: column; align-items: center; gap: 18px; }
    .warranty-figure img { width: 100%; max-width: 420px; height: auto; display: block;
      filter: drop-shadow(0 24px 50px rgba(20,20,20,0.16)); }
    .warranty-figure figcaption { display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,107,0,0.10); color: var(--orange-ink); font-weight: 700; font-size: 15px;
      padding: 12px 22px; border-radius: 50px; text-align: center; line-height: 1.4; }
    .warranty-figure figcaption .icon { width: 20px; height: 20px; flex-shrink: 0; }
    .figure-light { background: #fff; border-radius: var(--radius); padding: 22px;
      display: flex; align-items: center; justify-content: center; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
    .figure-light img { width: 100%; height: auto; display: block; border-radius: 6px; }
    .t-card img.t-photo { width: 100%; height: 180px; object-fit: cover; display: block; }
    .sop-figure { margin: 56px auto 0; max-width: 720px; background: #fff; border-radius: var(--radius);
      padding: 30px 30px 24px; text-align: center; }
    .sop-figure img { width: 100%; max-width: 540px; margin: 0 auto; display: block; }
    .sop-photo { margin: 0 auto 8px; max-width: 1000px; }
    .sop-photo img { width: 100%; height: auto; display: block; border-radius: var(--radius);
      box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
    .sop-emph { color: var(--orange); white-space: nowrap; }
    /* SOP three-photo row with arrows */
    .sop-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 52px; }
    .sop-step { margin: 0; }
    .sop-step img { width: 100%; aspect-ratio: 581 / 887; object-fit: cover; height: auto; display: block; border-radius: var(--radius);
      box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
    .sop-arrow { width: 50px; height: 50px; border-radius: 50%; background: var(--orange); color: #fff;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .sop-arrow .icon { width: 24px; height: 24px; }
    /* Why It Matters — benefits in a row */
    .benefit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
    .benefit-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 28px 24px; }
    .benefit-card .b-ico { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,107,0,0.14);
      color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .benefit-card h3 { color: #fff; margin-bottom: 8px; font-size: 17px; }
    .benefit-card p { color: var(--muted-d); font-size: 14px; }
    /* Warranty card inside Why grid */
    .warranty-card { grid-column: 1 / -1; background: var(--ink); color: #fff; border-color: var(--ink);
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }
    .warranty-card:hover { transform: none; box-shadow: none; border-color: var(--ink); }
    .wc-text h3 { color: #fff; font-size: 26px; margin: 8px 0 10px; line-height: 1.15; }
    .wc-text p { color: var(--muted-d); font-size: 14.5px; }
    .wc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark);
      border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
    .wc-stat { background: var(--ink-2); padding: 24px 14px; text-align: center; }
    .wc-num { font-family: 'Archivo'; font-weight: 900; font-size: 30px; color: var(--orange); line-height: 1; }
    .wc-lbl { color: var(--muted-d); font-size: 12px; margin-top: 8px; }
    .sop-figure figcaption { color: var(--muted); font-size: 14px; margin-top: 16px; }
    .sop-figure figcaption strong { color: var(--ink); }
    #final .final-bg { position: absolute; inset: -12% 0; z-index: 0;
      background: url('images/photo-a.webp') center/cover; opacity: 0.14; }
    #final .final-bg::after { content: ''; position: absolute; inset: 0;
      background: linear-gradient(var(--ink), rgba(20,20,20,0.6)); }

    /* ─── MOTION ─── */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity: 0; }
      .reveal.in { animation: revealUp .72s cubic-bezier(.22,.61,.36,1) both; }
      .reveal.rv-left.in  { animation-name: revealLeft; }
      .reveal.rv-right.in { animation-name: revealRight; }
      .reveal.rv-zoom.in  { animation-name: revealZoom; }
      @keyframes revealUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
      @keyframes revealLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: none; } }
      @keyframes revealRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
      @keyframes revealZoom { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: none; } }

      #sop .steps::before { transform: scaleX(0); transform-origin: left center; transition: transform 1.1s cubic-bezier(.22,.61,.36,1) .2s; }
      #sop .steps.drawn::before { transform: scaleX(1); }

      .hero-photo, .split-photo { transition: transform .55s ease, box-shadow .55s ease; }
      .hero-photo:hover, .split-photo:hover { transform: scale(1.015); }
      .t-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
      .t-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(20,20,20,0.10); border-color: #d9d6cd; }
      .t-card img.t-photo { transition: transform .55s ease; }
      .t-card:hover img.t-photo { transform: scale(1.06); }
      .chip, .google-pill { transition: transform .18s ease, border-color .18s ease, background .18s ease; }
      .chip:hover, .google-pill:hover { transform: translateY(-2px); border-color: var(--orange); }
      .ico-tile, .b-ico, .c-ico { transition: transform .22s ease; }
      .feature:hover .ico-tile, .benefit:hover .b-ico, .cause:hover .c-ico { transform: scale(1.08) rotate(-3deg); }
      .step .num { transition: transform .25s ease; }
      .step:hover .num { transform: translateY(-4px); }
      .hero-badge { animation: floaty 4.6s ease-in-out infinite; }
      @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
      .fab-wa { animation: fabPulse 2.8s ease-in-out infinite; }
      @keyframes fabPulse {
        0%   { box-shadow: 0 10px 30px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.45); }
        70%  { box-shadow: 0 10px 30px rgba(37,211,102,0.40), 0 0 0 16px rgba(37,211,102,0); }
        100% { box-shadow: 0 10px 30px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0); }
      }
      .btn { transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .2s ease; }
      .btn-orange:hover { box-shadow: 0 8px 22px rgba(255,107,0,0.34); transform: translateY(-2px); }
      .btn-wa:hover { box-shadow: 0 8px 22px rgba(37,211,102,0.34); transform: translateY(-2px); }
    }

    /* ─── MOBILE REFINEMENTS ─── */
    @media (max-width: 760px) {
      .nav-phone { display: none; }
      .nav { padding: 12px 18px; }
      .mark-img { height: 38px; }
      .brand .wordmark { font-size: 16px; }
    }
    @media (max-width: 560px) {
      .section { padding: 58px 0; }
      .section.tight { padding: 48px 0; }
      h1 { font-size: clamp(30px, 8.4vw, 42px); }
      #hero { padding: 88px 0 0; }
      #hero .lead { font-size: 13px; }
      .btn { padding: 13px 18px; font-size: 14.5px; }
      .btn-row .btn { flex: 1 1 auto; justify-content: center; }
      .cta-band { padding: 34px 24px; }
      .cta-band h3 { font-size: 22px; }
      .t-card { min-width: 80vw; max-width: 80vw; }
      .t-toprow { flex-direction: column; align-items: flex-start; }
      .fab-wa { padding: 12px 16px; font-size: 13px; bottom: 16px; right: 16px; }
      .sop-figure { padding: 22px 18px 18px; }
      .figure-light { padding: 16px; }
      .info-box { padding: 26px 22px; }
      .eyebrow { font-size: 11px; }
      .benefit { padding: 18px 0; }
    }
    @media (max-width: 380px) {
      .container { padding: 0 16px; }
      .brand .wordmark { font-size: 15px; }
    }

    /* ─── SCROLL EFFECTS ─── */
    .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0;
      background: linear-gradient(90deg, var(--orange), #ff9540); z-index: 1100;
      transform: translateZ(0); will-change: width; }
    /* ─── HERO SCROLL FADE ─── */
    #hero .container { transition: opacity .25s linear; will-change: opacity, transform; }
    @media (prefers-reduced-motion: reduce) { #hero .container { transition: none; } }

    /* ─── SECTION SOFT FADE-IN/OUT EDGES ─── */
    .fade-edge { opacity: 0; transition: opacity .9s ease, transform .9s ease; }
    .fade-edge.vis { opacity: 1; }
    @media (prefers-reduced-motion: reduce) { .fade-edge { opacity: 1 !important; } }

    /* ─── LANGUAGE SWITCH ─── */
    .lang-switch { display: inline-flex; align-items: center; border: 1.5px solid var(--line);
      border-radius: 50px; padding: 3px; background: #fff; }
    .lang-btn { border: none; background: transparent; cursor: pointer; font-family: 'Inter', sans-serif;
      font-weight: 700; font-size: 13px; color: var(--muted); padding: 6px 13px; border-radius: 50px;
      line-height: 1; transition: background .18s ease, color .18s ease; }
    .lang-btn.is-active { background: var(--orange); color: #fff; }

    /* ─── "THE DIFFERENCE" BADGE (highlighted) ─── */
    .diff-badge { display: inline-block; font-family: 'Archivo', sans-serif; font-weight: 800;
      font-size: clamp(16px, 2.1vw, 22px); letter-spacing: 0.04em; text-transform: uppercase;
      color: #fff; margin-bottom: 18px; }
    .diff-badge .hl { color: var(--ink); background: var(--orange); padding: 2px 12px; border-radius: 7px;
      display: inline-block; box-shadow: 0 6px 18px rgba(255,107,0,0.35); }

    /* ─── SECTION 6 · WEAR-OUT NUMBERED CARDS ─── */
    .wear-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
    .wear-card { display: flex; gap: 20px; align-items: flex-start; background: var(--paper);
      border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
    .wear-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,20,20,0.07); border-color: #d9d6cd; }
    .wear-num { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: var(--ink);
      color: var(--orange); font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px;
      display: flex; align-items: center; justify-content: center; }
    .wear-body h3 { margin-bottom: 8px; }
    .wear-body p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

    /* ─── RESPONSIVE OVERRIDES (placed last so they win the cascade) ─── */
    @media (max-width: 900px) {
      .sop-steps { grid-template-columns: 1fr; gap: 16px; max-width: 360px; margin-left: auto; margin-right: auto; }
      .sop-arrow { transform: rotate(90deg); margin: 0 auto; }
      .benefit-row { grid-template-columns: 1fr 1fr; gap: 16px; }
      .warranty-card { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
      .wc-text h3 { font-size: 22px; }
      .wear-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    }
    @media (max-width: 560px) {
      .sop-steps { max-width: 320px; gap: 14px; }
      .benefit-row { grid-template-columns: 1fr; gap: 14px; }
      .benefit-card { padding: 24px 22px; }
      .warranty-card { padding: 26px 22px; }
      .wc-text h3 { font-size: 20px; }
      .wc-stats { gap: 1px; }
      .wc-stat { padding: 16px 6px; }
      .wc-num { font-size: 20px; }
      .wc-lbl { font-size: 10px; }
      .nav { padding: 10px 12px; gap: 8px; }
      .nav-right { gap: 7px; flex-shrink: 0; }
      .lang-btn { padding: 6px 9px; font-size: 12px; }
      .title-img { width: 100px; }
      .nav .btn { padding: 9px 13px; font-size: 12.5px; white-space: nowrap; }
      .nav .btn .icon { flex-shrink: 0; }
      .wear-card { padding: 24px 22px; gap: 16px; }
      .wear-num { width: 44px; height: 44px; font-size: 19px; }
    }
    @media (max-width: 374px) {
      .nav { padding: 9px 9px; gap: 5px; }
      .nav-right { gap: 5px; }
      .lang-btn { padding: 5px 8px; font-size: 11.5px; }
      .nav .btn { padding: 8px 11px; font-size: 12px; }
      .nav .btn .icon { display: none; }
      .title-img { width: 86px; }
    }
