/* ─────────────────────────────────────────
   TOKENS
   Project: Cash 4 Diabetic Supplies
───────────────────────────────────────── */
:root {
  --ink:      #0a0d14;
  --ink-2:    #141820;
  --ink-3:    #1c2130;
  --gold:     #f5c842;
  --gold-d:   #d9a800;
  --gold-l:   #fff8d6;
  --lime:     #b5f53a;
  --lime-d:   #8fd420;
  --teal:     #1ae8b4;
  --white:    #ffffff;
  --off:      #f4f5f7;
  --muted:    #8a93a8;
  --border:   rgba(255,255,255,.09);
  --border-l: rgba(10,13,20,.08);
  
  --ice-blue:        #edf3f8;
  --ice-blue-border: #ccd6e0;
  --slate-navy:      #131a26;
  --slate-gray:      #4e596b;

  --r-sm: 8px;
  --r:    16px;
  --r-lg: 28px;
  --r-xl: 40px;

  --e: cubic-bezier(.4,0,.2,1);
  --t: .22s var(--e);
  --tm: .3s var(--e);
}

*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   UTILITY
   ───────────────────────────────────────── */
.container { max-width: 1160px; margin: auto; padding: 0 1.5rem; }
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 999px;
}
.tag-gold { background: var(--gold); color: var(--ink); }
.tag-lime { background: var(--lime); color: var(--ink); }
.tag-outline { border: 1.5px solid var(--border); color: var(--muted); }

/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(10,13,20,.88);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1160px; margin: auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  text-decoration: none; display: flex; align-items: center; gap: .75rem;
  transition: opacity var(--t);
}
.nav-brand:hover { opacity: 1; }
.nav-brand-badge {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(245,200,66,.25);
  transition: transform var(--tm), background var(--t), box-shadow var(--tm);
}
.nav-brand-badge svg {
  stroke: var(--ink);
  transition: stroke var(--t);
}
.nav-brand:hover .nav-brand-badge {
  transform: scale(1.06);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(255,255,255,.2);
}
.nav-brand:hover .nav-brand-badge svg {
  stroke: var(--slate-navy);
}
.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
  display: flex; align-items: center;
  transition: color var(--t);
}
.nav-brand-name span {
  color: var(--gold);
  margin: 0 2px;
  transition: color var(--t);
}
.nav-brand:hover .nav-brand-name {
  color: var(--gold);
}
.nav-brand:hover .nav-brand-name span {
  color: var(--white);
}
.nav-r { display: flex; align-items: center; gap: .75rem; }
.nav-num {
  font-size: .85rem; font-weight: 600; color: var(--muted);
  text-decoration: none; display: flex; align-items: center; gap: .4rem;
  padding: .4rem .75rem; border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-num:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: .85rem;
  text-decoration: none; padding: .5rem 1.2rem; border-radius: var(--r-sm);
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 2px 12px rgba(245,200,66,.35);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
}
.nav-cta:hover { background: var(--gold-d); transform: translateY(-1px) scale(1.03); box-shadow: 0 6px 20px rgba(245,200,66,.5); }
.nav-cta:active { transform: scale(.98); }
@media (max-width:480px) { .nav-num { display:none; } }

/* Language Toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 6px; padding: 2px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); padding: .3rem .55rem; border-radius: 4px;
  transition: color var(--t), background var(--t);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--gold); color: var(--ink); }
.lang-sep { display: none; }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
#hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  padding: 5rem 1.5rem 6rem;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--ink);
}
.hero-bg-blob-1 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  top: -200px; left: -200px; pointer-events: none;
  background: radial-gradient(circle, rgba(245,200,66,.18) 0%, transparent 70%);
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.hero-bg-blob-2 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  bottom: -150px; right: -100px; pointer-events: none;
  background: radial-gradient(circle, rgba(26,232,180,.12) 0%, transparent 70%);
  animation: blob-drift 10s ease-in-out 2s infinite alternate-reverse;
}
@keyframes blob-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,30px) scale(1.08); } }

.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .035;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  position: relative; max-width: 1160px; margin: auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
@media (max-width:900px) { .hero-inner { grid-template-columns: 1fr; gap: 3rem; } }

.hero-left {}
.hero-eyebrow {
  display: flex; align-items: center; gap: .65rem; margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
.hero-eyebrow-text {
  font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .05em;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .95; letter-spacing: .02em;
  margin-bottom: 1.5rem;
}
.hero-h1 .line-gold { color: var(--gold); display: block; }
.hero-h1 .line-white { color: var(--white); display: block; }
.hero-h1 .line-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,.25);
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem; color: var(--muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.btn-gold {
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: var(--r-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 4px 24px rgba(245,200,66,.45);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
  border: none; cursor: pointer; font-family: inherit;
  will-change: transform;
}
.btn-gold:hover { background: var(--gold-d); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(245,200,66,.55); }
.btn-gold:active { transform: translateY(-1px) scale(.99); }
.btn-ghost-light {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.15);
  font-weight: 600; font-size: 1rem;
  padding: .97rem 1.85rem; border-radius: var(--r-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  transition: background var(--t), border-color var(--t), transform var(--tm);
  will-change: transform;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

.hero-proof {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-proof-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--muted); font-weight: 500;
  transition: color var(--t), transform var(--t);
}
.hero-proof-item:hover { color: var(--white); transform: translateY(-1px); }
.proof-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(181,245,58,.15); border: 1.5px solid rgba(181,245,58,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
}
.hero-proof-item:hover .proof-check { background: rgba(181,245,58,.25); border-color: var(--lime); }

/* Hero right card */
.hero-card {
  background: var(--ink-2); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--teal));
}
.hc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: .05em; margin-bottom: .35rem; color: var(--white);
}
.hc-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.75rem; }
.hc-form {}
.hc-field { margin-bottom: 1rem; }
.hc-field label { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.hc-field input, .hc-field textarea {
  width: 100%; padding: .78rem 1rem;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); color: var(--white);
  font-size: .93rem; font-family: inherit; outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.hc-field input::placeholder, .hc-field textarea::placeholder { color: rgba(255,255,255,.28); }
.hc-field input:hover, .hc-field textarea:hover { border-color: rgba(255,255,255,.22); }
.hc-field input:focus, .hc-field textarea:focus { border-color: var(--gold); background: rgba(245,200,66,.05); box-shadow: 0 0 0 3px rgba(245,200,66,.12); }
.hc-field textarea { min-height: 90px; resize: vertical; line-height: 1.55; }
.hc-btn {
  width: 100%; padding: 1rem; border: none; border-radius: var(--r-sm);
  background: var(--gold); color: var(--ink); cursor: pointer;
  font-size: .97rem; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  box-shadow: 0 4px 20px rgba(245,200,66,.3);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.hc-btn:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,200,66,.45); }
.hc-btn:active { transform: translateY(0); }
.hc-note { font-size: .73rem; color: var(--muted); text-align: center; margin-top: .85rem; display: flex; align-items: center; justify-content: center; gap: .35rem; }

/* ─────────────────────────────────────────
   TRUST BAR
   ───────────────────────────────────────── */
#trust-bar {
  background: linear-gradient(90deg, #f5c842, #ffecae, #f5c842);
  padding: 1.1rem 1.5rem;
  overflow: hidden;
  position: relative;
  border-top: 1.5px solid rgba(255,255,255,.15);
  border-bottom: 1.5px solid rgba(10,13,20,.08);
}
.trust-bar-track {
  display: flex; gap: 3rem; align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-bar-item {
  display: flex; align-items: center; gap: .6rem; white-space: nowrap;
  font-size: .82rem; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: .05em;
}
.trust-bar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); opacity: .4; flex-shrink: 0; }

/* ─────────────────────────────────────────
   LEGITIMACY / TRUST SECTION
   ───────────────────────────────────────── */
#legit {
  background: var(--ice-blue); color: var(--slate-navy);
  padding: 7rem 1.5rem;
  position: relative; overflow: hidden;
}
.legit-accent {
  position: absolute; right: -100px; top: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,200,66,.18) 0%, transparent 70%);
  pointer-events: none;
}
.legit-inner {
  max-width: 1160px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media (max-width: 800px) { .legit-inner { grid-template-columns: 1fr; gap: 3rem; } }

.legit-left {}
.legit-tag { margin-bottom: 1.25rem; }
.legit-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: .03em;
  line-height: 1; color: var(--slate-navy); margin-bottom: 1.25rem;
}
.legit-h2 span { color: var(--gold-d); }
.legit-body { font-size: 1rem; color: var(--slate-gray); line-height: 1.75; margin-bottom: 2rem; max-width: 460px; }

.legit-badges { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.legit-badge {
  background: var(--white); border-radius: var(--r);
  padding: 1.25rem 1.25rem;
  border: 1.5px solid var(--ice-blue-border);
  display: flex; align-items: flex-start; gap: .85rem;
  transition: border-color var(--t), box-shadow var(--tm), transform var(--tm);
}
.legit-badge:hover { border-color: var(--gold-d); box-shadow: 0 8px 28px rgba(245,200,66,.12); transform: translateY(-3px); }
.lb-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-l); color: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.legit-badge:hover .lb-icon { background: var(--gold-d); color: var(--white); }
.lb-name { font-size: .82rem; font-weight: 700; color: var(--slate-navy); line-height: 1.3; }
.lb-sub { font-size: .75rem; color: var(--slate-gray); margin-top: .15rem; }

.legit-right {}
.legit-stat-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.legit-stat {
  background: var(--ink-2); color: var(--white);
  border-radius: var(--r); padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform var(--tm), box-shadow var(--tm);
}
.legit-stat:hover { transform: translateX(6px); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.ls-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: .02em; color: var(--gold); line-height: 1; flex-shrink: 0;
}
.ls-text-title { font-size: .95rem; font-weight: 700; color: var(--white); }
.ls-text-sub { font-size: .82rem; color: var(--muted); margin-top: .15rem; }

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
#how {
  background: var(--ink-2);
  padding: 7rem 1.5rem;
  position: relative; overflow: hidden;
}
.how-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .025;
  background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
}
.how-header { text-align: center; margin-bottom: 4.5rem; }
.how-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: .03em; line-height: 1;
  margin: .75rem 0 1rem;
}
.how-h2 em { color: var(--gold); font-style: normal; }
.how-sub { font-size: 1rem; color: var(--muted); max-width: 420px; margin: 0 auto; line-height: 1.7; }

.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative;
}
@media (max-width: 720px) { .how-steps { grid-template-columns: 1fr; } }

.how-connector {
  position: absolute; top: 52px; left: calc(33.33% + 24px); right: calc(33.33% + 24px);
  height: 2px; pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  opacity: .3;
}
@media (max-width:720px) { .how-connector { display:none; } }

.how-step {
  background: var(--ink-3); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color var(--tm), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.how-step::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(245,200,66,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--tm);
}
.how-step:hover { border-color: rgba(245,200,66,.35); transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,.4); }
.how-step:hover::after { opacity: 1; }

.hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; letter-spacing: -.02em; line-height: 1;
  color: rgba(255,255,255,.04); position: absolute; top: 1rem; right: 1.5rem;
  transition: color var(--tm);
}
.how-step:hover .hs-num { color: rgba(245,200,66,.08); }
.hs-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; position: relative;
  transition: transform var(--tm), box-shadow var(--tm);
}
.hs-icon.gold { background: rgba(245,200,66,.12); color: var(--gold); }
.hs-icon.lime { background: rgba(181,245,58,.12); color: var(--lime); }
.hs-icon.teal { background: rgba(26,232,180,.12); color: var(--teal); }
.how-step:hover .hs-icon.gold { background: var(--gold); color: var(--ink); transform: scale(1.1); box-shadow: 0 8px 24px rgba(245,200,66,.4); }
.how-step:hover .hs-icon.lime { background: var(--lime); color: var(--ink); transform: scale(1.1); box-shadow: 0 8px 24px rgba(181,245,58,.35); }
.how-step:hover .hs-icon.teal { background: var(--teal); color: var(--ink); transform: scale(1.1); box-shadow: 0 8px 24px rgba(26,232,180,.35); }
.hs-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .55rem; color: var(--white); letter-spacing: -.01em; transition: color var(--t); }
.how-step:hover .hs-title { color: var(--gold); }
.hs-body { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────────────────
   MONEY BANNER
   ───────────────────────────────────────── */
#money-banner {
  background: var(--gold);
  padding: 5rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.mb-circles {
  position: absolute; inset: 0; pointer-events: none;
}
.mb-c1, .mb-c2 {
  position: absolute; border-radius: 50%; border: 80px solid rgba(255,255,255,.08);
}
.mb-c1 { width: 700px; height: 700px; top: -300px; left: -200px; }
.mb-c2 { width: 500px; height: 500px; bottom: -250px; right: -150px; }
.mb-inner { position: relative; max-width: 700px; margin: auto; }
.mb-tag { margin-bottom: 1.5rem; }
.mb-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem); letter-spacing: .03em; line-height: 1;
  color: var(--ink); margin-bottom: 1rem;
}
.mb-sub { font-size: 1.1rem; color: rgba(10,13,20,.68); margin-bottom: 2.5rem; line-height: 1.65; }
.mb-sub strong { color: var(--ink); }
.mb-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--ink); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: var(--r-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.btn-dark:hover { background: var(--ink-3); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.btn-dark:active { transform: translateY(-1px) scale(.99); }
.btn-wa-gold {
  background: var(--ink); color: var(--gold);
  border: 2.5px solid var(--gold);
  font-weight: 700; font-size: 1rem;
  padding: .9rem 2rem; border-radius: var(--r-sm);
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 4px 20px rgba(245,200,66,.15);
  transition: background var(--t), color var(--t), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.btn-wa-gold:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(245,200,66,.4); }

/* ─────────────────────────────────────────
   PRODUCTS
   ───────────────────────────────────────── */
#products {
  background: var(--ink); padding: 7rem 1.5rem;
  position: relative; overflow: hidden;
}
.prod-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(245,200,66,.05) 0%, transparent 70%);
}
.prod-header { margin-bottom: 3.5rem; }
.prod-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); letter-spacing: .03em; line-height: 1;
  margin: .75rem 0 1rem;
}
.prod-h2 em { color: var(--gold); font-style: normal; }
.prod-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.7; }

.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 860px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: var(--ink-2); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2.25rem 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color var(--tm), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.prod-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity var(--tm);
  background: linear-gradient(90deg, var(--gold), var(--lime));
}
.prod-card:hover { border-color: rgba(245,200,66,.25); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.prod-card:hover::before { opacity: 1; }
.prod-card.featured {
  border-color: rgba(245,200,66,.3);
  background: linear-gradient(135deg, rgba(245,200,66,.06) 0%, var(--ink-2) 60%);
}
.pc-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: rgba(245,200,66,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--tm), color var(--tm), transform var(--tm), box-shadow var(--tm);
}
.prod-card:hover .pc-icon { background: var(--gold); color: var(--ink); transform: scale(1.1); box-shadow: 0 6px 18px rgba(245,200,66,.35); }
.pc-name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; letter-spacing: -.01em; transition: color var(--t); }
.prod-card:hover .pc-name { color: var(--gold); }
.pc-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.prd-photo { height: 96px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; width: 100%; }
.prd-photo svg {
  height: 80px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  transition: transform var(--tm);
}
.prod-card:hover .prd-photo svg { transform: scale(1.08) rotate(2deg); }
.pc-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  border-radius: 999px; padding: .24rem .85rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  transition: background var(--t), color var(--t);
}
.pcb-gold { background: rgba(245,200,66,.12); color: var(--gold); border: 1px solid rgba(245,200,66,.2); }
.pcb-lime { background: rgba(181,245,58,.1); color: var(--lime); border: 1px solid rgba(181,245,58,.2); }
.prod-card:hover .pcb-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.prod-card:hover .pcb-lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ─────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────── */
#testimonials {
  background: var(--ink-3); padding: 7rem 1.5rem;
  position: relative; overflow: hidden;
}
.testi-glow {
  position: absolute; left: 0; top: 0; width: 400px; height: 400px; pointer-events: none;
  background: radial-gradient(circle, rgba(26,232,180,.06) 0%, transparent 70%);
}
.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: .03em; line-height: 1;
  margin: .75rem 0 1rem;
}
.testi-h2 em { color: var(--teal); font-style: normal; }
.testi-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 400px; margin: 0 auto; }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 840px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.testi-card {
  background: var(--ink-2); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color var(--tm), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.testi-card:hover { border-color: rgba(26,232,180,.25); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.45); }
.testi-stars { display: flex; gap: .25rem; margin-bottom: 1.1rem; }
.star-icon { color: var(--gold); }
.testi-quote {
  font-size: .93rem; color: rgba(255,255,255,.8); line-height: 1.72;
  margin-bottom: 1.5rem; font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--teal); font-size: 1.5rem; line-height: 0; vertical-align: -.25em; margin-right: .15rem; }
.testi-quote::after  { content: '\201D'; color: var(--teal); font-size: 1.5rem; line-height: 0; vertical-align: -.25em; margin-left: .15rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: .04em;
}
.av-gold { background: rgba(245,200,66,.15); color: var(--gold); border: 1.5px solid rgba(245,200,66,.25); }
.av-teal { background: rgba(26,232,180,.12); color: var(--teal); border: 1.5px solid rgba(26,232,180,.22); }
.av-lime { background: rgba(181,245,58,.15); color: var(--lime); border: 1.5px solid rgba(181,245,58,.25); }
.testi-name { font-size: .88rem; font-weight: 700; color: var(--white); }
.testi-loc { font-size: .76rem; color: var(--muted); margin-top: .1rem; }

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
#faq {
  background: var(--ice-blue); color: var(--slate-navy); padding: 7rem 1.5rem;
}
.faq-inner { max-width: 1160px; margin: auto; display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
@media (max-width: 800px) { .faq-inner { grid-template-columns: 1fr; gap: 3rem; } }
.faq-left {}
.faq-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: .03em; line-height: 1;
  color: var(--slate-navy); margin: .75rem 0 1rem;
}
.faq-h2 span { color: var(--gold-d); }
.faq-body-text { font-size: .97rem; color: var(--slate-gray); line-height: 1.75; margin-bottom: 2rem; }
.faq-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--slate-navy); color: var(--white);
  font-weight: 700; font-size: .93rem;
  padding: .9rem 1.75rem; border-radius: var(--r-sm);
  text-decoration: none;
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
}
.faq-cta:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.faq-right {}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--ice-blue-border); border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item:hover { border-color: var(--gold-d); box-shadow: 0 4px 20px rgba(217,168,0,.08); }
.faq-q {
  width: 100%; padding: 1.15rem 1.4rem;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .95rem; font-weight: 700; color: var(--slate-navy); font-family: inherit;
  text-align: left;
  transition: background var(--t);
}
.faq-q:hover { background: rgba(238,243,247,.3); }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--ice-blue); color: var(--slate-navy);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.faq-item.open .faq-q-icon { background: var(--slate-navy); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--e), padding var(--t);
  font-size: .9rem; color: var(--slate-gray); line-height: 1.75;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a { max-height: 350px; padding: 0 1.4rem 1.25rem; }

/* ─────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────── */
#contact {
  background: var(--ink-2); padding: 7rem 1.5rem;
  position: relative; overflow: hidden;
}
.contact-glow-l {
  position: absolute; left: -200px; bottom: -100px; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(245,200,66,.09) 0%, transparent 70%);
}
.contact-glow-r {
  position: absolute; right: -100px; top: -100px; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(26,232,180,.07) 0%, transparent 70%);
}
.contact-inner {
  max-width: 1160px; margin: auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
@media (max-width: 800px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }

.contact-left {}
.contact-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: .03em; line-height: 1;
  margin: .75rem 0 1.25rem; color: var(--white);
}
.contact-h2 em { color: var(--gold); font-style: normal; }
.contact-body { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 420px; }
.contact-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--r); margin: 0 -1rem;
  transition: background var(--t), transform var(--tm);
}
.contact-item:hover { background: rgba(255,255,255,.04); transform: translateX(5px); }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm); flex-shrink: 0;
  background: rgba(245,200,66,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.contact-item:hover .ci-icon { background: var(--gold); color: var(--ink); transform: scale(1.06); }
.ci-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .2rem; }
.ci-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.ci-val a { color: var(--white); text-decoration: none; position: relative; transition: color var(--t); }
.ci-val a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width var(--tm); }
.ci-val a:hover { color: var(--gold); }
.ci-val a:hover::after { width: 100%; }
.ci-sub { font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.ci-shipping-note {
  font-size: .82rem; color: var(--teal); margin-top: .35rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
}

.call-btn-main {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: 1.05rem;
  padding: 1.1rem 2.25rem; border-radius: var(--r-sm); text-decoration: none;
  box-shadow: 0 4px 24px rgba(245,200,66,.4);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.call-btn-main:hover { background: var(--gold-d); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(245,200,66,.52); }
.call-btn-main:active { transform: translateY(-1px) scale(.99); }

.contact-right {}
.form-shell {
  background: var(--ink-3); border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 2.5rem; position: relative; overflow: hidden;
}
.form-shell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--lime), var(--teal));
}
.form-shell-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .04em; margin-bottom: .35rem; color: var(--white);
}
.form-shell-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.75rem; }
.ff { margin-bottom: 1.1rem; }
.ff label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .42rem; }
.ff input, .ff textarea {
  width: 100%; padding: .8rem 1.05rem;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); color: var(--white);
  font-size: .93rem; font-family: inherit; outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(255,255,255,.25); }
.ff input:hover, .ff textarea:hover { border-color: rgba(255,255,255,.2); }
.ff input:focus, .ff textarea:focus { border-color: var(--gold); background: rgba(245,200,66,.05); box-shadow: 0 0 0 3px rgba(245,200,66,.12); }
.ff textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

.form-submit-btn {
  width: 100%; padding: 1rem; border: none; border-radius: var(--r-sm);
  background: var(--gold); color: var(--ink); cursor: pointer;
  font-size: .97rem; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  box-shadow: 0 4px 20px rgba(245,200,66,.3);
  transition: background var(--t), transform var(--tm), box-shadow var(--tm);
  will-change: transform;
}
.form-submit-btn:hover { background: var(--gold-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,200,66,.45); }
.form-submit-btn:active { transform: translateY(0); }
.form-note { font-size: .73rem; color: var(--muted); text-align: center; margin-top: .85rem; display: flex; align-items: center; justify-content: center; gap: .35rem; }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-wrap {
  max-width: 1160px; margin: auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 4rem; margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .footer-wrap { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand-row { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-bottom: 1rem; }
.footer-brand-row img { height: 36px; width: auto; }
.footer-tagline { font-size: .875rem; color: var(--muted); line-height: 1.75; max-width: 380px; }
.footer-contacts-col h6 { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-bottom: 1.1rem; }
.fcl { display: flex; flex-direction: column; gap: .9rem; }
.fcrow { display: flex; align-items: flex-start; gap: .75rem; }
.fci { width: 30px; height: 30px; border-radius: 7px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fct { font-size: .87rem; color: var(--muted); line-height: 1.55; }
.fct a { color: var(--gold); text-decoration: none; font-weight: 600; transition: opacity var(--t); }
.fct a:hover { opacity: .75; }
.footer-hr { border: none; border-top: 1px solid var(--border); max-width: 1160px; margin: 0 auto 1.5rem; }
.footer-bottom { max-width: 1160px; margin: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(0,0,.2,1), transform .6s cubic-bezier(0,0,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.from-left  { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.from-left.in, .reveal.from-right.in { transform: translateX(0); }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
