/* ============================================
   LB YOGHURT — STYLE.CSS
   Brand Colors:
   - Green Principal: #3AAA35
   - Ambre Doré: #F9B233
   - Bleu Profond: #1A365D
   - Blanc Pur: #FFFFFF
   - Brun Naturel: #CA9E67
   - Rose Fraise: #E8587A
   - Gris Fond: #F0F2F5
   Fonts: Poppins, Nunito Sans, Playfair Display
============================================ */

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

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

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ----------------------------------------
   UTILITY: CONTAINER
---------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------
   LOADER
---------------------------------------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.loader__bar {
  width: 160px;
  height: 3px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #3AAA35, #5ec44a);
  border-radius: 3px;
  animation: loaderFill 1.2s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ----------------------------------------
   ANIMATIONS — CSS-BASED (FIABLE)
   Utilise IntersectionObserver via JS.
   Par défaut tout est VISIBLE (fallback).
   Le JS ajoute .anim-ready au body,
   puis .anim-visible sur chaque élément.
---------------------------------------- */

/* État initial : caché SEULEMENT si JS fonctionne */
.anim-ready .anim-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* État animé : visible */
.anim-ready .anim-reveal.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais échelonnés pour les grilles */
.anim-ready .products__grid .anim-reveal:nth-child(2) { transition-delay: 0.1s; }
.anim-ready .products__grid .anim-reveal:nth-child(3) { transition-delay: 0.2s; }
.anim-ready .products__grid .anim-reveal:nth-child(4) { transition-delay: 0.3s; }

.anim-ready .why__grid .anim-reveal:nth-child(2) { transition-delay: 0.1s; }
.anim-ready .why__grid .anim-reveal:nth-child(3) { transition-delay: 0.2s; }
.anim-ready .why__grid .anim-reveal:nth-child(4) { transition-delay: 0.3s; }

.anim-ready .contact__grid .anim-reveal:nth-child(2) { transition-delay: 0.1s; }
.anim-ready .contact__grid .anim-reveal:nth-child(3) { transition-delay: 0.15s; }
.anim-ready .contact__grid .anim-reveal:nth-child(4) { transition-delay: 0.2s; }

/* ----------------------------------------
   NAVIGATION
---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

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

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav.is-scrolled .nav__logo {
  height: 40px;
}

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

.nav__link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3AAA35;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav.is-scrolled .nav__link {
  color: #1A365D;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #3AAA35;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: #2e8e2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(58, 170, 53, 0.3);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav.is-scrolled .nav__burger span {
  background: #1A365D;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: #3AAA35;
  color: #fff;
}

.btn--primary:hover {
  background: #2e8e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 170, 53, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: #fff;
  color: #1A365D;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: #1A365D;
}

.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ----------------------------------------
   SECTION HEADER (reusable)
---------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header__label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3AAA35;
  margin-bottom: 12px;
}

.section-header__label--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1A365D;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header__text {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

/* ----------------------------------------
   HERO SECTION
---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.75) 0%,
    rgba(26, 54, 93, 0.45) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
  margin: 0 auto 0 calc((100% - 1200px) / 2 + 24px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #3AAA35;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: #5ec44a;
}

.hero__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ----------------------------------------
   PRODUCTS SECTION
---------------------------------------- */
.products {
  padding: 120px 0;
  background: #fff;
}

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

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.product-card__image {
  background: var(--accent-light, #f5f5f5);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 240px;
}

.product-card__image img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08) rotate(-2deg);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #3AAA35;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.product-card__content {
  padding: 24px;
}

.product-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 8px;
}

.product-card__benefit {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3AAA35;
  transition: gap 0.3s ease, color 0.3s ease;
}

.product-card__cta:hover {
  gap: 12px;
  color: #2e8e2a;
}

/* ----------------------------------------
   WHY SECTION
---------------------------------------- */
.why {
  padding: 120px 0;
  background: #F8FAF8;
}

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

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: #3AAA35;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  background: #eef6ee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
}

.why-card:hover .why-card__icon {
  background: #3AAA35;
}

.why-card:hover .why-card__icon svg {
  stroke: #fff;
}

.why-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 12px;
}

.why-card__text {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ----------------------------------------
   STORY SECTION
---------------------------------------- */
.story {
  padding: 120px 0;
  background: #fff;
}

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

.story__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: #1A365D;
  line-height: 1.2;
  margin-bottom: 8px;
}

.story__divider {
  width: 48px;
  height: 3px;
  background: #3AAA35;
  border-radius: 3px;
  margin: 16px 0 24px;
}

.story__lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #1A365D;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid #3AAA35;
}

.story__text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story__visual {
  position: relative;
}

.story__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.story__image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story__float-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story__float-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #3AAA35;
  line-height: 1;
}

.story__float-label {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ----------------------------------------
   FAMILY SECTION
---------------------------------------- */
.family {
  position: relative;
  padding: 160px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.family__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.family__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 54, 93, 0.88) 0%,
    rgba(26, 54, 93, 0.65) 60%,
    rgba(26, 54, 93, 0.4) 100%
  );
}

.family__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.family__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.family__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.family__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.family__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

/* ----------------------------------------
   QUALITY SECTION
---------------------------------------- */
.quality {
  padding: 120px 0;
  background: #F8FAF8;
}

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

.quality__image {
  border-radius: 20px;
  overflow: hidden;
}

.quality__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.quality__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #1A365D;
  line-height: 1.2;
  margin-bottom: 8px;
}

.quality__divider {
  width: 48px;
  height: 3px;
  background: #3AAA35;
  border-radius: 3px;
  margin: 16px 0 24px;
}

.quality__text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.quality__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.quality__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.quality__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #eef6ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality__feature strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A365D;
  margin-bottom: 2px;
}

.quality__feature p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

/* ----------------------------------------
   PARTNERS SECTION
---------------------------------------- */
.partners {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.partners__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partners__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 54, 93, 0.92) 0%,
    rgba(26, 54, 93, 0.8) 50%,
    rgba(58, 170, 53, 0.6) 100%
  );
}

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

.partners__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.partners__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.partners__advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.partners__advantage {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.partners__advantage:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.partners__advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #5ec44a;
}

.partners__advantage h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

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

/* ----------------------------------------
   CONTACT SECTION
---------------------------------------- */
.contact {
  padding: 120px 0;
  background: #fff;
}

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

.contact-card {
  background: #F8FAF8;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  display: block;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: #3AAA35;
}

.contact-card--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: #fff;
}

.contact-card--wa:hover {
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.contact-card__icon {
  margin-bottom: 16px;
}

.contact-card--wa .contact-card__icon svg {
  fill: #fff;
}

.contact-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 8px;
}

.contact-card--wa .contact-card__title {
  color: #fff;
}

.contact-card__info {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.contact-card--wa .contact-card__info {
  color: rgba(255, 255, 255, 0.85);
}

.contact-card__link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
  background: #0c1f3a;
  color: #fff;
  padding: 80px 0 0;
}

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

.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #3AAA35;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__credit strong {
  color: rgba(255, 255, 255, 0.5);
}

.footer__credit a {
  color: #3AAA35;
  transition: color 0.3s ease;
}

.footer__credit a:hover {
  color: #5ec44a;
}

/* ----------------------------------------
   FLOATING WHATSAPP BUTTON
---------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

.wa-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ----------------------------------------
   RESPONSIVE — TABLET
---------------------------------------- */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story__visual {
    order: -1;
  }

  .quality__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quality__image {
    order: -1;
  }

  .partners__advantages {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ----------------------------------------
   RESPONSIVE — MOBILE
---------------------------------------- */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__links.is-open {
    right: 0;
  }

  .nav__link {
    color: #1A365D;
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .nav__burger {
    display: flex;
  }

  /* Hero */
  .hero__content {
    margin: 0;
    padding: 120px 24px 100px;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  /* Products */
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Why */
  .why__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Story */
  .story__image-wrapper img {
    height: 300px;
  }

  /* Family */
  .family {
    padding: 100px 0;
  }

  .family__tags {
    flex-direction: column;
  }

  /* Partners */
  .partners__advantages {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .footer__desc {
    max-width: 100%;
  }

  .footer__logo {
    margin: 0 auto 12px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Buttons */
  .btn--lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* WhatsApp float */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .section-header__title {
    font-size: 26px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .products,
  .why,
  .story,
  .quality,
  .contact {
    padding: 80px 0;
  }
}
