:root {
  --bg: #0e0f12;
  --bg2: #13151e;
  --card: #171922;
  --card2: #1c1f2e;
  --muted: #a0a4b8;
  --text: #ffffff;
  --accent: #ffb74d;
  --accent-dim: rgba(255,183,77,0.15);
  --accent-border: rgba(255,183,77,0.35);
  --stroke: rgba(255,255,255,0.08);
  --stroke2: rgba(255,255,255,0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1000px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,15,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav__inner::-webkit-scrollbar { display: none; }
.site-nav__logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-right: 16px;
  flex-shrink: 0;
}
.site-nav__link {
  white-space: nowrap;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
}
.site-nav__link:hover { color: var(--text); border-color: var(--stroke2); }
.site-nav__link.active {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hero {
  padding: 72px 0 56px;
  text-align: center;
  background: radial-gradient(ellipse at top, #1b1e2a 0%, var(--bg) 70%);
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.hero__line {
  width: 52px; height: 2px;
  background: var(--accent);
  margin: 18px auto;
}
.hero__sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  padding: 16px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--accent); color: #111; }
.btn-blue { background: #2563eb; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 10px; }

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--bg2);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.stat-item {
  padding: 22px 36px;
  text-align: center;
  border-right: 1px solid var(--stroke);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── SECTION ── */
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--stroke); }
.section__head { margin-bottom: 28px; }
.section__title {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  line-height: 1.2;
}
.section__sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  padding-left: 14px;
  max-width: 600px;
}
.section__sub a { color: var(--accent); }
.section__sub a:hover { text-decoration: underline; }

/* ── CARDS GRID ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
}
.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #1a1c26;
}
.card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card__desc { font-size: 13px; color: var(--muted); flex: 1; margin-bottom: 14px; line-height: 1.5; }
.card__price { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.card__btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── CATALOG LINKS ── */
.cat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.cat-link {
  padding: 8px 18px;
  border: 1px solid var(--stroke2);
  border-radius: 20px;
  font-size: 14px;
  color: var(--muted);
  background: var(--card);
  transition: color .15s, border-color .15s;
}
.cat-link:hover { color: var(--accent); border-color: var(--accent-border); }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.why-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-item__title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-item__desc { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.step {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
}
.step__num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,183,77,0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.step__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step__desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.faq-item__q { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-item__a { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
}
.review-stars { color: var(--accent); font-size: 15px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 700; }
.reviewer-meta { font-size: 12px; color: var(--muted); }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--card2);
  border: 1px solid var(--stroke2);
  border-radius: 18px;
  padding: 44px 36px;
  text-align: center;
  margin: 0 0 56px;
}
.cta-block h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-block p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .hero__btns { margin-top: 0; }

/* ── DELIVERY ── */
.delivery-block {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.delivery-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.delivery-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.delivery-text { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; min-width: 200px; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: var(--accent); }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .hero { padding: 52px 0 40px; }
  .section { padding: 40px 0; }
  .stat-item { padding: 18px 20px; }
  .cta-block { padding: 32px 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
