/* ============================================================
   Yardia — Premium digital products storefront
   Original build. Dark theme, orange accent, Space Grotesk + Inter.
   ============================================================ */

:root {
  --bg: #0A0A0C;
  --bg-2: #0E0E12;
  --surface: #141419;
  --surface-2: #1A1A21;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #F6F6F8;
  --muted: #9A9AA7;
  --muted-2: #6E6E7A;
  --accent: #FF5B22;
  --accent-2: #FF9E45;
  --accent-soft: rgba(255, 91, 34, 0.13);
  --lime: #C8F560;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }

.grad {
  background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 55%, #FFD27A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; padding: 12px 22px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #1a0a02; box-shadow: 0 6px 24px -8px rgba(255, 91, 34, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -8px rgba(255, 91, 34, 0.7); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn--dark { background: #0A0A0C; color: #fff; border-color: rgba(0,0,0,0.2); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6); }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); padding: 6px 14px; border-radius: 100px;
  background: var(--accent-soft); border: 1px solid rgba(255,91,34,0.2);
  margin-bottom: 18px;
}
.kicker--dark { color: #2a1505; background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.15); }

.eyebrow {
  display: inline-block; font-size: 0.85rem; color: var(--muted);
  letter-spacing: 0.02em; padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03); margin-bottom: 26px;
}

/* ---------- Announcement ---------- */
.announce {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #1a0a02; text-align: center; font-size: 0.86rem; font-weight: 500;
  padding: 9px 16px;
}
.announce strong { font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,0.72); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text); }
.brand__mark { width: 26px; height: 26px; color: var(--accent); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 0.94rem; color: var(--muted); transition: color .25s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; gap: 12px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 70;
  background: var(--bg-2); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 100px 28px 28px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0,0,0,0.7); }
.drawer__links { display: flex; flex-direction: column; gap: 8px; }
.drawer__links a { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.drawer__cta { margin-top: 18px; border-bottom: 0; justify-content: center; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 86px 0 70px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,91,34,0.22), transparent 62%);
  filter: blur(20px);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.3rem); margin-bottom: 22px; }
.hero__sub { font-size: 1.13rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__trust p { font-size: 0.92rem; color: var(--muted); }
.hero__trust strong { color: var(--text); }
.stars { color: var(--accent-2); letter-spacing: 1px; }
.avatars { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; background-size: cover; }
.av:first-child { margin-left: 0; }
.av--1 { background: linear-gradient(135deg, #FF8A5B, #FF5B22); }
.av--2 { background: linear-gradient(135deg, #7C5CFF, #5B8DFF); }
.av--3 { background: linear-gradient(135deg, #2FD6A8, #2FB6D6); }
.av--4 { background: linear-gradient(135deg, #FFD27A, #FF9E45); }

/* Hero art / floating cards */
.hero__art { position: relative; height: 460px; }
.hero__orb {
  position: absolute; inset: 8% 12%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,158,69,0.35), rgba(124,92,255,0.18) 55%, transparent 72%);
  filter: blur(8px); animation: orb 9s ease-in-out infinite alternate;
}
@keyframes orb { from { transform: translate(-10px,-6px) scale(1); } to { transform: translate(14px,10px) scale(1.06); } }
.float-card {
  position: absolute; width: 210px; height: 150px; border-radius: 20px;
  border: 1px solid var(--border-2); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.8);
  display: flex; align-items: flex-end; justify-content: space-between; padding: 16px;
  backdrop-filter: blur(2px); will-change: transform;
}
.float-card .tag { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; background: rgba(0,0,0,0.4); padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(6px); }
.float-card .price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; background: #0A0A0C; color: #fff; padding: 5px 12px; border-radius: 100px; }
.float-card--a { top: 20px; right: 14px; animation: floaty 7s ease-in-out infinite; }
.float-card--b { top: 150px; left: 0; animation: floaty 8s ease-in-out infinite 0.6s; z-index: 3; }
.float-card--c { bottom: 6px; right: 56px; animation: floaty 6.5s ease-in-out infinite 1.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }

/* ---------- Gradient art (product/category thumbnails) ---------- */
.art { position: relative; overflow: hidden; isolation: isolate; }
.art::after {
  /* subtle grain + sheen */
  content: ""; position: absolute; inset: 0; mix-blend-mode: overlay; opacity: 0.5;
  background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.18), transparent 50%);
}
.art--1 { background: radial-gradient(120% 120% at 20% 20%, #FF9E45, #FF5B22 45%, #7C2D12 100%); }
.art--2 { background: radial-gradient(120% 120% at 80% 10%, #7C5CFF, #4A2FD6 55%, #1E1147 100%); }
.art--3 { background: radial-gradient(120% 120% at 30% 80%, #2FD6A8, #2F8FD6 55%, #0F3A4A 100%); }
.art--ui    { background: radial-gradient(130% 130% at 15% 15%, #7C5CFF, #3B2BB0 60%, #160E3F 100%); }
.art--icon  { background: radial-gradient(130% 130% at 85% 20%, #FF9E45, #FF5B22 55%, #5C220C 100%); }
.art--3d    { background: radial-gradient(130% 130% at 25% 80%, #2FD6A8, #1E8F8F 55%, #0B3A3A 100%); }
.art--mock  { background: radial-gradient(130% 130% at 80% 80%, #5B8DFF, #2F4FD6 55%, #11214A 100%); }
.art--illus { background: radial-gradient(130% 130% at 50% 10%, #FF6FB5, #C8398C 55%, #4A1136 100%); }
.art--wall  { background: radial-gradient(130% 130% at 10% 90%, #C8F560, #6FB52F 55%, #2A4A11 100%); }
.art--p1 { background: radial-gradient(130% 130% at 20% 15%, #7C5CFF, #4A2FD6 60%, #160E3F 100%); }
.art--p2 { background: radial-gradient(130% 130% at 80% 20%, #FF9E45, #FF5B22 55%, #5C220C 100%); }
.art--p3 { background: radial-gradient(130% 130% at 30% 85%, #2FD6A8, #1E8F8F 55%, #0B3A3A 100%); }
.art--p4 { background: radial-gradient(130% 130% at 75% 75%, #5B8DFF, #2F4FD6 55%, #11214A 100%); }
.art--p5 { background: radial-gradient(130% 130% at 50% 12%, #FF6FB5, #C8398C 55%, #4A1136 100%); }
.art--p6 { background: radial-gradient(130% 130% at 12% 88%, #C8F560, #6FB52F 55%, #2A4A11 100%); }
.art--p7 { background: radial-gradient(130% 130% at 85% 50%, #FFD27A, #FF9E45 55%, #7C4A12 100%); }
.art--p8 { background: radial-gradient(130% 130% at 18% 50%, #9B8CFF, #5B4ACF 55%, #251A6B 100%); }
.art--bundle1 { background: linear-gradient(135deg, #7C5CFF, #FF5B22 90%); }
.art--bundle2 { background: linear-gradient(135deg, #2FD6A8, #2F4FD6 90%); }
.art--bundle3 { background: linear-gradient(135deg, #FF9E45, #FF6FB5 90%); }

/* ---------- Stats ---------- */
.stats { padding: 18px 0 28px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 34px 0; }
.stat { text-align: center; }
.stat__num, .stat__plus { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--text); }
.stat__plus { color: var(--accent); }
.stat p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section--tight { padding: 40px 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 46px; flex-wrap: wrap; }
.section__head--center { justify-content: center; text-align: center; }
.section__head--stack { display: block; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); }
.section__lead { color: var(--muted); max-width: 440px; font-size: 1.05rem; }
.section__action { align-self: center; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat {
  position: relative; min-height: 200px; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px; display: flex; align-items: flex-end;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cat:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -22px rgba(0,0,0,0.7); }
.cat__body { position: relative; z-index: 2; }
.cat__body h3 { font-size: 1.4rem; color: #fff; }
.cat__body p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.cat__arrow { position: absolute; top: 20px; right: 22px; z-index: 2; font-size: 1.2rem; color: #fff; opacity: 0.85; transition: transform .3s var(--ease); }
.cat:hover .cat__arrow { transform: translate(3px,-3px); }

/* ---------- Products ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.prod:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: 0 26px 56px -26px rgba(0,0,0,0.8); }
.prod__art { position: relative; aspect-ratio: 4 / 3; }
.prod__cat { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--font-display); font-size: 0.74rem; font-weight: 600; background: rgba(0,0,0,0.42); color: #fff; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(6px); }
.prod__body { padding: 16px 18px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.prod__body h3 { font-size: 1.06rem; }
.prod__meta { display: flex; flex-direction: column; }
.prod__rating { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.prod__rating span { color: var(--accent-2); }
.prod__buy { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-2); color: var(--text); padding: 9px 14px; border-radius: 100px; transition: background .25s, transform .25s var(--ease); white-space: nowrap; }
.prod__buy:hover { background: var(--accent); color: #1a0a02; transform: translateY(-2px); }

/* ---------- Promo ---------- */
.promo {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 70%, #E0440F);
  color: #1a0a02; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.promo__glow { position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%); }
.promo__copy { position: relative; z-index: 2; max-width: 640px; }
.promo__copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 8px 0 10px; }
.promo__copy p { font-size: 1.05rem; opacity: 0.9; }

/* ---------- Bundles ---------- */
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bundle { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.bundle:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: 0 26px 56px -26px rgba(0,0,0,0.8); }
.bundle__art { position: relative; height: 170px; }
.bundle__art .save { position: absolute; top: 14px; right: 14px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; background: #0A0A0C; color: var(--lime); padding: 6px 12px; border-radius: 100px; }
.bundle__body { padding: 22px; }
.bundle__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.bundle__body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.bundle__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bundle__price { display: flex; align-items: baseline; gap: 10px; }
.bundle__price .was { color: var(--muted-2); text-decoration: line-through; font-size: 1rem; }
.bundle__price .now { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; }

/* ---------- Benefits ---------- */
.bene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bene { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .4s var(--ease), border-color .4s; }
.bene:hover { transform: translateY(-5px); border-color: var(--border-2); }
.bene__ico { width: 50px; height: 50px; display: grid; place-items: center; font-size: 1.4rem; border-radius: 14px; background: var(--accent-soft); color: var(--accent-2); border: 1px solid rgba(255,91,34,0.22); margin-bottom: 18px; }
.bene h3 { font-size: 1.15rem; margin-bottom: 8px; }
.bene p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; }
.review blockquote { color: var(--text); font-size: 0.98rem; line-height: 1.55; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.review figcaption span:last-child { display: flex; flex-direction: column; font-size: 0.85rem; color: var(--muted); }
.review figcaption strong { color: var(--text); font-size: 0.95rem; }

/* ---------- Newsletter ---------- */
.news { position: relative; overflow: hidden; text-align: center; border-radius: 28px; border: 1px solid var(--border); background: var(--bg-2); padding: 60px 32px; }
.news__glow { position: absolute; inset: auto 0 -60% 0; height: 140%; background: radial-gradient(ellipse at center bottom, rgba(255,91,34,0.2), transparent 60%); pointer-events: none; }
.news h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 12px; position: relative; }
.news p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; position: relative; }
.news__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; position: relative; flex-wrap: wrap; justify-content: center; }
.news__form input { flex: 1; min-width: 220px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 100px; padding: 14px 20px; color: var(--text); font-family: var(--font-body); font-size: 0.98rem; }
.news__form input:focus { outline: none; border-color: var(--accent); }
.news__msg { position: relative; min-height: 22px; margin-top: 14px; font-size: 0.9rem; color: var(--lime); }

/* ---------- CTA ---------- */
.cta { text-align: center; padding: 60px 24px; border-radius: 28px; border: 1px solid var(--border); background: radial-gradient(120% 140% at 50% 0%, rgba(255,91,34,0.1), transparent 55%), var(--surface); }
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.cta p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; transition: border-color .3s; }
.faq__item[open] { border-color: var(--border-2); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; padding: 18px 0; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__ico::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__ico::after { transform: scaleY(0); }
.faq__a { padding: 0 0 18px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 30px; background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; margin: 16px 0 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--border-2); color: var(--muted); transition: background .25s, color .25s, transform .25s; }
.footer__social a:hover { background: var(--accent); color: #1a0a02; transform: translateY(-2px); }
.footer__col h4 { font-size: 0.95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 6px 0; transition: color .25s; }
.footer__col a:hover { color: var(--text); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 0.85rem; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__art { height: 360px; max-width: 460px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 40px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bene-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .promo { padding: 30px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .section__head { margin-bottom: 32px; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .bene-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
