/* ============================================================
   HUNT SERVICES LIMITED — Design System
   Industrial / engineered. Graphite + concrete + hi-vis amber.
   ============================================================ */

:root{
  /* Surfaces */
  --ink:#0B1220;
  --graphite:#141C29;
  --panel:#1C2634;
  --steel:#33415A;
  --line-dark:#2A3547;

  --concrete:#F1F0EC;
  --concrete-2:#E7E5DE;
  --white:#FFFFFF;

  /* Text */
  --text:#161E2A;
  --text-dim:#586172;
  --text-invert:#EAECEF;
  --text-invert-dim:#98A2B2;

  /* Accent — safety amber */
  --amber:#F6A609;
  --amber-600:#DE9207;
  --amber-tint:rgba(246,166,9,.12);

  /* Structure */
  --radius:3px;
  --maxw:1180px;
  --gap:clamp(1rem,3vw,2rem);
  --shadow:0 1px 2px rgba(11,18,32,.06),0 8px 30px rgba(11,18,32,.08);
  --shadow-lg:0 20px 60px rgba(11,18,32,.18);

  --font-display:'Archivo',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}

/* ---------- Type ---------- */
h1,h2,h3,h4{font-family:var(--font-display);font-weight:800;line-height:1.05;letter-spacing:-.02em;color:var(--text)}
h1{font-size:clamp(2.4rem,6vw,4.2rem)}
h2{font-size:clamp(1.9rem,4vw,3rem)}
h3{font-size:clamp(1.2rem,2vw,1.5rem)}
p{color:var(--text-dim)}

.eyebrow{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--amber-600);
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.eyebrow::before{
  content:"";width:26px;height:2px;background:var(--amber);display:inline-block;
}
.eyebrow.center{justify-content:center}

/* ---------- Layout ---------- */
.wrap{width:min(100% - 2.5rem,var(--maxw));margin-inline:auto}
.section{padding:clamp(3.5rem,8vw,6.5rem) 0}
.section-head{max-width:640px;margin-bottom:2.75rem}
.section-head.center{margin-inline:auto;text-align:center}
.section-head p{margin-top:1rem;font-size:1.06rem}
.dark{background:var(--ink);color:var(--text-invert)}
.dark h1,.dark h2,.dark h3,.dark h4{color:var(--white)}
.dark p{color:var(--text-invert-dim)}
.grid{display:grid;gap:1.5rem}

/* Blueprint grid backdrop for dark sections */
.blueprint{position:relative;isolation:isolate}
.blueprint::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background-image:
    linear-gradient(var(--line-dark) 1px,transparent 1px),
    linear-gradient(90deg,var(--line-dark) 1px,transparent 1px);
  background-size:56px 56px;
  opacity:.35;
  mask-image:radial-gradient(circle at 50% 0%,#000 0%,transparent 78%);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-display);font-weight:700;font-size:.95rem;
  letter-spacing:.01em;
  padding:.95rem 1.6rem;border-radius:var(--radius);
  transition:transform .15s ease,background .2s ease,box-shadow .2s ease,color .2s ease;
  white-space:nowrap;
}
.btn svg{width:1.05em;height:1.05em}
.btn-primary{background:var(--amber);color:var(--ink)}
.btn-primary:hover{background:var(--amber-600);transform:translateY(-2px)}
.btn-dark{background:var(--ink);color:var(--white)}
.btn-dark:hover{background:var(--graphite);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--white);box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.3)}
.btn-ghost:hover{box-shadow:inset 0 0 0 1.5px var(--amber);color:var(--amber)}
.btn-outline{background:transparent;color:var(--text);box-shadow:inset 0 0 0 1.5px var(--concrete-2)}
.btn-outline:hover{box-shadow:inset 0 0 0 1.5px var(--ink)}
.btn-block{width:100%}
.btn-lg{padding:1.1rem 2rem;font-size:1.02rem}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--concrete-2);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:74px;gap:1rem}
.brand{display:flex;align-items:center;gap:.65rem;font-family:var(--font-display);font-weight:900;font-size:1.06rem;letter-spacing:-.01em}
.brand .mark{
  width:34px;height:34px;border-radius:var(--radius);
  background:var(--ink);color:var(--amber);
  display:grid;place-items:center;font-size:.95rem;font-weight:900;
  position:relative;overflow:hidden;flex:none;
}
.brand .mark::after{content:"";position:absolute;bottom:0;left:0;right:0;height:5px;
  background:repeating-linear-gradient(45deg,var(--amber) 0 6px,var(--ink) 6px 12px)}
.brand small{display:block;font-family:var(--font-body);font-weight:500;font-size:.62rem;letter-spacing:.16em;color:var(--text-dim);text-transform:uppercase;margin-top:1px}
.nav-links{display:flex;align-items:center;gap:.35rem}
.nav-links a{font-weight:500;font-size:.95rem;color:var(--text-dim);padding:.5rem .8rem;border-radius:var(--radius);transition:color .18s}
.nav-links a:hover,.nav-links a.active{color:var(--text)}
.nav-cta{display:flex;align-items:center;gap:.75rem}
.nav-toggle{display:none;width:44px;height:44px;border-radius:var(--radius);color:var(--ink)}
.nav-toggle svg{width:24px;height:24px;margin:auto}

/* ---------- Hero ---------- */
.hero{position:relative;background:var(--ink);color:var(--white);overflow:hidden}
.hero .wrap{position:relative;z-index:2;display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,5vw,4rem);align-items:center;
  padding-block:clamp(3.5rem,7vw,6rem)}
.hero-copy h1{color:var(--white);margin:1.2rem 0 1.3rem}
.hero-copy h1 .hl{color:var(--amber)}
.hero-lead{font-size:1.15rem;color:var(--text-invert-dim);max-width:34ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2rem}
.hero-stats{display:flex;gap:2.4rem;margin-top:3rem;flex-wrap:wrap}
.hero-stats .stat b{font-family:var(--font-display);font-size:2rem;font-weight:900;color:var(--white);display:block;line-height:1}
.hero-stats .stat span{font-size:.82rem;letter-spacing:.04em;color:var(--text-invert-dim)}
.hero-visual{position:relative}
.hero-visual .frame{
  position:relative;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:4/5;background:var(--panel);
}
.hero-visual .frame img{width:100%;height:100%;object-fit:cover}
.hero-visual .tag{
  position:absolute;left:-14px;bottom:26px;background:var(--amber);color:var(--ink);
  padding:.8rem 1.15rem;border-radius:var(--radius);box-shadow:var(--shadow-lg);
  font-family:var(--font-display);font-weight:800;font-size:.9rem;max-width:220px;line-height:1.2;
}
.hero-visual .tag span{display:block;font-family:var(--font-body);font-weight:500;font-size:.72rem;margin-top:.2rem;color:rgba(11,18,32,.7)}
.hero::after{content:"";position:absolute;inset:0;z-index:1;
  background:radial-gradient(120% 90% at 85% 15%,rgba(246,166,9,.14),transparent 55%),
             linear-gradient(180deg,transparent,rgba(11,18,32,.4))}
.hero .blueprint::before{opacity:.5}

/* measurement rule */
.measure{display:flex;align-items:center;gap:0;height:14px;margin-top:.4rem;opacity:.6}
.measure i{flex:1;height:1px;background:currentColor}
.measure span{width:1px;height:9px;background:currentColor}

/* ---------- Feature cards ---------- */
.features{grid-template-columns:repeat(4,1fr)}
.feature{
  background:var(--white);border:1px solid var(--concrete-2);border-radius:var(--radius);
  padding:1.9rem 1.5rem;transition:transform .2s ease,box-shadow .2s ease,border-color .2s;
  position:relative;overflow:hidden;
}
.feature::before{content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:var(--amber);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}
.feature:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}
.feature:hover::before{transform:scaleX(1)}
.feature .ico{width:48px;height:48px;border-radius:var(--radius);background:var(--ink);color:var(--amber);display:grid;place-items:center;margin-bottom:1.1rem}
.feature .ico svg{width:24px;height:24px}
.feature h3{font-size:1.15rem;margin-bottom:.5rem}
.feature p{font-size:.94rem}
.feature .num{position:absolute;top:1.2rem;right:1.3rem;font-family:var(--font-display);font-weight:900;font-size:.85rem;color:var(--concrete-2)}

/* ---------- Product grid ---------- */
.products-grid{grid-template-columns:repeat(4,1fr)}
.product-card{
  background:var(--white);border:1px solid var(--concrete-2);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease,border-color .2s;
}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}
.product-media{aspect-ratio:4/3;background:var(--concrete);position:relative;overflow:hidden}
.product-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .product-media img{transform:scale(1.05)}
.product-media .ph{position:absolute;inset:0;display:grid;place-items:center;color:var(--concrete-2)}
.product-media .ph svg{width:52px;height:52px}
.product-cat{position:absolute;top:.7rem;left:.7rem;background:rgba(11,18,32,.86);color:var(--white);font-family:var(--font-display);font-weight:700;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;padding:.32rem .6rem;border-radius:var(--radius)}
.product-body{padding:1.15rem 1.2rem 1.3rem;display:flex;flex-direction:column;flex:1}
.product-body h3{font-size:1.08rem;margin-bottom:.35rem}
.product-body .desc{font-size:.88rem;color:var(--text-dim);margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-foot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:.75rem}
.price{font-family:var(--font-display);font-weight:900;font-size:1.35rem;color:var(--ink);white-space:nowrap}
.price small{font-family:var(--font-body);font-weight:500;font-size:.72rem;color:var(--text-dim)}
.product-foot .btn{padding:.6rem 1rem;font-size:.86rem}

/* Skeleton loader */
.skeleton .product-media,.skeleton .s-line{background:linear-gradient(100deg,var(--concrete) 30%,var(--concrete-2) 50%,var(--concrete) 70%);background-size:200% 100%;animation:shimmer 1.3s linear infinite}
.skeleton .product-body{gap:.7rem}
.s-line{height:14px;border-radius:2px}
.s-line.w-70{width:70%}.s-line.w-40{width:40%}.s-line.lg{height:24px;width:50%;margin-top:.4rem}
@keyframes shimmer{to{background-position:-200% 0}}

/* Filters */
.filters{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:2rem}
.filter-btn{font-family:var(--font-display);font-weight:700;font-size:.85rem;letter-spacing:.02em;padding:.55rem 1.05rem;border-radius:var(--radius);background:var(--concrete);color:var(--text-dim);transition:.18s}
.filter-btn:hover{color:var(--text)}
.filter-btn.active{background:var(--ink);color:var(--white)}

/* ---------- Process steps ---------- */
.steps{grid-template-columns:repeat(4,1fr);counter-reset:step}
.step{position:relative;padding-top:1.5rem}
.step::before{counter-increment:step;content:"0" counter(step);font-family:var(--font-display);font-weight:900;font-size:2.6rem;color:var(--amber);line-height:1;display:block;margin-bottom:.9rem}
.step::after{content:"";position:absolute;top:1.55rem;left:2.9rem;right:-.75rem;height:2px;background:repeating-linear-gradient(90deg,var(--line-dark) 0 8px,transparent 8px 14px)}
.steps .step:last-child::after{display:none}
.step h3{font-size:1.12rem;margin-bottom:.5rem}
.dark .step h3{color:var(--white)}
.step p{font-size:.92rem}

/* ---------- Testimonials ---------- */
.reviews{grid-template-columns:repeat(3,1fr)}
.review{background:var(--white);border:1px solid var(--concrete-2);border-radius:var(--radius);padding:1.9rem 1.7rem;position:relative}
.review .stars{display:flex;gap:.15rem;color:var(--amber);margin-bottom:1rem}
.review .stars svg{width:18px;height:18px}
.review blockquote{font-size:1.02rem;color:var(--text);line-height:1.55;margin-bottom:1.4rem}
.review .who{display:flex;align-items:center;gap:.8rem}
.review .who .av{width:44px;height:44px;border-radius:var(--radius);background:var(--ink);color:var(--amber);display:grid;place-items:center;font-family:var(--font-display);font-weight:800;flex:none}
.review .who b{display:block;font-family:var(--font-display);font-size:.98rem}
.review .who span{font-size:.82rem;color:var(--text-dim)}

/* ---------- CTA banner ---------- */
.cta-banner{position:relative;background:var(--amber);color:var(--ink);border-radius:var(--radius);padding:clamp(2.5rem,5vw,4rem);overflow:hidden}
.cta-banner::after{content:"";position:absolute;top:0;right:0;bottom:0;width:40%;
  background:repeating-linear-gradient(45deg,rgba(11,18,32,.08) 0 18px,transparent 18px 36px)}
.cta-banner .inner{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cta-banner h2{color:var(--ink);max-width:20ch}
.cta-banner p{color:rgba(11,18,32,.72);margin-top:.6rem;max-width:44ch}

/* ---------- Split / info ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.split .media{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;background:var(--panel);box-shadow:var(--shadow)}
.split .media img{width:100%;height:100%;object-fit:cover}
.checklist{margin-top:1.6rem;display:grid;gap:.9rem}
.checklist li{display:flex;gap:.75rem;align-items:flex-start;font-size:.98rem;color:var(--text)}
.checklist .tick{width:24px;height:24px;border-radius:50%;background:var(--amber-tint);color:var(--amber-600);display:grid;place-items:center;flex:none;margin-top:1px}
.checklist .tick svg{width:14px;height:14px}
.dark .checklist li{color:var(--text-invert)}

/* ---------- Product detail ---------- */
.pd{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:start}
.pd-media{border-radius:var(--radius);overflow:hidden;background:var(--concrete);aspect-ratio:1;position:sticky;top:96px}
.pd-media img{width:100%;height:100%;object-fit:cover}
.pd-media .ph{width:100%;height:100%;display:grid;place-items:center;color:var(--concrete-2)}
.pd-media .ph svg{width:80px;height:80px}
.pd-info .price{font-size:2.2rem;margin:.4rem 0 1.2rem}
.pd-info .lead{font-size:1.06rem;margin-bottom:1.5rem}
.pd-meta{border-top:1px solid var(--concrete-2);margin-top:1.8rem;padding-top:1.5rem;display:grid;gap:.9rem}
.pd-meta .row{display:flex;justify-content:space-between;gap:1rem;font-size:.92rem}
.pd-meta .row span:first-child{color:var(--text-dim)}
.pd-meta .row span:last-child{font-weight:600}
.qty{display:inline-flex;align-items:center;border:1px solid var(--concrete-2);border-radius:var(--radius);overflow:hidden;margin-bottom:1.2rem}
.qty button{width:44px;height:46px;font-size:1.2rem;color:var(--text);display:grid;place-items:center}
.qty button:hover{background:var(--concrete)}
.qty input{width:52px;height:46px;text-align:center;border:none;border-inline:1px solid var(--concrete-2);font-family:var(--font-display);font-weight:700;font-size:1rem}
.pd-trust{display:flex;gap:1.4rem;flex-wrap:wrap;margin-top:1.6rem;padding-top:1.6rem;border-top:1px solid var(--concrete-2)}
.pd-trust .t{display:flex;align-items:center;gap:.55rem;font-size:.85rem;color:var(--text-dim)}
.pd-trust svg{width:20px;height:20px;color:var(--amber-600)}
.crumbs{display:flex;gap:.5rem;align-items:center;font-size:.85rem;color:var(--text-dim);margin-bottom:1.8rem}
.crumbs a:hover{color:var(--text)}
.crumbs span{color:var(--concrete-2)}

/* ---------- Simple page hero ---------- */
.page-hero{background:var(--ink);color:var(--white);padding:clamp(3rem,7vw,5rem) 0 clamp(2.5rem,5vw,3.5rem);position:relative;overflow:hidden}
.page-hero .wrap{position:relative;z-index:2}
.page-hero h1{color:var(--white);max-width:16ch}
.page-hero p{color:var(--text-invert-dim);margin-top:1rem;max-width:52ch;font-size:1.08rem}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,3.5rem);align-items:start}
.info-card{background:var(--white);border:1px solid var(--concrete-2);border-radius:var(--radius);padding:1.4rem 1.5rem;display:flex;gap:1rem;align-items:flex-start;margin-bottom:1rem}
.info-card .ico{width:44px;height:44px;border-radius:var(--radius);background:var(--ink);color:var(--amber);display:grid;place-items:center;flex:none}
.info-card .ico svg{width:22px;height:22px}
.info-card b{font-family:var(--font-display);display:block;margin-bottom:.15rem}
.info-card a,.info-card p{color:var(--text-dim);font-size:.95rem}
.info-card a:hover{color:var(--amber-600)}
.form{background:var(--white);border:1px solid var(--concrete-2);border-radius:var(--radius);padding:1.8rem}
.field{margin-bottom:1.1rem}
.field label{display:block;font-family:var(--font-display);font-weight:700;font-size:.82rem;letter-spacing:.03em;margin-bottom:.45rem}
.field input,.field textarea,.field select{width:100%;padding:.85rem 1rem;border:1px solid var(--concrete-2);border-radius:var(--radius);font-family:inherit;font-size:.95rem;background:var(--white);transition:border-color .18s,box-shadow .18s}
.field textarea{resize:vertical;min-height:130px}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--amber);box-shadow:0 0 0 3px var(--amber-tint)}

/* ---------- FAQ ---------- */
.faq-list{max-width:820px;margin-inline:auto}
.faq-item{border:1px solid var(--concrete-2);border-radius:var(--radius);margin-bottom:.8rem;overflow:hidden;background:var(--white)}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem 1.4rem;font-family:var(--font-display);font-weight:700;font-size:1.02rem;text-align:left;color:var(--text)}
.faq-q .pm{width:26px;height:26px;border-radius:50%;background:var(--concrete);display:grid;place-items:center;flex:none;transition:.2s}
.faq-q .pm svg{width:15px;height:15px;transition:transform .25s}
.faq-item.open .faq-q .pm{background:var(--amber);color:var(--ink)}
.faq-item.open .faq-q .pm svg{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a p{padding:0 1.4rem 1.35rem;font-size:.98rem}

/* ---------- Result pages ---------- */
.result{min-height:64vh;display:grid;place-items:center;text-align:center;padding:4rem 0}
.result .badge{width:88px;height:88px;border-radius:50%;display:grid;place-items:center;margin:0 auto 1.6rem}
.result .badge svg{width:44px;height:44px}
.result .badge.ok{background:var(--amber-tint);color:var(--amber-600)}
.result .badge.no{background:#F3EFE9;color:var(--steel)}
.result h1{margin-bottom:1rem}
.result p{max-width:46ch;margin:0 auto 2rem;font-size:1.08rem}
.result .actions{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}

/* ---------- Legal / prose ---------- */
.prose{max-width:780px;margin-inline:auto}
.prose h2{font-size:1.5rem;margin:2.4rem 0 .9rem}
.prose h2:first-child{margin-top:0}
.prose p{margin-bottom:1rem;color:var(--text-dim)}
.prose ul{margin:0 0 1rem 1.2rem;list-style:disc}
.prose li{color:var(--text-dim);margin-bottom:.5rem;padding-left:.2rem}
.prose .updated{font-size:.9rem;color:var(--text-dim);padding:.7rem 1rem;background:var(--concrete);border-radius:var(--radius);display:inline-block;margin-bottom:2rem}
.prose a{color:var(--amber-600);text-decoration:underline;text-underline-offset:2px}

/* ---------- Empty / error state ---------- */
.state{text-align:center;padding:4rem 1rem;border:1px dashed var(--concrete-2);border-radius:var(--radius)}
.state svg{width:48px;height:48px;color:var(--concrete-2);margin-bottom:1rem}
.state h3{margin-bottom:.5rem}
.state p{max-width:40ch;margin:0 auto 1.4rem}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink);color:var(--text-invert-dim);padding:clamp(3rem,6vw,4.5rem) 0 2rem}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2rem;padding-bottom:2.5rem;border-bottom:1px solid var(--line-dark)}
.footer-top .brand{color:var(--white);margin-bottom:1rem}
.footer-top .brand small{color:var(--text-invert-dim)}
.footer-about{font-size:.92rem;max-width:34ch}
.footer-col h4{font-family:var(--font-display);color:var(--white);font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:1.1rem}
.footer-col a{display:block;font-size:.92rem;padding:.35rem 0;color:var(--text-invert-dim);transition:color .16s}
.footer-col a:hover{color:var(--amber)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;padding-top:1.8rem;font-size:.85rem}
.footer-bottom .legal{display:flex;gap:1.2rem;flex-wrap:wrap}
.footer-bottom a:hover{color:var(--amber)}

/* ---------- Reveal animation ---------- */
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
[data-reveal].in{opacity:1;transform:none}

/* ---------- Toast ---------- */
.toast{position:fixed;bottom:1.5rem;left:50%;transform:translateX(-50%) translateY(120%);background:var(--ink);color:var(--white);padding:.9rem 1.4rem;border-radius:var(--radius);box-shadow:var(--shadow-lg);z-index:100;font-size:.92rem;transition:transform .3s ease;display:flex;align-items:center;gap:.6rem}
.toast.show{transform:translateX(-50%) translateY(0)}
.toast svg{width:18px;height:18px;color:var(--amber)}

/* ---------- Responsive ---------- */
@media(max-width:980px){
  .features,.products-grid,.steps{grid-template-columns:repeat(2,1fr)}
  .reviews{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .hero .wrap{grid-template-columns:1fr}
  .hero-visual{max-width:420px}
  .step::after{display:none}
}
@media(max-width:760px){
  .nav-links,.nav-cta .btn{display:none}
  .nav-toggle{display:grid}
  .site-header.open .nav-links{
    display:flex;position:absolute;top:74px;left:0;right:0;flex-direction:column;
    background:var(--white);border-bottom:1px solid var(--concrete-2);padding:1rem 1.25rem;gap:.2rem;
  }
  .site-header.open .nav-links a{padding:.85rem .5rem;font-size:1.05rem;border-bottom:1px solid var(--concrete)}
  .split,.pd,.contact-grid{grid-template-columns:1fr}
  .pd-media{position:relative;top:0}
  .cta-banner .inner{flex-direction:column;align-items:flex-start}
}
@media(max-width:520px){
  .features,.products-grid,.steps{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .hero-stats{gap:1.5rem}
}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  [data-reveal]{opacity:1;transform:none}
}
