:root {
  --orange: #ff6a00;
  --orange-2: #ff8a1f;
  --black: #0f0f0f;
  --panel: #171717;
  --panel-2: #222;
  --silver: #d9d9d9;
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 60px rgba(0, 0, 0, .36);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}
body.light {
  --black: #f6f6f4;
  --panel: #fff;
  --panel-2: #ececea;
  --text: #111;
  --muted: #555;
  --line: rgba(15, 15, 15, .14);
  color-scheme: light;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 99; padding: 10px 14px; background: var(--orange); color: #111; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 15, .78);
  backdrop-filter: blur(16px);
}
body.light .site-header { background: rgba(246, 246, 244, .82); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 150px; }
.brand img { width: 146px; height: 56px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; }
.nav-links a { padding: 10px 12px; border-radius: 6px; color: var(--muted); font-weight: 700; font-size: .92rem; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255, 106, 0, .14); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn, .menu-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px;
  display: inline-grid; place-items: center; background: var(--panel); color: var(--text); cursor: pointer;
}
.menu-toggle { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 12px 18px; border: 0; border-radius: 6px;
  background: var(--orange); color: #111; font-weight: 900; cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 106, 0, .22);
}
.btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.btn.small { min-height: 36px; padding: 8px 12px; font-size: .9rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.64) 43%, rgba(0,0,0,.22) 100%), url("../images/banner-mc.png") center/cover no-repeat;
}
.hero .container { position: relative; z-index: 1; padding: 82px 0 54px; }
.eyebrow { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3 { font-family: Montserrat, Inter, system-ui, sans-serif; line-height: 1.05; margin: 0; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(2.6rem, 7vw, 6.7rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; }
.lead { max-width: 660px; color: var(--silver); font-size: clamp(1.05rem, 2vw, 1.35rem); margin: 18px 0 24px; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 720px; margin-top: 38px; }
.trust-strip span { padding: 14px 16px; border: 1px solid var(--line); background: rgba(15,15,15,.72); border-radius: 6px; font-weight: 900; }

.section { padding: 82px 0; border-top: 1px solid var(--line); }
.section.alt { background: linear-gradient(180deg, var(--panel), var(--black)); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head p { color: var(--muted); max-width: 580px; margin: 10px 0 0; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.category-card { min-height: 174px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.category-card::after {
  content: ""; position: absolute; inset: auto -30px -46px auto; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,106,0,.38), transparent 70%);
}
.icon { width: 46px; height: 46px; border: 1px solid rgba(255,106,0,.55); border-radius: 6px; display: grid; place-items: center; color: var(--orange); font-weight: 900; }
.product-card { padding: 0; overflow: hidden; }
.product-media { aspect-ratio: 4 / 3; background: #080808 url("../images/banner-mc.png") center/cover no-repeat; }
.product-body { padding: 18px; }
.rating { color: var(--orange-2); font-weight: 900; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 12px 0; }
.price { font-size: 1.25rem; font-weight: 900; }
.muted { color: var(--muted); }
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: center; }
.stat strong { display: block; color: var(--orange); font-size: clamp(2rem, 4vw, 3.7rem); font-family: Montserrat, sans-serif; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; }
.feature-list { display: grid; gap: 12px; margin-top: 20px; }
.feature-list li { list-style: none; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255,255,255,.04); }
.masonry { columns: 3 260px; column-gap: 18px; }
.masonry figure { break-inside: avoid; margin: 0 0 18px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); cursor: pointer; }
.masonry img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.masonry figcaption { padding: 12px 14px; color: var(--muted); }
.testimonial { min-height: 210px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 18px 0; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 900; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { display: none; color: var(--muted); padding: 0 0 18px; }
.faq-item.open .faq-answer { display: block; }
.contact-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--black); color: var(--text);
}
.site-footer { padding: 54px 0 24px; background: #080808; border-top: 1px solid var(--line); }
body.light .site-footer { background: #e8e8e6; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.footer-grid a { display: block; color: var(--muted); margin: 8px 0; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.floating { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: grid; gap: 10px; }
.floating a, .floating button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--orange); color: #111; display: grid; place-items: center; font-weight: 900; cursor: pointer; }
.mobile-bar { display: none; }
.cookie { position: fixed; left: 16px; bottom: 16px; max-width: 390px; z-index: 60; display: none; }
.cookie.show { display: block; }
.page-hero { padding: 92px 0 54px; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.48)), url("../images/banner-mc.png") center/cover; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.breadcrumb { color: var(--muted); margin-bottom: 16px; font-weight: 800; }
.table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 8px; }
.table th, .table td { border: 1px solid var(--line); padding: 14px; text-align: left; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 80; display: none; place-items: center; padding: 24px; }
.lightbox.show { display: grid; }
.lightbox img { max-height: 84vh; border-radius: 8px; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; }
  .nav-links { position: fixed; left: 16px; right: 16px; top: 84px; display: none; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); background: var(--panel); border-radius: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-actions .btn { display: none; }
  .grid.cols-3, .grid.cols-4, .stats, .split, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 720px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand img { width: 124px; }
  .hero .container { padding: 64px 0 44px; }
  .trust-strip, .grid.cols-3, .grid.cols-4, .stats, .split, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .hero-actions .btn, .actions .btn { width: 100%; }
  .floating { bottom: 72px; }
  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-bar a { padding: 13px; text-align: center; font-weight: 900; background: var(--panel); border-top: 1px solid var(--line); }
  .mobile-bar a:first-child { background: var(--orange); color: #111; }
}
