:root {
  --red: #cc1111;
  --red-dark: #990d0d;
  --dark: #222222;
  --dark-2: #333333;
  --dark-3: #111111;
  --bg-light: #f7f7f7;
  --white: #ffffff;
  --text: #222222;
  --text-muted: #555555;
  --text-faint: #888888;
  --font: 'Segoe UI', system-ui, Arial, sans-serif;
  --nav-h: 70px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* TOPBAR */
.topbar {
  background: var(--dark);
  color: #999;
  font-size: 12px;
  padding: 7px 20px;
  text-align: center;
  letter-spacing: 0.3px;
}
.topbar strong { color: var(--white); }
.topbar a { color: #e8e8e8; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.12); }
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { color: var(--red); font-weight: 900; font-size: 20px; letter-spacing: 2px; }
.nav-logo-sep { width: 1px; height: 28px; background: #ddd; }
.nav-drezga {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.nav-drezga-logo {
  height: 26px;
  width: auto;
  max-width: 150px;
  display: block;
}
.nav-drezga-name {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}
.nav-drezga-sub {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--dark-2);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--red); border-bottom-color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 3px;
  border-bottom: none !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.hero-content {
  position: absolute;
  top: 46%;
  left: 80px;
  right: 38%;
  transform: translateY(-50%);
  max-width: none;
}
.hero-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-title {
  color: var(--white);
  font-size: 66px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title span { color: var(--red); }
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS (global) */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #f0f0f0; }

/* STATS BAR */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(17,17,17,0.92);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 22px 52px;
  text-align: center;
  border-right: 1px solid #383838;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  color: #cccccc;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* DOT NAVIGATION */
#dot-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.dot-nav-item {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  padding: 0;
  position: relative;
}
.dot-nav-item::before {
  content: '';
  position: absolute;
  inset: -8px;
}
.dot-nav-item::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 11px;
  font-family: var(--font);
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.dot-nav-item:hover::after { opacity: 1; }
.dot-nav-item.dot-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(204, 17, 17, 0.35);
  transform: scale(1.45);
}
.dot-nav-item:hover:not(.dot-active) {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  #dot-nav {
    right: 10px;
    gap: 13px;
  }
  .dot-nav-item {
    width: 14px;
    height: 14px;
  }
  .dot-nav-item::after { display: none; }
}

/* SECTION BASE — full-page scroll */
section {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  scroll-snap-align: start;
  scroll-margin-top: var(--nav-h);
}

.privacy-section {
  min-height: 0;
  scroll-snap-align: none;
}

/* SECTION CURTAIN ANIMATION — clip-path wipe */
section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-3);
  z-index: 15;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
section.section-visible::before { clip-path: inset(100% 0 0 0); }
.hero::before,
.privacy-section::before,
.last-section::before { display: none; }

/* last-section uses ::after for its own wipe */
.last-section {
  overflow: hidden;
}
.last-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #161616;
  z-index: 15;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.last-section.section-visible::after { clip-path: inset(100% 0 0 0); }

/* SECTION COMMON */
.section-line {
  width: 0;
  height: 3px;
  background: var(--red);
  margin-bottom: 14px;
  transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.section-line.line-in {
  width: 48px;
}
.section-title {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.products-all-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.products-all-link:hover { border-bottom-color: var(--red); }

/* ABOUT WEIBANG */
.about-weibang {
  background: var(--bg-light);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-weibang-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 80px;
  align-items: center;
}
.about-weibang-img {
  flex: 1;
  min-width: 0;
}
.about-weibang-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-left: 5px solid var(--red);
}
.about-weibang-text {
  flex: 1;
  min-width: 0;
}
.about-weibang-text p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-weibang-text em { color: var(--red); font-style: normal; font-weight: 600; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.feature-tag {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-left: 3px solid var(--red);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
}

/* PRODUCTS */
.products { background: var(--white); padding: calc(var(--nav-h) + 15px) 0 65px; display: flex; flex-direction: column; }
.products-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: var(--red);
}
.product-card-img {
  overflow: hidden;
  height: 180px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid #ebebeb;
}
.product-card-img img {
  max-width: 100%;
  max-height: 152px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body {
  padding: 14px 18px 16px;
  background: var(--dark);
  flex: 1;
}
.product-cat {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-desc {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.6;
}

/* ABOUT DREZGA */
.about-drezga {
  background: var(--dark-3);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-drezga-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 80px;
  align-items: stretch;
}
.about-drezga-text { flex: 1.1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.about-drezga-text .section-title { color: var(--white); font-size: 32px; }
.about-drezga-text .section-line { background: var(--red); }
.about-drezga-text p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.drezga-contact {
  background: #1a1a1a;
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  margin-top: 32px;
}
.drezga-contact-label {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 13px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}
.contact-row:last-child { margin-bottom: 0; }
.contact-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red);
  display: flex;
  align-items: center;
}
.contact-row a { color: #e0e0e0; transition: color var(--transition); }
.contact-row a:hover { color: var(--white); }
.about-drezga-map { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.about-drezga-map iframe {
  display: block;
  flex: 1;
  min-height: 360px;
  border: 2px solid #2a2a2a;
  height: 100%;
}

/* DISTRIBUTOR CTA */
.distributor-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.distributor-cta-inner { max-width: 900px; margin: 0 auto; }
.distributor-cta h2 {
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
  margin-bottom: 20px;
}
.distributor-cta p {
  font-size: 21px;
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--red); }
.modal-header { margin-bottom: 28px; }
.modal-header h2 { font-size: 24px; font-weight: 900; margin-bottom: 6px; }
.modal-header p { color: var(--text-muted); font-size: 14px; }

/* FORM */
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 6px;
}
.form-group label span,
.form-group label .req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--red); background: #fff8f8; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400 !important;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-label input[type=checkbox] { margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.check-label a { color: var(--red); text-decoration: underline; }
.form-message {
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.form-error { background: #fff3f3; border: 1px solid #ffcccc; color: #cc0000; }
.btn-full { width: 100%; text-align: center; padding: 14px; font-size: 14px; }

/* MODAL SUCCESS */
.modal-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px;
  height: 64px;
  background: #22c55e;
  color: white;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.modal-success p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 3px solid var(--red);
  z-index: 1500;
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  color: #bbb;
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  min-width: 0;
}
.cookie-text strong { color: var(--white); display: block; margin-bottom: 3px; }
.cookie-text a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-outline-dark {
  background: transparent;
  color: #bbb;
  border: 1px solid #555;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: #aaa; color: var(--white); }

/* FOOTER */
.footer {
  background: #0a0a0a;
  padding: 36px 40px 0;
}
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid #2a2a2a;
  color: #cccccc;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  color: var(--red);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
}
.footer-tagline {
  color: #999;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-info {
  color: #bbb;
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
}
.footer-info strong { color: #e0e0e0; }
.footer-info a { color: #e0e0e0; transition: color var(--transition); }
.footer-info a:hover { color: var(--white); }
.footer-links {
  color: #999;
  font-size: 12px;
  text-align: right;
  line-height: 1.9;
}
.footer-links a { color: #bbb; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* LAST SECTION (footer + privacy combined) */
.last-section {
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.last-section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  width: 100%;
}
.last-privacy h3 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
}
.last-privacy p {
  color: #bbb;
  font-size: 15px;
  line-height: 2.0;
  margin-bottom: 14px;
}
.last-privacy p:last-child { margin-bottom: 0; }
.last-privacy strong { color: #ccc; }
.last-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.last-footer-brand .footer-logo {
  color: var(--red);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
}
.last-footer-brand .footer-tagline {
  color: #666;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.last-footer-info {
  color: #999;
  font-size: 14px;
  line-height: 2;
}
.last-footer-info strong { color: #ddd; }
.last-footer-info a { color: #bbb; transition: color var(--transition); }
.last-footer-info a:hover { color: var(--white); }
.last-footer-links {
  color: #666;
  font-size: 12px;
  line-height: 2;
}
.last-footer-links a { color: #888; transition: color var(--transition); }
.last-footer-links a:hover { color: var(--white); }
.last-legal-bar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 60px 24px;
  border-top: 1px solid #1e1e1e;
  color: #555;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
  width: 100%;
}

/* PRIVACY SECTION — kept for anchor link, hidden from layout */
.privacy-section {
  display: none;
}
.privacy-inner {
  max-width: 820px;
  margin: 0 auto;
}
.privacy-inner h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--dark);
}
.privacy-inner p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.privacy-inner strong { color: var(--dark-2); }

/* PRODUCTS MORE */
.products-more {
  margin-top: 24px;
  background: var(--dark);
  border-left: 4px solid var(--red);
  padding: 20px 28px;
}
.products-more-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.products-more-text {
  color: #bbb;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.products-more-text strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* TABLET (768–1023px) */
@media (max-width: 1023px) {
  .hero { height: 460px; }
  .hero-content { left: 40px; max-width: 460px; }
  .hero-title { font-size: 38px; }

  .about-weibang-inner,
  .about-drezga-inner { flex-direction: column; gap: 40px; }
  .about-weibang-inner { padding: 0 40px; }
  .about-weibang-img img { height: 320px; }
  .distributor-cta h2 { font-size: 42px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { text-align: center; }
}

/* MOBILE (<768px) */
@media (max-width: 767px) {
  /* Disable scroll-snap — normal scroll on mobile */
  html { scroll-snap-type: none; }
  section { scroll-snap-align: none; scroll-margin-top: 0; min-height: 0; }

  /* Dot nav — tighter to edge, smaller to reduce overlap */
  #dot-nav { right: 6px; gap: 11px; }
  .dot-nav-item { width: 11px; height: 11px; border-width: 2px; }

  /* Topbar */
  .topbar { font-size: 11px; padding: 6px 12px; line-height: 1.8; }

  /* Navbar */
  .navbar-inner { padding: 0 16px; }
  .nav-logo-sep,
  .nav-drezga { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 8px 0 16px;
    border-top: 2px solid var(--red);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #ddd;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .nav-cta {
    margin: 8px 16px 0;
    text-align: center;
    display: block;
  }
  .hamburger { display: flex; }

  /* Hero */
  .hero { height: 520px; }
  .hero-content { left: 20px; right: 30px; max-width: 100%; top: 40%; }
  .hero-title { font-size: 30px; letter-spacing: -1px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-desc { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { text-align: center; padding: 12px 20px; }

  /* Stats */
  .stats-bar { flex-wrap: wrap; }
  .stat-item { padding: 14px 16px; border-right: none; border-bottom: 1px solid #383838; flex: 1 1 50%; min-width: 0; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 9px; }

  /* About Weibang */
  .about-weibang { padding: 48px 0 52px; }
  .about-weibang-inner { padding: 0 20px 0 20px; gap: 28px; }
  .about-weibang-img img { height: 220px; }
  .about-weibang-text p { font-size: 15px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }
  .feature-tags { gap: 6px; padding-right: 28px; }
  .feature-tag { font-size: 12px; padding: 6px 10px; }

  /* Products */
  .products { padding: 48px 0 52px; }
  .products-inner { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-img { height: 140px; padding: 10px; }
  .product-card-img img { max-height: 116px; }
  .product-card-body { padding: 10px 12px 12px; }
  .product-card-body h3 { font-size: 13px; }
  .product-card-body p { font-size: 12px; }
  .products-more { margin-top: 20px; padding: 16px 16px 16px 16px; }
  .products-more-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .products-more-text { font-size: 13px; }
  .products-more-text strong { font-size: 14px; }

  /* About Drezga */
  .about-drezga { padding: 48px 0 52px; }
  .about-drezga-inner { padding: 0 20px; gap: 28px; }
  .about-drezga-map iframe { height: 240px; }
  .drezga-contact { padding: 16px 18px; }

  /* Distributor CTA */
  .distributor-cta { padding: 56px 28px 56px 24px; }
  .distributor-cta-inner { padding-right: 8px; }
  .distributor-cta h2 { font-size: 32px; letter-spacing: -0.5px; }
  .distributor-cta p { font-size: 16px; margin-bottom: 28px; }

  /* Last section (privacy + footer) */
  .last-section-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px 32px 20px;
    gap: 36px;
  }
  .last-privacy h3 { font-size: 12px; margin-bottom: 16px; }
  .last-privacy p { font-size: 14px; line-height: 1.85; }
  .last-footer-brand .footer-logo { font-size: 18px; }
  .last-footer-info { font-size: 13px; }
  .last-legal-bar { padding: 14px 28px 20px 20px; font-size: 10px; }

  /* Modal */
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal-box { padding: 24px 18px; max-height: 95vh; border-radius: 0; }
  .form-row { flex-direction: column; gap: 0; }

  /* Cookie */
  .cookie-banner { padding: 14px 16px; }
  .cookie-inner { flex-direction: column; gap: 12px; }
  .cookie-actions { justify-content: flex-end; width: 100%; }

  /* Footer */
  .footer { padding: 28px 20px 0; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer-links { text-align: center; }
  .footer-legal { padding: 14px 16px 18px; font-size: 10px; }

  /* Privacy section */
  .privacy-section { padding: 36px 20px; }
}
