/* ================================================================
   GEAR CLUB — Shared Stylesheet
   New showcase site v1.0
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --lime:    #C8E63C;
  --lime-d:  #a8c220;
  --lime-t:  #5C7800;
  --ink:     #0C0E13;
  --ink2:    #161921;
  --ink3:    #242835;
  --bg:      #F8F9FB;
  --surf:    #FFFFFF;
  --txt:     #0D0F14;
  --muted:   #6B7280;
  --border:  #E5E7EB;
  --font:    system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --max:     1240px;
  --gap:     clamp(1.5rem, 4vw, 3rem);
  --r:       6px;
  --nav-h:   64px;
}

/* Dark mode – system preference */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:     #0C0E13;
    --surf:   #161921;
    --txt:    #eef0ea;
    --muted:  #9ca3af;
    --border: #2a2e3a;
    --lime-t: #C8E63C;
  }
}
:root[data-theme="dark"] {
  --bg:     #0C0E13;
  --surf:   #161921;
  --txt:    #eef0ea;
  --muted:  #9ca3af;
  --border: #2a2e3a;
  --lime-t: #C8E63C;
}
:root[data-theme="light"] {
  --bg:     #F8F9FB;
  --surf:   #FFFFFF;
  --txt:    #0D0F14;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --lime-t: #5C7800;
}

/* ── 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);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── SECTION LABELS & HEADINGS ───────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime-t);
  margin-bottom: .9rem;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.sec-h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: .8rem;
}
.sec-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: var(--gap);
}

/* overrides for dark-background sections */
.on-dark .sec-label { color: rgba(200,230,60,.75); }
.on-dark .sec-h2    { color: #fff; }
.on-dark .sec-lead  { color: rgba(238,240,234,.5); }

/* ── DOT-GRID TEXTURE ────────────────────────────────────────── */
.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,230,60,.055) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: 0;
}
.dot-grid { position: relative; }
.dot-grid > * { position: relative; z-index: 1; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .875rem;
  border-radius: var(--r);
  padding: .7rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .15s, box-shadow .18s;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.btn-lime:hover {
  background: var(--lime-d);
  border-color: var(--lime-d);
  box-shadow: 0 6px 20px rgba(200,230,60,.3);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink2); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(12,14,19,.4);
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #E5E7EB;
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #4B5563;
  font-size: .82rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: var(--r);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: #0D0F14; background: rgba(12,14,19,.05); }
.nav-links a.active { color: var(--ink); font-weight: 700; }

.nav-cta { flex-shrink: 0; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r);
  margin-left: auto;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(12,14,19,.72);
  border-radius: 2px;
  transition: transform .3s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem;
}
.nav-overlay.is-open { display: flex; }
.nav-overlay a {
  color: rgba(255,255,255,.78);
  font-size: 1.45rem;
  font-weight: 600;
  transition: color .18s;
  padding: .25rem 0;
}
.nav-overlay a:hover { color: #fff; }
.nav-overlay a.active { color: var(--lime); }
.nav-overlay .overlay-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: .5rem;
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── PAGE BODY OFFSET (for fixed nav) ────────────────────────── */
.page-top { padding-top: var(--nav-h); }

/* ── HERO VARIANTS ───────────────────────────────────────────── */
.hero-dark {
  background: var(--ink);
  color: #fff;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem var(--gap) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-sub-dark {
  background: var(--ink2);
  padding: clamp(3.5rem, 7vw, 5rem) var(--gap);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--lime);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(200,230,60,.3);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(238,240,234,.62);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* sub-page hero (shorter) */
.hero-page {
  background: var(--ink);
  padding: calc(var(--nav-h) + 3rem) var(--gap) 3.5rem;
}
.hero-page-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-page-text {}
.hero-page-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-page-img img { width: 100%; height: 100%; }

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-page-inner { grid-template-columns: 1fr; }
  .hero-page-img { order: -1; max-height: 260px; }
  .hero h1 { font-size: 2.6rem; }
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  background: var(--lime);
  padding: .7rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 0 2.5rem;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.ticker-dot { width: 5px; height: 5px; background: rgba(12,14,19,.35); border-radius: 50%; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── USP STRIP ───────────────────────────────────────────────── */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surf);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-item {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.usp-item:last-child { border-right: none; }
.usp-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: .2rem;
}
.usp-text {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
@media (max-width: 600px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(1), .usp-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(2) { border-right: none; }
}

/* ── AUDIENCE CARDS ──────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}
.audience-card {
  background: var(--surf);
  padding: 2.5rem 2rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.audience-card:hover { background: rgba(200,230,60,.10); }
.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.audience-card:hover::after { transform: scaleX(1); }
.aud-icon {
  font-size: 1.6rem;
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(200,230,60,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.audience-card h3 { color: var(--txt); font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .6rem; }
.audience-card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1.2rem; }
.card-link {
  color: var(--lime-t);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.audience-card:hover .card-link { gap: .6rem; }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.product-img {
  aspect-ratio: 1;
  background: var(--bg);
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .4s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-info { padding: 1.1rem 1.2rem 1.4rem; }
.product-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime-t);
  margin-bottom: .35rem;
}
.product-info h3 { font-size: .97rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .3rem; }
.product-info p  { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-bottom: .5rem; }
.product-price   { font-size: .85rem; color: var(--muted); }
.product-price strong { color: var(--txt); font-weight: 700; }

/* ── FEATURE TILES ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-tile {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
}
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.feature-tile h3 { color: var(--txt); font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .6rem; }
.feature-tile p  { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }
.gallery-scroll-item {
  flex: 0 0 300px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-scroll-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-scroll-item:hover img { transform: scale(1.05); }

/* Masonry grid */
.gallery-masonry {
  columns: 3 240px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item img { width: 100%; display: block; transition: transform .4s, filter .4s; filter: saturate(.85); }
.gallery-masonry-item:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,14,19,.75));
  padding: 1.5rem .75rem .6rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-masonry-item:hover .gallery-item-label { opacity: 1; }
.gallery-item-label span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--lime);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 4px;
}

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.process-step h3 { font-size: 1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .5rem; }
.process-step p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIAL CARDS ───────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.testi-stars { color: var(--lime-d); letter-spacing: 2px; margin-bottom: .9rem; font-size: 1rem; }
.testi-quote { color: var(--muted); font-size: .95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,230,60,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--lime-t);
  font-size: .85rem;
  flex-shrink: 0;
}
.testi-name  { font-weight: 700; color: var(--txt); font-size: .88rem; }
.testi-club  { font-size: .75rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--surf);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem var(--gap);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.trust-label {
  font-size: .73rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .13em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.8rem;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
}
.trust-check {
  width: 20px; height: 20px;
  background: var(--lime-t);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--lime);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gap);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(12,14,19,.07) 1px, transparent 0);
  background-size: 22px 22px;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: .8rem;
  text-wrap: balance;
}
.cta-band p { font-size: 1.05rem; color: rgba(12,14,19,.65); margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(200,230,60,.07);
  padding: 4rem var(--gap) 2rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {}
.footer-brand img { height: 30px; width: auto; margin-bottom: .75rem; filter: invert(1) brightness(5); mix-blend-mode: screen; }
.footer-brand p {
  color: rgba(238,240,234,.42);
  font-size: .87rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.4rem;
}
.footer-col h4 {
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: rgba(238,240,234,.42);
  font-size: .87rem;
  margin-bottom: .65rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-contact p { color: rgba(238,240,234,.42); font-size: .87rem; margin-bottom: .6rem; line-height: 1.5; }
.footer-contact strong { color: #fff; }
.footer-contact a { color: var(--lime); display: inline; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.footer-legal { font-size: .78rem; color: rgba(238,240,234,.28); }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: rgba(238,240,234,.5);
  transition: background .2s, color .2s;
}
.social-btn:hover { background: rgba(200,230,60,.14); color: var(--lime); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: span 2; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } }

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--txt); letter-spacing: .02em; }
.form-group label .req { color: var(--lime-t); }
.form-control {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surf);
  color: var(--txt);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color .18s, box-shadow .18s;
}
.form-control:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200,230,60,.18);
}
.form-control::placeholder { color: var(--muted); opacity: .7; }
select.form-control { appearance: none; -webkit-appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--lime-t);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary { color: var(--lime-t); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.2rem; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── FILTER TABS ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .5rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surf);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  letter-spacing: .04em;
}
.filter-btn:hover { border-color: var(--lime-t); color: var(--lime-t); }
.filter-btn.active { background: var(--lime); border-color: var(--lime); color: var(--ink); font-weight: 700; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-lime { color: var(--lime); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-sm  { margin-top: 1.5rem; }
.mt-md  { margin-top: 2.5rem; }
.mt-lg  { margin-top: 3.5rem; }
.mb-sm  { margin-bottom: 1.5rem; }
.mb-md  { margin-bottom: 2.5rem; }
.mt-auto { margin-top: auto; }

/* ── RESPONSIVE — TABLET ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner  { padding: 3rem var(--gap) 3rem; }
  .hero-page   { padding: calc(var(--nav-h) + 2rem) var(--gap) 2.5rem; }
  .hero-page-inner { gap: 1.5rem; }
  .gallery-masonry { columns: 2 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

/* ── RESPONSIVE — SMALL MOBILE ───────────────────────────────── */
@media (max-width: 480px) {
  .hero h1         { font-size: 2.1rem; letter-spacing: -.03em; }
  .hero-p          { font-size: .95rem; }
  .hero-inner      { padding: 2.5rem var(--gap) 2.5rem; gap: 2rem; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { display: flex; justify-content: center; width: 100%; box-sizing: border-box; }
  .hero-page-img   { max-height: 200px; }

  .sec-h2          { font-size: 1.75rem; }
  .sec-lead        { font-size: .95rem; }

  .btn             { white-space: normal; }

  .process-grid    { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .process-step    { padding: 1.25rem .6rem; }

  .gallery-masonry { columns: 1; }
  .gallery-scroll-item { flex: 0 0 255px; height: 180px; }

  .cta-band h2     { font-size: 1.75rem; }
  .cta-band p      { font-size: .95rem; }
  .cta-actions     { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .testi-grid      { gap: 1rem; }
  .trust-items     { gap: .75rem 1.5rem; }
  .usp-num         { font-size: 2rem; }

  .footer-bottom   { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .features-grid   { gap: 1rem; }
  .products-grid   { gap: 1rem; }
  .audience-grid   { grid-template-columns: 1fr; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .nav, .ticker, .cta-band, footer { display: none; }
  .hero-dark { background: #fff; color: #000; min-height: auto; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
