/* ==========================================================================
   Buffalo Sweeper & Scrubber — modern rebuild
   Design tokens + components. Dark hero/footer, light content, lime accent.
   ========================================================================== */

:root {
  --accent: #a4f700;          /* brand lime */
  --accent-700: #7bbd00;      /* darker lime for text-on-light */
  --accent-ink: #14210a;      /* text that sits on lime */
  --ink: #0c1110;             /* near-black base */
  --ink-2: #141b19;           /* raised dark surface */
  --ink-3: #1d2623;           /* dark border */
  --paper: #ffffff;
  --paper-2: #f5f7f5;         /* light section bg */
  --paper-3: #eef1ee;
  --text: #16201d;            /* body text on light */
  --muted: #5c6b66;           /* secondary text on light */
  --muted-d: #9fb0aa;         /* secondary text on dark */
  --line: #e2e7e3;            /* light borders */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(12, 17, 16, .18);
  --shadow-lg: 0 24px 60px -20px rgba(12, 17, 16, .3);
  --wrap: 1180px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Space Grotesk", var(--font-body);
}

/* ------- reset ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.12; font-weight: 600; letter-spacing: -.02em; color: var(--text); }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent-700); outline-offset: 2px; border-radius: 4px; }

/* skip to content (a11y) */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--accent); color: var(--accent-ink); padding: 10px 18px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ------- layout helpers ------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.dark { background: var(--ink); color: #eef2ef; }
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6,
.hero h1, .hero h2, .hero h3, .pagehero h1, .pagehero h2 { color: #fff; }
.hero .eyebrow, .pagehero .eyebrow { color: var(--accent); }
.muted { color: var(--muted); }
.dark .muted { color: var(--muted-d); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-700);
}
.dark .eyebrow { color: var(--accent); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; display: inline-block; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
h2.title { font-size: clamp(28px, 4vw, 44px); margin: 14px 0 0; }
.lead { font-size: 19px; color: var(--muted); margin-top: 18px; }
.dark .lead { color: var(--muted-d); }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 24px -8px rgba(164, 247, 0, .6); }
.btn--accent:hover { background: #b6ff2b; box-shadow: 0 12px 30px -8px rgba(164, 247, 0, .7); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1c2623; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--ghost-dark { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost-dark:hover { background: var(--paper-2); }
.btn svg { width: 17px; height: 17px; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 17, 16, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-name { display: none; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 16px; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) {
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: #d7ded9;
  padding: 9px 16px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active:not(.btn) { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: none; align-items: center; gap: 8px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; margin-right: -8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,17,16,.55) 0%, rgba(12,17,16,.78) 60%, var(--ink) 100%),
              radial-gradient(1200px 500px at 75% -10%, rgba(164,247,0,.12), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; padding: 108px 0 96px; max-width: 780px; }
.hero h1 { font-size: clamp(34px, 6vw, 66px); letter-spacing: -.03em; margin: 20px 0 0; }
.hero h1 .hl { color: var(--accent); }
.hero p.sub { font-size: clamp(17px, 2.2vw, 21px); color: #d3dbd6; margin-top: 22px; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__badges li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: #cdd6d0; font-weight: 500; }
.hero__badges svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* page hero (inner pages) */
.pagehero { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.pagehero::after { content:""; position:absolute; inset:0; background: radial-gradient(900px 400px at 80% -20%, rgba(164,247,0,.13), transparent 60%); }
.pagehero__inner { position: relative; z-index:1; padding: 84px 0 76px; max-width: 720px; }
.pagehero h1 { font-size: clamp(32px, 5vw, 54px); margin-top: 14px; }
.pagehero p { color: #cfd8d2; font-size: 19px; margin-top: 18px; }
.crumbs { font-size: 14px; color: var(--muted-d); font-family: var(--font-head); }
.crumbs a:hover { color: var(--accent); }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: var(--accent-700); letter-spacing: -.03em; }
.dark .stat b { color: var(--accent); }
.stat span { display: block; margin-top: 6px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.dark .stat span { color: var(--muted-d); }

/* ==========================================================================
   Cards / features
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cfe0b8; }
.card__icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(164,247,0,.18), rgba(164,247,0,.06));
  color: var(--accent-700); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 20px; }
.card p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }

/* service cards with lists */
.svc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.svc__head { display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.svc__head .card__icon { margin: 0; }
.svc__head h3 { font-size: 20px; }
.svc__body { padding: 22px 28px 28px; }
.svc__body li { position: relative; padding: 8px 0 8px 30px; font-size: 15.5px; color: var(--text); border-bottom: 1px dashed var(--line); }
.svc__body li:last-child { border-bottom: 0; }
.svc__body li::before {
  content: ""; position: absolute; left: 2px; top: 15px; width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

/* ==========================================================================
   Split / feature section
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split__media .tag {
  position: absolute; left: 22px; bottom: 22px; background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 700; font-size: 15px; padding: 12px 18px; border-radius: 12px;
  box-shadow: var(--shadow);
}
.split h2 { font-size: clamp(26px, 3.6vw, 40px); }
.split p { margin-top: 18px; color: var(--muted); }
.dark .split p { color: var(--muted-d); }
.check-list { margin-top: 24px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; }
.check-list svg { width: 22px; height: 22px; color: var(--accent-700); flex: none; margin-top: 2px; }
.dark .check-list svg { color: var(--accent); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta { position: relative; overflow: hidden; }
.cta::after { content:""; position:absolute; inset:0; background: radial-gradient(800px 340px at 15% 120%, rgba(164,247,0,.15), transparent 60%); }
.cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(26px, 4vw, 42px); max-width: 620px; }
.cta p { color: var(--muted-d); margin-top: 12px; max-width: 520px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-700); background: #fff; box-shadow: 0 0 0 4px rgba(164,247,0,.16); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.honey { position: absolute !important; left: -9999px !important; opacity: 0; }
#form-result { margin-top: 6px; font-weight: 600; font-size: 15px; min-height: 1.2em; }

.info-card { background: var(--ink); color: #eef2ef; border-radius: var(--radius); padding: 32px; }
.info-card h3 { color: #fff; font-size: 21px; }
.info-list { margin-top: 22px; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(164,247,0,.14); color: var(--accent); display: grid; place-items: center; flex: none; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list b { display: block; font-family: var(--font-head); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 3px; font-weight: 600; }
.info-list a, .info-list span { color: #eef2ef; font-size: 16px; }
.info-list a:hover { color: var(--accent); }

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.faq-section { background: var(--paper-2); }
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow); border-color: #cfe0b8; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text);
}
.faq summary:hover { color: var(--accent-700); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .25s; }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute; background: var(--accent-700); border-radius: 2px; }
.faq summary .plus::before { left: 5px; right: 5px; top: 12px; height: 2px; }
.faq summary .plus::after { top: 5px; bottom: 5px; left: 12px; width: 2px; transition: transform .25s; }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq details > p { padding: 0 26px 24px; color: var(--muted); margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #c6cfc9; padding: 72px 0 30px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 72px; width: auto; margin: 0 auto 20px; }
.footer-brand p { color: var(--muted-d); font-size: 15px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span { color: #c6cfc9; font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted-d); }
.footer-bottom a { color: var(--accent); }
.footer-credit { flex: 1; text-align: center; opacity: .75; }
.footer-credit a { color: var(--muted-d); text-decoration: underline; }
.footer-credit a:hover { color: var(--accent); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* only hide when JS is present, so no-JS users always see content */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.no-anim .reveal { transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Mobile nav drawer + responsive
   ========================================================================== */
@media (min-width: 561px) { .brand-name { display: block; } }
@media (min-width: 900px) {
  .nav-phone { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(12,17,16,.98); backdrop-filter: blur(14px);
    padding: 16px 20px 26px; border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
  }
  .nav-open .nav-links { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 14px 16px; font-size: 17px; }
  .nav-links .btn { margin-top: 10px; justify-content: center; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__inner { padding: 76px 0 68px; }
}

/* ==========================================================================
   FLAIR — entrance, scroll & hover micro-interactions
   ========================================================================== */

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--accent), #d6ff6b);
  box-shadow: 0 0 10px rgba(164, 247, 0, .6); transition: width .08s linear;
}

/* navbar tightens + solidifies on scroll */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.nav { transition: height .3s ease; }
.site-header.scrolled { background: rgba(9, 13, 12, .93); box-shadow: 0 8px 26px -14px rgba(0, 0, 0, .8); }
.site-header.scrolled .nav { height: 62px; }
.brand img, .site-header.scrolled .brand img { transition: height .3s ease; }
.site-header.scrolled .brand img { height: 34px; }

/* animated underline on nav links */
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { transform: scaleX(1); }

/* hero background slow ken-burns + drifting accent glow */
.hero__bg img { animation: kenburns 20s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: -18% -12% auto auto;
  width: 62vw; height: 62vw; max-width: 720px; max-height: 720px; pointer-events: none;
  background: radial-gradient(circle, rgba(164, 247, 0, .16), transparent 62%);
  animation: floaty 10s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-26px, 24px); } }

/* hero + page-hero staggered entrance (js only; no-js shows all) */
.js .hero__inner > *, .js .pagehero__inner > * { opacity: 0; animation: heroRise .85s cubic-bezier(.2,.7,.2,1) forwards; }
.js .hero__inner > .eyebrow { animation-delay: .10s; }
.js .hero__inner > h1 { animation-delay: .22s; }
.js .hero__inner > .sub { animation-delay: .38s; }
.js .hero__inner > .hero__cta { animation-delay: .52s; }
.js .hero__inner > .hero__badges { animation-delay: .66s; }
.js .pagehero__inner > .crumbs { animation-delay: .05s; }
.js .pagehero__inner > h1 { animation-delay: .16s; }
.js .pagehero__inner > p { animation-delay: .30s; }
.js .pagehero__inner > div { animation-delay: .42s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* hero scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 1; }
.scroll-cue svg { width: 26px; height: 26px; color: rgba(255, 255, 255, .55); animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

/* directional reveal variants */
.js .reveal--left { transform: translateX(-34px); }
.js .reveal--right { transform: translateX(34px); }
.js .reveal--scale { transform: scale(.94); }
.js .reveal--left.in, .js .reveal--right.in, .js .reveal--scale.in { transform: none; }

/* card polish: icon spring + branded sheen sweep */
.card { position: relative; overflow: hidden; }
.card__icon { transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease; }
.card:hover .card__icon { transform: translateY(-2px) rotate(-6deg) scale(1.09); }
.card::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(164, 247, 0, .14), transparent);
  transform: skewX(-18deg); transition: left .65s ease;
}
.card:hover::after { left: 135%; }
.svc__head .card__icon { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.svc:hover .card__icon { transform: rotate(-6deg) scale(1.08); }
.svc { transition: transform .25s ease, box-shadow .25s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* buttons: icon nudge + light sweep */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn::before {
  content: ""; position: absolute; inset: 0; left: -100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .55s ease;
}
.btn:hover::before { left: 100%; }
.btn--accent::before { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent); }

/* split media hover parallax */
.split__media img { transition: transform .5s ease, box-shadow .5s ease; }
.split__media:hover img { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 72px -24px rgba(12, 17, 16, .42); }
.split__media .tag { transition: transform .35s ease; }
.split__media:hover .tag { transform: translateY(-4px) rotate(-2deg); }

/* stat pop when counting */
.stat b { transition: transform .3s ease; }
.stat:hover b { transform: translateY(-3px) scale(1.04); }

/* info card rows lift */
.info-list li { transition: transform .25s ease; }
.info-list li:hover { transform: translateX(4px); }

/* FAQ answer fades in on open */
.faq details[open] > p { animation: fadeInDown .35s ease; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* back-to-top button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); border: 0; cursor: pointer;
  box-shadow: 0 10px 26px -8px rgba(164, 247, 0, .6); opacity: 0; transform: translateY(16px) scale(.9);
  pointer-events: none; transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: #b6ff2b; transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* keep the screenshot / reduced-motion paths static */
.no-anim .hero__inner > *, .no-anim .pagehero__inner > * { opacity: 1 !important; animation: none !important; }
.no-anim .hero__bg img, .no-anim .hero::before, .no-anim .scroll-cue svg { animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg img, .hero::before, .scroll-cue svg { animation: none !important; }
  .js .hero__inner > *, .js .pagehero__inner > * { opacity: 1 !important; animation: none !important; }
  .card::after, .btn::before { display: none !important; }
  .faq details[open] > p { animation: none !important; }
  .card:hover .card__icon, .svc:hover .card__icon, .split__media:hover img { transform: none !important; }
}
