/* =============================================
   DREAMWAY HERBAL - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --green-dark:   #1a4a2e;
  --green-mid:    #2d7a4f;
  --green-light:  #4caf78;
  --green-pale:   #e8f5ee;
  --green-mist:   #f0f9f4;
  --gold:         #c8961a;
  --gold-light:   #f0c040;
  --white:        #ffffff;
  --off-white:    #fafdf8;
  --text-dark:    #1c2b1e;
  --text-mid:     #3d5c44;
  --text-light:   #6b8f72;
  --border:       #c8e6d0;
  --shadow:       rgba(26,74,46,0.12);
  --shadow-lg:    rgba(26,74,46,0.22);
  --font-display: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:       12px;
  --radius-lg:    24px;
}

*, *::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-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 8px; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  padding: 14px 32px;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow-lg);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,150,26,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,26,0.45);
}

/* ---- PAGE VISIBILITY ---- */
.page { display: none; animation: fadeInUp 0.55s ease both; }
.page.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img {
  height: 81px;
  width: auto;
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18)); */
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nav-logo-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-mid);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b17 0%, #1a4a2e 50%, #2d7a4f 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://plus.unsplash.com/premium_photo-1726769198572-542339268a7f?mark=https:%2F%2Fimages.unsplash.com%2Fopengraph%2Flogo.png&mark-w=64&mark-align=top%2Cleft&mark-pad=50&h=630&w=1200&crop=faces%2Cedges&blend-w=1&blend=000000&blend-mode=normal&blend-alpha=10&auto=format&fit=crop&q=60&ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzMyMjkyMzM1fA&ixlib=rb-4.0.3');
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: saturate(1.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,30,15,0.92) 0%, rgba(26,74,46,0.6) 60%, rgba(45,122,79,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.1s both;
}
.hero-eyebrow-line {
  width: 48px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.2s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s both;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s both;
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  display: flex;
  gap: 2px;
  z-index: 2;
  animation: fadeInUp 0.7s 0.5s both;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 20px 28px;
  text-align: center;
  min-width: 120px;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--green-dark);
  padding: 22px 0;
}
.features-strip-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 1.4rem; }
.feature-text { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }

/* ============================================================
   ABOUT SECTION (HOME SNIPPET)
   ============================================================ */
.about-snippet { padding: 100px 0; background: var(--white); }
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 60px var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-lg);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text .section-title { margin-bottom: 0; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.about-list-icon {
  width: 26px; height: 26px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { padding: 100px 0; background: var(--green-mist); }
.products-header { margin-bottom: 60px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-badge.gold { background: var(--gold); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 22px; }
.product-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section { padding: 100px 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  opacity: 0;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: transparent;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon-wrap {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon-wrap {
  background: var(--green-dark);
  transform: rotate(-4deg) scale(1.08);
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--green-dark); }
.testimonials .section-tag { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: rgba(255,255,255,0.15); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4edde 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🌿';
  position: absolute;
  font-size: 18rem;
  opacity: 0.06;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-text .section-title { margin-bottom: 10px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}

/* ---- FOOTER LOGO (visible on dark background) ---- */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.footer-logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.footer-col ul a:hover { color: var(--green-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-mid); }

/* ============================================================
   PAGE: ABOUT US
   ============================================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  margin-top: 78px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-tag { background: rgba(255,255,255,0.12); color: var(--gold-light); border-color: rgba(255,255,255,0.2); }
.page-hero-content .section-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; }

.story-section { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.story-images img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.story-images img:first-child { grid-column: 1 / -1; height: 280px; }

.values-section { padding: 100px 0; background: var(--green-mist); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-lg); }
.value-icon { font-size: 2.5rem; margin-bottom: 18px; }
.value-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-dark); margin-bottom: 10px; }
.value-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

.team-section { padding: 100px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; height: 300px; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-info { padding: 24px; }
.team-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--green-mid); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.cert-section { padding: 80px 0; background: var(--green-dark); }
.cert-section .section-title { color: var(--white); }
.cert-section .section-tag { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: rgba(255,255,255,0.15); }
.certs-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 48px; }
.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.cert-badge:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ============================================================
   PAGE: PRODUCTS
   ============================================================ */
.product-page-section { padding: 80px 0; background: var(--green-mist); }
.product-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   PAGE: BENEFITS
   ============================================================ */
.benefits-hero-section { padding: 100px 0; background: var(--white); }
.benefits-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 80px; }
.benefits-intro-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 24px 60px var(--shadow-lg); }
.big-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.big-benefit {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.big-benefit:hover { border-color: var(--green-light); background: var(--green-mist); transform: translateY(-3px); }
.big-benefit-icon { font-size: 2.2rem; flex-shrink: 0; }
.big-benefit-content h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.big-benefit-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

.ingredients-section { padding: 100px 0; background: var(--green-mist); }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.ingredient-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}
.ingredient-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-lg); }
.ingredient-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ingredient-info { padding: 20px 16px; }
.ingredient-name { font-family: var(--font-display); font-size: 1rem; color: var(--green-dark); margin-bottom: 6px; }
.ingredient-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

.process-section { padding: 100px 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 auto 22px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px var(--shadow-lg);
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-dark); margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid, .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { position: static; margin-top: 40px; flex-wrap: wrap; gap: 8px; }
  .about-snippet-grid, .story-grid, .benefits-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { display: none; }
  .about-badge { left: auto; right: 16px; }
  .products-grid, .products-full-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .features-strip-inner { justify-content: flex-start; overflow-x: auto; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; }
  .big-benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .ingredients-grid { grid-template-columns: 1fr; }
}
