/* ============================================
   VitaliSlim — Main Stylesheet
   Brand: Green (#3A8F40) + Gold (#C9A54E)
   ============================================ */

/* CSS Variables */
:root {
  --green-primary: #3A8F40;
  --green-dark: #2B6E30;
  --green-light: #E8F5E9;
  --green-pale: #F1F8F1;
  --gold: #C9A54E;
  --gold-dark: #A8873A;
  --gold-light: #F5EDD6;
  --text-dark: #0A0A0A;
  --text-body: #1A1A1A;
  --text-light: #3A3A3A;
  --white: #FFFFFF;
  --off-white: #FAFCFA;
  --border: #D4E5D4;
  --shadow-sm: 0 2px 8px rgba(58, 143, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(58, 143, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(58, 143, 64, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 46px; }
h2 { font-size: 36px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 1rem;
  font-size: 19px;
}

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

.section-padding {
  padding: 80px 0;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 650px;
  margin: 12px auto 0;
}

/* ============ HEADER ============ */
.site-header {
  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 var(--border);
  transition: all var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
}

.header-logo img {
  height: 44px;
  width: auto;
  display: none;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--green-primary) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.header-logo::after {
  display: none;
}

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

.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

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

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

.header-nav a:hover {
  color: var(--green-primary);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-header-cta:hover {
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-header-cta::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============ HERO SECTION ============ */
.hero-section {
  padding-top: 100px;
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--white) 50%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 143, 64, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
  padding: 40px 0 60px;
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--green-primary);
}

.hero-content .hero-text {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(58, 143, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58, 143, 64, 0.4);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
}

.btn-secondary:hover {
  color: var(--green-primary);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--green-primary);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-image img {
  max-height: 500px;
  width: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* ============ WHAT IS SECTION ============ */
.whatis-section {
  background: var(--white);
}

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

.whatis-image {
  position: relative;
}

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

.whatis-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--green-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.whatis-content h2 {
  margin-bottom: 20px;
}

.whatis-content h2 span {
  color: var(--green-primary);
}

.whatis-content p {
  color: var(--text-body);
}

.whatis-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.whatis-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
}

.whatis-highlight-item svg {
  width: 20px;
  height: 20px;
  fill: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.whatis-highlight-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============ HOW IT WORKS ============ */
.howitworks-section {
  background: var(--green-pale);
}

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

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 17px;
  color: var(--text-light);
}

.step-connector {
  display: none;
}

/* ============ BENEFITS SECTION ============ */
.benefits-section {
  background: var(--white);
}

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

.benefit-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green-primary);
}

.benefit-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 17px;
  color: var(--text-light);
}

/* ============ INGREDIENTS PREVIEW ============ */
.ingredients-preview {
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--gold-light) 100%);
}

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

.ingredient-list {
  display: grid;
  gap: 16px;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.ingredient-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.ingredient-dot {
  width: 10px;
  height: 10px;
  background: var(--green-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.ingredient-item h4 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-dark);
}

.ingredient-item p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

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

.ingredients-image img {
  max-height: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.08));
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--white);
}

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

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

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--green-light);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
}

.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-disclaimer {
  text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: var(--green-pale);
}

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

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

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

.pricing-card.popular {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.pricing-card.popular:hover {
  transform: scale(1.06);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-image {
  margin-bottom: 20px;
}

.pricing-image img {
  max-height: 200px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  mix-blend-mode: multiply;
}

.pricing-bottles {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-supply {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 18px;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-per-bottle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-savings {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-primary);
  background: var(--green-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pricing-retail {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 20px;
}

.pricing-card .btn-primary {
  width: 100%;
  font-size: 15px;
  padding: 14px 24px;
}

.pricing-features {
  list-style: none;
  margin-top: 20px;
}

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

.pricing-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--green-primary);
}

/* ============ FINAL CTA ============ */
.final-cta-section {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, #4BA352 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}

.final-cta-image img {
  max-height: 300px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.2));
  mix-blend-mode: lighten;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201, 165, 78, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 165, 78, 0.5);
  color: var(--white);
}

.final-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 780px;
  margin: 48px auto 0;
}

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

.faq-item.active {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--green-primary);
}

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

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

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

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

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  margin-top: 16px;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ============ FLOATING ORDER BUTTON ============ */
.floating-order-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(58, 143, 64, 0.4);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.floating-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(58, 143, 64, 0.5);
  color: var(--white);
}

.floating-order-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ============ EXIT INTENT POPUP ============ */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.exit-popup-overlay.active {
  display: flex;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.exit-popup-close:hover {
  background: var(--green-light);
  color: var(--text-dark);
}

.exit-popup h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.exit-popup p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
}

.exit-popup .btn-primary {
  font-size: 16px;
}

/* ============ PURCHASE NOTIFICATION POPUP ============ */
.purchase-popup {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 998;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

.purchase-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.purchase-popup-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purchase-popup-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--green-primary);
}

.purchase-popup-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
}

.purchase-popup-text strong {
  color: var(--text-dark);
}

.purchase-popup-text small {
  color: var(--text-light);
  font-size: 11px;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding-top: 100px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

/* ============ BLOG PAGES ============ */
.blog-hero {
  padding-top: 100px;
  background: var(--green-pale);
  padding-bottom: 40px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.blog-hero p {
  color: var(--text-light);
  font-size: 18px;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.blog-card-thumb {
  height: 200px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-thumb svg {
  width: 48px;
  height: 48px;
  fill: var(--green-primary);
  opacity: 0.4;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: var(--text-dark);
}

.blog-card-body h3 a:hover {
  color: var(--green-primary);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-primary);
}

/* Blog Article */
.blog-article {
  padding-top: 100px;
}

.blog-article-header {
  background: var(--green-pale);
  padding: 40px 0;
  text-align: center;
}

.blog-article-header h1 {
  font-size: 36px;
  max-width: 780px;
  margin: 0 auto 12px;
}

.blog-article-meta {
  font-size: 14px;
  color: var(--text-light);
}

.blog-article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.blog-article-content h2 {
  font-size: 28px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-article-content h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-article-content p {
  font-size: 16px;
  line-height: 1.8;
}

.blog-cta-box {
  background: var(--green-pale);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.blog-cta-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.blog-cta-box p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============ INGREDIENTS PAGE ============ */
.ingredients-hero {
  padding-top: 100px;
  background: var(--green-pale);
  padding-bottom: 40px;
  text-align: center;
}

.ingredients-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.ingredients-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 48px 0 80px;
}

.ingredient-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.ingredient-full-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.ingredient-full-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ingredient-full-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

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

@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .section-padding {
    padding: 56px 0;
  }

  /* Header */
  .site-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 24px 0 40px;
  }

  .hero-content .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image img {
    max-height: 360px;
  }

  /* What Is */
  .whatis-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatis-image {
    order: -1;
  }

  .whatis-image::after {
    display: none;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Ingredients */
  .ingredients-preview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ingredients-image {
    order: -1;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Ingredients Page */
  .ingredients-grid-page {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Floating button */
  .floating-order-btn {
    bottom: 16px;
    right: 16px;
    font-size: 14px;
    padding: 12px 22px;
  }

  .purchase-popup {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
  }

  .exit-popup {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 23px; }
  
  .container {
    padding: 0 16px;
  }

  .hero-section {
    padding-top: 20px;
  }

  .whatis-highlights {
    grid-template-columns: 1fr;
  }
}

/* Zoom support up to 200% */
@media (min-resolution: 2dppx) {
  body {
    font-size: 16px;
  }
}
