/* ============================================
   PULMO BALANCE V2 - Forest Green + Warm Beige
   Fonts: Playfair Display + Nunito Sans
   ============================================ */

:root {
  --green-deep: #2d5a3d;
  --green-mid: #3d7a52;
  --green-light: #5a9e6f;
  --green-pale: #e8f2ec;
  --beige-warm: #f5efe6;
  --beige-mid: #ebe3d5;
  --beige-dark: #d4c8b4;
  --cream: #faf8f4;
  --gold-accent: #b8943e;
  --gold-light: #d4b76a;
  --heading: #1a1a1a;
  --text: #222222;
  --text-secondary: #3a3a3a;
  --white: #ffffff;
  --border: #e0d8cc;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(45,90,61,0.08);
  --shadow-lg: 0 8px 40px rgba(45,90,61,0.12);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  font-size: 1.12rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.9rem; }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
h3 { font-size: 1.55rem; }

a { color: var(--green-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-alt { background: var(--beige-warm); }
.section-green { background: var(--green-deep); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-green .section-label { color: var(--gold-light); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.18rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,90,61,0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,90,61,0.35);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,148,62,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  padding: 14px 34px;
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-block { display: block; width: 100%; }

.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(45,90,61,0.3); }
  50% { box-shadow: 0 4px 30px rgba(45,90,61,0.5); }
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}
.logo-pulmo { color: var(--green-deep); }
.logo-balance { color: var(--heading); }
.logo-tm { font-size: 0.7rem; color: var(--green-light); vertical-align: super; }

.desktop-nav { display: flex; gap: 32px; }
.desktop-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  transition: var(--transition);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }
.desktop-nav a.active { color: var(--green-deep); }

.header-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}
.header-cta:hover { background: var(--green-mid); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--cream);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-nav.active { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a { font-weight: 600; font-size: 1.05rem; color: var(--text); }
.mobile-order-btn {
  background: var(--green-deep);
  color: var(--white) !important;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
}

/* ---------- HERO ---------- */
.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige-warm) 40%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content { }
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-deep);
}

.hero-guarantee {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.hero-image { text-align: center; }
.hero-image img {
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(45,90,61,0.15));
}

/* ---------- WHAT IS ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content p { margin-bottom: 20px; }

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.step-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step-card p { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- INGREDIENTS ---------- */
.ingredients-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.ingredient-list { display: flex; flex-direction: column; gap: 16px; }

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
  transition: var(--transition);
}
.ingredient-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.ingredient-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.ingredient-item h3 { font-size: 1.05rem; margin-bottom: 4px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.ingredient-item p { font-size: 1rem; color: var(--text-secondary); margin: 0; }

.ingredients-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}

.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.benefit-card p { font-size: 1rem; color: var(--text-secondary); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--green-pale);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--green-pale);
}

.stars { color: var(--gold-accent); font-size: 1.2rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author strong { display: block; font-size: 1rem; color: var(--heading); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-secondary); }

.disclaimer-small { text-align: center; font-size: 0.88rem; color: var(--text-secondary); font-style: italic; margin-bottom: 32px; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 40px 28px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.price-card.featured {
  border-color: var(--green-deep);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  padding-top: 48px;
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  z-index: 2;
}

.price-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--heading); font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.price-card .duration { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 20px; }

.price-card img { max-width: 180px; margin: 0 auto 20px; }
.price-card.featured img { max-width: 240px; }

.price-amount { margin-bottom: 8px; }
.price-per { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--green-deep); }
.price-unit { font-size: 1rem; color: var(--text-secondary); margin-left: 4px; }

.price-savings { color: var(--gold-accent); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.price-total { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 20px; }

.price-perks { list-style: none; margin-bottom: 24px; text-align: left; padding: 0; }
.price-perks li { padding: 6px 0; font-size: 1rem; color: var(--text); }
.price-perks li::before { content: '✓ '; color: var(--green-mid); font-weight: 700; }

/* ---------- BONUSES ---------- */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
}

.bonus-card img { width: 120px; flex-shrink: 0; border-radius: var(--radius-sm); }
.bonus-card h3 { font-size: 1.08rem; margin-bottom: 6px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.bonus-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.bonus-tag { display: inline-block; font-size: 1rem; font-weight: 700; color: var(--gold-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  text-align: left;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--green-mid);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--green-deep) 0%, #1e4530 100%);
  color: var(--white);
  text-align: center;
}

.final-cta h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 36px; font-size: 1.2rem; }

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-image img { max-width: 360px; margin: 0 auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }

.cta-checklist { text-align: left; margin-bottom: 32px; }
.cta-checklist li { list-style: none; padding: 8px 0; font-size: 1rem; color: rgba(255,255,255,0.9); }
.cta-checklist li::before { content: '✦ '; color: var(--gold-light); }

/* ---------- GUARANTEE ---------- */
.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green-pale);
  box-shadow: var(--shadow);
}

.guarantee-icon { font-size: 3rem; margin-bottom: 16px; }
.guarantee-box h2 { font-size: 1.85rem; }
.guarantee-box p { color: var(--text-secondary); max-width: 550px; margin: 16px auto 0; }

/* ---------- REFERENCES ---------- */
.references-list { max-width: 800px; margin: 40px auto 0; }
.references-list ol { list-style: decimal; padding-left: 24px; }
.references-list li { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.references-list em { color: var(--green-deep); }
.references-disclaimer {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1a2f22;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}
.footer-logo .logo-pulmo { color: var(--green-light); }
.footer-logo .logo-balance { color: #e8e8e8; }
.footer-logo .logo-tm { font-size: 0.6rem; color: var(--green-light); vertical-align: super; }

.site-footer p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.site-footer h4 { color: #e8e8e8; font-family: 'Nunito Sans', sans-serif; font-size: 1rem; margin-bottom: 16px; font-weight: 700; }
.footer-links a, .footer-legal a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 800px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ---------- EXIT POPUP ---------- */
.exit-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.active { display: flex; }

.exit-popup-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 90%;
  padding: 44px 36px;
  text-align: center;
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.exit-popup-content img { max-width: 160px; margin: 0 auto 20px; }
.exit-popup-content h2 { font-size: 1.5rem; margin-bottom: 12px; }
.exit-popup-content p { color: var(--text-secondary); margin-bottom: 24px; }

/* ---------- FLOATING CTA ---------- */
.floating-cta { display: none !important;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-deep);
  padding: 12px 20px;
  z-index: 999;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-cta a {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

/* ---------- BLOG ---------- */
.blog-hero {
  padding: 130px 0 50px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 100%);
  text-align: center;
}
.blog-hero h1 { margin-bottom: 12px; }
.blog-hero p { color: var(--text-secondary); font-size: 1.2rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-content { padding: 28px 24px; }
.blog-card-meta { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 12px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.blog-card h3 a { color: var(--heading); }
.blog-card h3 a:hover { color: var(--green-deep); }
.blog-card-excerpt { font-size: 1rem; color: var(--text-secondary); margin-bottom: 18px; }

/* Blog single */
.blog-single-hero {
  padding: 130px 0 40px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 100%);
  text-align: center;
}
.blog-single-meta { color: var(--text-secondary); font-size: 1rem; }
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content h2 { margin-top: 40px; font-size: 1.85rem; }
.blog-content p { margin-bottom: 20px; }
.blog-content a { color: var(--green-deep); text-decoration: underline; }

.blog-cta-box {
  margin: 48px 0 0;
  padding: 36px;
  background: var(--green-pale);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--green-light);
}
.blog-cta-box h3 { margin-bottom: 10px; }
.blog-cta-box p { color: var(--text-secondary); margin-bottom: 20px; }

/* ---------- LEGAL / INNER PAGES ---------- */
.inner-hero {
  padding: 130px 0 40px;
  background: var(--beige-warm);
  text-align: center;
}

.inner-content { max-width: 760px; margin: 0 auto; }
.inner-content h2 { margin-top: 36px; font-size: 1.4rem; }
.inner-content p { margin-bottom: 18px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-image img { max-width: 320px; }
  .hero-badges { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; text-align: center; }
  .about-image img { max-width: 400px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .ingredients-showcase { grid-template-columns: 1fr; }
  .ingredients-image { order: -1; text-align: center; }
  .ingredients-image img { max-width: 400px; margin: 0 auto; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-image { order: -1; }

  .footer-grid { grid-template-columns: 1fr; }

  .desktop-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .hero-section { padding: 120px 0 56px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .bonus-card { flex-direction: column; text-align: center; }
  .bonus-card img { width: 100px; }
  /* floating-cta removed */
}

/* 200% zoom support */
@media (min-resolution: 192dpi) {
  body { font-size: 1rem; }
}

/* Print */
@media print {
  .site-header, .floating-cta, .exit-popup, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; }
}
