/* CSS Design System & Visual Stylesheet for SHEll */

/* ---------------------------------- */
/* 1. ROOT DESIGN TOKENS & RESET      */
/* ---------------------------------- */
:root {
  /* Premium Muted & Pastel Color Palette */
  --bg-cream: #FDFBF7;
  --primary-pink: #D48C93;
  --primary-pink-light: #F7ECEE;
  --primary-pink-dark: #B97178;
  --secondary-green: #A3C6B4;
  --secondary-green-soft: #E9F2EE;
  --secondary-green-dark: #6C917E;
  --text-dark: #2C3E35;
  --text-muted: #526A5E;
  --text-light: #8DA89B;
  --border-pink: rgba(212, 140, 147, 0.25);
  --border-green: rgba(163, 198, 180, 0.3);
  --white: #FFFFFF;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Elevations */
  --shadow-soft: 0 15px 35px rgba(44, 62, 53, 0.05);
  --shadow-premium: 0 30px 60px rgba(44, 62, 53, 0.08);
  --shadow-input: inset 0 2px 4px rgba(44, 62, 53, 0.02);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s ease;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  transition: opacity 150ms ease;
}

body.lang-switching {
  opacity: 0;
}

/* Body freeze state while loading */
body.preloader-active {
  overflow: hidden;
  height: 100vh;
}

/* Premium Fullscreen Preloader */
.preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 9999; /* Highest priority */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), visibility 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px); /* Elegant slide-up reveal */
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* SVG Blooming lotus outlines */
.preloader-lotus-svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 12px rgba(212, 140, 147, 0.1));
  animation: preloaderBloom 3s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.lotus-petal-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawLotusPetal 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Delay staggered drawings on petal layers */
.preloader-lotus-svg path:nth-child(2) { animation-delay: 150ms; }
.preloader-lotus-svg path:nth-child(3) { animation-delay: 300ms; }
.preloader-lotus-svg path:nth-child(4) { animation-delay: 450ms; }
.preloader-lotus-svg path:nth-child(5) { animation-delay: 600ms; }

.preloader-logo-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInPreloaderLogo 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  margin-top: 20px;
}

/* Preloader Keyframes */
@keyframes drawLotusPetal {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes preloaderBloom {
  0% { transform: scale(0.96); }
  100% { transform: scale(1.04); }
}

@keyframes fadeInPreloaderLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------------- */
/* HERO PAGE ENTRANCE STAGGER ANIMATIONS */
/* ---------------------------------- */
.section-hero .hero-title {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-hero .hero-subtitle,
.section-hero .hero-tagline,
.section-hero .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-hero .hero-layered-scene {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1), transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Triggered states after Preloader Reveal */
.hero-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 200ms; /* Heading drifts first */
}

.hero-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms; /* Subtitle drifts second */
}

.hero-active .hero-tagline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}

.hero-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 600ms; /* CTA buttons fade in third */
}

.hero-active .hero-layered-scene {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 500ms; /* Visual illustration blooms in last */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-green);
  border: 3px solid var(--bg-cream);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink);
}

/* ---------------------------------- */
/* 2. REUSABLE UTILITIES & LAYOUTS    */
/* ---------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-dark { color: var(--text-dark); }
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-pink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(212, 140, 147, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 140, 147, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-pink);
  border: 1px solid var(--primary-pink);
}

.btn-secondary:hover {
  background-color: var(--primary-pink-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 0;
  transition: var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-green);
  transform: scaleX(0.7);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.text-link:hover {
  color: var(--primary-pink-dark);
}

.text-link:hover::after {
  background-color: var(--primary-pink-dark);
  transform: scaleX(1);
}

.text-link .arrow-icon {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.text-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ---------------------------------- */
/* 3. KEYFRAME ANIMATIONS             */
/* ---------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes growWidth {
  from { width: 0; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll Animation classes (active when in viewport via JS) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.float-slow {
  animation: float 6s ease-in-out infinite;
}

.float-slow.delay-2 {
  animation-delay: 3s;
}

/* ---------------------------------- */
/* 4. HEADER STYLING                  */
/* ---------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background-color: rgba(253, 251, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 62, 53, 0.03);
  transition: var(--transition-fast);
}

.main-header.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(44, 62, 53, 0.02);
  background-color: rgba(253, 251, 247, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

.logo-img:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.85); /* Converts logo to elegant white/ivory matching footer text */
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}

.logo-accent {
  color: var(--primary-pink);
  font-weight: 300;
  font-style: italic;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary-pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition-fast);
}

/* Language Switcher Styles */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  margin-right: 16px;
  transition: var(--transition-fast);
  outline: none;
}

.lang-toggle-btn .lang-text {
  position: relative;
  padding: 2px 0;
  transition: var(--transition-fast);
}

.lang-toggle-btn .lang-text.active {
  color: var(--primary-pink-dark);
  font-weight: 600;
}

.lang-toggle-btn .lang-text:not(.active):hover {
  color: var(--text-dark);
}

.lang-toggle-btn .lang-divider {
  margin: 0 6px;
  opacity: 0.25;
  color: var(--text-dark);
}

/* ---------------------------------- */
/* 5. HERO SECTION                    */
/* ---------------------------------- */
.section-hero {
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--primary-pink-light) 0%, transparent 45%);
}

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

.hero-pretitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-green-dark);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-pink-dark);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 0.92;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: var(--bg-cream);
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover .hero-img {
  transform: scale(1.04);
}

.visual-deco-circle {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--secondary-green-soft);
  z-index: -1;
  opacity: 0.7;
}

/* ---------------------------------- */
/* 6. UNSPOKEN TRUTH SECTION          */
/* ---------------------------------- */
.section-truth {
  padding: 100px 0;
  background-color: #f7f4ee;
  position: relative;
  overflow: hidden;
}

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.truth-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(163, 198, 180, 0.15);
  transition: var(--transition-smooth);
}

.truth-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-pink);
}

.truth-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.truth-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.truth-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--bg-cream);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--border-green);
}

/* SVG Donut Chart */
.chart-donut-container {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.chart-donut {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.chart-donut-bg {
  fill: none;
  stroke: var(--secondary-green-soft);
  stroke-width: 10;
}

.chart-donut-fill {
  fill: none;
  stroke: var(--primary-pink);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s ease-out;
}

/* Donut animation trigger */
.animated .chart-donut-fill {
  animation: drawStroke 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart-donut-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.chart-number {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
}

.chart-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-top: 2px;
}

/* Horizontal Bar Chart */
.chart-bar-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.chart-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.chart-bar-label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.chart-bar-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-pink-dark);
}

.chart-bar-track {
  width: 100%;
  height: 14px;
  background-color: var(--secondary-green-soft);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}

.chart-bar-fill {
  height: 100%;
  background-color: var(--secondary-green);
  border-radius: 50px;
  width: 0;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated .chart-bar-fill {
  animation: growWidth 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart-bar-caption {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}

/* Line-art Row inside cards */
.icon-lineart-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lineart-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lineart-svg {
  width: 24px;
  height: 24px;
  color: var(--secondary-green-dark);
  flex-shrink: 0;
}

.lineart-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Section Bottom Conclusion */
.truth-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 62, 53, 0.08);
}

.truth-conclusion p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 400;
}

/* ---------------------------------- */
/* 7. THE SOLUTION SECTION            */
/* ---------------------------------- */
.section-solution {
  padding: 120px 0;
  position: relative;
}

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

.solution-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 0.95;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(212, 140, 147, 0.1);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--border-radius-lg) - 8px);
}

/* Floating Badges styling */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(44, 62, 53, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 5;
}

.badge-gel {
  top: 15%;
  left: -12%;
}

.badge-lotus {
  bottom: 12%;
  right: -10%;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-gel .badge-icon {
  background-color: var(--primary-pink-light);
}

.badge-lotus .badge-icon {
  background-color: var(--secondary-green-soft);
}

.droplet-svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-pink);
}

.petal-svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary-green-dark);
}

.floating-badge h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.floating-badge p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Solution right content */
.solution-pretitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-pink-dark);
  margin-bottom: 16px;
}

.solution-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.solution-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Bullet list */
.solution-features {
  list-style: none;
  margin-bottom: 40px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-icon-wrapper {
  background-color: var(--secondary-green-soft);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon {
  width: 14px;
  height: 14px;
  color: var(--secondary-green-dark);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.solution-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ---------------------------------- */
/* 8. WHY IT STANDS OUT SECTION       */
/* ---------------------------------- */
.section-benefits {
  padding: 100px 0;
  background-color: #FAF8F4;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-pretitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-green-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

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

.benefit-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-pink);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-pink);
}

.benefit-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon-box {
  transform: scale(1.08);
  background-color: var(--primary-pink);
}

.benefit-svg {
  width: 24px;
  height: 24px;
  color: var(--primary-pink-dark);
  transition: var(--transition-fast);
}

.benefit-card:hover .benefit-svg {
  color: var(--white);
}

.benefit-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.benefit-card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------- */
/* 9. BRAND STORY SECTION             */
/* ---------------------------------- */
.section-story {
  position: relative;
  padding: 140px 0;
  background-color: var(--bg-cream);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.story-watermark-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.story-watermark {
  width: 100%;
  height: auto;
  display: block;
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-pretitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-pink-dark);
  margin-bottom: 24px;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.story-body {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------------------------------- */
/* 10. ACTION & CONVERSION SECTION    */
/* ---------------------------------- */
.section-conversion {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 80%, var(--secondary-green-soft) 0%, transparent 40%);
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.conversion-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.conversion-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.offer-callout {
  background-color: var(--primary-pink-light);
  border-left: 3px solid var(--primary-pink);
  padding: 20px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-bottom: 40px;
  max-width: 500px;
}

.offer-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-pink-dark);
  margin-bottom: 6px;
}

.offer-desc {
  font-size: 1rem;
  color: var(--text-dark);
}

.ecommerce-badges {
  margin-top: 40px;
}

.badges-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 16px;
}

.badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ecom-badge {
  background-color: var(--white);
  border: 1px solid rgba(44, 62, 53, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(44, 62, 53, 0.02);
  transition: var(--transition-fast);
}

.ecom-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(44, 62, 53, 0.06);
  border-color: var(--primary-pink);
}

.ecom-logo {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
}

.shopee-logo { color: #EE4D2D; }
.lazada-logo { color: #0F136E; }
.tiktok-logo { color: #000000; }

/* Lead Form Styling */
.form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(44, 62, 53, 0.05);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(44, 62, 53, 0.12);
  background-color: var(--bg-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-input);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-pink);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 140, 147, 0.12);
}

.form-group.has-error .form-control {
  border-color: #E27474;
  box-shadow: 0 0 0 4px rgba(226, 116, 116, 0.1);
}

.error-message {
  display: none;
  font-size: 0.72rem;
  color: #E27474;
  margin-top: 6px;
  font-weight: 500;
}

.form-group.has-error .error-message {
  display: block;
}

/* Submit state & Loader */
.btn-submit {
  position: relative;
  overflow: hidden;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: rotateSlow 0.8s linear infinite;
  position: absolute;
}

.loading .btn-text {
  opacity: 0;
}

.loading .btn-loader {
  display: block;
}

/* Form Success State styling */
.form-success-state,
.modal-success-state {
  text-align: center;
  padding: 10px 0;
}

.success-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon {
  width: 32px;
  height: 32px;
  color: var(--secondary-green-dark);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.success-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.promo-code-box {
  background-color: var(--bg-cream);
  border: 1px dashed var(--primary-pink);
  border-radius: var(--border-radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 280px;
  margin: 0 auto 12px;
}

.promo-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
}

.promo-code {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-pink-dark);
  letter-spacing: 0.05em;
}

.btn-copy-code {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
  padding: 4px;
}

.btn-copy-code:hover {
  color: var(--primary-pink-dark);
}

.copy-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-status {
  display: block;
  font-size: 0.72rem;
  color: var(--secondary-green-dark);
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition-fast);
}

.copy-status.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------- */
/* 11. TRUST BADGES & FOOTER          */
/* ---------------------------------- */
.main-footer {
  background-color: #FAF8F4;
  border-top: 1px solid rgba(44, 62, 53, 0.05);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(44, 62, 53, 0.05);
}

.trust-badge-card {
  text-align: center;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-green-dark);
}

.trust-svg {
  width: 22px;
  height: 22px;
}

.trust-badge-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.trust-badge-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.footer-bottom {
  background-color: var(--text-dark);
  color: #DFE5E2;
  padding: 40px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline-text {
  font-size: 0.78rem;
  color: #A4B5AC;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: #A4B5AC;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: #899E93;
}

/* ---------------------------------- */
/* 12. PREMIUM MODALS                 */
/* ---------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 53, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal.active .modal-backdrop {
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 140, 147, 0.15);
  z-index: 10;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
  opacity: 1;
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--primary-pink-light);
  color: var(--primary-pink-dark);
}

.close-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-header {
  margin-bottom: 28px;
}

.modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-pink-dark);
  background-color: var(--primary-pink-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.ingredients-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ingredients-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.ingredient-item {
  border-bottom: 1px solid rgba(44, 62, 53, 0.05);
  padding-bottom: 12px;
}

.ingredient-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ingredient-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ingredients-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  background-color: var(--secondary-green-soft);
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
}

.cert-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Modal form adjustments */
#coupon-modal-form {
  margin-top: 10px;
}

/* ---------------------------------- */
/* LAYERED LIVING HERO SCENE STYLING   */
/* ---------------------------------- */
.hero-layered-scene {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: #FAF7F2;
  z-index: 2;
  border: 1px solid rgba(212, 140, 147, 0.1);
}

.scene-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover parallax adjustments */
.hero-layered-scene:hover .layer-bg {
  transform: scale(1.02);
}
.hero-layered-scene:hover .layer-gate {
  transform: scale(1.04) translateY(-2px);
}
.hero-layered-scene:hover .layer-girl {
  transform: scale(1.01) translateY(-3px);
}

/* Layer Animations */
.layer-smoke-left {
  animation: smokeDriftLeft 14s ease-in-out infinite;
}

.layer-smoke-right {
  animation: smokeDriftRight 11s ease-in-out infinite;
}

.layer-smoke-bg {
  animation: smokePulse 8s ease-in-out infinite;
  opacity: 0.65;
}

.layer-smoke-fg {
  animation: smokePulse 9s ease-in-out infinite;
  opacity: 0.55;
}

.layer-leaf-1 {
  animation: leafSway 7s ease-in-out infinite;
}

.layer-leaf-2 {
  animation: leafSwayAlt 8s ease-in-out infinite;
}

.layer-leaf-3 {
  animation: leafSway 9s ease-in-out infinite;
}

.layer-leaf-4 {
  animation: leafSwayAlt 6s ease-in-out infinite;
}

.layer-sen-1, .layer-bud-1 {
  animation: flowerPulse 6s ease-in-out infinite;
}

.layer-sen-2, .layer-bud-2 {
  animation: flowerPulse 8s ease-in-out infinite;
  animation-delay: 2s;
}

/* Decorative Flower on Product Stage (Section 3) */
.solution-deco-flower {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  animation: float 7s ease-in-out infinite;
  animation-delay: 1s;
}

/* Keyframes for Layered Scene */
@keyframes smokeDriftLeft {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateX(-15px) scale(1.04); opacity: 0.85; }
}

@keyframes smokeDriftRight {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.7; }
  50% { transform: translateX(15px) scale(1.02); opacity: 0.45; }
}

@keyframes smokePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.02); }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-5px); }
}

@keyframes leafSwayAlt {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-3px); }
}

@keyframes flowerPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.02) translateY(-3px); }
}

/* ---------------------------------- */
/* 8.5 GALLERY SECTION STYLING        */
/* ---------------------------------- */
.section-gallery {
  padding: 100px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

/* Main Featured Video Card */
.gallery-featured-video {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-pink);
  background-color: var(--text-dark);
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-preview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.gallery-featured-video:hover .video-cover-img {
  transform: scale(1.02);
}

.video-overlay-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 53, 0.9) 0%, rgba(44, 62, 53, 0.25) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 3;
}

.video-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-pink-light);
  background-color: var(--primary-pink);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(212, 140, 147, 0.2);
}

.video-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.video-description {
  font-size: 0.88rem;
  color: #C1D4CB;
  max-width: 540px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Large Pulsing Play Button */
.btn-play-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition: var(--transition-smooth);
}

.btn-play-large::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--white);
  animation: playPulse 2s infinite;
  z-index: -1;
}

.play-svg-large {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.btn-play-large:hover {
  background-color: var(--primary-pink);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Timeline mockup for Video style */
.video-timeline-mockup {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background-color: rgba(44, 62, 53, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  z-index: 4;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-featured-video:hover .video-timeline-mockup {
  transform: translateY(0);
}

.timeline-play-pause {
  color: var(--white);
  display: flex;
  align-items: center;
}

.timeline-track {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.timeline-progress {
  height: 100%;
  background-color: var(--primary-pink);
  border-radius: 2px;
}

.timeline-time {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.8);
}

/* Supporting Images Row (stacked horizontally below) */
.gallery-supporting-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.supporting-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-pink);
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.supporting-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-pink);
}

.supporting-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.supporting-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.supporting-card:hover .supporting-img {
  transform: scale(1.05);
}

.supporting-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 53, 0.85) 0%, rgba(44, 62, 53, 0.1) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  opacity: 0;
  transition: var(--transition-fast);
}

.supporting-card:hover .supporting-hover-overlay {
  opacity: 1;
}

.supporting-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-green);
  margin-bottom: 2px;
  transform: translateY(5px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.supporting-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.supporting-card:hover .supporting-card-tag,
.supporting-card:hover .supporting-card-title {
  transform: translateY(0);
}


/* ---------------------------------- */
/* 13. RESPONSIVE BREAKPOINTS         */
/* ---------------------------------- */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .truth-grid {
    gap: 24px;
  }
  .solution-grid {
    gap: 40px;
  }
  .benefits-grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  /* Header adjustments */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-cream);
    box-shadow: -10px 0 30px rgba(44, 62, 53, 0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    z-index: 100;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu.active ~ .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-menu.active ~ .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-menu.active ~ .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-right: 40px;
  }
  
  .lang-toggle-btn {
    margin-right: 12px;
    padding: 4px 6px;
  }

  /* Two Column layout resets */
  .hero-grid,
  .truth-grid,
  .solution-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1; /* visual on top for mobile */
  }

  .solution-visual {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 24px;
  }

  .ingredients-list-grid {
    grid-template-columns: 1fr;
  }

  .gallery-supporting-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .truth-card {
    padding: 24px;
  }

  .truth-visual {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .chart-donut-container {
    margin: 0 auto;
  }

  .badge-gel {
    left: -2%;
  }
  
  .badge-lotus {
    right: -2%;
  }

  .form-card {
    padding: 24px;
  }

  .modal-content {
    padding: 32px 20px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-supporting-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .video-overlay-details {
    padding: 24px 20px;
  }
  
  .video-title {
    margin-bottom: 4px;
  }
  
  .video-description {
    display: none;
  }
  
  .btn-play-large {
    width: 60px;
    height: 60px;
  }
  
  .play-svg-large {
    width: 20px;
    height: 20px;
  }
}
