/* ===== CITRUSBURN GLOBAL STYLES ===== */
/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #E8652B;
  --primary-dark: #C9501D;
  --primary-light: #F4845F;
  --secondary: #1A1A2E;
  --accent: #F5A623;
  --text-dark: #2D2D2D;
  --text-body: #555555;
  --text-light: #888888;
  --bg-white: #FFFFFF;
  --bg-cream: #FFF9F5;
  --bg-light: #FDF5F0;
  --bg-section: #F8F4F0;
  --border: #E8E0DA;
  --green: #2E7D32;
  --red: #D32F2F;
  --gold: #FFB300;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

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

.section-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,101,43,0.35);
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232,101,43,0.45);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.text-center { text-align: center; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,224,218,0.5);
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.nav-logo span { color: var(--secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 50%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,101,43,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,101,43,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.hero-trust-item svg { width: 16px; height: 16px; color: var(--green); }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 80px 0;
  background: var(--bg-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: contain;
}

.trust-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== WHAT IS CITRUSBURN ===== */
.what-is {
  padding: 80px 0;
  background: var(--bg-section);
}

.what-is .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-is-image { position: relative; }

.what-is-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  width: auto;
  margin: 0 auto;
}

.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.what-is-content .read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.fact-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
  border-left: 4px solid var(--primary);
}

.fact-box svg { width: 24px; min-width: 24px; color: var(--primary); margin-top: 2px; }
.fact-box p { font-size: 14px; line-height: 1.6; margin: 0; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== INGREDIENTS ===== */
.ingredients {
  padding: 80px 0;
  background: var(--bg-section);
}

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

.ingredient-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.ingredient-card:hover::before { transform: scaleX(1); }
.ingredient-card:hover { box-shadow: var(--shadow-md); }

.ingredient-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,101,43,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.ingredient-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.ingredient-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.ingredient-tag {
  display: inline-block;
  background: rgba(46,125,50,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.review-card {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.review-info h5 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

.review-info .verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.review-stars {
  margin-bottom: 12px;
}

.review-stars img {
  height: 18px;
  width: auto;
  display: inline-block;
}

.review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
}

.review-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: var(--bg-section);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: end;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.pricing-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-image img {
  max-height: 180px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.pricing-supply {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 12px 0 4px;
}

.pricing-price .per { font-size: 18px; color: var(--text-light); }

.pricing-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-savings {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 20px;
}

.pricing-features {
  margin-top: 20px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 0;
}

.pricing-features li svg { width: 16px; min-width: 16px; color: var(--green); }

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

/* ===== PROS AND CONS ===== */
.pros-cons {
  padding: 80px 0;
  background: var(--bg-white);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 36px;
}

.pros-box {
  background: linear-gradient(135deg, #f0faf0 0%, #fff 100%);
  border: 1px solid #c8e6c9;
}

.cons-box {
  background: linear-gradient(135deg, #fef5f5 0%, #fff 100%);
  border: 1px solid #ffcdd2;
}

.pros-box h3, .cons-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.pros-box h3 { color: var(--green); }
.cons-box h3 { color: var(--red); }

.pros-box li, .cons-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li svg { color: var(--green); min-width: 18px; margin-top: 3px; }
.cons-box li svg { color: var(--red); min-width: 18px; margin-top: 3px; }

/* ===== MONEY BACK GUARANTEE ===== */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.guarantee .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
}

.guarantee-badge {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.1));
}

.guarantee-content h2 { margin-bottom: 16px; font-size: 32px; }
.guarantee-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== HOW TO ORDER ===== */
.how-to-order {
  padding: 80px 0;
  background: var(--bg-white);
}

.how-to-order .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.order-steps { counter-reset: order-step; }

.order-step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: order-step;
}

.order-step-item:last-child { border-bottom: none; }

.order-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.order-step-item h4 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.order-step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--bg-section);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active { border-color: var(--primary-light); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon { background: var(--primary); color: #fff; transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-content .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-content .btn-primary:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

.cta-trust {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.cta-image {
  display: flex;
  justify-content: center;
}

.cta-image img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--primary); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 350px; }
  .hero-stats { justify-content: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is .container { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .guarantee .container { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { margin: 0 auto; }
  .how-to-order .container { grid-template-columns: 1fr; }
  .cta-section .container { grid-template-columns: 1fr; text-align: center; }
  .cta-trust { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-toggle { display: flex; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-card { padding: 24px 16px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .hero-stats { gap: 20px; }
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  text-align: center;
}

.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-light); max-width: 640px; margin: 0 auto; }

.page-content {
  padding: 60px 0 80px;
}

.page-content .container { max-width: 800px; }

.page-content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 20px;
  margin: 32px 0 12px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content ul li {
  list-style: disc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--text-body);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb span { color: var(--text-light); }

/* Ingredient detail cards on inner page */
.ingredient-detail {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  border-left: 4px solid var(--primary);
}

.ingredient-detail h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.ingredient-detail p {
  font-size: 15px;
  margin-bottom: 0;
}

/* Schema badge */
.schema-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-cream);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.schema-rating .stars { color: var(--gold); font-size: 20px; }
.schema-rating span { font-size: 14px; color: var(--text-body); }

/* Legal pages */
.legal-content { padding: 60px 0 80px; }
.legal-content .container { max-width: 800px; }
.legal-content h1 { font-size: 36px; margin-bottom: 24px; }
.legal-content h2 { font-size: 22px; margin: 32px 0 12px; }
.legal-content p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
