/* ── FONT ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0C0C0E;
  color: #F0EFE9;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #E0182D; border-radius: 4px; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 24px; }
.bg-dark    { background: #0C0C0E; }
.bg-surface { background: #141416; }

/* ── COLORS ── */
.c-red  { color: #E0182D; }
.c-gold { color: #D4A847; }

/* ── TYPOGRAPHY ── */
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.section-desc {
  font-size: 15px;
  color: #9B9A96;
  line-height: 1.75;
  max-width: 520px;
  margin-top: 10px;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #F0EFE9; }
.card-text  { font-size: 13px; color: #9B9A96; line-height: 1.65; }

/* ── PILL TAG ── */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,71,0.14);
  border: 1px solid rgba(212,168,71,0.3);
  color: #D4A847;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E0182D;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(224,24,45,0.28);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { background: #C01020; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,24,45,0.38); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #F0EFE9;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #E0182D; color: #E0182D; }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 12px; }
.btn-xl { padding: 18px 48px; font-size: 16px; border-radius: 14px; width: 100%; max-width: 380px; justify-content: center; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: #E0182D;
  overflow: hidden;
  padding: 8px 0;
  white-space: nowrap;
}
.announce-track {
  display: inline-flex;
  gap: 56px;
  animation: ticker 24s linear infinite;
  white-space: nowrap;
}
.announce-track span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12,12,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 34px; width: auto; object-fit: contain; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #9B9A96;
  padding: 5px 12px;
  border-radius: 100px;
  background: #141416;
  border: 1px solid rgba(255,255,255,0.07);
}
.nav-badge i { color: #D4A847; font-size: 10px; }

/* ── HERO ── */
.hero-section { background: #0C0C0E; }
.hero-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  min-height: 88vh;
}
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 13px;
  font-weight: 600;
  color: #9B9A96;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 15px;
  color: #9B9A96;
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 28px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  color: #F0EFE9;
}
.chip i { color: #D4A847; font-size: 10px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.hero-note { font-size: 12px; color: #5A5A60; display: flex; align-items: center; gap: 6px; }
.hero-note i { color: #D4A847; }

/* Hero visual */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bottle-card {
  background: transparent;
  border: none;
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.bottle-card::before { display: none; }
.bottle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: none;
}
.stats-row {
  width: 100%;
  max-width: 320px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #F0EFE9;
  line-height: 1;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #5A5A60;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

/* ── GRIDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── PROBLEM CARDS ── */
.prob-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.22s, transform 0.22s;
}
.prob-card:hover { border-color: rgba(224,24,45,0.35); transform: translateY(-3px); }

/* ── BENEFIT CARDS ── */
.ben-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px 20px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.ben-card:hover { border-color: rgba(224,24,45,0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(224,24,45,0.2); }
.ben-card .icon-box { margin-bottom: 16px; }

/* ── ICON BOX ── */
.icon-box {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.red-icon { background: rgba(224,24,45,0.12); color: #E0182D; }

/* ── INGREDIENT CARDS ── */
.ing-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.ing-card:hover { border-color: rgba(212,168,71,0.4); transform: translateY(-3px); }
.ing-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.7);
  transition: filter 0.3s;
  display: block;
}
.ing-card:hover .ing-img { filter: brightness(0.9) saturate(1); }
.ing-body { padding: 18px 18px; }
.ing-body .card-title { margin-bottom: 10px; }
.ing-list { display: flex; flex-direction: column; gap: 5px; }
.ing-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #9B9A96;
}
.ing-list li i { color: #D4A847; font-size: 8px; flex-shrink: 0; }

/* ── SOLUTION / IMG CARD ── */
.img-card {
  background: transparent;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.floating-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #E0182D;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── FEAT LIST (solution) ── */
.feat-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #F0EFE9;
  transition: border-color 0.2s;
}
.feat-item:hover { border-color: rgba(255,255,255,0.14); }
.feat-item i { color: #D4A847; font-size: 13px; min-width: 16px; }

/* ── VS TABLE ── */
.vs-box {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
}
.vs-table { width: 100%; border-collapse: collapse; }
.vs-table .th-feat { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #5A5A60; background: transparent; width: 30%; }
.vs-table .th-growx { padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 700; background: #E0182D; color: #fff; }
.vs-table .th-other { padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 700; background: rgba(255,255,255,0.03); color: #5A5A60; }
.vs-table tbody tr { border-top: 1px solid rgba(255,255,255,0.06); }
.vs-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.vs-table .td-feat { padding: 13px 20px; font-size: 13px; font-weight: 600; color: #9B9A96; }
.vs-table .td-g { padding: 13px 20px; font-size: 13.5px; font-weight: 600; color: #F0EFE9; }
.vs-table .td-o { padding: 13px 20px; font-size: 13.5px; color: #5A5A60; }
.yes { color: #4ade80; margin-right: 7px; }
.no  { color: #5A5A60; margin-right: 7px; }

/* ── HOW TO USE ── */
.steps-list { display: flex; flex-direction: column; gap: 8px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.step-item:hover { border-color: rgba(255,255,255,0.12); }
.step-num {
  font-size: 24px;
  font-weight: 800;
  color: rgba(224,24,45,0.22);
  line-height: 1;
  min-width: 34px;
  letter-spacing: -0.5px;
}

/* ── TRUST STATS ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.22s, transform 0.22s;
}
.trust-card:hover { border-color: rgba(224,24,45,0.3); transform: translateY(-3px); }
.trust-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #E0182D;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-lbl { font-size: 12px; font-weight: 600; color: #9B9A96; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── TESTIMONIALS ── */
.testi-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 22px;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: rgba(255,255,255,0.12); }
.stars { color: #D4A847; font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.testi-text { font-size: 13.5px; color: #9B9A96; line-height: 1.75; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: #E0182D;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; }
.testi-loc  { font-size: 11px; color: #5A5A60; margin-top: 2px; }
.rating-box {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.rating-left { text-align: center; min-width: 90px; }
.rating-big  { font-size: 52px; font-weight: 800; color: #D4A847; line-height: 1; }
.rating-stars { font-size: 16px; letter-spacing: 2px; color: #D4A847; margin-top: 4px; }
.rating-count { font-size: 11px; color: #5A5A60; margin-top: 6px; }
.rating-bars { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 7px; }
.rbar { display: flex; align-items: center; gap: 9px; }
.rb-lbl { font-size: 11px; color: #9B9A96; min-width: 14px; }
.rb-track { flex: 1; height: 4px; background: #0C0C0E; border-radius: 10px; overflow: hidden; }
.rb-fill  { height: 100%; background: #D4A847; border-radius: 10px; }
.rb-cnt   { font-size: 11px; color: #5A5A60; min-width: 32px; text-align: right; }

/* ── ORDER SECTION ── */
.order-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.order-wrap .section-title { margin-bottom: 10px; }
.order-wrap .section-desc  { margin: 0 auto 28px; }
.order-card {
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.price-now { font-size: 48px; font-weight: 800; color: #F0EFE9; line-height: 1; }
.price-old { font-size: 22px; color: #5A5A60; text-decoration: line-through; }
.price-tag { background: #E0182D; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.perks-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.perk { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #9B9A96; }
.perk i { color: #D4A847; }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-row span { font-size: 11.5px; color: #5A5A60; display: flex; align-items: center; gap: 5px; }
.trust-row i { color: #D4A847; }

/* ── FOOTER ── */
.footer { background: #0C0C0E; border-top: 1px solid rgba(255,255,255,0.07); padding: 52px 24px 24px; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 28px; margin-bottom: 12px; object-fit: contain; }
.footer-brand p { font-size: 13px; color: #9B9A96; line-height: 1.75; max-width: 240px; }
.social-row { display: flex; gap: 8px; margin-top: 16px; }
.soc-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #1A1A1E;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #9B9A96; font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.soc-btn:hover { border-color: #E0182D; color: #E0182D; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #F0EFE9; margin-bottom: 16px; }
.footer-col li + li { margin-top: 9px; }
.footer-col a { font-size: 13px; color: #9B9A96; transition: color 0.2s; }
.footer-col a:hover { color: #F0EFE9; }
.footer-bottom { max-width: 1100px; margin: 20px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: #5A5A60; }
.disclaimer { max-width: 1100px; margin: 14px auto 0; font-size: 11px; color: #5A5A60; line-height: 1.65; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── MOBILE STICKY ── */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(20,20,22,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
}

/* ── CAROUSEL ── */
.carousel-wrap { position: relative; overflow: hidden; border-radius: 24px; }
.carousel-track { width: 100%; height: 100%; position: relative; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease; object-fit: cover; border-radius: 24px; }
.carousel-slide.active { opacity: 1; position: relative; }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(20,20,22,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  z-index: 10;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: #E0182D; border-color: #E0182D; }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.cdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cdot.active { background: #E0182D; transform: scale(1.3); }

/* ── WHATSAPP SECTION ── */
.wa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.wa-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  background: #000;
  height: 100%;
  min-height: 500px;
}
.wa-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
}
.wa-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  object-fit: cover;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}
.wa-img:hover { transform: scale(1.02); border-color: rgba(37,211,102,0.4); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; text-align: center; padding: 52px 24px 64px; min-height: auto; }
  .hero-left .hero-desc { margin-left: auto; margin-right: auto; }
  .chip-row, .btn-row, .hero-note { justify-content: center; }
  .hero-right { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .img-card { max-width: 360px; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-badge { display: none; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  /* Layout */
  .section { padding: 52px 16px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-wrap { padding: 40px 16px 56px; gap: 28px; }
  .hero-h1 { font-size: clamp(30px, 9vw, 40px); letter-spacing: -1px; }
  .hero-sub { font-size: 11px; }
  .hero-desc { font-size: 14px; }
  .bottle-card { max-width: 100%; }
  .stats-row { max-width: 260px; }
  .btn-row { flex-direction: column; align-items: center; gap: 10px; }
  .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .btn-ghost.btn-lg { width: 100%; max-width: 320px; justify-content: center; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Section titles */
  .section-title { font-size: clamp(22px, 7vw, 30px); }
  .section-head { margin-bottom: 32px; }

  /* VS Table — scrollable on mobile */
  .vs-box { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vs-table { min-width: 480px; }
  .vs-table .th-feat, .vs-table .td-feat { padding: 11px 10px; font-size: 11px; width: 25%; }
  .vs-table .th-growx, .vs-table .td-g,
  .vs-table .th-other, .vs-table .td-o { padding: 11px 10px; font-size: 11.5px; }

  /* Rating box */
  .rating-box { padding: 18px 16px; gap: 16px; flex-direction: column; align-items: flex-start; }
  .rating-left { display: flex; align-items: center; gap: 14px; min-width: unset; }
  .rating-big { font-size: 40px; }

  /* Order */
  .order-card { padding: 20px 14px; gap: 14px; }
  .price-now { font-size: 38px; }
  .perks-row { gap: 10px; flex-direction: column; align-items: center; }
  .btn-xl { padding: 16px 24px; font-size: 15px; }

  /* Steps */
  .step-item { gap: 12px; padding: 14px 12px; }
  .step-num { font-size: 20px; min-width: 28px; }

  /* Testimonials */
  .testi-card { padding: 18px 14px; }

  /* Trust cards */
  .trust-card { padding: 20px 10px; border-radius: 14px; }
  .trust-num { font-size: clamp(22px, 6vw, 32px); }
  .trust-lbl { font-size: 10px; }

  /* Footer */
  .footer { padding: 40px 16px 16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Mobile sticky CTA */
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }

  /* Prevent horizontal overflow */
  .announce-track { gap: 36px; }
  .announce-track span { font-size: 10px; letter-spacing: 1px; }
  .navbar { padding: 0 16px; }
  .navbar-inner { height: 58px; }

  /* Ingredient images */
  .ing-img { height: 140px; }

  /* Split grid image */
  .img-card { aspect-ratio: 3/2; max-width: 100%; }
  .solution-img { width: 70%; }

  /* WhatsApp reviews */
  .wa-split { grid-template-columns: 1fr; gap: 16px; }
  .wa-video-wrap { min-height: 260px; height: 260px; border-radius: 14px; }
  .wa-grid { grid-template-columns: 1fr 1fr 1fr; gap: 6px; height: auto; }
  .wa-img { aspect-ratio: 9/16; border-radius: 8px; height: auto; }

  /* Mobile CTA */
  .mobile-cta { padding: 10px 12px; }
}