/* ===========================================================
   China Direct Wholesale — Landing Page Styles
   Static build: works from the file system, no build step.
   =========================================================== */

:root {
  --ink: #0b1220;
  --ink-2: #1c2534;
  --body: #4a5568;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-dark: #0b1220;

  --brand-1: #ff5a1f;
  --brand-2: #ff2d6f;
  --brand-3: #7b2ff7;
  --accent: #00c2a8;

  --grad-cta: linear-gradient(100deg, #ff7a18 0%, #ff2d6f 50%, #7b2ff7 100%);
  --grad-cta-2: linear-gradient(100deg, #00c2a8 0%, #12b3f0 55%, #3b6bff 100%);
  --grad-wa: linear-gradient(100deg, #25d366 0%, #0fb87f 60%, #0aa06e 100%);
  --grad-bar: linear-gradient(90deg, #ff7a18, #ff2d6f, #7b2ff7, #12b3f0, #ff7a18);
  --grad-text: linear-gradient(95deg, #ff7a18, #ff2d6f 45%, #7b2ff7);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(11, 18, 32, 0.06);
  --shadow: 0 18px 44px rgba(11, 18, 32, 0.1);
  --shadow-lg: 0 30px 80px rgba(11, 18, 32, 0.18);
  --maxw: 1200px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}

h1 { font-size: clamp(46px, 4.4vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 42px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin: 0 0 14px; }

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

.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #b9c3d6; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.section-head p { font-size: clamp(15px, 1.5vw, 18px); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--grad-cta);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Icons ---------- */
.icon { width: 22px; height: 22px; flex: none; stroke-width: 1.9; }
.icon--lg { width: 28px; height: 28px; }
.icon--sm { width: 17px; height: 17px; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  color: #fff;
  background: var(--grad-cta);
  box-shadow: 0 12px 26px rgba(255, 45, 111, 0.28);
  margin-bottom: 16px;
}
.icon-badge--alt { background: var(--grad-cta-2); box-shadow: 0 12px 26px rgba(59, 107, 255, 0.28); }

/* ---------- Buttons: gradient + breathing ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: var(--grad-cta);
  background-size: 200% 200%;
  box-shadow: 0 14px 32px rgba(255, 60, 96, 0.32);
  animation: breathe 2.6s ease-in-out infinite, sheen 7s linear infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  isolation: isolate;
}
.btn:hover { transform: translateY(-2px) scale(1.02); filter: saturate(1.1); box-shadow: 0 20px 42px rgba(255, 60, 96, 0.42); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn:focus-visible { outline: 3px solid #12b3f0; outline-offset: 3px; }

.btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: inherit;
  filter: blur(14px);
  opacity: 0.5;
  z-index: -1;
  animation: halo 2.6s ease-in-out infinite;
}

.btn--block { width: 100%; }
.btn--lg { padding: 19px 36px; font-size: 17px; }
.btn--alt { background: var(--grad-cta-2); box-shadow: 0 14px 32px rgba(18, 179, 240, 0.32); }
.btn--wa { background: var(--grad-wa); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
  animation: none;
}
.btn--ghost::after { display: none; }

@keyframes breathe {
  0%, 100% { transform: scale(1); background-position: 0% 50%; }
  50% { transform: scale(1.035); background-position: 100% 50%; }
}
@keyframes halo {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.7; transform: scale(1.04); }
}
/* @keyframes sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
} */

@media (prefers-reduced-motion: reduce) {
  .btn, .btn::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--grad-bar);
  background-size: 300% 100%;
  animation: sheen 12s linear infinite;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.announce .container {
  display: flex; align-items: center; justify-content: center;
  gap: 10px 26px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px;
}
.announce span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-cta);
}
.brand-name { font-size: 17px; line-height: 1.1; font-family: "Sora", sans-serif; }
.brand-name small { display: block; font-size: 11px; font-weight: 700; color: var(--body); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 700; font-size: 15px; color: var(--ink-2); transition: color 0.15s; }
.nav a:hover { color: var(--brand-2); }
.header .btn { padding: 12px 22px; font-size: 14px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 72px;
  color: #e9edf6;
  background: linear-gradient(120deg, #0b1220 0%, #16203a 55%, #2a1440 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("images/hero.webp");
  background-size: cover; background-position: center;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}
.hero::after {
  content: "";
  position: absolute; width: 620px; height: 620px; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(255, 45, 111, 0.4), transparent 65%);
  filter: blur(20px);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: start; }
.hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: #cfd7e8; font-weight: 600; margin-bottom: 26px; }

.usp { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.usp li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: #e4e9f5; font-weight: 600; }
.usp .icon { color: #35e0a1; margin-top: 2px; }

.trust-badges {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust-badges div { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: #e4e9f5; }
.trust-badges .icon { color: #ffb457; }

/* ---------- Form card ---------- */
.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--body);
  position: relative;
}
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card .lead { font-size: 14.5px; margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15px;
  border: 1.8px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfcfe; color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(255, 45, 111, 0.12);
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block; padding: 9px 15px; border-radius: 999px;
  border: 1.8px solid var(--line); font-size: 13.5px; font-weight: 700;
  color: var(--ink-2); background: #fbfcfe; cursor: pointer; transition: all 0.15s;
}
.chip input:checked + span {
  background: var(--grad-cta); color: #fff; border-color: transparent;
  box-shadow: 0 8px 18px rgba(255, 45, 111, 0.26);
}
.privacy { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; margin: 14px 0 0; color: #6b7688; }
.privacy .icon { color: var(--accent); }
.form-note { font-size: 13px; text-align: center; margin: 12px 0 0; color: var(--accent); font-weight: 700; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .thumb { position: relative; aspect-ratio: 1 / 1; background: #f1f3f8; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .thumb img { transform: scale(1.06); }
.tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 11px; border-radius: 999px; font-size: 11px; font-weight: 800;
  color: #fff; background: var(--grad-cta); letter-spacing: 0.04em; text-transform: uppercase;
}
.product-card .body { padding: 15px 16px 18px; }
.product-card h3 { font-size: 16px; margin-bottom: 5px; }
.product-card p { font-size: 13.5px; margin: 0; }
.product-card .price { display: block; margin-top: 9px; font-weight: 800; color: var(--brand-2); font-size: 14px; }

.callout {
  margin-top: 34px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: center; text-align: center;
  padding: 22px 26px; border-radius: var(--radius);
  border: 2px dashed rgba(255, 45, 111, 0.35); background: rgba(255, 45, 111, 0.05);
  font-weight: 600; color: var(--ink-2);
}
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.8px; margin: 0; }

/* ---------- Swiper (custom, no dependency) ---------- */
.swiper { position: relative; }
.swiper-viewport { overflow: hidden; border-radius: var(--radius); }
.swiper-track { display: flex; gap: 22px; transition: transform 0.55s cubic-bezier(0.22, 0.75, 0.3, 1); will-change: transform; }
.slide { flex: 0 0 calc((100% - 44px) / 3); }

.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 9 / 16; background: #10182a; box-shadow: var(--shadow-sm);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.86; transition: transform 0.5s, opacity 0.3s; }
.video-card:hover img { transform: scale(1.05); opacity: 1; }
.video-card .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-card .play i {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: var(--grad-cta); box-shadow: 0 12px 30px rgba(255, 45, 111, 0.45);
  animation: breathe 2.6s ease-in-out infinite;
}
.video-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  color: #fff; font-weight: 700; font-size: 14.5px;
  background: linear-gradient(transparent, rgba(6, 10, 20, 0.85));
}

.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; position: relative;
}
.testimonial-card::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(11, 18, 32, 0.28) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center no-repeat;
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s ease; }
.testimonial-card:hover img { transform: scale(1.04); }
.testimonial-card .body { padding: 20px 22px 24px; }
.stars { display: flex; gap: 3px; color: #ffb457; margin-bottom: 10px; }
.testimonial-card blockquote { margin: 0 0 14px; font-size: 15px; color: var(--ink-2); font-weight: 600; }
.who { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--body); }
.who .icon { color: #25d366; }

.swiper-nav {
  display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 24px;
}
.swiper-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.8px solid var(--line);
  background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer;
  transition: all 0.18s; box-shadow: var(--shadow-sm);
}
.swiper-btn:hover { background: var(--grad-cta); color: #fff; border-color: transparent; }
.dots { display: flex; gap: 7px; margin: 0 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d3d9e6; border: 0; padding: 0; cursor: pointer; transition: all 0.2s; }
.dot.is-active { width: 26px; border-radius: 999px; background: var(--grad-cta); }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-col { border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--line); background: #fff; }
.compare-col.bad { background: #fff5f5; border-color: #ffd9d9; }
.compare-col.good { background: linear-gradient(160deg, #f2fbf7, #eef6ff); border-color: #c8ebdd; }
.compare-col h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.compare-col.bad .icon { color: #e5484d; }
.compare-col.good .icon { color: #0aa06e; }
.compare-col.good li { color: var(--ink-2); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px 26px; box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -16px; left: 26px;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  color: #fff; font-weight: 900; font-family: "Sora", sans-serif;
  background: var(--grad-cta); box-shadow: 0 10px 22px rgba(255, 45, 111, 0.3);
}
.step h3 { margin: 16px 0 8px; display: flex; align-items: center; gap: 9px; font-size: 17.5px; }
.step h3 .icon { color: var(--brand-2); }
.step p { font-size: 14.5px; margin: 0; }
.steps-tagline { text-align: center; margin-top: 34px; font-size: 19px; font-weight: 800; }

/* ---------- Shipping ---------- */
.ship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ship-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.ship-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; font-weight: 600; color: #cdd6e6; }
.ship-list .icon { color: #35e0a1; margin-top: 2px; }
.guarantee {
  border-radius: var(--radius); padding: 26px 28px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
}
.guarantee h3 { display: flex; gap: 10px; align-items: center; font-size: 19px; }
.guarantee p { margin: 0; font-size: 15px; }
.ship-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; }
.ship-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.ship-visual:hover img { transform: scale(1.03); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; background: none; border: 0; font: inherit; font-weight: 800;
  font-size: 16px; color: var(--ink); cursor: pointer; text-align: left;
}
.faq-q .icon { transition: transform 0.25s; color: var(--brand-2); }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a p { padding: 0 22px 20px; margin: 0; font-size: 15px; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(120deg, #14082b 0%, #33103f 45%, #4a1030 100%);
  color: #d9dfee; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; width: 700px; height: 700px; left: -220px; bottom: -320px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.35), transparent 65%);
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.cta-kicker { font-size: 19px; font-weight: 800; color: #ffb457; margin: 22px 0 18px; }
.cta-buttons { display: flex; flex-direction: column; gap: 14px; max-width: 420px; }

/* ---------- Footer ---------- */
.footer { background: #060a13; color: #8a94a8; padding: 56px 0 26px; font-size: 14.5px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; font-weight: 800; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.footer-pills span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); color: #cfd6e4;
}
.footer-pills .icon { color: #35e0a1; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(4, 8, 16, 0.86); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.25s ease;
}
.modal.is-open { display: flex; opacity: 1; }
.modal-inner {
  width: min(920px, 100%); background: #0d1424; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  transform: scale(0.96); transition: transform 0.25s ease;
}
.modal.is-open .modal-inner { transform: scale(1); }
.modal-inner video { width: auto; max-width: 100%; max-height: 78vh; display: block; margin: 0 auto; background: #000; aspect-ratio: 9 / 16; }
.modal-fallback { padding: 44px 30px; text-align: center; color: #c3ccdd; }
.modal-fallback img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 18px; }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0, 0, 0, 0.6); color: #fff; display: grid; place-items: center;
  transition: background 0.18s, transform 0.18s;
}
.modal-close:hover { background: var(--brand-2); transform: scale(1.08); }
.modal-title { padding: 16px 22px; color: #fff; font-weight: 700; }

.modal-inner--img {
  width: auto;
  max-width: min(92vw, 1000px);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.modal-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
  max-width: 100%;
}
.modal-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  background: #10182a;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .slide { flex-basis: calc((100% - 22px) / 2); }
  .ship-grid, .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .announce { display: none; }
  .nav { display: none; }
  .nav-toggle { display: inline-grid; }
  .header .btn { padding: 11px 16px; font-size: 13px; }
  .header .btn span { display: none; }

  .section { padding: 54px 0; }
  .hero { padding: 44px 0 56px; }
  .form-card { padding: 24px 20px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card .body { padding: 12px 13px 15px; }
  .product-card h3 { font-size: 14.5px; }
  .product-card p { font-size: 12.5px; }

  .grid-3, .steps, .compare, .footer-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .slide { flex-basis: 100%; }
  .swiper-track { gap: 14px; }

  .cta-buttons { max-width: none; }
  .footer-bottom { flex-direction: column; }

  body { padding-bottom: 78px; }
  .sticky-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 10px 14px; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .sticky-cta .btn { flex: 1; padding: 14px 12px; font-size: 14px; }
}
