:root{
  --ink:#12161A; --ink-2:#1A2026; --ink-line:#262E35;
  --slate:#44515A; --muted:#79868E;
  --line:#E5E8E2; --mist:#EEF1EC; --paper:#FCFCFA;
  --green:#1C9A5C; --green-d:#0E6B3F; --green-tint:#E6F3EB; --green-bright:#3ed98a;
  --shadow:0 1px 2px rgba(18,22,26,.04), 0 8px 28px -12px rgba(18,22,26,.18);
  --shadow-lg:0 2px 4px rgba(18,22,26,.05), 0 24px 60px -20px rgba(18,22,26,.30);
  --radius:14px; --ease:cubic-bezier(.22,.61,.36,1);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,sans-serif;background:var(--paper);color:var(--ink);overflow-x:hidden;line-height:1.5;-webkit-font-smoothing:antialiased}
:focus-visible{outline:2.5px solid var(--green);outline-offset:3px;border-radius:3px}
.wrap{max-width:1140px;margin:0 auto;padding:0 24px}
.eyebrow{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:2.5px;text-transform:uppercase;color:var(--muted)}

/* NAV */
nav{background:rgba(18,22,26,.9);backdrop-filter:saturate(140%) blur(10px);position:sticky;top:0;z-index:100;border-bottom:1px solid var(--ink-line)}
.nav-in{display:flex;align-items:center;justify-content:space-between;height:64px;max-width:1140px;margin:0 auto;padding:0 24px}
.nav-logo{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:23px;letter-spacing:-.02em;color:#fff;display:flex;align-items:center;gap:9px;text-decoration:none}
.nav-logo .mark{width:11px;height:11px;border-radius:3px;background:var(--green);box-shadow:0 0 0 4px rgba(28,154,92,.18)}
.nav-links{display:flex;gap:28px}
.nav-links a{font-size:13.5px;color:#9FAAB1;text-decoration:none;font-weight:500;cursor:pointer;transition:color .18s}
.nav-links a:hover{color:#fff}
.nav-links a.active{color:#fff}
.nav-cta{background:var(--green);color:#fff;font-size:13.5px;font-weight:600;padding:9px 18px;border-radius:9px;text-decoration:none;cursor:pointer;transition:background .18s,transform .18s;border:none;display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.nav-cta svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-cta:hover{background:#21b16a;transform:translateY(-1px)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{display:block;width:22px;height:2px;background:#fff;margin:4px 0;border-radius:2px}

/* HERO (home only) */
.hero{background:var(--ink);color:#fff;position:relative;overflow:hidden;padding:clamp(60px,10vw,112px) 0 clamp(52px,8vw,90px)}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(900px 500px at 78% -10%,rgba(28,154,92,.16),transparent 60%);pointer-events:none}
.hero .wrap{position:relative}
.hero-tag{display:inline-flex;align-items:center;gap:9px;border:1px solid var(--ink-line);background:rgba(255,255,255,.02);border-radius:100px;padding:7px 14px 7px 11px;margin-bottom:24px}
.hero-tag .dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 0 3px rgba(28,154,92,.25)}
.hero-tag span{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:#B9C3C9}
.hero h1{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.025em;line-height:.98;font-size:clamp(38px,7.2vw,80px);max-width:14ch}
.hero h1 .accent{color:var(--green)}
.hero-sub{font-size:clamp(15px,1.7vw,18px);color:#A9B4BA;line-height:1.65;margin-top:22px;max-width:46ch}
.hero-btns{display:flex;gap:12px;margin-top:32px;flex-wrap:wrap}
.btn{font-size:14.5px;font-weight:600;padding:14px 24px;border-radius:11px;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:9px;transition:transform .18s var(--ease),background .18s,border-color .18s;border:1px solid transparent}
.btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.btn-primary{background:var(--green);color:#fff}
.btn-primary:hover{background:#21b16a;transform:translateY(-2px)}
.btn-ghost{background:transparent;color:#fff;border-color:var(--ink-line)}
.btn-ghost:hover{border-color:#3d4951;background:rgba(255,255,255,.03)}
.hero-callnote{font-size:12.5px;color:#5c6970;margin-top:14px;display:flex;align-items:center;gap:7px}
.hero-callnote b{color:#B9C3C9;font-weight:600}
.hero-services{display:flex;gap:10px;margin-top:42px;flex-wrap:wrap}
.hs-chip{display:flex;align-items:center;gap:10px;border:1px solid var(--ink-line);border-radius:11px;padding:12px 16px;background:rgba(255,255,255,.015)}
.hs-chip svg{width:18px;height:18px;stroke:var(--green);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.hs-chip b{font-size:13.5px;font-weight:600;color:#E8EDEA}

/* PAGE HEADER (interior pages) */
.page-head{background:var(--ink);color:#fff;position:relative;overflow:hidden;padding:clamp(48px,7vw,84px) 0 clamp(40px,6vw,68px)}
.page-head::before{content:"";position:absolute;inset:0;background:radial-gradient(820px 460px at 82% -20%,rgba(28,154,92,.15),transparent 62%);pointer-events:none}
.page-head .wrap{position:relative}
.page-head .crumb{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:2px;text-transform:uppercase;color:#5c6970;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.page-head .crumb a{color:#9FAAB1;text-decoration:none;transition:color .18s}
.page-head .crumb a:hover{color:#fff}
.page-head .crumb .sep{color:#3a464e}
.page-head h1{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.025em;line-height:1;font-size:clamp(34px,5.6vw,62px);max-width:16ch}
.page-head h1 .accent{color:var(--green)}
.page-head p{font-size:clamp(15px,1.6vw,17px);color:#A9B4BA;line-height:1.7;margin-top:18px;max-width:50ch}
.page-head .ph-btns{display:flex;gap:12px;margin-top:28px;flex-wrap:wrap}

/* TRUST STRIP */
.strip{background:var(--ink-2);border-top:1px solid var(--ink-line);border-bottom:1px solid var(--ink-line)}
.strip-in{display:flex;flex-wrap:wrap;gap:14px 36px;align-items:center;justify-content:center;padding:18px 24px}
.strip-item{display:flex;align-items:center;gap:9px;font-size:13px;color:#9FAAB1}
.strip-item svg{width:16px;height:16px;stroke:var(--green);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.strip-item b{color:#D7DDDA;font-weight:600}
.strip-sep{width:5px;height:5px;border-radius:50%;background:var(--ink-line)}

/* SECTION SHELL */
.section{padding:clamp(60px,8vw,104px) 0}
.section.tight{padding:clamp(44px,6vw,72px) 0}
.sec-head{max-width:640px;margin-bottom:42px}
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center}
.sec-head h2{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.02em;line-height:1;font-size:clamp(31px,4.5vw,50px);margin:12px 0 14px}
.sec-head p{font-size:15.5px;color:var(--slate);line-height:1.7}

/* SERVICES */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px;transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s;display:flex;flex-direction:column}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:#d4dad2}
.card-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.card-ico{width:50px;height:50px;border-radius:12px;background:var(--green-tint);display:flex;align-items:center;justify-content:center}
.card-ico svg{width:24px;height:24px;stroke:var(--green-d);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.card-cat{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted)}
.card h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:23px;letter-spacing:-.01em;margin-bottom:10px}
.card p{font-size:14px;color:var(--slate);line-height:1.65}
.card-list{list-style:none;margin:18px 0 0;display:flex;flex-direction:column;gap:9px}
.card-list li{font-size:13.5px;color:var(--slate);display:flex;gap:10px;align-items:flex-start}
.card-list li svg{width:15px;height:15px;stroke:var(--green);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;margin-top:2px}
.card-foot{margin-top:20px;padding-top:16px;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:12px}
.card-from{font-size:12.5px;color:var(--muted)}
.card-from b{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:19px;color:var(--ink);letter-spacing:-.01em}
.card-call{font-size:12.5px;font-weight:600;color:var(--green-d);text-decoration:none;display:inline-flex;align-items:center;gap:6px;white-space:nowrap;transition:color .18s}
.card-call:hover{color:var(--green)}
.card-call svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* HOW IT WORKS */
.how{background:var(--ink);color:#fff}
.how .sec-head h2{color:#fff}
.how .sec-head p{color:#A9B4BA}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.step{border:1px solid var(--ink-line);border-radius:var(--radius);padding:28px;background:rgba(255,255,255,.015);position:relative}
.step-n{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:15px;color:var(--green);background:rgba(28,154,92,.12);width:34px;height:34px;border-radius:9px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.step h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:19px;margin-bottom:8px}
.step p{font-size:13.5px;color:#A9B4BA;line-height:1.6}

/* WHY */
.why{background:var(--mist)}
.why-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:clamp(40px,6vw,72px);align-items:center}
.why h2{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.02em;line-height:1;font-size:clamp(29px,4.3vw,48px);margin:12px 0 16px}
.why p.lead{font-size:15.5px;color:var(--slate);line-height:1.75;margin-bottom:24px;max-width:42ch}
.pillars{display:flex;flex-wrap:wrap;gap:8px}
.pill{background:#fff;border:1px solid var(--line);border-radius:100px;padding:9px 15px;font-size:13px;color:var(--ink);font-weight:500;display:flex;align-items:center;gap:9px}
.pill .dot{width:6px;height:6px;border-radius:50%;background:var(--green)}
.checklist{display:grid;gap:12px}
.check{display:flex;gap:15px;background:#fff;border:1px solid var(--line);border-radius:12px;padding:18px 20px}
.check-box{width:26px;height:26px;border-radius:8px;background:var(--green);flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-top:1px}
.check-box svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round}
.check-text strong{display:block;font-size:14.5px;font-weight:600;margin-bottom:3px}
.check-text span{font-size:13px;color:var(--muted);line-height:1.55}

/* PRICING */
.pricing-note{text-align:center;font-size:14.5px;color:var(--slate);max-width:54ch;margin:0 auto 40px}
.pgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:920px;margin:0 auto 22px;align-items:stretch}
.pcard{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 28px;display:flex;flex-direction:column;transition:transform .25s var(--ease),box-shadow .25s}
.pcard:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.pcard.featured{background:var(--ink);border-color:var(--ink);box-shadow:var(--shadow-lg)}
.pcard.featured *{color:#fff}
.pbadge{position:absolute;top:-11px;left:28px;background:var(--green);color:#fff;font-family:'Space Mono',monospace;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:5px 11px;border-radius:7px}
.pcat{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.pcard.featured .pcat{color:#7E8B92}
.pname{font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:22px;margin-bottom:16px}
.pprice-row{display:flex;align-items:baseline;gap:8px;margin-bottom:4px}
.pfrom{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1px;text-transform:uppercase;color:var(--muted)}
.pcard.featured .pfrom{color:#7E8B92}
.pprice{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:46px;letter-spacing:-.02em;line-height:1}
.pper{font-size:12.5px;color:var(--muted);line-height:1.5;margin-bottom:20px}
.pcard.featured .pper{color:#8b979e}
.pitems{display:flex;flex-direction:column;gap:10px;margin-bottom:22px}
.pitem{font-size:13.5px;color:var(--slate);display:flex;gap:10px;align-items:flex-start}
.pcard.featured .pitem{color:#B9C3C9}
.pitem svg{width:15px;height:15px;stroke:var(--green);fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;margin-top:2px}
.pcard.featured .pitem svg{stroke:var(--green-bright)}
.pcall{margin-top:auto;text-align:center;font-size:13.5px;font-weight:600;padding:12px;border-radius:10px;background:var(--green-tint);color:var(--green-d);text-decoration:none;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .18s}
.pcall:hover{background:#d7ecdf}
.pcard.featured .pcall{background:var(--green);color:#fff}
.pcard.featured .pcall:hover{background:#21b16a}
.pcall svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.addons{max-width:920px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px 28px}
.addons-h{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);margin-bottom:16px}
.addons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px 28px}
.addon{display:flex;justify-content:space-between;gap:12px;font-size:13.5px;padding:7px 0;border-bottom:1px dashed var(--line)}
.addon .a-name{color:var(--slate)}
.addon .a-price{font-weight:600;color:var(--ink);white-space:nowrap}

/* REVIEWS */
.reviews-note{text-align:center;font-size:12.5px;color:var(--muted);margin:-8px auto 36px;max-width:46ch}
.rgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.review{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px}
.stars{display:flex;gap:3px;margin-bottom:14px}
.stars svg{width:16px;height:16px;fill:#F5A623;stroke:none}
.review p{font-size:14px;color:var(--ink);line-height:1.65;margin-bottom:18px}
.review .who{display:flex;align-items:center;gap:11px}
.avatar{width:36px;height:36px;border-radius:50%;background:var(--green-tint);color:var(--green-d);font-family:'Bricolage Grotesque',sans-serif;font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center}
.review .who b{font-size:13.5px;font-weight:600;display:block}
.review .who span{font-size:12px;color:var(--muted)}

/* FAQ */
.faq{background:var(--mist)}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden}
.faq-item summary{list-style:none;cursor:pointer;padding:18px 22px;font-size:15px;font-weight:600;display:flex;align-items:center;justify-content:space-between;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .plus{width:20px;height:20px;flex-shrink:0;position:relative;transition:transform .2s}
.faq-item summary .plus::before,.faq-item summary .plus::after{content:"";position:absolute;background:var(--green);border-radius:2px}
.faq-item summary .plus::before{top:9px;left:2px;right:2px;height:2px}
.faq-item summary .plus::after{left:9px;top:2px;bottom:2px;width:2px;transition:opacity .2s}
.faq-item[open] summary .plus::after{opacity:0}
.faq-item .ans{padding:0 22px 20px;font-size:14px;color:var(--slate);line-height:1.7}

/* AREA */
.area{text-align:center}
.area .map-card{max-width:720px;margin:24px auto 0;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:32px;box-shadow:var(--shadow)}
.area .map-ico{width:54px;height:54px;border-radius:14px;background:var(--green-tint);display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.area .map-ico svg{width:26px;height:26px;stroke:var(--green-d);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.area .map-card p{font-size:15px;color:var(--slate);line-height:1.7;max-width:46ch;margin:0 auto}

/* CTA BAND */
.cta-band{background:var(--ink);color:#fff;text-align:center}
.cta-band h2{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.02em;line-height:1;font-size:clamp(30px,4.6vw,52px);margin:12px 0 14px}
.cta-band p{font-size:15.5px;color:#A9B4BA;line-height:1.7;max-width:46ch;margin:0 auto 28px}
.cta-band .ph-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* CONTACT */
.contact{background:var(--ink);color:#fff}
.contact .wrap{display:grid;grid-template-columns:1fr 1fr;gap:clamp(36px,6vw,72px);align-items:start}
.contact h2{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.02em;line-height:.98;font-size:clamp(33px,5vw,56px);margin:12px 0 16px}
.contact .csub{font-size:15.5px;color:#A9B4BA;max-width:38ch;line-height:1.7;margin-bottom:24px}
.contact .eyebrow{color:#5c6970}
.contact .big-call{display:inline-flex;align-items:center;gap:10px;background:var(--green);color:#fff;font-size:16px;font-weight:600;padding:15px 26px;border-radius:12px;text-decoration:none;transition:background .18s,transform .18s}
.contact .big-call:hover{background:#21b16a;transform:translateY(-2px)}
.contact .big-call svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ccards{display:flex;flex-direction:column;gap:12px}
.cc{background:var(--ink-2);border:1px solid var(--ink-line);border-radius:13px;padding:18px 20px;display:flex;align-items:center;gap:16px;text-decoration:none;transition:border-color .2s,transform .2s;cursor:pointer}
.cc:hover{border-color:#3a464e;transform:translateY(-2px)}
.cc-ico{width:42px;height:42px;border-radius:11px;background:rgba(28,154,92,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cc-ico svg{width:19px;height:19px;stroke:var(--green);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.cc .lbl{font-family:'Space Mono',monospace;font-size:10.5px;letter-spacing:1.5px;text-transform:uppercase;color:#5c6970;margin-bottom:3px}
.cc .val{font-size:16px;color:#fff;font-weight:600}
.cc .hint{font-size:11px;color:#5c6970;margin-top:2px}
.cc-email{position:relative}
.toast{position:absolute;top:-30px;right:16px;background:var(--green);color:#fff;font-family:'Space Mono',monospace;font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:5px 11px;border-radius:7px;opacity:0;transform:translateY(4px);transition:.22s;pointer-events:none}
.toast.show{opacity:1;transform:translateY(0)}
.hours-card{background:var(--ink-2);border:1px solid var(--ink-line);border-radius:13px;padding:20px 22px;margin-top:4px}
.hours-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.hours-head .lbl{font-family:'Space Mono',monospace;font-size:10.5px;letter-spacing:1.5px;text-transform:uppercase;color:#5c6970;display:flex;align-items:center;gap:8px}
.hours-head .lbl svg{width:14px;height:14px;stroke:#5c6970;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.status{display:none;align-items:center;gap:6px;font-size:11px;font-weight:600;color:var(--green-bright);background:rgba(28,154,92,.12);padding:4px 9px;border-radius:7px}
.status.show{display:inline-flex}
.status .pulse{width:6px;height:6px;border-radius:50%;background:var(--green-bright);animation:pulse 1.8s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.hours-row{display:flex;justify-content:space-between;padding:7px 0;border-bottom:1px solid var(--ink-line)}
.hours-row:last-child{border-bottom:none}
.hours-row.today .day,.hours-row.today .time{color:#fff;font-weight:600}
.hours-row .day{font-size:13.5px;color:#9FAAB1}
.hours-row .time{font-size:13.5px;color:#C7CFCA}
.hours-row.closed .day,.hours-row.closed .time{color:#4d585f}

/* FOOTER */
.footer{background:#0C0F12;border-top:1px solid var(--ink-line)}
.footer .wrap{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;padding-top:22px;padding-bottom:22px}
.footer-logo{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:18px;color:#fff;display:flex;align-items:center;gap:8px;text-decoration:none}
.footer-logo .mark{width:9px;height:9px;border-radius:2px;background:var(--green)}
.footer-copy{font-size:12px;color:#4d585f}
.footer-links{display:flex;gap:22px;flex-wrap:wrap}
.footer-links a{font-size:12.5px;color:#79868E;text-decoration:none;cursor:pointer;transition:color .18s}
.footer-links a:hover{color:#fff}

/* FLOATING CALL BUTTON */
.fab{position:fixed;bottom:20px;right:20px;z-index:90;background:var(--green);color:#fff;font-size:14.5px;font-weight:600;padding:14px 20px;border-radius:100px;text-decoration:none;display:inline-flex;align-items:center;gap:9px;box-shadow:0 8px 26px -6px rgba(28,154,92,.6);transition:transform .18s,background .18s}
.fab:hover{background:#21b16a;transform:translateY(-2px)}
.fab svg{width:17px;height:17px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* REVEAL */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* RESPONSIVE */
@media(max-width:900px){
  .cards,.steps,.rgrid{grid-template-columns:1fr 1fr}
  .addons-grid{grid-template-columns:1fr 1fr}
  .why-grid,.contact .wrap{grid-template-columns:1fr;gap:36px}
}
@media(max-width:720px){
  .nav-links{display:none}
  .nav-toggle{display:block}
  .nav-links.open{display:flex;position:absolute;top:64px;left:0;right:0;flex-direction:column;gap:0;background:var(--ink);border-bottom:1px solid var(--ink-line);padding:8px 0}
  .nav-links.open a{padding:14px 24px;border-bottom:1px solid var(--ink-line)}
  .cards,.steps,.rgrid,.pgrid,.addons-grid{grid-template-columns:1fr}
  .pgrid{max-width:420px}.pcard.featured{order:-1}
  .fab span{display:none}.fab{padding:16px;border-radius:50%}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}*{animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}
}

/* TAX ESTIMATOR */
.calc{max-width:760px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 30px 24px;box-shadow:var(--shadow)}
.calc-head{margin-bottom:24px}
.calc-head h3{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;letter-spacing:-.02em;font-size:clamp(24px,3.4vw,32px);margin:10px 0 10px;line-height:1.05}
.calc-head p{font-size:14px;color:var(--slate);line-height:1.6;max-width:48ch}
.calc-field{display:flex;flex-direction:column;gap:9px}
.calc-field label{font-family:'Space Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted)}
.seg{display:flex;gap:8px;flex-wrap:wrap}
.seg-btn{flex:1;min-width:120px;font-family:'Inter',sans-serif;font-size:13.5px;font-weight:600;color:var(--slate);background:#fff;border:1px solid var(--line);border-radius:11px;padding:12px 14px;cursor:pointer;transition:border-color .18s,background .18s,color .18s}
.seg-btn:hover{border-color:#cdd4ca}
.seg-btn.active{background:var(--green);border-color:var(--green);color:#fff}
.calc-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:20px}
.calc-field input{font-family:'Inter',sans-serif;font-size:16px;font-weight:600;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:11px;padding:12px 14px;width:100%}
.calc-field input:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(28,154,92,.12)}
.calc-hint{font-size:11.5px;color:var(--muted)}
.stepper{display:flex;align-items:stretch;gap:8px}
.stepper button{width:46px;flex-shrink:0;font-size:20px;font-weight:600;color:var(--green-d);background:var(--green-tint);border:1px solid var(--line);border-radius:11px;cursor:pointer;transition:background .18s}
.stepper button:hover{background:#d7ecdf}
.stepper input{text-align:center}
.stepper input::-webkit-outer-spin-button,.stepper input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.stepper input{-moz-appearance:textfield}
.calc-out{background:var(--ink);border-radius:13px;padding:22px 24px;margin-top:24px}
.calc-line{display:flex;justify-content:space-between;align-items:center;padding:7px 0;font-size:14px;color:#A9B4BA}
.calc-line span:last-child{color:#E8EDEA;font-weight:600}
.calc-line b{color:#E8EDEA;font-weight:600}
.calc-total{display:flex;justify-content:space-between;align-items:baseline;padding:14px 0 4px;margin-top:8px;border-top:1px solid var(--ink-line)}
.calc-total span:first-child{font-size:13px;font-family:'Space Mono',monospace;letter-spacing:1.5px;text-transform:uppercase;color:#7E8B92}
.calc-total span:last-child{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:38px;letter-spacing:-.02em;color:#fff;line-height:1}
.calc-out .pcall{background:var(--green);color:#fff}
.calc-out .pcall:hover{background:#21b16a}
.calc-disclaimer{font-size:11.5px;color:var(--muted);line-height:1.6;margin-top:16px;text-align:center;max-width:58ch;margin-left:auto;margin-right:auto}
@media(max-width:720px){
  .calc-row{grid-template-columns:1fr}
  .seg-btn{flex:1 1 100%}
}
