:root {
  --primary: #FF6B5B;       /* Coral */
  --primary-dark: #E85444;  /* Deeper coral for hover/CTAs */
  --secondary: #FFB199;     /* Soft coral */
  --peach: #FFD4C4;         /* Soft peach */
  --peach-light: #FFEDE4;   /* Very light peach */
  --cream: #FFF8F3;         /* Cream background */
  --teal: #2EC4B6;          /* Teal accent */
  --teal-dark: #1FA89A;
  --gold: #FFB347;          /* Warm gold accent */
  --text: #2B2B3C;          /* Body text */
  --text-light: #6B6B7C;    /* Subdued text */
  --heading: #1F1F2E;       /* Heading dark */
  --white: #FFFFFF;
  --gray-light: #F5F0EC;
  --gray-medium: #E5DDD5;
  --success: #22C55E;
  --danger: #EF4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover { color: var(--primary-dark); }

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

/* ======== TOP BAR ======== */
.top-bar {
  background-color: var(--heading);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.3px;
}
.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--peach); }
.top-bar a:hover { color: var(--gold); }

/* ======== NAVBAR ======== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin: 0;
  transition: transform 0.3s ease;
}
.logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  background: transparent;
}
.logo-section:hover .logo-img { transform: scale(1.05); }
.nav-container { padding: 8px 24px; }

@media (max-width: 768px) {
  .logo-img { height: 44px; max-width: 180px; }
}
@media (max-width: 480px) {
  .logo-img { height: 38px; max-width: 150px; }
}
.logo-text { display: none; }
.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.insta-icon {
  color: #E1306C;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.insta-icon:hover { transform: scale(1.1); color: #C13584; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.whatsapp-icon {
  color: #25D366;
  display: flex;
  align-items: center;
}
.whatsapp-icon:hover { color: #20BA5C; transform: scale(1.1); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}
.mobile-menu-toggle span {
  width: 25px; height: 3px;
  background-color: var(--heading);
  border-radius: 2px;
}

/* ======== BREADCRUMB ======== */
.breadcrumb {
  background-color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb span { margin: 0 8px; color: var(--gray-medium); }

/* ======== BUTTONS ======== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,107,91,0.25);
  color: var(--white);
}
.btn-secondary {
  background-color: var(--white);
  color: var(--heading);
  border: 2px solid var(--heading);
}
.btn-secondary:hover {
  background-color: var(--heading);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}
.btn-small { padding: 10px 22px; font-size: 0.85rem; }

/* ======== PAGE HEADER ======== */
.page-header {
  background-color: var(--peach-light);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--heading);
}
.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 20px;
}
.page-header-decoration {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 20px auto 0;
  border-radius: 4px;
}

/* ======== HERO (HOMEPAGE) ======== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--peach-light);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--heading);
}
.hero-text h1 span {
  color: var(--primary);
  font-style: italic;
}
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.hero-badge::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(255,107,91,0.2);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ======== PRICE & NUMERIC TYPE SYSTEM ======== */
/* All currency, prices, stat numbers — use Inter with tabular figures.
   Playfair renders ₹ poorly and uses oldstyle nums. */
.price, .product-price, .save-now, .strike,
.bundle-price-box, .partnership-margin,
.sticky-mobile-cta .price, .price-block .price,
.enrollment-stat-number, .stat-number, .crisis-number, .hero-stat .number,
.counter-number, .timeline-content h4, .feature-icon {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  letter-spacing: -0.02em;
}

/* ======== FLOW BADGES (Products page) ======== */
.flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.flow-light    { background: #FFF3E5; color: #B8732A; }
.flow-heavy    { background: var(--primary); color: #fff; }
.flow-overnight { background: #2B2735; color: #fff; }

/* ======== HERO V2 — FULL BLEED LIFESTYLE ======== */
.hero-bleed {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #F5E9E2;
}
.hero-bleed-bg {
  position: absolute;
  inset: 0;
  background-color: #F5E9E2;
}
/* Image fills right 58% of hero with cover; mask feathers ONLY its left edge */
.hero-bleed-bg::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 58%;
  background-image: url('images/hero-woman-sleeping.png?v=5');
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.75) 18%, #000 30%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.75) 18%, #000 30%);
}
/* Soft cream wash for headline contrast on the left */
.hero-bleed-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(245,233,226,0.50) 0%,
    rgba(245,233,226,0.20) 30%,
    transparent 50%);
  pointer-events: none;
}
.hero-bleed-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 32px;
  z-index: 5;
}
.hero-bleed-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  line-height: 1.05;
  font-weight: 700;
  color: #2B2B2B;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 540px;
}
.hero-bleed-content p {
  font-size: 1.05rem;
  color: #5A5A5A;
  margin: 0 0 32px;
  max-width: 460px;
  font-weight: 400;
}
.hero-bleed-content .hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-bleed-content .btn-primary {
  background: var(--primary);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  border: none;
}
.hero-bleed-content .btn-secondary {
  background: #fff;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading);
  border: 1.5px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-bleed-content .btn-secondary svg { color: var(--text); }
.hero-bleed-content .hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
}
.hero-bleed-content .trust-pill {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-bleed-content .trust-pill::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.85);
  color: var(--accent, #7A9E7E);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ======== WHY ECOZEN V2 ======== */
.why-ecozen-v2 {
  background: #F5E9E2;
  padding: 70px 32px;
}
.why-ecozen-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.why-image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.why-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: auto;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}
.why-image-overlay em {
  font-style: italic;
  color: #FFD4C4;
  font-weight: 700;
}
.why-text-card {
  background: #fff;
  border-radius: 22px;
  padding: 48px 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}
.why-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  color: var(--primary);
  font-weight: 700;
}
.why-text-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--heading);
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.why-lead {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 30px;
}
.why-numbered-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-numbered-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-numbered-list .num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--cream, #FFEDE4);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}
.why-numbered-list h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 4px;
}
.why-numbered-list p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-bleed { min-height: 560px; }
  .hero-bleed-bg::before {
    background-size: cover;
    background-position: center 20%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 25%, #000 55%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 25%, #000 55%);
  }
  .hero-bleed-bg::after {
    background: linear-gradient(180deg,
      rgba(245, 233, 226, 0.95) 0%,
      rgba(245, 233, 226, 0.75) 35%,
      rgba(245, 233, 226, 0.55) 60%,
      rgba(245, 233, 226, 0.92) 100%);
  }
  .hero-bleed-content h1 { font-size: 2.6rem; }
  .why-ecozen-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-image-card { min-height: 320px; }
  .why-text-card { padding: 32px 28px; }
  .why-text-card h2 { font-size: 1.8rem; }
}

/* ======== IMAGE OVERLAYS (Strategy Guide) ======== */
.img-with-overlay { position: relative; display: block; overflow: hidden; border-radius: 24px; }
.img-with-overlay img { display: block; width: 100%; height: 100%; object-fit: cover; }
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(43,36,32,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 30px;
}
.img-overlay-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.img-overlay-text em {
  font-style: italic;
  color: var(--peach);
}
.testimonial-headline {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-dark);
  font-style: italic;
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .img-overlay-text { font-size: 1.2rem; }
  .testimonial-headline { font-size: 1.1rem; }
}

/* ======== HERO TRUST PILLS ======== */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.trust-pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--peach);
  padding: 7px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary-dark);
  backdrop-filter: blur(8px);
}

/* ======== BUNDLE OFFER ======== */
.bundle-offer {
  background: linear-gradient(135deg, var(--primary) 0%, #E85444 100%);
  color: #fff; padding: 36px 30px; border-radius: 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  max-width: 900px; margin: 24px auto 0;
  box-shadow: 0 25px 60px rgba(255, 107, 91, 0.35);
}
.bundle-offer h3 { color: #fff; font-size: 1.55rem; margin: 0 0 8px; font-family: 'Playfair Display', serif; }
.bundle-offer p { margin: 0; font-size: 0.95rem; opacity: 0.92; }
.bundle-price-box {
  text-align: center; background: rgba(255,255,255,0.15);
  padding: 18px 26px; border-radius: 16px;
  border: 1.5px dashed rgba(255,255,255,0.4);
}
.bundle-offer .strike { text-decoration: line-through; opacity: 0.6; font-size: 0.95rem; }
.bundle-offer .save-now {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  letter-spacing: -0.03em;
  font-size: 2.2rem; font-weight: 800;
  display: block; line-height: 1; margin: 4px 0 10px;
}
.bundle-offer .strike {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.bundle-offer .save-tag {
  background: #fff; color: var(--primary-dark);
  font-size: 0.7rem; font-weight: 800; padding: 4px 10px;
  border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
}
.bundle-offer .btn { background: #fff; color: var(--primary-dark); margin-top: 14px; width: 100%; }

/* ======== GUARANTEE BAR ======== */
.guarantee-bar { background: var(--cream); padding: 50px 20px; }
.guarantee-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.guarantee-item { text-align: center; }
.guarantee-icon { font-size: 2rem; margin-bottom: 10px; }
.guarantee-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--heading); margin: 0 0 4px; }
.guarantee-item p { font-size: 0.78rem; color: var(--text-light); margin: 0; }

/* ======== FAQ ======== */
.faq-section { background: var(--white); padding: 80px 20px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: all 0.2s ease;
}
.faq-item summary {
  cursor: pointer; padding: 18px 24px; font-weight: 600; color: var(--heading);
  font-size: 1rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--primary); background: var(--white); }
.faq-body { padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; font-size: 0.94rem; }

/* ======== STICKY MOBILE BUY BAR ======== */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-medium);
  padding: 10px 14px; z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  align-items: center; gap: 10px;
}
.sticky-mobile-cta .price-block { display: flex; flex-direction: column; flex-shrink: 0; }
.sticky-mobile-cta .price-block .from { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.sticky-mobile-cta .price-block .price { font-family: 'Inter', system-ui, sans-serif; font-feature-settings: 'tnum' 1, 'lnum' 1; letter-spacing: -0.02em; font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.sticky-mobile-cta .btn { flex: 1; padding: 13px; font-size: 0.9rem; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .bundle-offer { grid-template-columns: 1fr; text-align: center; }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ===== HERO PRODUCT SCENE — CSS-rendered kraft box mockup ===== */
.hero-product-scene {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, #FFE4D4 0%, #FFD4C4 60%, #FFBFA3 100%);
  box-shadow: 0 30px 60px rgba(255,107,91,0.2);
}
.hero-mat {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 58%;
  background:
    repeating-linear-gradient(90deg, rgba(160,110,70,0.28) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(0deg, rgba(140,90,55,0.18) 0 2px, transparent 2px 7px),
    #D7AB87;
  border-radius: 8px;
  transform: perspective(600px) rotateX(45deg);
  transform-origin: center bottom;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.kraft-box {
  position: absolute;
  background: linear-gradient(135deg, #C9976A 0%, #B07F52 50%, #9E6E43 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1.5px rgba(70,45,20,0.3),
    0 12px 28px rgba(0,0,0,0.22);
}
.kraft-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  border-radius: 6px 6px 0 0;
}
.kraft-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 247, 237, 0.96);
  padding: 6px 12px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  min-width: 65%;
}
.kraft-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 800;
  color: #5B3A1D;
  line-height: 1;
  letter-spacing: 0.5px;
}
.kraft-sub {
  font-size: 0.55rem;
  color: #8B6239;
  margin-top: 3px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
}
.box-back {
  width: 48%; height: 30%;
  top: 22%; right: 12%;
  transform: rotate(-2deg);
  z-index: 2;
}
.box-mid {
  width: 42%; height: 26%;
  top: 36%; right: 30%;
  transform: rotate(3deg);
  z-index: 3;
}
.box-front {
  width: 40%; height: 24%;
  top: 48%; right: 18%;
  transform: rotate(-4deg);
  z-index: 4;
}
.cotton-ball {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #F5F0E8 70%, #E0D8C8 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 5;
}
.cotton-ball::before,
.cotton-ball::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #F5F0E8 80%);
}
.cotton-1 {
  width: 42px; height: 42px;
  bottom: 18%; left: 18%;
}
.cotton-1::before { width: 28px; height: 28px; top: -10px; left: 6px; }
.cotton-1::after { width: 24px; height: 24px; top: 8px; left: -8px; }
.cotton-2 {
  width: 32px; height: 32px;
  bottom: 12%; left: 40%;
}
.cotton-2::before { width: 20px; height: 20px; top: -8px; left: 8px; }
.pad-visual {
  position: absolute;
  width: 20%; height: 8%;
  bottom: 14%; right: 12%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5EE 100%);
  border-radius: 50% / 20%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  z-index: 4;
}

@media (max-width: 480px) {
  .kraft-brand { font-size: 0.8rem; }
  .kraft-sub { font-size: 0.48rem; }
}
.hero-image-accent {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.hero-floating-card {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-floating-card .card-icon {
  width: 44px; height: 44px;
  background: var(--peach-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-floating-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  color: var(--heading);
}
.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

/* ======== SECTION BASE ======== */
.section {
  padding: 80px 20px;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: var(--peach-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ======== TRUST BAR ======== */
.trust-bar {
  background: var(--white);
  padding: 50px 20px;
  border-bottom: 1px solid var(--gray-light);
}
.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 56px; height: 56px;
  background: var(--peach-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.trust-item span {
  font-weight: 600;
  color: var(--heading);
  font-size: 1rem;
}
.trust-item small {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ======== PRODUCTS ======== */
.products-section {
  background: var(--cream);
  padding: 80px 20px;
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--gray-light);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,107,91,0.15);
  border-color: var(--peach);
}
.product-card.featured { border: 2px solid var(--primary); }
.badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-image {
  height: 320px;
  background: linear-gradient(180deg, #FFF8F3 0%, #FFEDE4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image .product-pack-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.12));
}
.product-card:hover .product-pack-img { transform: scale(1.06) rotate(-2deg); }
.product-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 40px;
  background: rgba(0,0,0,0.08);
  filter: blur(15px);
  border-radius: 50%;
}
.product-image-mock {
  width: 190px;
  height: 230px;
  background: linear-gradient(135deg, #C9976A 0%, #B07F52 50%, #9E6E43 100%);
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 1.5px rgba(70,45,20,0.3),
    0 20px 40px rgba(158, 110, 67, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}
.product-card:hover .product-image-mock {
  transform: translateY(-6px) rotate(-2deg);
}
.product-image-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 100%);
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}
.product-image-mock .product-size {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #5B3A1D;
  line-height: 1;
  background: rgba(255, 247, 237, 0.96);
  padding: 4px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.product-image-mock .product-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #FFF7ED;
  letter-spacing: 1.5px;
  margin-top: 14px;
  font-weight: 800;
}
.product-image-mock .product-type {
  font-size: 0.68rem;
  margin-top: 8px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255, 247, 237, 0.9);
  border-radius: 10px;
  color: #8B6239;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-info {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.product-desc {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.feature {
  background: var(--peach-light);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
}
.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  letter-spacing: -0.02em;
}

/* ======== PRODUCT DETAIL ======== */
.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  margin-bottom: 40px;
  border: 1px solid var(--gray-light);
}
.product-detail-image {
  background: linear-gradient(180deg, #FFF8F3 0%, #FFEDE4 100%);
  border-radius: 20px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.product-detail-image img.pack {
  height: 100%;
  max-height: 470px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.15));
}
.product-detail-image .pack-back {
  opacity: 0.85;
  transform: scale(0.85);
}
.product-detail-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(255, 248, 243, 0.3) 100%);
  pointer-events: none;
}
.product-detail-image .product-image-mock {
  width: 260px; height: 330px;
}
.product-detail-image .product-image-mock .product-size {
  font-size: 4.5rem;
}
.product-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.product-price {
  font-size: 1.7rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  letter-spacing: -0.02em;
}
.product-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.75;
}
.product-specs h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.product-specs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-specs li {
  padding-left: 26px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.product-specs li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ======== WHY / FEATURE LIST ======== */
.why-choose { padding: 80px 20px; background: var(--white); }
.why-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  min-width: 42px; width: 42px; height: 42px;
  background: var(--peach-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-list h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--heading);
}
.feature-list p {
  color: var(--text-light);
  font-size: 0.92rem;
}
.why-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* ======== IMPACT / STATS ======== */
.impact-section {
  padding: 90px 20px;
  background: var(--heading);
  color: var(--white);
}
.impact-section h2 {
  color: var(--white);
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}
.impact-counters {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.counter-item { text-align: center; }
.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.counter-item p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* ======== TESTIMONIALS ======== */
.testimonials { padding: 80px 20px; background: var(--cream); }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
  border: 1px solid var(--gray-light);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-card p {
  position: relative;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  z-index: 2;
}
.testimonial-footer {
  padding-top: 15px;
  border-top: 1px solid var(--gray-light);
}
.testimonial-author {
  font-weight: 600;
  color: var(--heading);
  font-size: 0.92rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ======== INSTAGRAM SECTION ======== */
.instagram-section { padding: 80px 20px; background: var(--white); }
.instagram-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.instagram-embed {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  min-height: 560px;
  border: 1px solid var(--gray-light);
}
.instagram-embed blockquote { margin: 0 !important; border-radius: 16px !important; }

.instagram-cta {
  background: var(--heading);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.instagram-content { max-width: 600px; margin: 0 auto; }
.instagram-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}
.instagram-content p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.85);
}

/* ======== NEWSLETTER ======== */
.newsletter {
  background: var(--peach-light);
  padding: 70px 20px;
}
.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-content h2 { font-size: 2rem; margin-bottom: 10px; }
.newsletter-content p { color: var(--text-light); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: transparent;
}
.newsletter-form input:focus { outline: none; }

/* ======== COMPARISON TABLE ======== */
.comparison-table {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.comparison-table th {
  background: var(--heading);
  color: var(--white);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table th:nth-child(2) { text-align: center; background: #B85845; }
.comparison-table th:nth-child(3) { text-align: center; background: var(--primary); }
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem;
}
.comparison-table td:nth-child(2) {
  background: #FFF1EE;
  text-align: center;
  color: #A84537;
}
.comparison-table td:nth-child(3) {
  background: var(--peach-light);
  text-align: center;
  color: var(--primary-dark);
  font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--heading);
}

/* ======== CHEMICAL / INFO CARDS ======== */
.chemical-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.chemical-card {
  background: var(--white);
  padding: 30px 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: all 0.25s ease;
}
.chemical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.chemical-card-icon {
  width: 52px; height: 52px;
  background: var(--peach-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.chemical-card h3, .chemical-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--heading);
}
.chemical-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
.chemical-card strong { color: var(--heading); }

/* ======== BIG STAT CARDS ======== */
.big-stats {
  background: var(--cream);
  padding: 80px 20px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.stat-card {
  background: var(--white);
  padding: 36px 26px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-light);
  transition: all 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,107,91,0.12);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--heading);
}
.stat-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ======== FOUNDER ======== */
.founder-section {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.founder-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(255,107,91,0.2);
  display: block;
  position: relative;
  z-index: 2;
}
.founder-image-wrap::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  background: var(--peach-light);
  border-radius: 20px;
  z-index: 1;
}
.founder-content h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}
.founder-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.founder-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}
.founder-content blockquote {
  background: var(--peach-light);
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  margin: 20px 0;
  font-style: italic;
  color: var(--heading);
}

/* ======== SDG CARDS ======== */
.sdg-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.sdg-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: all 0.25s ease;
}
.sdg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.sdg-number {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 auto 18px;
  line-height: 1;
  gap: 4px;
}
.sdg-number strong {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.sdg-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.sdg-card p { color: var(--text-light); font-size: 0.9rem; }

/* ======== MATERIALS ======== */
.materials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.material-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-light);
  transition: all 0.25s ease;
}
.material-card:hover {
  transform: translateY(-4px);
  border-color: var(--peach);
}
.material-icon {
  width: 60px; height: 60px;
  background: var(--peach-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.material-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.material-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ======== PARTNERSHIP CARDS ======== */
.partnership-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.partnership-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-light);
}
.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,107,91,0.15);
}
.partnership-card.featured { border: 2px solid var(--primary); }
.partnership-header {
  background: var(--heading);
  color: var(--white);
  padding: 30px;
}
.partnership-card.featured .partnership-header {
  background: var(--primary);
}
.partnership-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.partnership-header p {
  opacity: 0.85;
  font-size: 0.9rem;
}
.partnership-content {
  padding: 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partnership-margin {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}
.partnership-features { margin-bottom: 26px; flex: 1; }
.partnership-features h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}
.partnership-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partnership-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
}
.partnership-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 16px; height: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
}

/* ======== RESEARCH PIPELINE ======== */
.pipeline-items {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pipeline-item {
  background: var(--white);
  padding: 30px 26px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}
.pipeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pipeline-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.93rem;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--heading);
  color: var(--white);
  padding: 70px 20px 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-column h4 {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-column p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.footer-column a:hover { color: var(--primary); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.25s ease;
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ======== PARTNER LOGO BADGE ======== */
.partner-logo-badge {
  display: inline-block;
  padding: 18px 26px;
  background: #34254C;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(52, 37, 76, 0.25);
}
.partner-logo-badge > div:first-child {
  color: #2ECFCF !important;
  margin-bottom: 10px;
}
.partner-logo-badge a { display: inline-block; transition: opacity 0.25s ease; }
.partner-logo-badge a:hover { opacity: 0.85; }
.partner-logo-badge img {
  height: 56px !important;
  width: auto !important;
  display: block;
}

/* ======== DISTRIBUTOR ENROLLMENT PROGRAM ======== */
.enrollment-hero {
  max-width: 900px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 46px;
  box-shadow: 0 15px 45px rgba(255,107,91,0.12);
  border: 1px solid var(--gray-light);
}
.enrollment-hero-number {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -3px;
}
.enrollment-hero-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--heading);
}
.enrollment-hero-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.enrollment-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.enrollment-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--gray-light);
}
.enrollment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(255,107,91,0.15);
  border-color: var(--peach);
}
.enrollment-step {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.enrollment-card h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--heading);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.enrollment-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.enrollment-benefits {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--heading);
  color: var(--white);
  padding: 50px 44px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.enrollment-benefits-header {
  text-align: center;
  margin-bottom: 36px;
}
.enrollment-benefits-header h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.enrollment-benefits-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
}
.enrollment-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.enrollment-stat {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,107,91,0.08);
  border-radius: 14px;
  border: 1px solid rgba(255,107,91,0.15);
}
.enrollment-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.enrollment-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  display: block;
}

@media (max-width: 768px) {
  .enrollment-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 30px 24px;
  }
  .enrollment-hero-number { font-size: 5rem; }
  .enrollment-benefits { padding: 36px 24px; }
}

/* ======== PARTNER FORM ======== */
.partner-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--gray-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-medium);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: all 0.2s ease;
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,91,0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .hero-inner,
  .why-content,
  .product-detail-card,
  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text h1 { font-size: 2.5rem; }
  .founder-image-wrap { max-width: 100%; margin: 0 auto; }
  .founder-image-wrap::before { display: none; }
  .founder-photo { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .partner-form { padding: 24px; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-text h1 { font-size: 2.2rem; }
  .page-header h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .impact-counters, .trust-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .product-detail-card { padding: 30px 24px; }
  .hero-floating-card { left: 10px; bottom: 15px; }
  .counter-number { font-size: 2.4rem; }
  .stat-number { font-size: 2rem; }
  .newsletter-form { flex-direction: column; background: transparent; padding: 0; box-shadow: none; }
  .newsletter-form input { background: var(--white); border-radius: 8px; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.9rem; }
  .page-header h1 { font-size: 1.6rem; }
  .section-header h2 { font-size: 1.5rem; }
  .impact-counters, .trust-items { grid-template-columns: 1fr; }
  .logo-img { width: 38px; height: 38px; }
  .logo-text { font-size: 1.25rem; }
  .btn { width: 100%; }
  .hero-buttons { flex-direction: column; }
}

/* ======== PARTNERS PAGE — OPPORTUNITY + EARN TIERS ======== */
.opportunity-band {
  background: linear-gradient(135deg, #1F1F2E 0%, #2B2735 60%, #34254C 100%);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.opportunity-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255,107,91,0.18) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(46,196,182,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.opportunity-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.opp-eyebrow {
  display: inline-block;
  background: rgba(255,107,91,0.18);
  color: #FFB199;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}
.opportunity-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.2;
}
.opportunity-band > div > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
}
.opportunity-band p strong { color: #FFB199; font-weight: 600; }
.opp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.opp-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.opp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #FF6B5B;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}
.opp-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  line-height: 1.45;
  font-family: 'Inter', sans-serif;
}
.opp-label em { color: #FFB199; font-style: normal; font-weight: 600; }

/* EARN TIERS */
.earn-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}
.earn-tier {
  background: #fff;
  border: 2px solid #EFE6DE;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.earn-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(43,39,53,0.10);
}
.earn-tier-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%);
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(255,107,91,0.18);
}
.earn-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.earn-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.earn-badge-1 { background: #FFEDE4; color: #B8732A; }
.earn-badge-2 { background: var(--primary); color: #fff; }
.earn-badge-3 { background: #2B2735; color: #fff; }
.earn-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--heading);
  margin-bottom: 6px;
  line-height: 1.2;
  font-weight: 700;
}
.earn-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}
.earn-tagline {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 14px 0 22px;
}
.earn-economics {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.econ-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
}
.econ-row:last-child { border-bottom: none; }
.econ-row strong {
  color: var(--heading);
  font-weight: 700;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.econ-highlight {
  background: linear-gradient(135deg, rgba(255,107,91,0.10), rgba(255,107,91,0.04));
  margin: 6px -12px -8px;
  padding: 12px;
  border-radius: 10px;
  border-bottom: none !important;
}
.econ-highlight strong { color: var(--primary-dark); font-size: 1.05rem; }
.earn-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.earn-perks li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.earn-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 700;
}
.earn-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.tier-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 760px;
  margin: 32px auto 0;
  font-style: italic;
}

/* EARNINGS MATH */
.earnings-section { background: var(--cream); }
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.earning-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  border: 1px solid #EFE6DE;
  transition: all 0.3s ease;
}
.earning-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(43,39,53,0.08);
}
.earning-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%);
}
.earning-tier {
  display: inline-block;
  background: var(--cream);
  color: var(--heading);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.earning-headline {
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.earn-currency {
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  margin-right: 2px;
}
.earn-big {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.earn-period {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 6px;
}
.earning-math {
  color: var(--text-light);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 18px;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.earning-bar {
  height: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 18px;
}
.earning-bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 0.6s ease;
}
.earning-context {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .opp-stats { grid-template-columns: repeat(2, 1fr); }
  .earn-tiers { grid-template-columns: 1fr; gap: 20px; }
  .earn-tier-featured { transform: none; }
  .earnings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .opp-stats { grid-template-columns: 1fr; }
  .opportunity-band { padding: 60px 20px; }
}

/* ======== IMPACT PAGE ======== */
.impact-hero {
  background: linear-gradient(135deg, #2B2735 0%, #3A2F4A 50%, #4A3060 100%);
  color: #fff;
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 35%, rgba(255,107,91,0.18) 0%, transparent 50%),
              radial-gradient(circle at 75% 65%, rgba(46,196,182,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.impact-hero-content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.impact-eyebrow {
  display: inline-block;
  background: rgba(255,107,91,0.18);
  color: #FFB199;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
}
.impact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.impact-hero h1 em {
  color: #FF6B5B;
  font-style: italic;
  font-weight: 700;
}
.impact-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: 'Inter', sans-serif;
}
.impact-hero-sub strong { color: #fff; font-weight: 600; }
.impact-hero .hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.impact-hero .btn-primary {
  background: #FF6B5B;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
}
.impact-hero .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
}
.impact-hero .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* MANDATE GRID */
.mandate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.mandate-card {
  background: #fff;
  border: 1px solid #EFE6DE;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.mandate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(43,39,53,0.08);
  border-color: var(--primary);
}
.mandate-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-feature-settings: 'lnum' 1;
}
.mandate-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--heading);
  margin-bottom: 12px;
  font-weight: 600;
}
.mandate-card p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.65;
}
.mandate-card p strong { color: var(--text); }
.mandate-footer {
  max-width: 880px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
}
.mandate-footer p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}
.mandate-footer p strong { color: var(--primary-dark); }

/* DISPENSER SHOWCASE */
.dispenser-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, #FFF8F3 100%);
  border-radius: 24px;
  border: 1px solid #EFE6DE;
}
.dispenser-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43,39,53,0.12);
}
.dispenser-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.dispenser-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--heading);
  font-weight: 600;
  margin: 12px 0 16px;
  letter-spacing: -0.01em;
}
.dispenser-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.dispenser-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dispenser-checks li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.dispenser-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}
@media (max-width: 800px) {
  .dispenser-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .dispenser-text h3 { font-size: 1.4rem; }
}

/* CRISIS STATS */
.crisis-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.crisis-stat {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(180deg, #FFEDE4 0%, #fff 100%);
  border-radius: 18px;
}
.crisis-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-feature-settings: 'lnum' 1;
}
.crisis-stat p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* CSR DIVIDER */
.csr-divider {
  background: linear-gradient(135deg, #34254C 0%, #2B2735 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.csr-divider-content {
  max-width: 820px;
  margin: 0 auto;
}
.csr-divider h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin: 16px 0 22px;
  line-height: 1.2;
}
.csr-divider p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
}
.csr-divider p strong { color: #FFB199; }

/* WHY PARTNER GRID */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-partner-card {
  background: #fff;
  border: 1px solid #EFE6DE;
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.why-partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(43,39,53,0.07);
}
.wp-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEDE4, #FFD4C4);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.why-partner-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-weight: 600;
}
.why-partner-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CSR TIERS */
.csr-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.csr-tier {
  background: #fff;
  border: 2px solid #EFE6DE;
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.csr-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(43,39,53,0.08);
}
.csr-tier.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%);
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(255,107,91,0.18);
}
.tier-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.tier-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 8px;
}
.tier-amount {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.tier-period {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.tier-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid #F5F0EC;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary);
  font-weight: 700;
}
.tier-features li strong { color: var(--heading); font-weight: 600; }
.csr-tier .btn { width: 100%; text-align: center; }

/* CSR STEPS */
.csr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.csr-step {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  font-feature-settings: 'lnum' 1;
}
.csr-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-weight: 600;
}
.csr-step p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* CSR CONTACT CTA */
.csr-contact-cta {
  background: linear-gradient(135deg, #FF6B5B 0%, #E85444 100%);
  color: #fff;
  padding: 90px 24px;
  text-align: center;
}
.csr-contact-content {
  max-width: 760px;
  margin: 0 auto;
}
.csr-contact-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.csr-contact-cta > div > p:first-of-type {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}
.csr-contact-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.csr-contact-buttons .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
}
.csr-contact-buttons .btn-primary:hover { background: var(--cream); color: var(--primary-dark); }
.csr-contact-buttons .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.csr-contact-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.btn-large { font-size: 1rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .mandate-grid { grid-template-columns: 1fr; }
  .crisis-stats { grid-template-columns: repeat(2, 1fr); }
  .why-partner-grid { grid-template-columns: 1fr 1fr; }
  .csr-tiers { grid-template-columns: 1fr; }
  .csr-tier.featured { transform: none; }
  .csr-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .impact-hero { padding: 70px 20px 60px; }
  .crisis-stats { grid-template-columns: 1fr; }
  .why-partner-grid { grid-template-columns: 1fr; }
  .csr-steps { grid-template-columns: 1fr; }
  .csr-contact-buttons { flex-direction: column; }
  .csr-contact-buttons .btn { width: 100%; }
}

/* ======== MISSION & VISION CARDS ======== */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.mv-card {
  background: #fff;
  border: 1px solid #EFE6DE;
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(43,39,53,0.08);
}
.mv-card:hover::before {
  opacity: 1;
}
.mv-monogram {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEDE4 0%, #FFD4C4 100%);
  border: 2px solid #FF6B5B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6B5B;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
}
.mv-monogram::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,107,91,0.35);
}
.mv-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--heading);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mv-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .mv-cards { grid-template-columns: 1fr; gap: 20px; }
  .mv-card { padding: 36px 28px; }
  .mv-card h3 { font-size: 1.35rem; }
  .mv-monogram { width: 64px; height: 64px; font-size: 2rem; margin-bottom: 18px; }
}

/* ======== LIFETIME EXPOSURE STAT BAND ======== */
.lifetime-stat {
  background: linear-gradient(135deg, #2B2735 0%, #3A2F4A 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lifetime-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,107,91,0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,179,153,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.lifetime-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.lifetime-tag {
  display: inline-block;
  background: rgba(255,107,91,0.18);
  color: #FFB199;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
}
.lifetime-mega {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 14vw, 8.5rem);
  font-weight: 800;
  color: #FF6B5B;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  font-feature-settings: 'lnum' 1;
}
.lifetime-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 36px;
}
.lifetime-math {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin: 0 auto 32px;
  max-width: 800px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.lifetime-math span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: 'Inter', sans-serif;
}
.lifetime-math span strong {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.lifetime-math span small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.lifetime-math .op {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  flex-direction: row;
  align-self: center;
  padding-top: 2px;
}
.lifetime-math .op.eq {
  color: #FF6B5B;
}
.lifetime-math .result strong {
  color: #FF6B5B;
  font-size: 1.6rem;
}
.lifetime-math .result small {
  color: #FFB199;
}
.lifetime-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
  font-family: 'Inter', sans-serif;
}
.lifetime-sub strong {
  color: #fff;
  font-weight: 600;
}
.lifetime-content .btn-primary {
  background: #FF6B5B;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
}
.lifetime-content .btn-primary:hover {
  background: #E85444;
  color: #fff;
}
@media (max-width: 700px) {
  .lifetime-stat { padding: 56px 20px; }
  .lifetime-math { gap: 10px 14px; padding: 20px 14px; }
  .lifetime-math span strong { font-size: 1.15rem; }
  .lifetime-math .op { font-size: 1.1rem; }
  .lifetime-math .result strong { font-size: 1.3rem; }
}
