/* ═══════════════════════════════════════════════
   style.css  –  Valiant EXPO ANTAD 2026
   Fonts: Cormorant Garamond (headings) + Raleway (body)
   ═══════════════════════════════════════════════ */

:root {
  --bg: #F8F7F4;
  --white: #FFFFFF;
  --agave: #4A7060;
  --agave-dark: #335040;
  --agave-light: #EBF1ED;
  --gold: #C09B5C;
  --terra: #B85A30;
  --terra-light: #FBF0EA;
  --text: #1C2320;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: #DDE3DE;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);
  --r: 10px;
  --r-lg: 18px;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--agave); color: #fff;
  padding: 13px 28px; border-radius: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--agave-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,112,96,0.35); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px 24px; border-radius: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.btn-wa:hover { background: #1daf57; transform: translateY(-2px); }
.btn-wa.full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,247,244,0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: 66px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo-area { display: flex; align-items: baseline; gap: 10px; }
.logo-name { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--agave); letter-spacing: 2px; }
.logo-sub { font-size: 0.72rem; color: var(--text-light); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  padding: 8px 16px; border-radius: 5px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  transition: background 0.2s;
}
.header-wa-btn:hover { background: #1daf57; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); }
.lang-btn { font-weight: 700; color: var(--text-light); padding: 4px 6px; transition: color 0.2s; font-family: var(--font-body); }
.lang-btn.active { color: var(--agave); }

/* ── MOQ Ticker ──────────────────────────── */
.moq-ticker {
  background: var(--agave-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase;
  overflow: hidden; white-space: nowrap;
  margin-top: 66px; height: 36px;
  display: flex; align-items: center;
}
.moq-ticker-inner {
  display: inline-flex; gap: 48px;
  animation: ticker 28s linear infinite;
  padding-right: 48px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero — Full-bleed product photo background — */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero-poster { position: absolute; inset: 0; z-index: 0; }
.hero-poster-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(15%) saturate(120%) contrast(105%) brightness(105%);
}
.hero-poster-overlay {
  position: absolute; inset: 0;
  /* Gradient: dark on left for text, less dark right to show bottles */
  background: linear-gradient(100deg,
    rgba(20,30,24,0.82) 0%,
    rgba(20,30,24,0.60) 50%,
    rgba(20,30,24,0.30) 100%);
}
/* Centered single-column hero text */
.hero-layout-center {
  position: relative; z-index: 10;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: flex-start;
  width: 100%;
}
.hero-text-centered {
  max-width: 600px;
}
/* Keep backward-compat aliases */
.hero-layout { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-text { /* no extra style needed */ }
.expo-chip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(192,155,92,0.55);
  color: var(--gold);
  background: rgba(192,155,92,0.10);
  padding: 6px 14px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600; line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 34px; max-width: 460px; font-weight: 400; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-moq-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(192,155,92,0.4);
  background: rgba(192,155,92,0.08);
  padding: 9px 18px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--gold);
}
.hero-agave-decor {
  position: absolute; right: 8%; bottom: 15%;
  color: rgba(192,155,92,0.5);
  opacity: 0.7;
  animation: agaveSway 6s ease-in-out infinite;
}
.hero-agave-decor-2 {
  position: absolute; left: 5%; bottom: 20%;
  color: rgba(74,112,96,0.35);
  opacity: 0.5;
  animation: agaveSway 7s ease-in-out infinite reverse;
}
.hero-agave-decor-3 {
  position: absolute; right: 15%; bottom: 8%;
  color: rgba(192,155,92,0.3);
  opacity: 0.4;
  animation: agaveSway 8s ease-in-out infinite;
}
.hero-decor-left {
  position: absolute; left: 2%; top: 50%;
  transform: translateY(-50%);
  color: rgba(74,112,96,0.25);
  opacity: 0.4;
}
@keyframes agaveSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.hero-img-side { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 440px; }
.hero-bottle-img {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  position: relative; z-index: 2;
}
.hero-img-glow {
  position: absolute; bottom: -5%; left: 10%; right: 10%; height: 60px;
  background: radial-gradient(ellipse at center, rgba(192,155,92,0.35) 0%, transparent 70%);
  filter: blur(22px); z-index: 1;
}
.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ───────────────────────────── */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0 44px; }
.trust-item strong { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--agave); line-height: 1; }
.trust-item span { font-size: 0.78rem; color: var(--text-mid); margin-top: 4px; text-align: center; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.trust-divider { width: 1px; height: 50px; background: var(--border); }

/* ── Section headers ─────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: var(--agave-light); color: var(--agave);
  padding: 4px 14px; border-radius: 2px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.15; }
.section-desc { color: var(--text-mid); max-width: 600px; margin: 0 auto; font-size: 1rem; font-weight: 400; line-height: 1.8; }

/* ── Factory Section ─────────────────────── */
.factory-section { padding: 88px 0; }

.factory-block { margin-bottom: 66px; }
.block-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 600;
  margin-bottom: 24px; color: var(--text);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.block-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700;
  color: var(--border); line-height: 1;
}

/* Factory photo grid: wide main + small pair */
.factory-masonry {
  display: grid;
  gap: 14px;
}
.factory-masonry.prod-lines {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px;
}
.factory-masonry.logistics {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px;
}
.factory-photo {
  position: relative; border-radius: var(--r); overflow: hidden;
  background: #ddd;
}
.factory-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(0.92) contrast(1.05) saturate(1.1);
}
.factory-photo:hover img { transform: scale(1.04); filter: brightness(1) contrast(1.05) saturate(1.15); }
.photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
  color: #fff; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 24px 14px 12px;
}

/* Decoration grid — 3 columns, 2 rows */
.decoration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.deco-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  text-align: center; transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.deco-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--agave); }
.deco-img-wrap { height: 160px; overflow: hidden; background: #f4f2ee; }
.deco-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.93) contrast(1.05) saturate(1.1); transition: transform 0.4s; }
.deco-card:hover .deco-img-wrap img { transform: scale(1.06); }
.deco-card span { display: block; padding: 10px 8px 12px; font-size: 0.78rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.5px; text-transform: uppercase; }

/* QC standalone block */
.qc-num { color: var(--terra) !important; }
.qc-standalone {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 44px; align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.qc-img-wrap { height: 300px; overflow: hidden; }
.qc-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) contrast(1.05) saturate(1.1); }
.qc-text { padding: 36px 40px 36px 0; }
.qc-text h4 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 600;
  margin-bottom: 14px; color: var(--text);
}
.qc-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.qc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.qc-list li {
  padding-left: 20px; position: relative;
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
}
.qc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--agave); font-weight: 700; }

/* Cert row */
.cert-row {
  display: flex; align-items: center; gap: 40px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.cert-img-wrap { width: 160px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.cert-img-wrap img { width: 100%; height: 120px; object-fit: cover; filter: brightness(0.95) contrast(1.05); }
.cert-text h3 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 10px; }
.cert-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }

/* ── Products ─────────────────────────────── */
.products { background: var(--white); padding: 88px 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--agave); }
.product-img-box { background: #F2F0EC; overflow: hidden; height: 240px; }
.product-img-box img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform 0.45s ease; filter: brightness(0.97) contrast(1.03); }
.product-card:hover .product-img-box img { transform: scale(1.06); }
.product-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.product-model-tag { font-size: 0.68rem; font-weight: 700; color: var(--agave); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.product-name { font-family: var(--font-head); font-size: 1.9rem; margin-bottom: 8px; font-weight: 600; }
.product-tagline { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 18px; flex-grow: 1; line-height: 1.6; }

.blueprint-specs {
  background: var(--agave-light); border: 1px dashed rgba(74,112,96,0.35);
  border-radius: 6px; padding: 12px 14px;
  margin-bottom: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.spec-row {
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 0.83rem; color: var(--agave-dark);
  padding: 3px 0;
  border-bottom: 1px solid rgba(74,112,96,0.1);
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-weight: 700; color: var(--agave);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.spec-val { font-weight: 500; font-family: 'Courier New', monospace; font-size: 0.85rem; }

.moq-badge-sm {
  font-size: 0.75rem; font-weight: 700; color: var(--terra);
  text-align: right; padding-top: 10px; border-top: 1px solid var(--border);
  letter-spacing: 0.3px;
}
.btn-inquire {
  display: block; width: 100%; margin-top: 12px;
  padding: 11px 16px; border-radius: 5px;
  border: 1.5px solid var(--agave); color: var(--agave);
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer; text-align: center;
}
.btn-inquire:hover { background: var(--agave); color: #fff; }

/* ── Form Section ────────────────────────── */
.form-section { padding: 88px 0 70px; }
.form-wrapper {
  display: grid; grid-template-columns: 1fr 1.15fr;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--white);
  border: 1px solid var(--border);
}
.form-left-panel { position: relative; min-height: 580px; }
.form-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) contrast(1.05) saturate(1.1); }
.form-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,38,28,0.88) 0%, rgba(74,112,96,0.7) 100%);
}
.form-panel-content {
  position: relative; z-index: 10; padding: 52px 40px;
  color: #fff; display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.expo-date-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(192,155,92,0.45); color: var(--gold);
  background: rgba(192,155,92,0.08);
  padding: 6px 14px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 22px; width: fit-content;
}
.form-panel-content h3 { font-family: var(--font-body); font-size: 2.2rem; margin-bottom: 6px; line-height: 1.15; }
.form-panel-content p { font-size: 1.05rem; opacity: 0.88; margin-bottom: 3px; font-family: var(--font-body); }
.form-panel-venue { font-size: 0.85rem; opacity: 0.65; margin-bottom: 28px; }
.contact-info-panel { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; opacity: 0.88; }

.form-right-panel { padding: 52px 48px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.35s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.form-title { font-family: var(--font-head); font-size: 2rem; margin-bottom: 8px; color: var(--text); line-height: 1.2; }
.form-subtitle { color: var(--text-mid); margin-bottom: 26px; font-size: 0.95rem; }

/* Step 1 selection */
.selection-list { display: flex; flex-direction: column; gap: 10px; }
.sel-btn {
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 14px 20px; border-radius: 7px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--text); text-align: left;
  transition: all 0.18s; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
}
.sel-btn::before { content: ''; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.18s; }
.sel-btn:hover { border-color: var(--agave); background: var(--agave-light); }
.sel-btn:hover::before { border-color: var(--agave); background: var(--agave-light); }
.sel-btn.selected { background: var(--agave); color: #fff; border-color: var(--agave); }
.sel-btn.selected::before { background: #fff; border-color: #fff; }
/* catalog button – no color fill when selected */
.catalog-btn.selected { background: var(--agave-light); color: var(--agave); border-color: var(--agave); }
.catalog-btn.selected::before { background: var(--agave); border-color: var(--agave); }

.selected-product-display {
  display: inline-block; background: var(--agave-light);
  color: var(--agave); border: 1px solid rgba(74,112,96,0.3);
  padding: 5px 14px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 22px;
}

.back-btn { color: var(--text-light); font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; display: inline-block; font-family: var(--font-body); }
.back-btn:hover { color: var(--text); }

.valiant-form .form-group { margin-bottom: 20px; }
.valiant-form label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; color: var(--text); letter-spacing: 0.5px; text-transform: uppercase; }
.valiant-form .form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-family: var(--font-body); font-size: 0.97rem;
  color: var(--text); background: var(--bg);
  transition: all 0.2s;
}
.valiant-form .form-control:focus { outline: none; border-color: var(--agave); background: var(--white); box-shadow: 0 0 0 3px rgba(74,112,96,0.12); }
.valiant-form textarea.form-control { resize: vertical; min-height: 88px; }
.valiant-form select.form-control { cursor: pointer; }
.form-privacy { text-align: center; color: var(--text-light); font-size: 0.76rem; margin-top: 10px; }
.iti { width: 100%; }

/* ── Footer ──────────────────────────────── */
.footer { background: var(--text); color: rgba(255,255,255,0.72); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; }
.footer-contacts a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contacts a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── Floating WA ─────────────────────────── */
.floating-wa {
  position: fixed; bottom: 30px; right: 30px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 300; transition: all 0.25s;
}
.floating-wa:hover { background: #1daf57; transform: scale(1.1); }

/* ── Mobile CTA ──────────────────────────── */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(248,247,244,0.95); backdrop-filter: blur(14px);
  padding: 12px 20px; border-top: 1px solid var(--border); z-index: 150;
}

/* ── Success Modal ───────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28,35,32,0.7); backdrop-filter: blur(8px);
  z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); border-radius: var(--r-lg);
  padding: 50px 44px; max-width: 440px; width: 100%; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp { from { transform: translateY(28px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon { font-size: 3.5rem; margin-bottom: 18px; }
.modal-title { font-family: var(--font-head); font-size: 2rem; margin-bottom: 12px; }
.modal-body { color: var(--text-mid); font-size: 0.98rem; line-height: 1.75; margin-bottom: 20px; }
.modal-expo-info {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--agave-light); color: var(--agave);
  padding: 8px 16px; border-radius: 20px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 24px;
}
.modal-wa-btn { width: 100%; justify-content: center; font-size: 1rem; }
.modal-close-btn {
  margin-top: 12px; width: 100%; padding: 12px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text-mid);
  font-family: var(--font-body); cursor: pointer; transition: all 0.2s;
}
.modal-close-btn:hover { border-color: var(--text); color: var(--text); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1400px) {
  .container { max-width: 960px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
}
@media (max-width: 1100px) {
  .container { max-width: 720px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .decoration-grid { grid-template-columns: repeat(3, 1fr); }
  .qc-standalone { grid-template-columns: 280px 1fr; }
  .factory-masonry.prod-lines, .factory-masonry.logistics { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .factory-photo.wide { grid-column: 1 / 3; height: 280px; }
  .factory-photo { height: 200px; }
}
@media (max-width: 900px) {
  .container { max-width: 540px; padding: 0 20px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-img-side { order: -1; max-width: 280px; margin: 0 auto; }
  .hero-actions, .hero-moq-badge { justify-content: center; display: flex; }
  .expo-chip { margin: 0 auto 18px; }
  .form-wrapper { grid-template-columns: 1fr; }
  .form-left-panel { min-height: 260px; }
  .form-right-panel { padding: 38px 28px; }
  .mobile-cta { display: block; }
  .floating-wa { right: 16px; bottom: 78px; }
  .trust-item { padding: 0 22px; }
  .product-img-box { height: 200px; }
  .hero-h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 640px) {
  .container { max-width: 100%; padding: 0 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .decoration-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-row { flex-direction: column; gap: 20px; }
  .factory-masonry.prod-lines, .factory-masonry.logistics { grid-template-columns: 1fr; }
  .factory-photo.wide { grid-column: 1; height: 220px; }
  .factory-photo { height: 180px; }
  .hero-h1 { font-size: 1.8rem; }
  .hero-desc { font-size: 0.95rem; }
  .logo-sub { display: none; }
  .header-wa-btn span { display: none; }
  .trust-divider { display: none; }
  .trust-grid { gap: 16px; }
  .trust-item strong { font-size: 1.6rem; }
  .qc-standalone { grid-template-columns: 1fr; }
  .qc-img-wrap { height: 220px; }
  .qc-text { padding: 24px 20px; }
  .form-panel-content h3 { font-size: 1.6rem; }
  .form-panel-content p { font-size: 0.95rem; }
  .block-title { font-size: 1.3rem; }
  .product-body { padding: 16px; }
  .product-img-box { height: 180px; }
  .header { height: 56px; }
  .header-inner { height: 56px; }
  .moq-ticker { margin-top: 56px; height: 32px; font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 70vh; padding: 40px 0 60px; }
  .hero-text-centered { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-wa { width: 100%; justify-content: center; }
  .trust-grid { flex-direction: column; gap: 12px; }
  .trust-item { flex-direction: row; gap: 8px; }
  .trust-divider { display: none; }
  .deco-card { padding-bottom: 12px; }
  .deco-img-wrap { height: 120px; }
}
