@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

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

:root {
  --green: #006633;
  --green-dark: #004d26;
  --green-deeper: #003319;
  --yellow: #FFD700;
  --yellow-dark: #F0B800;
  --white: #ffffff;
  --off-white: #f8f8f4;
  --text: #1a1a1a;
  --text-muted: #555;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--off-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ TICKER ============ */
.ticker-wrap {
  background: var(--green);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 25s linear infinite;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(160deg, var(--green-deeper) 0%, var(--green-dark) 100%);
  padding: 60px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  line-height: 1.6;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.badge-off {
  background: var(--yellow);
  color: #1a1a00;
  font-weight: 900;
  font-size: 20px;
  padding: 8px 16px;
  border-radius: 10px;
  transform: rotate(-2deg);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}
.price-old { text-decoration: line-through; color: rgba(255,255,255,0.5); font-size: 16px; font-weight: 700; }
.price-new { font-size: 34px; font-weight: 900; color: #fff; }
.payment-badge {
  background: rgba(255,215,0,0.15);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.frete-line {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-image { flex: 1; position: relative; }
.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-image img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}
.hero-image img:hover { transform: scale(1.03); }
.trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.trust-icons span { display: flex; align-items: center; gap: 6px; }
.trust-icons span::before { content: '✔'; color: var(--yellow); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: #1a1a00;
  box-shadow: 0 8px 30px rgba(255,215,0,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,215,0,0.55); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 22px 48px; font-size: 22px; border-radius: 14px; }
.btn-full { width: 100%; }
.btn-pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255,215,0,0.45); }
  50% { box-shadow: 0 8px 50px rgba(255,215,0,0.75); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: #fff;
  padding: 28px 20px;
  border-bottom: 1px solid #e8e8e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item .icon { font-size: 32px; }
.trust-item strong { font-size: 14px; font-weight: 700; color: var(--text); }
.trust-item span { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ============ SECTIONS ============ */
section { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-heading {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  text-align: center;
  color: var(--green);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 50px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ============ PRODUCT SHOWCASE ============ */
.product-section { background: var(--off-white); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
.product-img-wrap { position: relative; }
.product-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}
.product-badge-float {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--yellow);
  color: #1a1a00;
  font-weight: 900;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 10px;
  transform: rotate(3deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.items-list { list-style: none; }
.items-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,102,51,0.08);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.items-list li:last-child { border-bottom: none; }
.items-list li:hover { color: var(--green); }
.item-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(0,102,51,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.item-bonus {
  background: rgba(255,215,0,0.15);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 8px;
  font-weight: 800;
  color: var(--green-dark);
}
.item-bonus .item-num { background: var(--yellow); color: #1a1a00; }

/* ============ OFFER SECTION ============ */
.offer-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deeper) 100%);
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.08), transparent 70%);
  border-radius: 50%;
}
.offer-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,150,50,0.1), transparent 70%);
  border-radius: 50%;
}
.offer-card {
  background: #fff;
  border: 4px solid var(--yellow);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(255,215,0,0.2);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}
.offer-card.visible { transform: scale(1); opacity: 1; }
.offer-card-header {
  background: var(--yellow);
  padding: 18px 20px;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  color: #1a1a00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.offer-card-body { padding: 40px; text-align: center; }
.offer-tag {
  display: inline-block;
  background: rgba(0,102,51,0.08);
  color: var(--green);
  border: 1px solid rgba(0,102,51,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.offer-title { font-size: 28px; font-weight: 900; margin-bottom: 24px; color: var(--text); }
.offer-prices { margin-bottom: 28px; }
.offer-old { font-size: 20px; color: var(--text-muted); text-decoration: line-through; font-weight: 700; }
.offer-price-box {
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 20px 32px;
  display: inline-block;
  margin-top: 10px;
  transform: rotate(-1deg);
  border: 4px solid var(--green-dark);
  box-shadow: 0 10px 30px rgba(0,102,51,0.3);
}
.offer-price-box .label { font-size: 12px; font-weight: 700; text-transform: uppercase; opacity: 0.8; margin-bottom: 4px; }
.offer-price-box .value { font-size: 52px; font-weight: 900; line-height: 1; }
.offer-guarantees { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; max-width: 400px; margin-left: auto; margin-right: auto; }
.guarantee-item {
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.guarantee-yellow { background: rgba(255,215,0,0.15); border: 2px solid var(--yellow); color: #7a6200; }
.guarantee-green  { background: rgba(0,102,51,0.08); border: 2px solid var(--green); color: var(--green); }

/* ============ COUNTDOWN ============ */
.countdown-wrap { padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 24px; }
.countdown-label { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.cd-block { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cd-num {
  background: var(--text);
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  padding: 12px 18px;
  border-radius: 10px;
  min-width: 66px;
  text-align: center;
  font-family: 'Montserrat', monospace;
}
.cd-num.red { background: #cc2200; }
.cd-sep { font-size: 36px; font-weight: 900; padding-bottom: 20px; color: var(--text); }
.cd-unit { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; }

/* ============ BENEFITS ============ */
.benefits-section { background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.benefit-card {
  background: #f9f9f6;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.09); }
.benefit-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.benefit-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--green-dark); }
.benefit-card p { font-size: 14px; color: var(--text-muted); font-weight: 600; line-height: 1.5; }

/* ============ SECOND IMAGE ============ */
.second-img-section { background: var(--off-white); border-top: 1px solid #e4e4dc; border-bottom: 1px solid #e4e4dc; }
.second-img-section img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); border: 4px solid #fff; margin: 30px auto 24px; }
.second-img-section p { text-align: center; font-size: 18px; font-weight: 600; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.testimonial-card {
  background: #fff;
  border: 2px solid rgba(0,102,51,0.15);
  border-radius: 20px;
  padding: 36px 24px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--green); }
.stars {
  display: flex;
  gap: 4px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #e8e8e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.stars span { font-size: 18px; }
.testimonial-quote { font-style: italic; font-size: 16px; color: #444; line-height: 1.65; margin-bottom: 20px; font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f0ea; padding-top: 16px; }
.author-avatar {
  width: 42px; height: 42px;
  background: rgba(0,102,51,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--green);
}
.author-name { font-weight: 800; font-size: 15px; color: var(--text); }
.author-tag { font-size: 12px; font-weight: 700; color: #2a9d2a; display: flex; align-items: center; gap: 4px; }

/* ============ HOW IT WORKS ============ */
.how-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deeper) 100%);
  color: #fff;
}
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; position: relative; }
.how-step { text-align: center; position: relative; z-index: 1; }
.how-icon {
  width: 90px; height: 90px;
  background: var(--green);
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.how-step:hover .how-icon { transform: scale(1.1); }
.how-icon.yellow { background: var(--yellow); box-shadow: 0 8px 30px rgba(255,215,0,0.4); }
.how-step h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.how-step.special h4 { color: var(--yellow); }
.how-step p { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 600; line-height: 1.55; }
.how-finale { text-align: center; margin-top: 56px; }
.how-finale h3 { font-size: 40px; font-weight: 900; color: var(--yellow); margin-bottom: 28px; text-shadow: 0 0 30px rgba(255,215,0,0.3); }

/* ============ FAQ ============ */
.faq-section { background: var(--off-white); }
.faq-box { background: #fff; border-radius: 20px; box-shadow: 0 4px 30px rgba(0,0,0,0.07); border: 1px solid #e8e8e0; overflow: hidden; max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #f0f0ea; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 22px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-arrow { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 16px; font-weight: 600; color: var(--text-muted); line-height: 1.65;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(160deg, var(--green-deeper) 0%, #001a0d 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.06), transparent 60%);
}
.final-cta h2 {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(255,215,0,0.25);
  position: relative;
  z-index: 1;
}
.stock-alert {
  font-size: 26px; font-weight: 900;
  color: #fff;
  margin-bottom: 32px;
  animation: bounceText 1.5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes bounceText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.price-box-final {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 30px 40px;
  display: inline-block;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.price-box-final .big-price { font-size: 52px; font-weight: 900; color: #fff; }
.price-box-final .perks { display: flex; gap: 20px; justify-content: center; margin-top: 10px; flex-wrap: wrap; }
.price-box-final .perks span { font-size: 17px; font-weight: 700; color: var(--yellow); display: flex; align-items: center; gap: 6px; }
.final-btn-wrap { position: relative; z-index: 1; }

/* ============ FOOTER ============ */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-top: 4px solid var(--green);
}
.footer-brand { font-size: 24px; font-weight: 900; color: var(--yellow); letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); font-style: italic; font-weight: 600; margin-bottom: 24px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 20px; }
.footer-links a { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============ FLOATING ELEMENTS ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1000;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.whatsapp-icon { font-size: 22px; }

.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  color: #1a1a00;
  font-weight: 900;
  font-size: 18px;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  font-family: 'Montserrat', sans-serif;
}
.mobile-cta:hover { filter: brightness(1.05); }

.popup-overlay {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1001;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 20px 46px 20px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.show { transform: translateX(0); }
.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: #999;
  font-weight: 700;
}
.popup-title { font-weight: 800; font-size: 15px; color: var(--green); margin-bottom: 6px; }
.popup-sub { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============ PAYMENT NOTICE ============ */
.payment-notice {
  background: var(--yellow);
  color: #1a1a00;
  text-align: center;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 40px 16px 60px; }
  .btn-lg { padding: 18px 28px; font-size: 18px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .countdown .cd-num { font-size: 26px; padding: 10px 14px; min-width: 54px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 65px; }
  .whatsapp-btn .whatsapp-label { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; bottom: 80px; }
}
