/* =============================================
   KOREDOSE — PREMIUM B2B LANDING PAGE
   Charcoal black × Ember red × Gold accents
============================================= */

:root {
  --black: #0a0a0a;
  --charcoal: #111111;
  --charcoal-2: #161616;
  --charcoal-3: #1c1c1c;
  --red: #c0281c;
  --red-light: #e63c2e;
  --red-dark: #8b1a10;
  --gold: #b8935a;
  --gold-light: #d4a96a;
  --white: #f5f0eb;
  --white-dim: rgba(245,240,235,0.7);
  --white-muted: rgba(245,240,235,0.4);
  --white-faint: rgba(245,240,235,0.08);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── SMOKE CANVAS ── */
#smoke-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.15;
}

/* ── CONTAINER ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTIONS ── */
.section-dark    { background: var(--black); padding: 120px 0; position: relative; z-index: 1; }
.section-charcoal{ background: var(--charcoal-2); padding: 120px 0; position: relative; z-index: 1; }
.section-red-accent { background: var(--charcoal-3); padding: 120px 0; position: relative; z-index: 1; border-top: 1px solid rgba(192,40,28,0.25); border-bottom: 1px solid rgba(192,40,28,0.25); }

.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  line-height: 1.15;
  font-family: var(--font-display);
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1, 'kern' 1;
  -webkit-font-smoothing: antialiased;
}
h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
p  { color: var(--white-dim); margin-bottom: 16px; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition); border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  opacity:0; transition: opacity var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,40,28,0.45); }
.btn-primary:hover::before { opacity:1; }
.btn-primary span { position:relative; z-index:1; }

.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(245,240,235,0.3);
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.full-width { width: 100%; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(192,40,28,0.2);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
  font-size: 1.05rem; letter-spacing: 0.08em; font-weight: 400;
}
.nav-logo-img { height: 36px; width: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-wordmark {
  height: 40px; width: auto; object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-wordmark { opacity: 0.85; }
.nav-logo strong { color: var(--red-light); font-weight: 700; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--white-dim); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--red); transform:scaleX(0);
  transform-origin:left; transition:transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 3px;
  font-weight: 600 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--red-light) !important; box-shadow: 0 4px 20px rgba(192,40,28,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(192,40,28,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white-dim); text-decoration: none;
  padding: 16px 40px; font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid var(--white-faint);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover { color: var(--white); background: var(--white-faint); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  filter: brightness(0.28);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(192,40,28,0.12) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding: 0 40px;
  text-align: left;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(192,40,28,0.5);
  color: var(--red-light);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 2px;
  margin-bottom: 28px;
  background: rgba(192,40,28,0.08);
}
#hero h1 {
  font-size: clamp(3.5rem,8vw,7rem);
  font-weight: 900; line-height: 1.0;
  margin-bottom: 28px;
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
  text-shadow: 0 0 80px rgba(192,40,28,0.3);
}
#hero h1 em {
  font-style: italic;
  color: var(--red-light);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1rem,1.5vw,1.18rem);
  color: var(--white-dim);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0.5; animation: scrollFade 3s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white-muted), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollFade { 0%,100%{opacity:0.3} 50%{opacity:0.7} }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── HERO WATERMARK KD ── */
.hero-watermark {
  position: absolute; right: 6%; bottom: 12%;
  z-index: 2; pointer-events: none;
  opacity: 0.07;
  animation: wmFloat 6s ease-in-out infinite;
}
.hero-watermark img {
  width: 220px; height: 220px; object-fit: contain;
  filter: brightness(10);
}
@keyframes wmFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(-4deg); }
}

/* ── KD SECTION DIVIDER ── */
.kd-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; padding: 40px 40px;
  background: var(--black); position: relative; z-index: 1;
}
.kd-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,40,28,0.25), transparent);
  max-width: 400px;
}
.kd-divider-logo {
  width: 48px; height: 48px; object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(192,40,28,0.3));
}
.kd-divider:hover .kd-divider-logo {
  opacity: 0.9;
  transform: rotate(8deg) scale(1.1);
}

/* ── CONTACT KD MARK ── */
.contact-kd-mark {
  display: flex; justify-content: center; margin-bottom: 28px;
}
.contact-kd-mark img {
  width: 72px; height: 72px; object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 16px rgba(192,40,28,0.4));
  animation: kdPulse 3s ease-in-out infinite;
}
@keyframes kdPulse {
  0%,100% { filter: drop-shadow(0 0 10px rgba(192,40,28,0.3)); }
  50%      { filter: drop-shadow(0 0 22px rgba(192,40,28,0.6)); }
}


/* ══════════════════════════════════
   SECTION GRID (2-col layout)
══════════════════════════════════ */
.section-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.section-grid.reverse { direction: rtl; }
.section-grid.reverse > * { direction: ltr; }

.section-text h2 { margin-bottom: 20px; }
.section-text p:last-of-type { margin-bottom: 32px; }

.section-img {
  position: relative; border-radius: 6px; overflow: hidden;
}
.section-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: 6px;
  transition: transform 0.8s ease;
  max-height: 580px;
}
.section-img:hover img { transform: scale(1.03); }
.img-glow {
  position: absolute; inset: -1px;
  border-radius: 6px;
  box-shadow: inset 0 0 60px rgba(10,10,10,0.6);
  pointer-events: none;
}
.img-glow.red {
  box-shadow: inset 0 0 60px rgba(10,10,10,0.5), 0 0 40px rgba(192,40,28,0.15);
}

/* ── STAT ROW ── */
.stat-row {
  display: flex; gap: 36px; margin-top: 36px; margin-bottom: 36px;
  padding-top: 32px; border-top: 1px solid var(--white-faint);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--red-light); line-height: 1;
  font-family: var(--font-body);
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
}
.stat-label { font-size: 0.75rem; color: var(--white-muted); letter-spacing: 0.04em; }

/* ══════════════════════════════════
   BENEFITS GRID
══════════════════════════════════ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.benefit-card {
  background: var(--charcoal-3);
  border: 1px solid var(--white-faint);
  border-radius: 6px; padding: 36px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content:''; position:absolute; bottom: 0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,40,28,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { font-size: 2rem; margin-bottom: 18px; }
.benefit-card h3 { color: var(--white); margin-bottom: 10px; }
.benefit-card p { color: var(--white-muted); font-size: 0.9rem; margin: 0; line-height: 1.65; }

/* ══════════════════════════════════
   PRODUCT SHOWCASE
══════════════════════════════════ */
.product-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.product-steps { display: flex; flex-direction: column; gap: 0; }
.product-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 24px; cursor: pointer;
  border-left: 2px solid var(--white-faint);
  transition: all var(--transition); position: relative;
}
.product-step.active { border-left-color: var(--red); }
.product-step:hover { border-left-color: rgba(192,40,28,0.5); background: var(--white-faint); }
.step-num {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--red-light); padding-top: 4px; flex-shrink: 0;
}
.step-info h3 { font-size: 1rem; margin-bottom: 6px; }
.step-info p { font-size: 0.88rem; color: var(--white-muted); margin: 0; }

.product-visual {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/4;
}
.product-visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 6px; transition: all 0.6s ease;
}

/* ══════════════════════════════════
   AUDIENCE GRID
══════════════════════════════════ */
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.audience-card {
  background: var(--charcoal-3);
  border: 1px solid var(--white-faint);
  border-radius: 6px; padding: 32px 24px;
  transition: all var(--transition); text-align: center;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,147,90,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.audience-icon { font-size: 2.4rem; margin-bottom: 16px; }
.audience-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.audience-card p { color: var(--white-muted); font-size: 0.88rem; margin: 0; }

/* ══════════════════════════════════
   PILOT LIST
══════════════════════════════════ */
.pilot-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.pilot-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--white-dim);
}
.check {
  display: inline-flex; align-items:center; justify-content:center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(192,40,28,0.15); border: 1px solid rgba(192,40,28,0.4);
  color: var(--red-light); font-size: 0.7rem; flex-shrink: 0;
}
.text-muted { color: var(--white-muted) !important; font-size: 0.9rem; margin-bottom: 18px !important; }

/* ══════════════════════════════════
   DISTRIBUTORS
══════════════════════════════════ */
.distrib-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.distrib-card {
  background: var(--charcoal-3); border: 1px solid var(--white-faint);
  border-radius: 6px; padding: 36px 24px;
  transition: all var(--transition);
}
.distrib-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,40,28,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.distrib-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--red-light); margin-bottom: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(192,40,28,0.3);
  display: flex; align-items: center; justify-content: center;
}
.distrib-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.distrib-card p { color: var(--white-muted); font-size: 0.87rem; margin: 0; line-height: 1.6; }

/* ══════════════════════════════════
   LEGAL BOX
══════════════════════════════════ */
.legal-box {
  display: flex; gap: 32px; align-items: flex-start;
  background: var(--charcoal-3);
  border: 1px solid rgba(184,147,90,0.2);
  border-radius: 6px; padding: 44px 40px;
  border-left: 4px solid var(--gold);
}
.legal-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }
.legal-text h3 { color: var(--gold-light); margin-bottom: 12px; }
.legal-text p { color: var(--white-dim); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.75; }
.legal-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   LEGAL BANNER
══════════════════════════════════ */
.section-legal-banner {
  background: rgba(139,26,16,0.08);
  border-top: 1px solid rgba(192,40,28,0.3);
  border-bottom: 1px solid rgba(192,40,28,0.3);
  padding: 32px 0; position: relative; z-index: 1;
}
.legal-banner {
  display: flex; gap: 24px; align-items: center;
  background: rgba(192,40,28,0.05);
  border: 1px solid rgba(192,40,28,0.2);
  border-left: 3px solid var(--red);
  border-radius: 4px; padding: 24px 32px;
}
.legal-banner-icon img {
  width: 40px; height: 40px; object-fit: contain;
  flex-shrink: 0; opacity: 0.8;
}
.legal-banner p {
  font-size: 0.82rem; color: var(--white-dim);
  line-height: 1.7; margin: 0;
}
.legal-banner p strong { color: var(--white); font-weight: 600; }
@media (max-width: 768px) {
  .legal-banner { flex-direction: column; gap: 16px; padding: 20px 20px; }
  .legal-banner-icon { display: none; }
}

/* ══════════════════════════════════
   CONTACT SIMPLE (no form)
══════════════════════════════════ */
.contact-simple {
  text-align: center; max-width: 860px; margin: 0 auto;
}
.contact-simple h2 { margin-bottom: 20px; }
.contact-desc {
  color: var(--white-dim); font-size: 1rem;
  max-width: 600px; margin: 0 auto 36px;
}
.contact-simple .email-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white); text-decoration: none; font-size: 1.05rem;
  font-weight: 500; padding: 16px 28px;
  border: 1px solid rgba(245,240,235,0.15);
  border-radius: 4px; margin-bottom: 48px;
  transition: all var(--transition); background: var(--white-faint);
  font-family: 'Courier New', monospace; letter-spacing: 0.02em;
}
.contact-simple .email-link:hover {
  border-color: var(--red); color: var(--red-light);
  background: rgba(192,40,28,0.08);
}
.contact-cta-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-bottom: 28px;
}
.cta-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 32px 20px;
  background: var(--charcoal-3);
  border: 1px solid var(--white-faint);
  border-radius: 6px; text-decoration: none;
  color: var(--white); text-align: center;
  transition: all var(--transition);
}
.cta-card:hover {
  border-color: rgba(192,40,28,0.4);
  background: rgba(192,40,28,0.07);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.cta-icon { font-size: 2rem; }
.cta-card strong { font-size: 0.95rem; color: var(--white); }
.cta-card span:last-child { font-size: 0.8rem; color: var(--white-muted); line-height: 1.5; }
.contact-note {
  font-size: 0.75rem; color: var(--white-muted);
  margin: 0; letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .contact-cta-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .contact-cta-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cta-card { padding: 22px 14px; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(192,40,28,0.15);
  padding: 60px 0 36px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap; gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { height: 44px; object-fit: contain; }
.footer-tagline {
  font-size: 0.85rem; color: var(--white-muted); letter-spacing: 0.06em;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  color: var(--white-muted); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color var(--transition);
}
.footer-nav a:hover { color: var(--red-light); }
.footer-divider { height: 1px; background: var(--white-faint); margin-bottom: 32px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-legal {
  font-size: 0.78rem; color: var(--white-muted); max-width: 560px;
  margin: 0; line-height: 1.6;
}
.footer-copy { font-size: 0.78rem; color: var(--white-muted); margin: 0; }

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .section-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-grid.reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .distrib-grid { grid-template-columns: repeat(2,1fr); }
  .product-showcase { grid-template-columns: 1fr; gap: 48px; }
  .product-visual { max-height: 420px; aspect-ratio: auto; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .stat-row { gap: 24px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-dark, .section-charcoal, .section-red-accent { padding: 80px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .distrib-grid { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; }
  .hero-content { padding: 0 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .legal-box { flex-direction: column; gap: 20px; }
  .section-header { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .section-dark, .section-charcoal, .section-red-accent { padding: 60px 0; }
}
