/* ================================================================
   EcoCycle — Conversion-First UI
   Author: EcoCycle Design System
   Structure: Tokens → Reset → Layout → Components → Sections → Responsive
================================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Background */
  --bg:        #0C0D0E;
  --bg-2:      #1A1C1E;
  --bg-3:      #2B2E31;
  --glass:     rgba(22, 24, 27, 0.65);

  /* Brand */
  --lime:      #AADF3F;
  --lime-dim:  rgba(170, 223, 63, 0.12);
  --lime-glow: rgba(170, 223, 63, 0.25);
  --sky:       #4DB8FF;
  --sky-dim:   rgba(77, 184, 255, 0.12);
  --copper:    #D4843A;
  --wa:        #25D366;

  /* Text */
  --white:  #FFFFFF;
  --muted:  #6B7280;
  --faint:  #9CA3AF;

  /* Borders */
  --border:    rgba(255, 255, 255, 0.07);
  --border-md: rgba(255, 255, 255, 0.12);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --t:    0.25s;

  /* Layout */
  --max-w: 1160px;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }
select, input { font-family: inherit; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.wrap   { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sec    { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ai-center { align-items: center; }
.ai-end    { align-items: flex-end; }
.tc        { text-align: center; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }

.lede { font-size: 1.1rem;  color: var(--faint); line-height: 1.75; }
.cap  { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); }
.g    { background: linear-gradient(135deg, var(--lime), #7ab82b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mono { font-family: 'DM Mono', monospace; }

/* ─── GLASS SURFACE ──────────────────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; border: 1.5px solid transparent;
  transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn-lime   { background: var(--lime); color: var(--bg); }
.btn-lime:hover { background: #c0f047; box-shadow: 0 0 24px var(--lime-glow); transform: translateY(-2px); }
.btn-ghost  { background: transparent; border-color: var(--border-md); color: var(--faint); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); transform: translateY(-2px); }
.btn-wa     { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1cb956; box-shadow: 0 0 20px rgba(37,211,102,0.3); transform: translateY(-2px); }
.btn-sky    { background: var(--sky); color: var(--bg); }
.btn-sky:hover { box-shadow: 0 0 20px var(--sky-dim); transform: translateY(-2px); }
.btn-sm     { padding: 9px 18px; font-size: 0.82rem; }
.btn-w      { width: 100%; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav-h); z-index: 200;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.stuck {
  background: rgba(12, 13, 14, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: var(--border);
}
.nav-inner  { display: flex; justify-content: space-between; align-items: center; }
.logo       { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.logo-mark  { width: 34px; height: 34px; background: var(--lime); color: var(--bg); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; flex-shrink: 0; }
.nav-links  { display: flex; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--faint); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-ctas   { display: flex; gap: 10px; }
.hamburger  { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; padding: 4px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(12,13,14,0.97);
  backdrop-filter: blur(20px); z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 1.5rem; font-weight: 700; color: var(--faint); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--white); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--faint); font-size: 1.6rem; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; left: -15%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(170,223,63,0.07) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 8px;
  background: var(--lime-dim); border: 1px solid rgba(170,223,63,0.2);
  border-radius: 999px; margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.badge span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime); }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }

.hero-sub     { font-size: 1.15rem; color: var(--faint); max-width: 460px; margin: 20px 0 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.proof-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; width: fit-content;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--r-md);
}
.avatars    { display: flex; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-2); object-fit: cover; }
.avatars img + img { margin-left: -10px; }
.proof-text { font-size: 0.82rem; color: var(--faint); line-height: 1.4; }
.proof-text strong { color: var(--white); display: block; }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker-col {
  height: 72vh; overflow: hidden; position: relative;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track { display: flex; flex-direction: column; gap: 16px; animation: scrollUp 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes scrollUp { 0%{ transform: translateY(0); } 100%{ transform: translateY(-50%); } }

.t-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.t-card:hover { border-color: rgba(170,223,63,0.35); transform: translateX(-8px); }
.t-card img   { width: 100%; height: 160px; object-fit: cover; }
.t-card-foot  { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
.t-card-foot span { font-size: 0.9rem; font-weight: 600; }
.t-pill { background: var(--lime-dim); color: var(--lime); padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--faint); }
.trust-item i { color: var(--lime); }

/* ─── STATS ──────────────────────────────────────────────────── */
.stats      { padding: 72px 0; border-bottom: 1px solid var(--border); }
.stat-grid  { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item  { text-align: center; padding: 0 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-n     { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; color: var(--lime); line-height: 1; }
.stat-l     { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.sh         { margin-bottom: 56px; }
.sh .cap    { margin-bottom: 10px; }
.sh p       { margin-top: 14px; color: var(--faint); max-width: 520px; font-size: 1.05rem; }
.sh.tc p    { margin: 14px auto 0; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.img-stack  { position: relative; height: 480px; }
.img-main   { position: absolute; right: 0; top: 0; width: 82%; height: 380px; object-fit: cover; border-radius: var(--r-xl); }
.img-pip    { position: absolute; left: 0; bottom: 0; width: 52%; height: 260px; object-fit: cover; border-radius: var(--r-lg); border: 5px solid var(--bg); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.img-tag    { position: absolute; top: 20px; left: 20px; padding: 10px 16px; border-radius: var(--r-sm); background: rgba(12,13,14,0.75); backdrop-filter: blur(12px); border: 1px solid var(--border); font-size: 0.8rem; font-weight: 600; color: var(--lime); display: flex; align-items: center; gap: 6px; }

.feat-list  { display: flex; flex-direction: column; gap: 18px; }
.feat-item  { display: flex; gap: 14px; }
.feat-icon  { width: 38px; height: 38px; border-radius: 10px; background: var(--lime-dim); color: var(--lime); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-body strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.feat-body span   { font-size: 0.9rem; color: var(--muted); }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.step-card {
  padding: 36px; display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t), background var(--t);
}
.step-card:hover { border-color: rgba(170,223,63,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.025); }
.step-num   { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.step-icon  { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.si-lime    { background: var(--lime-dim);                  color: var(--lime);   }
.si-sky     { background: var(--sky-dim);                   color: var(--sky);    }
.si-copper  { background: rgba(212, 132, 58, 0.12);         color: var(--copper); }
.si-purple  { background: rgba(139, 92, 246, 0.12);         color: #8B5CF6;       }
.step-card p { color: var(--muted); font-size: 0.92rem; margin-top: 10px; line-height: 1.65; }

/* ─── ACCORDION ──────────────────────────────────────────────── */
.sticky-col { position: sticky; top: 96px; }
.acc-list   { display: flex; flex-direction: column; }
.acc-item   { border-bottom: 1px solid var(--border); }
.acc-btn    {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 0; background: none; border: none;
  color: var(--white); font-size: 1.05rem; font-weight: 600;
  text-align: left; transition: color 0.2s;
}
.acc-n  { font-size: 0.78rem; color: var(--muted); font-weight: 500; width: 28px; flex-shrink: 0; }
.acc-t  { flex: 1; }
.acc-ic { color: var(--muted); transition: transform 0.35s var(--ease), color 0.2s; }
.acc-item.open .acc-ic { transform: rotate(180deg); color: var(--lime); }
.acc-item.open .acc-t  { color: var(--lime); }
.acc-body   { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), padding 0.45s var(--ease); padding-left: 44px; }
.acc-item.open .acc-body { max-height: 180px; padding-bottom: 18px; }
.acc-body p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ─── MATERIALS TABS ─────────────────────────────────────────── */
.tab-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 11px 22px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s; display: flex; align-items: center; gap: 7px;
}
.tab-btn:hover  { border-color: var(--border-md); color: var(--white); }
.tab-btn.on     { background: var(--lime-dim); border-color: rgba(170,223,63,0.4); color: var(--lime); }
.mat-wrap       { padding: 40px; }
.tab-pane       { display: none; animation: fadeUp 0.35s ease; }
.tab-pane.on    { display: block; }
@keyframes fadeUp { from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }

.mat-img-wrap   { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.mat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mat-badge-excl { position: absolute; top: 14px; left: 14px; background: var(--copper); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }

.price-pair {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px; border-radius: var(--r-md); margin-top: 24px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
}
.pp-col .pp-l { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: block; margin-bottom: 6px; }
.pp-col .pp-v { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.pp-col .pp-v .pp-u { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pp-arrow     { color: var(--border-md); font-size: 1.2rem; }
.mat-actions  { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { padding: 32px; border-radius: var(--r-xl); border: 1px solid var(--border); background: rgba(255,255,255,0.025); transition: border-color var(--t), transform var(--t); }
.testi-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.testi-stars { color: var(--lime); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; color: var(--faint); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-md); }
.testi-name   { font-size: 0.9rem; font-weight: 700; }
.testi-role   { font-size: 0.78rem; color: var(--muted); }

/* ─── PRICING ────────────────────────────────────────────────── */
.plan-toggle { display: inline-flex; background: var(--bg-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin-bottom: 48px; }
.toggle-opt  { padding: 9px 22px; border-radius: 999px; border: none; background: transparent; color: var(--muted); font-weight: 600; font-size: 0.88rem; transition: all 0.25s; display: flex; align-items: center; gap: 6px; }
.toggle-opt.on { background: var(--lime); color: var(--bg); }
.save-pill   { font-size: 0.68rem; background: var(--lime-dim); color: var(--lime); padding: 2px 8px; border-radius: 999px; }

.plan-card   { padding: 36px; display: flex; flex-direction: column; position: relative; transition: transform var(--t), border-color var(--t); }
.plan-card:hover:not(.feat) { transform: translateY(-6px); border-color: var(--border-md); }
.plan-card.feat { border-color: rgba(170,223,63,0.4); background: linear-gradient(160deg, rgba(170,223,63,0.05) 0%, var(--glass) 100%); }
.pop-tag     { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--bg); font-size: 0.7rem; font-weight: 800; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.plan-tier   { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.plan-price  { display: flex; align-items: baseline; gap: 3px; margin-bottom: 28px; }
.plan-price .cur { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
.plan-price .amt { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan-price .per { font-size: 0.88rem; color: var(--muted); }
.plan-feats  { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.plan-feats i  { color: var(--lime); font-size: 0.78rem; }

/* ─── LOCATIONS ──────────────────────────────────────────────── */
.loc-card { overflow: hidden; display: flex; flex-direction: column; border-radius: var(--r-xl); transition: border-color var(--t), transform var(--t); }
.loc-card:hover { border-color: rgba(170,223,63,0.3); transform: translateY(-4px); }
.loc-img  { height: 200px; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.loc-card:hover .loc-img { transform: scale(1.04); }
.loc-body { padding: 28px; flex: 1; }
.loc-tag  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); margin-bottom: 8px; display: block; }
.loc-body p { font-size: 0.88rem; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* ─── DUAL CTA ───────────────────────────────────────────────── */
.cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-box  { padding: 48px 44px; border-radius: var(--r-xl); border: 1px solid var(--border); transition: border-color var(--t), transform var(--t); }
.cta-box:hover { transform: translateY(-4px); }
.cta-lime { background: linear-gradient(135deg, rgba(170,223,63,0.06) 0%, var(--bg-2) 100%); }
.cta-lime:hover { border-color: rgba(170,223,63,0.35); }
.cta-sky  { background: linear-gradient(135deg, rgba(77,184,255,0.06) 0%, var(--bg-2) 100%); }
.cta-sky:hover  { border-color: rgba(77,184,255,0.35); }
.cta-box h3 { font-size: 1.6rem; margin: 10px 0 12px; }
.cta-box p  { color: var(--muted); font-size: 0.95rem; max-width: 340px; line-height: 1.65; }
.cta-box .btn { margin-top: 24px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q    {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none;
  color: var(--white); font-size: 1rem; font-weight: 600; text-align: left;
  gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--lime); }
.faq-ic   { color: var(--muted); transition: transform 0.3s var(--ease), color 0.2s; flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); color: var(--lime); }
.faq-a    { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }
.faq-a p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer      { background: #000; border-top: 1px solid var(--border); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 16px; max-width: 260px; line-height: 1.65; }
.footer-col h5  { font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.footer-col a   { display: block; color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.nl-form    { display: flex; gap: 8px; margin-top: 16px; }
.nl-input   { flex: 1; min-width: 0; padding: 11px 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--white); font-family: inherit; font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.nl-input:focus { border-color: var(--lime); }
.footer-bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.82rem; }
.soc-links  { display: flex; gap: 14px; }
.soc-links a { color: var(--muted); font-size: 1.1rem; transition: color 0.2s; }
.soc-links a:hover { color: var(--white); }

/* ─── SIDEBAR / DRAWER ───────────────────────────────────────── */
.sidebar-trigger {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  background: var(--lime); color: var(--bg);
  writing-mode: vertical-rl; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 22px 11px; border-radius: 10px 0 0 10px;
  cursor: pointer; z-index: 500;
  box-shadow: -4px 0 20px var(--lime-glow);
  transition: padding 0.25s, background 0.2s;
}
.sidebar-trigger:hover { background: #c0f047; padding-right: 15px; }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(5px); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.overlay.vis { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 100%; max-width: 400px;
  background: rgba(14, 16, 18, 0.97);
  z-index: 1000; padding: 44px 32px;
  border-left: 1px solid var(--border);
  transition: right 0.45s var(--ease); overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--muted); font-size: 1.4rem; transition: color 0.2s; }
.drawer-close:hover { color: var(--white); }
.drawer h3  { font-size: 1.4rem; margin: 20px 0 6px; }
.drawer > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }
.field-lbl  { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 7px; }
.field      { width: 100%; padding: 13px 15px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--white); font-family: inherit; font-size: 0.9rem; outline: none; appearance: none; -webkit-appearance: none; margin-bottom: 18px; transition: border-color 0.2s; }
.field:focus { border-color: var(--lime); }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border-md);
  color: var(--faint); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 400;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s, color 0.2s;
}
.back-top.vis { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--lime); color: var(--bg); border-color: var(--lime); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner  { grid-template-columns: 1fr; text-align: center; }
  .ticker-col  { display: none; }
  .hero-sub    { margin: 20px auto 36px; }
  .hero-actions { justify-content: center; }
  .proof-bar   { margin: 0 auto; }
  .stat-grid   { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 28px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .testi-grid  { grid-template-columns: 1fr 1fr; }
  .img-stack   { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger   { display: block; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .sec       { padding: 72px 0; }
  .grid-2    { grid-template-columns: 1fr; }
  .grid-3    { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid  { grid-template-columns: 1fr; }
  .cta-pair  { grid-template-columns: 1fr; }
  .trust-row { flex-direction: column; align-items: flex-start; }
  .price-pair { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mat-wrap  { padding: 20px; }
  .cta-box   { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .img-stack { height: 300px; }
  .img-main  { width: 90%; height: 260px; }
  .img-pip   { width: 55%; height: 200px; }
}

@media (max-width: 480px) {
  .grid-4  { grid-template-columns: 1fr; }
  .tab-row { flex-direction: column; align-items: stretch; }
  .tab-btn { justify-content: center; }
  .plan-toggle { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mat-actions .btn  { flex: 1; justify-content: center; }
}
