/* =========================================
   VitalNourish™ — Shared Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --green-dark:   #1a3d2b;
  --green-mid:    #2e7d52;
  --green-light:  #4caf82;
  --cream:        #f7f3ed;
  --cream-dark:   #ede7db;
  --gold:         #c8a96e;
  --gold-light:   #e8c98a;
  --charcoal:     #1e1e1e;
  --text:         #333d35;
  --text-muted:   #6b7a6e;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(26,61,43,.08);
  --shadow-md:    0 8px 32px rgba(26,61,43,.12);
  --shadow-lg:    0 20px 60px rgba(26,61,43,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-mid); color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid); color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8943e; border-color: #b8943e; transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white); color: var(--green-dark); border-color: var(--white);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,61,43,.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--green-dark);
}
.nav-logo .logo-leaf {
  width: 36px; height: 36px; background: var(--green-mid);
  border-radius: 50% 10% 50% 10%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: white;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 8px;
  font-weight: 600; font-size: .85rem; letter-spacing: .02em;
  color: var(--text); transition: var(--transition);
}
.nav-links > li > a:hover { color: var(--green-mid); background: var(--cream); }
.nav-links > li > a.active { color: var(--green-mid); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius); min-width: 200px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--cream-dark);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: var(--transition);
}
.nav-links > li:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; font-size: .85rem; font-weight: 600;
  color: var(--text); transition: var(--transition);
  border-bottom: 1px solid var(--cream);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--green-mid); background: var(--cream); }
.dropdown a .icon { font-size: 1.1rem; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: .8rem; font-weight: 700; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--green-dark);
  border-radius: 2px; transition: var(--transition);
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 480px; display: flex; align-items: center;
  background: var(--green-dark); position: relative; overflow: hidden;
  margin-top: 72px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,43,.85) 0%, rgba(46,125,82,.6) 100%);
  z-index: 1;
}
.page-hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%; opacity: .5;
}
.page-hero-content {
  position: relative; z-index: 2; padding: 80px 0;
}
.page-hero-content .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,110,.2); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 6px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); color: white;
  margin-bottom: 20px; max-width: 700px;
}
.page-hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px;
  margin-bottom: 32px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── SECTION STYLES ── */
section { padding: 80px 0; }
.section-label {
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-mid);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--gold); border-radius: 1px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 560px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--cream-dark);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block; background: var(--cream); color: var(--green-mid);
  padding: 4px 12px; border-radius: 50px; font-size: .75rem;
  font-weight: 700; letter-spacing: .04em; margin-bottom: 12px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--text-muted); }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TAGS & BADGES ── */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  color: var(--text-muted); padding: 6px 16px;
  border-radius: 50px; font-size: .8rem; font-weight: 600;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--green-dark); padding: 20px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600;
}
.trust-item .icon { font-size: 1.3rem; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark); position: relative;
}
.testimonial::before {
  content: '"'; font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--cream-dark); position: absolute;
  top: 8px; left: 24px; line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testimonial p { font-size: .95rem; color: var(--text-muted); font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
}
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border: 1px solid var(--cream-dark); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px; transition: var(--transition);
}
.faq-item.open { border-color: var(--green-mid); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--text);
  text-align: left; transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--green-mid); background: var(--cream); }
.faq-chevron {
  font-size: 1.2rem; transition: var(--transition); flex-shrink: 0;
  color: var(--green-mid);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px; font-size: .92rem;
  color: var(--text-muted); line-height: 1.8;
}

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700; font-size: .85rem;
  margin-bottom: 8px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid var(--cream-dark); background: var(--cream);
  font-family: 'Nunito Sans', sans-serif; font-size: .92rem;
  color: var(--text); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-mid); background: white;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -150px; right: -100px;
}
.cta-banner::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(200,169,110,.1);
  bottom: -80px; left: 80px;
}
.cta-inner {
  position: relative; z-index: 1; text-align: center; padding: 80px 0;
}
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-inner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NEWSLETTER ── */
.newsletter-form {
  display: flex; gap: 0; max-width: 500px; margin: 0 auto;
  border-radius: 50px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-form input {
  flex: 1; padding: 16px 24px; border: none; font-size: .9rem;
  font-family: 'Nunito Sans', sans-serif; background: white;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 16px 32px; background: var(--gold); color: white;
  border: none; font-family: 'Nunito Sans', sans-serif;
  font-weight: 800; font-size: .85rem; letter-spacing: .04em;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: #b8943e; }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,.7);
}
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--green-mid); color: white; }

.footer-col h4 {
  font-family: 'Nunito Sans', sans-serif; font-size: .8rem;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: white; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: .85rem; padding: 4px 0;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 860px; margin: 0 auto; padding: 60px 24px;
}
.legal-content h2 {
  font-size: 1.8rem; margin: 40px 0 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--cream-dark);
}
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.legal-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.9; }
.legal-content ul {
  list-style: disc; padding-left: 24px; color: var(--text-muted);
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 8px; line-height: 1.8; }
.legal-content .update-date {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); padding: 8px 20px; border-radius: 50px;
  font-size: .85rem; font-weight: 700; color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── STAT CARDS ── */
.stat-card {
  text-align: center; padding: 32px 24px;
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark); box-shadow: var(--shadow-sm);
}
.stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--green-mid);
  line-height: 1;
}
.stat-card .label { font-size: .85rem; color: var(--text-muted); margin-top: 8px; font-weight: 600; }

/* ── STEP PROCESS ── */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 10%;
  width: 80%; height: 2px; background: var(--cream-dark); z-index: 0;
}
.step {
  flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-mid); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--cream);
}
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--text-muted); }

/* ── PRODUCT CARD ── */
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; height: 240px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge-wrap {
  position: absolute; top: 16px; left: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-bestseller { background: var(--gold); color: white; }
.badge-new { background: var(--green-mid); color: white; }
.badge-sale { background: #e53e3e; color: white; }

.product-info { padding: 20px 24px 24px; }
.product-info .cat { font-size: .75rem; font-weight: 700; color: var(--green-mid);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.product-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-info p { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--green-dark); }
.price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }

/* ── PLAN CARD ── */
.plan-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--cream-dark); transition: var(--transition);
}
.plan-card.featured { border-color: var(--green-mid); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-header {
  padding: 28px 28px 20px;
  background: var(--cream);
}
.plan-card.featured .plan-header { background: var(--green-dark); }
.plan-name { font-size: 1.4rem; color: var(--green-dark); }
.plan-card.featured .plan-name { color: white; }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--green-mid);
  line-height: 1; margin: 12px 0 4px;
}
.plan-card.featured .plan-price { color: var(--gold-light); }
.plan-period { font-size: .82rem; color: var(--text-muted); }
.plan-card.featured .plan-period { color: rgba(255,255,255,.6); }
.plan-body { padding: 24px 28px 28px; }
.plan-features { margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .88rem;
  border-bottom: 1px solid var(--cream);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--green-mid); flex-shrink: 0; }
.plan-features .cross { color: #cbd5e0; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-inner { position: relative; }
  .nav-links, .nav-cta .btn, .nav-phone { display: none; }
  .nav-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .nav-links[style*="flex"] {
    display: flex !important;
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - 96px);
    padding: 14px;
    overflow-y: auto;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  .nav-links > li > a {
    justify-content: space-between;
    padding: 12px 14px;
  }
  .dropdown {
    position: static;
    min-width: 0;
    margin: 2px 0 8px;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    background: var(--cream);
  }
  .dropdown a {
    padding: 10px 16px;
    border-bottom-color: var(--cream-dark);
  }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 18px; }
  .nav-inner { height: 64px; }
  .nav-logo { font-size: 1.35rem; gap: 8px; }
  .nav-logo .logo-leaf { width: 32px; height: 32px; }
  .nav-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-toggle span { display: block; flex-shrink: 0; }
  .nav-links[style*="flex"] { left: 18px; right: 18px; }
  .page-hero { min-height: 380px; margin-top: 64px; }
  .hero { min-height: calc(100svh - 64px) !important; margin-top: 64px !important; }
  .hero-content { padding: 48px 0 !important; }
  .page-hero-content { padding: 56px 0; }
  .page-hero-content p { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
  .step { padding: 0 0 28px; }
  .trust-strip-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  section { padding: 56px 0; }
  .cta-inner { padding: 56px 0; }
  .cta-banner::before { width: 320px; height: 320px; right: -160px; }
  .cta-banner::after { width: 220px; height: 220px; left: -120px; }
  .card-body, .testimonial, .plan-body { padding: 22px; }
  .product-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); text-align: center; }
  .compare-table, .data-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .story-grid, .values-grid, .plans-grid, .diet-type-grid, .meal-preview,
  .quiz-box, .program-grid, .before-after, .ingredient-list,
  .supp-grid, .quality-grid, .skin-product-grid, .benefit-grid,
  .fitness-plans-grid, .workout-types, .blog-layout, .blog-grid,
  .featured-post, .testi-grid {
    grid-template-columns: 1fr !important;
  }
  .team-grid, .results-row, .skin-routine, .week-schedule {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .quiz-box { padding: 32px 24px; gap: 28px; }
}

@media (max-width: 520px) {
  html { font-size: 15px; }
  .container, .container-wide { padding: 0 16px; }
  .btn { width: 100%; justify-content: center; padding: 13px 22px; white-space: normal; text-align: center; }
  .page-hero-content .badge, .badge-pill { white-space: normal; border-radius: var(--radius); }
  .breadcrumb { flex-wrap: wrap; }
  .trust-strip-inner { align-items: flex-start; flex-direction: column; }
  .trust-item { width: 100%; }
  .team-grid, .results-row, .skin-routine, .week-schedule {
    grid-template-columns: 1fr !important;
  }
  .stat-card .num, .result-item .n { font-size: 2.35rem; }
  .faq-question { padding: 18px; gap: 16px; }
  .faq-answer-inner { padding: 0 18px 18px; }
  .footer-brand p { max-width: none; }
}
