  :root{
    --black:#050507;
    --charcoal:#0b0b0f;
    --card:#14141a;
    --card-2:#1b1b22;
    --red:#e04545;
    --red-dark:#c83232;
    --blue:#3b8ef0;
    --blue-dark:#2563c7;
    --purple:#b87bf0;
    --text:#ffffff;
    --muted:#b3bac6;
    --line:rgba(255,255,255,.08);
    --line-strong:rgba(255,255,255,.16);
    --bg:#0b0b0f;
    --white:#ffffff;
    --radius:16px;
    --shadow-sm:0 1px 2px rgba(0,0,0,.4),0 4px 12px rgba(0,0,0,.35);
    --shadow-md:0 12px 30px rgba(0,0,0,.5);
    --shadow-lg:0 24px 60px rgba(0,0,0,.6);
    --logo-gradient:linear-gradient(90deg,#5b9cf5 0%,#b87bf0 50%,#e04545 100%);
    --maxw:1140px;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth}
  body{
    font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    color:var(--text);background:var(--charcoal);line-height:1.6;
    -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  }
  h1,h2,h3,h4,.brand-name{font-family:'Sora',sans-serif;line-height:1.15;letter-spacing:-.02em;color:var(--text)}
  a{color:inherit;text-decoration:none}
  img{max-width:100%;display:block}
  ::selection{background:rgba(59,142,240,.35);color:#fff}
  :focus-visible{outline:2px solid rgba(59,142,240,.8);outline-offset:2px}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
  .eyebrow{font-family:'Sora';font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--blue)}

  /* Animated gradient text (brand signature) */
  .text-gradient,
  .hero h1 .hl,
  .page-hero h1 .hl{
    background:var(--logo-gradient) 0 0/200%;
    -webkit-background-clip:text;background-clip:text;
    color:transparent;
    animation:gradient-pan 6s infinite;
  }
  @keyframes gradient-pan{0%,100%{background-position:0%}50%{background-position:100%}}

  .btn{display:inline-flex;align-items:center;gap:.5rem;font-weight:700;font-family:'Inter';
    padding:.85rem 1.5rem;border-radius:12px;border:1px solid transparent;cursor:pointer;
    transition:transform .15s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;font-size:.98rem;white-space:nowrap}
  .btn:hover{transform:translateY(-2px)}
  .btn-primary{background:var(--red);color:#fff;box-shadow:0 10px 15px -3px rgba(224,69,69,.25),0 4px 6px -4px rgba(224,69,69,.25)}
  .btn-primary:hover{background:var(--red-dark);box-shadow:0 0 40px -10px rgba(224,69,69,.45)}
  .btn-ghost{background:rgba(255,255,255,.06);color:#fff;border-color:rgba(255,255,255,.25)}
  .btn-ghost:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.6)}
  .btn-dark{background:var(--black);color:#fff;border-color:rgba(255,255,255,.15)}
  .btn-dark:hover{background:var(--card)}
  .btn-lg{padding:1.05rem 1.9rem;font-size:1.05rem}

  /* ---------- Top bar ---------- */
  .topbar{background:var(--black);color:var(--muted);font-size:.84rem;font-weight:500;border-bottom:1px solid var(--line)}
  .topbar .wrap{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding-top:.55rem;padding-bottom:.55rem}
  .topbar a{color:#fff;font-weight:600}
  .topbar .tb-right{display:flex;gap:1.4rem;align-items:center}
  .pulse{display:inline-flex;align-items:center;gap:.45rem}
  .dot{width:8px;height:8px;border-radius:50%;background:#43d17a;box-shadow:0 0 0 0 rgba(67,209,122,.6);animation:pulse 2s infinite}
  @keyframes pulse{0%{box-shadow:0 0 0 0 rgba(67,209,122,.5)}70%{box-shadow:0 0 0 9px rgba(67,209,122,0)}100%{box-shadow:0 0 0 0 rgba(67,209,122,0)}}

  /* ---------- Nav ---------- */
  header.nav{position:sticky;top:0;z-index:50;background:rgba(11,11,15,.85);backdrop-filter:saturate(180%) blur(12px);border-bottom:1px solid var(--line)}
  .nav .wrap{display:flex;align-items:center;justify-content:space-between;height:74px}
  .brand{display:flex;align-items:center;gap:.7rem}
  .logo{width:42px;height:42px;border-radius:50%;border:1px solid var(--line-strong);display:grid;place-items:center;box-shadow:var(--shadow-sm);overflow:hidden;flex:none}
  .logo img{width:100%;height:100%;object-fit:cover;border-radius:50%}
  .brand-name{font-weight:800;font-size:1.18rem;background:var(--logo-gradient) 0 0/200%;-webkit-background-clip:text;background-clip:text;color:transparent}
  .brand-sub{font-size:.72rem;color:var(--muted);font-weight:600;letter-spacing:.02em}
  nav.links{display:flex;gap:2rem;align-items:center}
  nav.links a{font-weight:500;color:rgba(255,255,255,.85);font-size:.96rem;position:relative;padding:.2rem 0}
  nav.links a::after{content:"";position:absolute;left:0;bottom:-4px;width:0;height:2px;background:var(--red);transition:width .25s ease}
  nav.links a:hover::after,nav.links a.active::after{width:100%}
  /* dropdown */
  .has-drop{position:relative}
  .drop-toggle{display:inline-flex;align-items:center;gap:.32rem;font-weight:500;color:rgba(255,255,255,.85);font-size:.96rem;
    background:none;border:0;cursor:pointer;font-family:inherit;padding:.2rem 0;position:relative}
  .drop-toggle::after{content:"";position:absolute;left:0;bottom:-4px;width:0;height:2px;background:var(--red);transition:width .25s ease}
  .has-drop:hover .drop-toggle::after{width:100%}
  .drop-toggle .chev{width:14px;height:14px;transition:transform .25s ease}
  .has-drop:hover .drop-toggle .chev{transform:rotate(180deg)}
  .drop-menu{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);
    min-width:280px;background:var(--card);border:1px solid var(--line-strong);border-radius:14px;box-shadow:var(--shadow-md);
    padding:10px;opacity:0;visibility:hidden;transition:opacity .2s ease,transform .2s ease,visibility .2s;z-index:60}
  .drop-menu::before{content:"";position:absolute;top:-7px;left:50%;transform:translateX(-50%) rotate(45deg);
    width:13px;height:13px;background:var(--card);border-left:1px solid var(--line-strong);border-top:1px solid var(--line-strong)}
  .has-drop:hover .drop-menu,.has-drop:focus-within .drop-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
  /* hover bridge so the menu doesn't close in the gap */
  .has-drop::after{content:"";position:absolute;top:100%;left:0;right:0;height:16px}
  .drop-menu a{display:flex;align-items:flex-start;gap:.7rem;padding:.6rem .7rem;border-radius:10px;color:rgba(255,255,255,.85);
    font-weight:500;font-size:.94rem;transition:background .15s}
  .drop-menu a::after{display:none}
  .drop-menu a:hover{background:rgba(255,255,255,.06)}
  .drop-menu a .di{width:34px;height:34px;border-radius:9px;background:rgba(59,142,240,.12);display:grid;place-items:center;flex:none}
  .drop-menu a .di svg{width:18px;height:18px;color:var(--blue)}
  .drop-menu a .dt{font-weight:600;color:#fff;display:block;line-height:1.3}
  .drop-menu a .dd{font-size:.78rem;color:var(--muted);font-weight:500}
  .nav-cta{display:flex;gap:.7rem;align-items:center}
  .menu-btn{display:none;background:none;border:0;cursor:pointer;padding:8px}
  .menu-btn span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;transition:.3s}

  /* ---------- Hero ---------- */
  .hero{position:relative;background:radial-gradient(1200px 600px at 80% -10%,#14141a 0,var(--black) 55%);color:#fff;overflow:hidden}
  .hero::before{content:"";position:absolute;inset:0;background:
    radial-gradient(600px 300px at 12% 110%,rgba(224,69,69,.16),transparent 70%),
    radial-gradient(700px 340px at 90% 0%,rgba(59,142,240,.14),transparent 70%);}
  .hero .wrap{position:relative;display:grid;grid-template-columns:1.05fr .95fr;gap:48px;padding:80px 24px 90px;align-items:center}
  .hero h1{color:#fff;font-size:clamp(2.3rem,4.4vw,3.5rem);font-weight:800}
  .hero p.lead{color:var(--muted);font-size:1.18rem;margin-top:1.1rem;max-width:34ch}
  .hero-cta{display:flex;gap:.8rem;margin-top:1.9rem;flex-wrap:wrap}
  .trust-row{display:flex;gap:1.6rem;margin-top:2.2rem;flex-wrap:wrap}
  .trust-row .ti{display:flex;align-items:center;gap:.55rem;font-size:.92rem;color:var(--muted);font-weight:500}
  .trust-row svg{width:20px;height:20px;flex:none}
  .stars{color:#ffc94d;letter-spacing:1px}

  /* Quote card / form */
  .quote-card{background:var(--card);color:var(--text);border-radius:22px;box-shadow:var(--shadow-lg);padding:30px;border:1px solid var(--line-strong)}
  .quote-card h3{font-size:1.3rem}
  .quote-card .sub{color:var(--muted);font-size:.92rem;margin-top:.2rem;margin-bottom:1.1rem}
  .field{margin-bottom:.85rem}
  .field label{display:block;font-size:.82rem;font-weight:600;color:rgba(255,255,255,.85);margin-bottom:.32rem}
  .field input,.field select,.field textarea{width:100%;padding:.78rem .9rem;border:1px solid var(--line);border-radius:11px;
    font-family:inherit;font-size:.96rem;color:#fff;background:var(--charcoal);transition:border .15s,box-shadow .15s}
  .field input::placeholder,.field textarea::placeholder{color:rgba(179,186,198,.6)}
  .field select option{background:var(--card);color:#fff}
  .field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(59,142,240,.25)}
  .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
  .form-note{font-size:.78rem;color:var(--muted);margin-top:.6rem;text-align:center}
  .form-success{display:none;text-align:center;padding:1rem 0}
  .form-success svg{width:54px;height:54px;margin:0 auto .6rem}

  /* ---------- Marquee strip ---------- */
  .strip{background:var(--black);color:var(--muted);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
  .strip .wrap{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;padding:18px 24px;font-size:.92rem;font-weight:600}
  .strip .si{display:flex;align-items:center;gap:.5rem}
  .strip svg{width:18px;height:18px;color:var(--red)}

  /* ---------- Photo strip ---------- */
  .photos{padding:56px 0 0}
  .photo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
  .photo-grid img{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius);border:1px solid var(--line-strong);display:block}
  @media(max-width:980px){.photo-grid{grid-template-columns:1fr 1fr}}

  /* ---------- Prose photo (service pages) ---------- */
  .prose-photo{margin:1.6rem 0}
  .prose-photo img{width:100%;height:auto;border-radius:var(--radius);border:1px solid var(--line-strong);display:block}

  /* ---------- Section base ---------- */
  section.block{padding:84px 0}
  .sec-head{text-align:center;max-width:680px;margin:0 auto 52px}
  .sec-head h2{font-size:clamp(1.9rem,3.2vw,2.6rem);font-weight:800;margin-top:.5rem}
  .sec-head p{color:var(--muted);font-size:1.08rem;margin-top:.8rem}

  /* ---------- Services ---------- */
  .svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  .svc{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:30px;transition:transform .2s,box-shadow .2s,border-color .2s;position:relative;overflow:hidden;scroll-margin-top:100px}
  .svc::after{content:"";position:absolute;left:0;top:0;height:3px;width:0;background:var(--logo-gradient);transition:width .3s}
  .svc:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--line-strong)}
  .svc:hover::after{width:100%}
  .svc.flash{animation:cardFlash 1.6s ease}
  .svc.flash::after{width:100%}
  @keyframes cardFlash{0%{box-shadow:0 0 0 3px rgba(224,69,69,.6),var(--shadow-md)}100%{box-shadow:0 0 0 0 rgba(224,69,69,0),var(--shadow-sm)}}
  .svc-ic{width:54px;height:54px;border-radius:13px;background:rgba(59,142,240,.12);display:grid;place-items:center;margin-bottom:1.1rem}
  .svc-ic svg{width:28px;height:28px;color:var(--blue)}
  .svc h3{font-size:1.18rem}
  .svc p{color:var(--muted);margin-top:.5rem;font-size:.96rem}
  .svc ul{list-style:none;margin-top:.9rem;display:flex;flex-wrap:wrap;gap:.4rem}
  .svc li{font-size:.78rem;font-weight:600;color:rgba(255,255,255,.85);background:rgba(255,255,255,.06);padding:.28rem .6rem;border-radius:999px}

  /* ---------- Why / features ---------- */
  .why{background:var(--black)}
  .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  .feat{background:var(--card);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow-sm);border:1px solid var(--line)}
  .feat-ic{width:48px;height:48px;border-radius:12px;background:linear-gradient(135deg,var(--blue),var(--blue-dark));display:grid;place-items:center;margin-bottom:1rem}
  .feat-ic svg{width:24px;height:24px;color:#fff}
  .feat h3{font-size:1.08rem}
  .feat p{color:var(--muted);font-size:.94rem;margin-top:.4rem}

  /* ---------- Stats band ---------- */
  .stats{background:linear-gradient(135deg,var(--black),var(--card));color:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
  .stats .wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:56px 24px;text-align:center}
  .stat .n{font-family:'Sora';font-weight:800;font-size:2.5rem;color:#fff}
  .stat .n span{background:var(--logo-gradient) 0 0/200%;-webkit-background-clip:text;background-clip:text;color:transparent}
  .stat .l{color:var(--muted);font-size:.95rem;margin-top:.2rem;font-weight:500}

  /* ---------- Process ---------- */
  .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step}
  .step{position:relative;padding-top:14px}
  .step .num{width:46px;height:46px;border-radius:50%;background:var(--card);border:2px solid var(--red);color:var(--red);
    font-family:'Sora';font-weight:800;display:grid;place-items:center;font-size:1.1rem;margin-bottom:1rem}
  .step h3{font-size:1.08rem}
  .step p{color:var(--muted);font-size:.94rem;margin-top:.4rem}
  .step:not(:last-child)::after{content:"";position:absolute;top:36px;left:58px;right:-12px;height:2px;
    background:repeating-linear-gradient(90deg,var(--line-strong) 0 8px,transparent 8px 16px)}

  /* ---------- Reviews ---------- */
  .rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  .rev{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
  .rev .stars{font-size:1.05rem;margin-bottom:.8rem}
  .rev p{color:var(--text);font-size:1rem;flex:1}
  .rev .who{display:flex;align-items:center;gap:.7rem;margin-top:1.2rem;padding-top:1rem;border-top:1px solid var(--line)}
  .avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:700;font-family:'Sora';font-size:1rem}
  .who .nm{font-weight:700;color:#fff;font-size:.95rem}
  .who .lo{font-size:.82rem;color:var(--muted)}

  /* ---------- Google review CTA card ---------- */
  .google-review-wrap{max-width:560px;margin:0 auto}
  .google-review-card{background:var(--card-2);border:1px solid var(--line-strong);border-radius:var(--radius);padding:36px 32px;text-align:center;box-shadow:var(--shadow-md)}
  .google-review-card .grc-title{font-family:'Sora',sans-serif;font-size:clamp(1.35rem,2.4vw,1.75rem);font-weight:700;color:#fff;margin:0}
  .google-review-card .grc-stars{margin-top:.85rem;font-size:1.25rem;letter-spacing:.08em;color:#ffc94d}
  .google-review-card .grc-btn{margin-top:1.5rem}
  .google-review-card .grc-embed{margin-top:1.5rem;overflow:hidden;border-radius:12px;background:#fff}
  .google-review-card .grc-embed[hidden],
  .google-review-card .grc-btn[hidden]{display:none !important}

  /* ---------- CTA band ---------- */
  .cta{background:linear-gradient(135deg,var(--blue-dark),var(--red));color:#fff;text-align:center}
  .cta .wrap{padding:70px 24px}
  .cta h2{color:#fff;font-size:clamp(1.9rem,3.2vw,2.6rem)}
  .cta p{color:#fff;opacity:.95;font-size:1.12rem;margin-top:.8rem;max-width:46ch;margin-left:auto;margin-right:auto}
  .cta .btns{display:flex;gap:.9rem;justify-content:center;margin-top:1.9rem;flex-wrap:wrap}
  .cta .btn-dark{box-shadow:0 10px 24px rgba(0,0,0,.35)}

  /* ---------- Footer ---------- */
  footer{background:var(--black);color:var(--muted);padding:64px 0 28px;font-size:.94rem;border-top:1px solid var(--line)}
  .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr 1.3fr;gap:32px}
  .foot-list.foot-areas{display:grid;grid-template-columns:1fr 1fr;column-gap:12px;gap:.3rem 12px;font-size:.86rem}
  .foot-list.foot-areas li{white-space:nowrap}
  footer h4{color:#fff;font-size:1rem;margin-bottom:1rem;font-family:'Sora'}
  footer .brand-sub{color:var(--muted)}
  footer a{color:var(--muted);transition:color .15s}
  footer a:hover{color:var(--red)}
  .foot-list{list-style:none;display:flex;flex-direction:column;gap:.55rem}
  .foot-contact li{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.7rem}
  .foot-contact svg{width:18px;height:18px;color:var(--red);flex:none;margin-top:3px}
  .foot-social{display:flex;gap:.7rem;margin-top:1.15rem}
  .social-link{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid var(--line);color:#fff;transition:background .15s,border-color .15s,color .15s}
  .social-link:hover{background:rgba(224,69,69,.18);border-color:rgba(224,69,69,.45);color:var(--red)}
  .social-link svg{width:20px;height:20px}
  .foot-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:44px;padding-top:24px;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.85rem;color:var(--muted)}
  .foot-bottom a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
  .foot-bottom a:hover{color:#fff}

  /* ---------- Cookie consent ---------- */
  .cookie-banner{position:fixed;left:16px;bottom:16px;z-index:90;max-width:340px;padding:16px 18px;border-radius:14px;background:rgba(18,18,24,.96);border:1px solid var(--line-strong);color:var(--muted);font-size:.88rem;line-height:1.45}
  .cookie-banner[hidden]{display:none!important}
  .cookie-banner p{margin:0 0 12px}
  .cookie-banner a{color:#fff;text-decoration:underline;text-underline-offset:2px}
  .cookie-actions{display:flex;gap:8px}
  .cookie-actions .btn{flex:1;justify-content:center;padding:.55rem .8rem;font-size:.82rem}
  @media(max-width:720px){
    .cookie-banner{left:12px;right:12px;bottom:78px;max-width:none}
  }

  /* ---------- Legal pages ---------- */
  .legal-prose{max-width:760px;margin:0 auto}
  .legal-prose h2{font-family:Sora,sans-serif;font-size:1.15rem;margin:1.8rem 0 .7rem;color:#fff}
  .legal-prose p,.legal-prose li{color:var(--muted);line-height:1.65;margin:0 0 .85rem}
  .legal-prose ul{padding-left:1.2rem;margin:0 0 1rem}
  .legal-prose a{color:#fff;text-decoration:underline;text-underline-offset:2px}

  /* ---------- 404 ---------- */
  .notfound{min-height:58vh;display:flex;align-items:center;text-align:center;padding:72px 24px}
  .notfound .wrap{max-width:640px;margin:0 auto}
  .notfound .code{font-family:Sora,sans-serif;font-size:clamp(4rem,12vw,6.5rem);font-weight:800;line-height:1;color:var(--red);margin:0 0 .4rem}
  .notfound h1{margin:0 0 .8rem}
  .notfound p{color:var(--muted);margin:0 0 1.6rem}

  /* ---------- Sticky mobile call ---------- */
  .mobile-call{display:none;position:fixed;bottom:0;left:0;right:0;z-index:60;background:var(--charcoal);border-top:1px solid var(--line-strong);
    padding:10px 14px;gap:10px;box-shadow:0 -6px 20px rgba(0,0,0,.5)}
  .mobile-call .btn{flex:1;justify-content:center}

  /* ---------- Reveal animation ---------- */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
  .reveal.in{opacity:1;transform:none}

  /* ---------- Responsive ---------- */
  @media(max-width:980px){
    .hero .wrap{grid-template-columns:1fr;gap:36px;padding:54px 24px 64px}
    .hero p.lead{max-width:none}
    .svc-grid,.why-grid,.rev-grid{grid-template-columns:1fr 1fr}
    .steps{grid-template-columns:1fr 1fr}
    .step::after{display:none}
    .foot-grid{grid-template-columns:1fr 1fr}
    .stats .wrap{grid-template-columns:1fr 1fr;gap:32px}
  }
  @media(max-width:720px){
    nav.links,.nav-cta .btn-primary,.topbar .tb-left{display:none}
    .menu-btn{display:block}
    nav.links.open{display:flex;flex-direction:column;align-items:stretch;position:absolute;top:74px;left:0;right:0;background:var(--charcoal);
      padding:16px 18px;gap:.4rem;border-bottom:1px solid var(--line-strong);box-shadow:var(--shadow-md);max-height:calc(100vh - 74px);overflow-y:auto}
    /* dropdowns become inline accordions on mobile */
    .has-drop{width:100%}
    .drop-toggle{width:100%;justify-content:space-between;padding:.7rem .2rem;font-size:1.02rem;font-weight:600;color:#fff}
    .drop-toggle::after{display:none}
    .has-drop::after{display:none}
    .drop-menu{position:static;transform:none;opacity:1;visibility:visible;min-width:0;box-shadow:none;border:0;background:transparent;
      padding:0 0 .5rem .2rem;display:none}
    .drop-menu::before{display:none}
    .has-drop.open-m .drop-menu{display:block}
    .has-drop.open-m .drop-toggle .chev{transform:rotate(180deg)}
    .drop-menu a{padding:.5rem .4rem}
    .drop-menu a .dd{display:none}
    nav.links.open > a{padding:.7rem .2rem;font-weight:600;color:#fff;border-top:1px solid var(--line)}
    .svc-grid,.why-grid,.rev-grid,.steps,.foot-grid,.stats .wrap{grid-template-columns:1fr}
    section.block{padding:60px 0}
    .mobile-call{display:flex}
    body{padding-bottom:64px}
    .grid-2{grid-template-columns:1fr}
  }

  /* ===== Service page styles ===== */
  .page-hero{position:relative;background:radial-gradient(1000px 500px at 85% -20%,#14141a 0,var(--black) 60%);color:#fff;overflow:hidden}
  .page-hero::before{content:"";position:absolute;inset:0;background:
    radial-gradient(500px 260px at 8% 120%,rgba(224,69,69,.14),transparent 70%),
    radial-gradient(600px 300px at 95% -10%,rgba(59,142,240,.12),transparent 70%)}
  .page-hero .wrap{position:relative;padding:54px 24px 60px;max-width:var(--maxw)}
  .crumbs{display:flex;gap:.5rem;align-items:center;font-size:.86rem;color:var(--muted);font-weight:500;margin-bottom:1rem;flex-wrap:wrap}
  .crumbs a{color:rgba(255,255,255,.75)}.crumbs a:hover{color:#fff}
  .crumbs span{color:rgba(179,186,198,.7)}
  .crumbs .sep{opacity:.5}
  .page-hero h1{color:#fff;font-size:clamp(2rem,4vw,2.9rem);font-weight:800;max-width:18ch}
  .page-hero p.lead{color:var(--muted);font-size:1.12rem;margin-top:.9rem;max-width:54ch}
  .page-hero .hero-cta{display:flex;gap:.75rem;margin-top:1.6rem;flex-wrap:wrap}
  .page-hero .badge-row{display:flex;gap:1.3rem;margin-top:1.7rem;flex-wrap:wrap}
  .page-hero .badge-row .ti{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:var(--muted);font-weight:500}
  .page-hero .badge-row svg{width:18px;height:18px;flex:none}

  .svc-body{padding:72px 0}
  .svc-layout{display:grid;grid-template-columns:1fr 360px;gap:48px;align-items:start}
  .prose h2{font-size:1.7rem;font-weight:800;margin-top:2.2rem;margin-bottom:.7rem}
  .prose h2:first-child{margin-top:0}
  .prose h3{font-size:1.18rem;margin-top:1.5rem;margin-bottom:.4rem}
  .prose p{color:var(--muted);margin-bottom:1rem;font-size:1.02rem}
  .prose ul.checks{list-style:none;display:grid;gap:.7rem;margin:1rem 0 1.4rem}
  .prose ul.checks li{display:flex;gap:.7rem;align-items:flex-start;color:var(--text);font-size:1rem}
  .prose ul.checks li svg{width:22px;height:22px;color:#43d17a;flex:none;margin-top:2px}
  .prose .callout{background:var(--card);border:1px solid var(--line);border-left:4px solid var(--red);border-radius:12px;padding:18px 20px;margin:1.4rem 0}
  .prose .callout strong{color:#fff}

  .svc-side{position:sticky;top:96px;display:flex;flex-direction:column;gap:20px}
  .side-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:24px}
  .side-card.accent{background:linear-gradient(135deg,var(--blue),var(--blue-dark));color:#fff;border:0}
  .side-card.accent h3{color:#fff}.side-card.accent p{color:rgba(255,255,255,.85)}
  .side-card h3{font-size:1.15rem;margin-bottom:.3rem}
  .side-card p{color:var(--muted);font-size:.94rem;margin-bottom:1rem}
  .side-card .btn{width:100%;justify-content:center}
  .side-phone{font-family:'Sora';font-weight:800;font-size:1.5rem;color:#fff;display:block;margin:.2rem 0 1rem}
  .side-list{list-style:none;display:flex;flex-direction:column;gap:.2rem}
  .side-list a{display:flex;align-items:center;justify-content:space-between;padding:.6rem .2rem;border-bottom:1px solid var(--line);
    color:rgba(255,255,255,.85);font-weight:500;font-size:.95rem;transition:color .15s,padding .15s}
  .side-list a:last-child{border-bottom:0}
  .side-list a:hover{color:var(--red);padding-left:.5rem}
  .side-list a.cur{color:var(--red);font-weight:700}
  .side-list a svg{width:16px;height:16px;opacity:.5}

  .related{background:var(--black)}
  @media(max-width:900px){
    .svc-layout{grid-template-columns:1fr;gap:32px}
    .svc-side{position:static}
  }

  /* ---------- Reduced motion ---------- */
  @media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .text-gradient,.hero h1 .hl,.page-hero h1 .hl,.brand-name,.stat .n span{animation:none}
    .reveal{opacity:1;transform:none;transition:none}
  }

  /* ===== peaks-fable additions (Build Moore template sections) ===== */

  /* ---------- About / why split (photo + bullets) ---------- */
  .about-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
  .about-copy h2{font-size:clamp(1.9rem,3.2vw,2.6rem);font-weight:800;margin-top:.5rem}
  .about-copy>p{color:var(--muted);font-size:1.05rem;margin-top:1rem}
  ul.checks{list-style:none;display:grid;gap:.7rem;margin:1.4rem 0 1.8rem}
  ul.checks li{display:flex;gap:.7rem;align-items:flex-start;color:var(--text);font-size:1rem}
  ul.checks li svg{width:22px;height:22px;color:#43d17a;flex:none;margin-top:2px}
  .about-photo{position:relative}
  .about-photo img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;border-radius:22px;border:1px solid var(--line-strong);box-shadow:var(--shadow-lg)}
  .about-photo .float-card{position:absolute;left:-22px;bottom:26px;background:var(--card);border:1px solid var(--line-strong);
    border-radius:14px;box-shadow:var(--shadow-md);padding:14px 18px;display:flex;align-items:center;gap:.7rem}
  .about-photo .float-card svg{width:26px;height:26px;color:var(--blue);flex:none}
  .about-photo .float-card .t{font-weight:700;color:#fff;font-size:.95rem;line-height:1.25}
  .about-photo .float-card .s{font-size:.78rem;color:var(--muted);font-weight:500}

  /* ---------- Image service cards ---------- */
  .svc-img{padding:0;display:flex;flex-direction:column}
  .svc-img .thumb{aspect-ratio:16/10;overflow:hidden}
  .svc-img .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
  .svc-img:hover .thumb img{transform:scale(1.05)}
  .svc-img .body{padding:24px 26px 26px;display:flex;flex-direction:column;flex:1}
  .svc-img .body p{flex:1}
  .svc-link{display:inline-flex;align-items:center;gap:.4rem;color:var(--blue);font-weight:700;font-size:.94rem;margin-top:1rem;transition:gap .2s}
  .svc-link:hover{gap:.7rem;color:#fff}
  .svc-link svg{width:16px;height:16px}

  /* ---------- FAQ accordion ---------- */
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
  .faq{background:var(--card);border:1px solid var(--line);border-radius:14px;overflow:hidden;transition:border-color .2s}
  .faq[open]{border-color:var(--line-strong)}
  .faq summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;
    padding:18px 22px;font-family:'Sora';font-weight:700;font-size:1.02rem;color:#fff}
  .faq summary::-webkit-details-marker{display:none}
  .faq summary .chev{width:20px;height:20px;flex:none;color:var(--blue);transition:transform .25s ease}
  .faq[open] summary .chev{transform:rotate(180deg)}
  .faq .a{padding:0 22px 20px;color:var(--muted);font-size:.98rem}

  /* ---------- Service area + map ---------- */
  .area-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:center}
  .area-copy h2{font-size:clamp(1.9rem,3.2vw,2.6rem);font-weight:800;margin-top:.5rem}
  .area-copy>p{color:var(--muted);font-size:1.05rem;margin-top:1rem;margin-bottom:1.4rem}
  .city-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:.6rem 1rem;margin-bottom:1.8rem}
  .city-list li{display:flex;gap:.55rem;align-items:center;color:rgba(255,255,255,.88);font-weight:500;font-size:.98rem}
  .city-list svg{width:17px;height:17px;color:var(--red);flex:none}
  .map-shell{border-radius:22px;overflow:hidden;border:1px solid var(--line-strong);box-shadow:var(--shadow-lg);background:var(--card)}
  .map-shell iframe{display:block;width:100%;height:420px;border:0;filter:grayscale(.2) contrast(1.05)}

  @media(max-width:980px){
    .about-grid,.area-grid{grid-template-columns:1fr;gap:40px}
    .about-photo .float-card{left:12px}
    .map-shell iframe{height:340px}
  }
  @media(max-width:720px){
    .city-list{grid-template-columns:1fr 1fr}
  }

  /* Mobile nav overflow fix: brand + phone btn + hamburger exceed 375px.
     The sticky mobile-call bar already carries both CTAs. */
  @media(max-width:720px){
    .nav-cta .btn{display:none}
  }

  /* ---------- Scroll-to-top button ---------- */
  .to-top{position:fixed;right:24px;bottom:24px;z-index:55;width:48px;height:48px;border-radius:14px;
    background:var(--card);border:1px solid var(--line-strong);color:#fff;cursor:pointer;
    display:grid;place-items:center;box-shadow:var(--shadow-md);
    opacity:0;visibility:hidden;transform:translateY(10px);
    transition:opacity .25s ease,transform .25s ease,visibility .25s,background .2s,border-color .2s}
  .to-top.show{opacity:1;visibility:visible;transform:none}
  .to-top:hover{background:var(--red);border-color:var(--red)}
  .to-top svg{width:22px;height:22px}
  @media(max-width:720px){
    .to-top{bottom:78px;right:14px} /* clear the sticky mobile call bar */
  }
  @media(prefers-reduced-motion:reduce){
    .to-top{transition:none}
  }

  /* ===== Mobile polish pass ===== */
  @media(max-width:720px){
    .wrap{padding:0 20px}

    /* Hero: tighter, form reachable sooner; sticky call bar covers the phone CTA */
    .hero .wrap{padding:40px 20px 52px;gap:28px}
    .hero h1{font-size:2rem}
    .hero p.lead{font-size:1.04rem;margin-top:.85rem}
    .hero-cta{margin-top:1.4rem}
    .hero-cta .btn{width:100%;justify-content:center}
    .hero-cta .btn-ghost{display:none}
    .trust-row{gap:.8rem 1.3rem;margin-top:1.5rem}
    .quote-card{padding:22px 18px}

    /* Type scale + rhythm */
    section.block{padding:52px 0}
    .sec-head{margin-bottom:34px}
    .sec-head h2,.about-copy h2,.area-copy h2{font-size:1.7rem}
    .sec-head p{font-size:1rem}

    /* Process steps: number beside title, copy indented under it */
    .steps{gap:20px}
    .step{display:grid;grid-template-columns:46px 1fr;column-gap:14px;align-items:center;padding-top:0}
    .step .num{margin-bottom:0}
    .step p{grid-column:2;margin-top:.25rem}

    /* Cards & media */
    .svc-img .body{padding:20px 20px 22px}
    .about-photo img{aspect-ratio:4/3}
    .map-shell iframe{height:280px}

    /* CTA band */
    .cta .wrap{padding:54px 20px}
    .cta .btns .btn{width:100%;justify-content:center}

    /* Footer: brand/contact/areas full-width, link columns side by side */
    .foot-grid{grid-template-columns:1fr 1fr;gap:28px 20px}
    .foot-grid>div:nth-child(1),
    .foot-grid>div:nth-child(4),
    .foot-grid>div:nth-child(5){grid-column:1/-1}
    .foot-bottom{flex-direction:column;gap:.4rem;text-align:center}

    /* Service pages */
    .page-hero .wrap{padding:36px 20px 46px}
    .page-hero h1{font-size:1.8rem}
    .page-hero .hero-cta .btn{width:100%}
    .page-hero .badge-row{gap:.8rem 1.2rem;margin-top:1.4rem}
    .svc-body{padding:52px 0}
    .prose h2{font-size:1.45rem}
    .side-card{padding:20px}
  }

  /* Process steps: icon badges instead of numbers */
  .step .num{width:48px;height:48px;border-radius:13px;border:0;
    background:linear-gradient(135deg,var(--blue),var(--blue-dark));color:#fff}
  .step .num svg{width:24px;height:24px}
  .step:not(:last-child)::after{top:38px;left:62px}
  @media(max-width:720px){
    .step{grid-template-columns:48px 1fr}
  }

  /* Callout restyle: soft card with icon chip (replaces red-bar box) */
  .prose .callout{display:flex;gap:14px;align-items:flex-start;background:var(--card-2);
    border:1px solid var(--line-strong);border-left:1px solid var(--line-strong);border-radius:14px;padding:20px}
  .prose .callout .co-ic{width:38px;height:38px;border-radius:10px;flex:none;
    background:rgba(59,142,240,.14);display:grid;place-items:center}
  .prose .callout .co-ic svg{width:20px;height:20px;color:var(--blue)}
  .prose .callout p{margin:0;color:var(--muted)}

  /* Reviews page: rating summary strip */
  .rating-strip{display:flex;gap:1rem;align-items:center;justify-content:center;flex-wrap:wrap;
    margin:0 auto 44px;padding:16px 26px;max-width:560px;background:var(--card);
    border:1px solid var(--line-strong);border-radius:16px}
  .rating-strip .big{font-family:'Sora';font-weight:800;font-size:2rem;color:#fff}
  .rating-strip .stars{font-size:1.2rem}
  .rating-strip .sub{color:var(--muted);font-size:.95rem}

  /* ===== Mobile fixes: menu accordion + deferred call bar ===== */
  @media(max-width:720px){
    /* Desktop hover/focus rule applies translateX(-50%) meant for the floating
       dropdown; on the static mobile accordion it shoves items off-screen. */
    .has-drop:hover .drop-menu,
    .has-drop:focus-within .drop-menu{transform:none}

    /* Call bar stays hidden until the visitor scrolls past the hero */
    .mobile-call{transform:translateY(110%);transition:transform .3s ease}
    .mobile-call.show{transform:none}
  }
  @media(prefers-reduced-motion:reduce){
    .mobile-call{transition:none}
  }

  /* ===== Service page checklist redesign ===== */
  .sym-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:1rem 0 1.6rem}
  .sym{display:flex;gap:12px;align-items:flex-start;background:var(--card);border:1px solid var(--line);
    border-radius:12px;padding:14px 16px;transition:border-color .2s,transform .2s}
  .sym:hover{border-color:var(--line-strong);transform:translateY(-2px)}
  .sym .ic{width:34px;height:34px;border-radius:9px;background:rgba(224,69,69,.12);display:grid;place-items:center;flex:none}
  .sym .ic svg{width:18px;height:18px;color:var(--red)}
  .sym span{color:var(--text);font-size:.95rem;line-height:1.45;align-self:center}

  .inc-panel{background:var(--card);border:1px solid var(--line);border-radius:16px;padding:24px;
    display:grid;grid-template-columns:1fr 1fr;gap:16px 22px;margin:1rem 0 1.6rem}
  .inc{display:flex;gap:12px;align-items:flex-start}
  .inc .ic{width:30px;height:30px;border-radius:8px;background:rgba(59,142,240,.14);display:grid;place-items:center;flex:none}
  .inc .ic svg{width:16px;height:16px;color:var(--blue)}
  .inc span{color:var(--text);font-size:.95rem;line-height:1.45}

  @media(max-width:720px){
    .sym-grid,.inc-panel{grid-template-columns:1fr}
    .inc-panel{padding:18px}
  }

  /* Services listing page + in-prose why/steps layout */
  .svc-grid.two{grid-template-columns:1fr 1fr}
  @media(max-width:720px){.svc-grid.two{grid-template-columns:1fr}}
  .prose .why-grid{grid-template-columns:1fr 1fr;margin:1rem 0 1.6rem}
  .prose .steps{grid-template-columns:1fr 1fr;margin:1rem 0 1.6rem;gap:20px}
  .prose .step::after{display:none}
  @media(max-width:720px){.prose .why-grid,.prose .steps{grid-template-columns:1fr}}

  /* Rating stars: hero yellow everywhere */
  .about-photo .float-card svg{color:#ffc94d}

  /* ===== Editorial service-page body (replaces icon-chip components) ===== */
  .rows{display:grid;grid-template-columns:1fr 1fr;gap:0 44px;margin:1rem 0 1.9rem}
  .rows .row{padding:13px 2px;border-bottom:1px solid var(--line);color:var(--text);font-size:.97rem;line-height:1.5}

  .pillars{display:grid;grid-template-columns:1fr 1fr;gap:30px 44px;margin:1.2rem 0 1.9rem}
  .pillar{border-top:2px solid var(--line-strong);padding-top:14px}
  .pillar h3{font-size:1.05rem}
  .pillar p{color:var(--muted);font-size:.94rem;margin-top:.4rem}

  .timeline{position:relative;margin:1.2rem 0 1.9rem;padding-left:28px}
  .timeline::before{content:"";position:absolute;left:5px;top:8px;bottom:8px;width:2px;background:var(--line-strong)}
  .tl-item{position:relative;padding-bottom:24px}
  .tl-item:last-child{padding-bottom:0}
  .tl-item::before{content:"";position:absolute;left:-28px;top:5px;width:12px;height:12px;border-radius:50%;
    background:var(--red);box-shadow:0 0 0 3px var(--charcoal)}
  .tl-item h3{font-size:1.05rem}
  .tl-item p{color:var(--muted);font-size:.95rem;margin-top:.3rem}

  @media(max-width:720px){
    .rows,.pillars{grid-template-columns:1fr}
    .rows{gap:0}
  }

  /* Mobile: hero fills the first screen; estimate form starts below the fold */
  @media(max-width:720px){
    .hero .wrap{padding:56px 20px 64px;gap:48px}
    .hero .wrap > div:first-child{
      min-height:calc(100dvh - 190px); /* topbar + nav + hero padding */
      display:flex;flex-direction:column;justify-content:center;
    }
  }
