:root {
  --bg:#0b0c0d;
  --panel:#121416;
  --panel2:#181b1e;
  --text:#f5f5f2;
  --muted:#aeb2b3;
  --line:#2a2d30;
  --accent:#d7ff32;
  --max:1180px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.5;
}
a {
  color:inherit;
  text-decoration:none;
}
.wrap {
  max-width:var(--max);
  margin:auto;
  padding:0 24px;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--accent);
  color:#0b0c0d;
  font-weight:900;
  padding:16px 24px;
  border-radius:5px;
  text-transform:uppercase;
  letter-spacing:.02em;
  transition:.2s;
}
.btn:hover {
  transform:translateY(-2px);
  filter:brightness(1.05);
}
.btn.dark {
  background:#fff;
}
.eyebrow {
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
}
h1,h2,h3,p {
  margin-top:0;
}
.hero {
  background-position: center top;
  min-height:760px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background: linear-gradient(90deg,rgba(7,8,9,.62) 0%,rgba(7,8,9,.48) 42%,rgba(7,8,9,.10) 78%,rgba(7,8,9,.38) 100%), url("../images/hero-dopemirrors.png") center top / cover no-repeat;
}
.hero:after {
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:180px;
  background:linear-gradient(transparent,var(--bg));
  pointer-events:none;
}
.hero-inner {
  position:relative;
  z-index:2;
  padding:100px 0 120px;
  max-width:760px;
}
.hero h1 {
  font-size:clamp(52px,7vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:18px 0 24px;
}
.hero h1 span {
  color:var(--accent);
}
.hero .lead {
  font-size:20px;
  color:#e0e1df;
  max-width:650px;
  margin-bottom:30px;
}
.hero .lead strong {
  font-weight:400;
}
.proof {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}
.proof span {
  border:1px solid #555b5e;
  border-radius:999px;
  padding:8px 12px;
  color:#e4e5e3;
  font-size:13px;
  font-weight:800;
}
.section {
  padding:105px 0;
}
.section.alt {
  background:#101214;
}
.section h2 {
  font-size:clamp(38px,5vw,64px);
  line-height:.98;
  letter-spacing:-.04em;
  margin-bottom:22px;
}
.sub {
  color:var(--muted);
  font-size:18px;
  max-width:700px;
}
.motor-selector {
  background:#d7ff32;
  color:#0b0c0d;
  padding:34px 0 38px;
  position:relative;
  z-index:3;
}
.selector-inner {
  display:grid;
  grid-template-columns:.9fr 1.5fr;
  gap:40px;
  align-items:center;
}
.motor-selector .eyebrow {
  color:#0b0c0d;
  margin-bottom:8px;
}
.motor-selector h2 {
  font-size:clamp(30px,4vw,48px);
  line-height:1;
  margin:0 0 10px;
  letter-spacing:-.04em;
}
.motor-selector p {
  margin:0;
  max-width:500px;
  font-size:16px;
  font-weight:600;
  line-height:1.45;
}
.selector-buttons {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.selector-card {
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:112px;
  padding:20px 54px 20px 22px;
  background:#0b0c0d;
  color:#fff;
  border:2px solid #0b0c0d;
  border-radius:8px;
  text-decoration:none;
  transition:transform .18s ease,background .18s ease;
}
.selector-card:hover {
  transform:translateY(-3px);
  background:#17191a;
}
.selector-kicker {
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  color:#d7ff32;
  margin-bottom:7px;
}
.selector-card strong {
  font-size:19px;
  line-height:1.15;
}
.selector-arrow {
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:30px;
  color:#d7ff32;
}
.problem {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.problem-img {
  min-height:570px;
  border-radius:8px;
  background:url("../images/problem-dopemirrors.jpg") center/cover;
}
.bigline {
  font-size:clamp(28px,3vw,44px);
  font-weight:900;
  line-height:1.05;
  margin:30px 0;
}
.accent {
  color:var(--accent);
}
.steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:48px;
}
.step {
  background:var(--panel);
  border:1px solid var(--line);
  padding:30px;
  border-radius:7px;
}
.num {
  font-size:12px;
  color:var(--accent);
  font-weight:900;
  letter-spacing:.14em;
}
.step h3 {
  font-size:25px;
  margin:16px 0 10px;
}
.step p {
  color:var(--muted);
  margin:0;
}
.video {
  margin-top:55px;
  background:#050505;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  aspect-ratio:16/9;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
}
.video .play {
  width:82px;
  height:82px;
  border:2px solid var(--accent);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--accent);
  font-size:30px;
}
.video video {
  width:100%;
  height:100%;
  object-fit:cover;
}
.features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:50px;
}
.feature {
  padding:28px;
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:7px;
}
.feature strong {
  display:block;
  font-size:20px;
  margin-bottom:8px;
}
.feature p {
  color:var(--muted);
  margin:0;
}
.gallery {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:50px;
}
.gallery img {
  width:100%;
  height:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:7px;
  display:block;
  min-height:0;
}
.reviews-wrap {
  position:relative;
  margin-top:42px;
}
.reviews {
  display:flex;
  gap:16px;
  overflow:hidden;
  scroll-snap-type:x mandatory;
  padding:4px 64px 18px;
  scrollbar-width:none;
  -ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
}
.reviews::-webkit-scrollbar {
  display:none;
}
.review {
  flex:0 0 calc((100% - 32px) / 3);
  scroll-snap-align:start;
  background:var(--panel);
  border:1px solid var(--line);
  padding:28px;
  border-radius:7px;
}
.review-nav {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  z-index:2;
}
.review-nav button {
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:rgba(18,20,22,.96);
  color:#fff;
  border-radius:50%;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  pointer-events:auto;
  display:grid;
  place-items:center;
  box-shadow:0 4px 18px rgba(0,0,0,.28);
}
.review-nav button:hover {
  border-color:var(--accent);
  color:var(--accent);
}
.review-note {
  font-size:13px;
  color:#777;
  margin-top:10px;
}
.product-review-rating {
  display:flex;
  align-items:center;
  gap:12px;
  margin:8px 0 0;
  color:var(--muted);
}
.product-review-rating .stars {
  font-size:18px;
}
.review-source {
  font-size:11px;
  color:#777;
  margin-top:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}
.compare {
  width:100%;
  border-collapse:collapse;
  margin-top:45px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:7px;
  overflow:hidden;
}
.compare th,.compare td {
  padding:18px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.compare th {
  font-size:15px;
}
.compare td {
  color:#d6d8d7;
}
.compare .yes {
  color:var(--accent);
  font-weight:900;
}
.price {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.pricebox {
  background:var(--accent);
  color:#0b0c0d;
  padding:42px;
  border-radius:8px;
}
.pricebox .small {
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.pricebox .amount {
  font-size:58px;
  font-weight:1000;
  line-height:1;
  margin:12px 0 20px;
  letter-spacing:-.05em;
}
.pricebox .btn {
  background:#0b0c0d;
  color:#fff;
}
.stars {
  color:var(--accent);
  letter-spacing:2px;
}
.review p {
  font-size:17px;
  margin:18px 0;
  color:#e5e6e4;
}
.review small {
  color:#999;
}
.cta {
  padding:110px 0;
  text-align:center;
  background:linear-gradient(135deg,#15181a,#0b0c0d);
}
.cta h2 {
  max-width:850px;
  margin:15px auto 18px;
}
.cta p {
  color:var(--muted);
  font-size:18px;
}
.cta-buttons {
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:32px;
}
.footer {
  padding:30px 0;
  color:#777;
  font-size:12px;
  border-top:1px solid var(--line);
}
.foot {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.footer a {
  color:inherit;
  text-decoration:none;
}
.footer a:hover,
.footer a:focus-visible {
  color:var(--accent);
  text-decoration:underline;
}
.cookie-banner {
  position:fixed;
  z-index:99999;
  bottom:24px;
  left:50%;
  width:calc(100% - 48px);
  max-width:1120px;
  padding:20px 24px;
  transform:translateX(-50%) translateY(40px);
  opacity:0;
  color:var(--text);
  background:rgba(18,20,22,.97);
  border:1px solid rgba(215,255,50,.3);
  border-radius:12px;
  box-shadow:0 16px 50px rgba(0,0,0,.75);
  backdrop-filter:blur(14px);
  transition:opacity .3s ease,transform .3s ease;
}
.cookie-banner.visible { opacity:1; transform:translateX(-50%) translateY(0); }
.cookie-banner-wrap { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.cookie-banner-content { flex:1; }
.cookie-banner-title,.cookie-modal-heading { display:flex; align-items:center; gap:8px; }
.cookie-banner-title { margin-bottom:6px; font-size:15px; }
.cookie-icon { font-size:18px; line-height:1; }
.cookie-banner-text,.cookie-category-desc,.cookie-modal-intro { margin:0; color:#9ba3a0; font-size:13px; line-height:1.5; }
.cookie-banner-text a,.cookie-details-toggle summary { color:var(--accent); text-decoration:underline; }
.cookie-banner-actions,.cookie-modal-footer { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.cookie-btn { padding:10px 18px; border:0; font-size:13px; cursor:pointer; white-space:nowrap; }
.btn.outline { color:#fff; background:transparent; border:1px solid rgba(255,255,255,.25); }
.btn.outline:hover { background:rgba(255,255,255,.05); border-color:#fff; }
.cookie-modal-backdrop { position:fixed; z-index:100000; inset:0; display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; background:rgba(0,0,0,.8); backdrop-filter:blur(8px); transition:opacity .25s ease; }
.cookie-modal-backdrop.visible { opacity:1; }
.cookie-modal { display:flex; flex-direction:column; width:100%; max-width:760px; max-height:88vh; overflow:hidden; background:#14181a; border:1px solid rgba(255,255,255,.14); border-radius:12px; box-shadow:0 24px 70px rgba(0,0,0,.85); }
.cookie-modal-header { display:flex; align-items:center; justify-content:space-between; padding:18px 24px; border-bottom:1px solid var(--line); }
.cookie-modal-heading h3 { margin:0; font-size:19px; }
.cookie-modal-close { padding:4px; color:var(--muted); font-size:26px; line-height:1; background:none; border:0; cursor:pointer; }
.cookie-modal-close:hover { color:#fff; }
.cookie-modal-body { flex:1; padding:22px 24px; overflow-y:auto; }
.cookie-modal-intro { margin-bottom:20px; font-size:13.5px; }
.cookie-categories { display:flex; flex-direction:column; gap:14px; }
.cookie-category-card { padding:16px 18px; background:rgba(255,255,255,.025); border:1px solid var(--line); border-radius:8px; }
.cookie-category-header { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:8px; }
.cookie-category-title-wrap { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.cookie-category-title-wrap h4 { margin:0; font-size:15px; }
.cookie-badge { padding:2px 8px; color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.02em; background:rgba(255,255,255,.08); border-radius:4px; }
.cookie-badge.required { color:var(--accent); background:rgba(215,255,50,.15); }
.cookie-category-desc { margin-bottom:10px; }
.cookie-details-toggle { margin-top:8px; color:#858c8a; font-size:12px; }
.cookie-details-toggle summary { cursor:pointer; font-weight:600; }
.cookie-details-table-wrap { margin-top:10px; overflow-x:auto; }
.cookie-details-table { width:100%; border-collapse:collapse; font-size:11.5px; text-align:left; }
.cookie-details-table th,.cookie-details-table td { padding:8px 10px; border-bottom:1px solid rgba(255,255,255,.08); vertical-align:top; line-height:1.4; }
.cookie-details-table th { color:#fff; }
.cookie-details-table td { color:#bbb; }
.cookie-details-table code { padding:1px 5px; color:var(--accent); font-size:11px; background:rgba(215,255,50,.08); border-radius:3px; }
.cookie-switch { position:relative; display:inline-block; flex-shrink:0; width:46px; height:26px; cursor:pointer; }
.cookie-switch input { width:0; height:0; opacity:0; }
.cookie-slider { position:absolute; inset:0; background:#2b3135; border:1px solid rgba(255,255,255,.15); border-radius:26px; cursor:pointer; transition:.2s ease; }
.cookie-slider:before { position:absolute; bottom:3px; left:3px; width:18px; height:18px; content:""; background:#fff; border-radius:50%; transition:.2s ease; }
.cookie-switch input:checked + .cookie-slider { background:var(--accent); border-color:var(--accent); }
.cookie-switch input:checked + .cookie-slider:before { background:#0b0c0d; transform:translateX(20px); }
.cookie-switch.disabled { cursor:not-allowed; opacity:.85; }
.cookie-modal-footer { justify-content:flex-end; padding:16px 24px; background:rgba(0,0,0,.2); border-top:1px solid var(--line); }
.cookie-floating-btn { position:fixed; z-index:9998; bottom:24px; left:24px; display:flex; align-items:center; justify-content:center; width:44px; height:44px; color:#fff; font-size:20px; background:#171b1d; border:1px solid rgba(215,255,50,.35); border-radius:50%; box-shadow:0 6px 20px rgba(0,0,0,.6); cursor:pointer; }
.cookie-floating-btn:hover { border-color:var(--accent); transform:scale(1.1); }
.sticky {
  position:fixed;
  z-index:50;
  left:0;
  right:0;
  bottom:0;
  background:rgba(11,12,13,.94);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  padding:10px 16px;
  display:none;
}
.sticky-inner {
  max-width:var(--max);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.sticky strong {
  font-size:15px;
}
.sticky small {
  display:block;
  color:#999;
}
