/* ═══════════════════════════════════════════════════
   WESTAGROGATE — CSS Apple Style
   Vert & Blanc · Minimaliste · Épuré
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Verts */
  --forest:   #1A3A28;
  --fern:     #2D6A4F;
  --moss:     #40916C;
  --sage:     #74C69D;
  --mist:     #F0F7F4;

  /* Neutres Apple */
  --white:    #FFFFFF;
  --gray-1:   #F5F5F7;
  --gray-2:   #E8E8ED;
  --gray-3:   #D2D2D7;
  --gray-4:   #6E6E73;
  --gray-5:   #3A3A3C;
  --ink:      #1D1D1F;

  /* Accent or — utilisé très peu */
  --gold:     #C8920A;
  --honey:    #F0B830;

  /* Alias */
  --cream:    #F5F5F7;
  --ivory:    #FFFFFF;
  --slate:    #3A3A3C;
  --pewter:   #6E6E73;
  --fog:      #AEAEB2;
  --line:     rgba(0,0,0,0.08);

  /* Typographie */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-sans:    'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --f-mono:    'DM Mono', monospace;

  /* Rayons */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 9999px;

  /* Courbes */
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.1);
  --shadow-xl:  0 40px 80px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 32px rgba(26,58,40,0.2);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
::selection { background: var(--forest); color: #fff; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  padding: 10px 20px; background: var(--forest); color: #fff;
  border-radius: var(--r-md); font-weight: 700; font-size: 13px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ════════════════════════════════════
   CURSOR
════════════════════════════════════ */
.cursor {
  width: 6px; height: 6px;
  background: var(--forest); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s var(--spring), height 0.2s var(--spring);
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(26,58,40,0.4); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--spring), height 0.35s var(--spring), border-color 0.3s;
}
.cursor.grow { width: 10px; height: 10px; background: var(--fern); }
.cursor-ring.grow { width: 44px; height: 44px; border-color: var(--forest); opacity: 0.4; }

/* ════════════════════════════════════
   LANGUE
════════════════════════════════════ */
.lang-toggle {
  position: fixed; top: 14px; right: 20px; z-index: 700;
  display: flex;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lang-btn {
  padding: 8px 16px; border: none; background: transparent;
  font-family: var(--f-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-4); cursor: none; transition: all 0.2s;
}
.lang-btn.active { background: var(--forest); color: #fff; }

/* ════════════════════════════════════
   NAVBAR — style Apple translucide
════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  height: 52px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 12px; font-weight: 500; letter-spacing: 0;
  color: var(--gray-5); border-radius: 6px;
  transition: color 0.2s, background 0.2s; text-decoration: none;
}
.nav-links a:hover { color: var(--forest); background: rgba(26,58,40,0.06); }
.nav-links a.active { color: var(--forest); font-weight: 600; }
.nav-cta {
  background: var(--forest) !important; color: #fff !important;
  border-radius: var(--r-pill) !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--fern) !important; }

/* ── LOGO TEXTE HAUT GAUCHE ── */
.site-logo {
  position: fixed; top: 12px; left: 24px; z-index: 700;
  font-family: var(--f-display); font-size: 18px; font-weight: 700;
  color: var(--forest); letter-spacing: -0.02em;
  text-decoration: none; cursor: none; transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.7; }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 5px;
}
.menu-btn span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(30px);
  z-index: 500;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  display: flex;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-sans); font-size: 32px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  opacity: 0; transform: translateY(10px);
  transition: color 0.2s, opacity 0.3s var(--spring), transform 0.3s var(--spring);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.04s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.20s; }
.mobile-menu a:hover { color: var(--forest); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--gray-2); border: none; color: var(--ink);
  font-size: 16px; width: 36px; height: 36px; border-radius: 50%;
  cursor: none; transition: background 0.2s;
}
.mobile-close:hover { background: var(--gray-3); }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-pill); border: none;
  background: var(--forest); color: #fff;
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  cursor: none; transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--fern); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,58,40,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(26,58,40,0.3); color: var(--forest);
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  cursor: none; transition: all 0.25s var(--ease); background: transparent;
}
.btn-outline:hover { border-color: var(--forest); background: var(--mist); transform: translateY(-2px); }

/* ════════════════════════════════════
   SECTIONS PARTAGÉES
════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--forest); }

.section-h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 24px;
}
.section-h2 em { font-style: italic; color: var(--forest); font-weight: 400; }

.section-text { font-size: 17px; color: var(--gray-4); line-height: 1.75; margin-bottom: 16px; max-width: 520px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--spring), transform 0.7s var(--spring); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════
   HERO — style Apple grand et aéré
════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--gray-1);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--forest); margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--forest); }
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  color: var(--ink); margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-h1 em { font-style: italic; color: var(--forest); font-weight: 400; }
.hero-h1 .hero-line-3 { font-weight: 400; color: var(--gray-4); }
.hero-sub {
  font-size: 18px; color: var(--gray-4); line-height: 1.75;
  max-width: 440px; margin-bottom: 36px;
  animation: fadeUp 0.8s 0.32s both;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.8s 0.44s both; }
.hero-stats {
  display: flex; gap: 0;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--gray-2);
  animation: fadeUp 0.8s 0.56s both;
}
.hero-stat { padding: 0 36px 0 0; margin-right: 36px; border-right: 1px solid var(--gray-2); }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hs-num { font-family: var(--f-display); font-size: 38px; font-weight: 700; color: var(--forest); line-height: 1; margin-bottom: 6px; }
.hs-label { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-4); }

.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.9s 0.24s both;
}
.hero-slider {
  width: min(440px, 100%); aspect-ratio: 3/4;
  position: relative; border-radius: 24px;
  overflow: hidden; background: var(--gray-2);
  box-shadow: var(--shadow-xl);
}
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transform: scale(1.03);
  transition: opacity 1.2s var(--ease), transform 1.6s var(--spring);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; gap: 6px;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none;
  transition: all 0.3s; cursor: none; padding: 0;
}
.slider-dot.active { background: #fff; width: 22px; border-radius: 3px; }


/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s 0.8s both;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-4);
}
.scroll-arrow {
  width: 20px; height: 32px; border: 1.5px solid var(--gray-3);
  border-radius: 10px; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 4px;
}
.scroll-arrow::after {
  content: '';
  width: 3px; height: 6px; background: var(--forest);
  border-radius: 2px;
  animation: scrollDown 1.6s var(--ease) infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  81%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* ════════════════════════════════════
   KEY FIGURES
════════════════════════════════════ */
.key-figures {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  background: var(--forest);
  padding: 48px 80px;
}
.kf-sep { background: rgba(255,255,255,0.12); }
.kf-item { display: flex; flex-direction: column; align-items: center; padding: 0 24px; text-align: center; }
.kf-num-wrap { display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px; }
.kf-num { font-family: var(--f-display); font-size: clamp(32px, 4vw, 54px); font-weight: 700; line-height: 1; color: #fff; }
.kf-plus { font-family: var(--f-display); font-size: clamp(18px, 2.5vw, 28px); font-weight: 400; color: var(--sage); line-height: 1; }
.kf-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about {
  padding: 100px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  background: var(--white);
}
.about-card {
  width: 100%; aspect-ratio: 16/10;
  background: var(--gray-1);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card::before { display: none; }
.about-card-icon { position: relative; z-index: 1; width: 120px; height: 120px; opacity: 0.85; }
.about-visual { position: relative; }
.about-badge { display: none; }

/* ── ABOUT SLIDER ── */
.about-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.about-slide.active { opacity: 1; }
.about-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; gap: 6px;
}
.about-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none;
  transition: all 0.3s; cursor: pointer; padding: 0;
}
.about-dot.active { background: #fff; width: 20px; border-radius: 3px; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.value-item {
  background: var(--gray-1); border-radius: var(--r-md); padding: 18px;
  border: 1px solid var(--gray-2);
  display: flex; gap: 12px; align-items: flex-start;
  transition: all 0.25s var(--ease);
}
.value-item:hover { background: var(--mist); border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.vi-icon { width: 32px; height: 32px; flex-shrink: 0; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.vi-icon svg { width: 16px; height: 16px; color: var(--forest); }
.vi-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.vi-desc { font-size: 11px; color: var(--gray-4); line-height: 1.5; }

/* ════════════════════════════════════
   PRODUCTS
════════════════════════════════════ */
.products { padding: 100px 80px; background: var(--ink); position: relative; overflow: hidden; }
.products::before { display: none; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.products-header .section-tag { color: var(--sage); }
.products-header .section-tag::before { background: var(--sage); }
.products-header .section-h2 { color: #fff; margin-bottom: 0; }
.products-header .section-h2 em { color: var(--sage); }
.view-all-link { font-size: 13px; font-weight: 600; color: var(--sage); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.view-all-link:hover { gap: 12px; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  transition: all 0.35s var(--spring); cursor: none;
  display: flex; flex-direction: column;
}
.product-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(116,198,157,0.3); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.product-icon { height: 200px; overflow: hidden; position: relative; }
.product-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--spring); }
.product-card:hover .product-icon img { transform: scale(1.05); }
.product-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); pointer-events: none; transition: background 0.3s var(--ease); }
.product-card:hover .product-icon::after { background: linear-gradient(to top, rgba(26,58,40,0.7) 0%, rgba(26,58,40,0.15) 60%); }
.product-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-family: var(--f-display); font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.product-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.product-card ul { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }
.product-card li { padding: 6px 0; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.product-card li:last-child { border-bottom: none; }
.product-card li::before { content: ''; width: 12px; height: 1px; background: var(--sage); flex-shrink: 0; }

/* ════════════════════════════════════
   WHY
════════════════════════════════════ */
.why { padding: 100px 80px; background: var(--gray-1); }
.why-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.why-header .section-tag { justify-content: center; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.why-card {
  padding: 28px 22px; background: var(--white);
  border: 1px solid var(--gray-2); border-radius: 20px;
  position: relative; overflow: hidden; transition: all 0.3s var(--spring);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-3); }
.why-num { font-family: var(--f-mono); font-size: 11px; font-weight: 500; color: var(--forest); letter-spacing: 1.5px; margin-bottom: 14px; display: block; opacity: 0.6; }
.why-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--mist); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon svg { width: 20px; height: 20px; color: var(--forest); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.why-card p { font-size: 13px; color: var(--gray-4); line-height: 1.7; }

/* ════════════════════════════════════
   PROCESSUS
════════════════════════════════════ */
.process {
  padding: 100px 80px;
  background: var(--white);
  text-align: center;
}
.process .section-tag { justify-content: center; }
.process .section-h2 { color: var(--ink); }
.process .section-h2 em { color: var(--forest); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: start;
  gap: 0;
  margin: 56px 0 48px;
}

.process-step {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: left;
  transition: all 0.3s var(--spring);
}
.process-step:hover {
  background: var(--mist);
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  color: var(--forest); letter-spacing: 2px; margin-bottom: 14px; display: block; opacity: 0.7;
}
.process-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.process-icon svg { width: 20px; height: 20px; color: var(--forest); }
.process-step h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-4); line-height: 1.7; }

.process-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 56px;
}
.process-arrow svg { width: 18px; height: 18px; color: var(--forest); opacity: 0.6; }
.process-cta { display: flex; justify-content: center; }

/* ════════════════════════════════════
   COMMITMENT
════════════════════════════════════ */
.commitment { padding: 100px 80px; text-align: center; background: var(--forest); }
.commitment .section-tag { justify-content: center; color: var(--sage); }
.commitment .section-tag::before { background: var(--sage); }
.commitment .section-h2 { color: #fff; }
.commitment .section-h2 em { color: var(--sage); }
.commitment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.commitment-card {
  padding: 36px 28px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; transition: all 0.3s var(--spring);
}
.commitment-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(116,198,157,0.3); transform: translateY(-4px); }
.commitment-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.commitment-icon svg { width: 24px; height: 24px; color: var(--sage); }
.commitment-card h3 { font-family: var(--f-display); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.commitment-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ════════════════════════════════════
   MARKETS
════════════════════════════════════ */
.markets { padding: 100px 80px; background: var(--gray-1); text-align: center; }
.markets .section-tag { justify-content: center; }
.markets .section-h2 { color: var(--ink); }
.markets .section-h2 em { color: var(--forest); }
.markets-text { color: var(--gray-4); max-width: 520px; margin: 0 auto 48px; }
.markets-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.market-card {
  padding: 28px 20px; text-align: left;
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: 20px; transition: all 0.3s var(--spring);
}
.market-card:hover { border-color: var(--forest); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.market-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--mist); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.market-icon svg { width: 20px; height: 20px; color: var(--forest); }
.market-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.market-card p { font-size: 13px; color: var(--gray-4); line-height: 1.7; }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact { padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; background: var(--white); }
.contact-info { position: sticky; top: 72px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--gray-1); border: 1px solid var(--gray-2); border-radius: var(--r-md); transition: border-color 0.2s; }
.contact-item:hover { border-color: var(--forest); }
.contact-item-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--mist); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 16px; height: 16px; color: var(--forest); }
.contact-item-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-4); margin-bottom: 2px; }
.contact-item-value { font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; }

.trust-box { display: none; }

.contact-form {
  padding: 36px; background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 24px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: 12px; font-family: var(--f-sans); font-size: 14px; color: var(--ink);
  outline: none; appearance: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--fog); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,58,40,0.08);
}
.contact-form textarea { resize: none; height: 110px; }
.contact-form button {
  width: 100%; padding: 15px;
  background: var(--forest); color: #fff;
  font-family: var(--f-sans); font-size: 14px; font-weight: 600;
  border: none; border-radius: 12px; cursor: none;
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-form button:hover { background: var(--fern); transform: translateY(-1px); box-shadow: var(--shadow-green); }
.contact-form button:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

/* ── CUSTOM SELECT ── */
.custom-select { position: relative; width: 100%; }
.cs-trigger {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: 12px; font-family: var(--f-sans); font-size: 14px; color: var(--gray-4);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
  user-select: none;
}
.cs-trigger:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(26,58,40,0.08); }
.cs-trigger.open { border-color: var(--forest); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.cs-trigger svg { flex-shrink: 0; color: var(--gray-4); transition: transform 0.2s; }
.cs-trigger.open svg { transform: rotate(180deg); color: var(--forest); }
.cs-trigger.selected { color: var(--ink); }
.cs-options {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
  background: var(--white); border: 1px solid var(--forest);
  border-top: none; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
  list-style: none; margin: 0; padding: 4px 0;
  box-shadow: var(--shadow-md); display: none;
}
.cs-options.open { display: block; }
.cs-option { padding: 11px 16px; font-family: var(--f-sans); font-size: 14px; color: var(--slate); cursor: pointer; transition: background 0.15s; }
.cs-option:hover { background: var(--mist); color: var(--forest); }
.cs-option.selected { color: var(--forest); font-weight: 600; background: var(--mist); }
.custom-select.invalid .cs-trigger { border-color: #D32F2F; box-shadow: 0 0 0 3px rgba(211,47,47,0.08); }
.custom-select.valid .cs-trigger { border-color: var(--moss); }

.contact-form input.valid,
.contact-form textarea.valid { border-color: var(--moss); }
.contact-form input.invalid,
.contact-form textarea.invalid { border-color: #D32F2F; }
.form-global-error { padding: 12px 16px; background: rgba(211,47,47,0.06); border: 1px solid rgba(211,47,47,0.2); border-radius: 10px; font-size: 13px; color: #D32F2F; font-weight: 500; display: none; }
.form-global-error.show { display: block; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--ink); padding: 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--forest), transparent); }

/* TOP BAR */
.footer-top-bar {
  background: var(--forest);
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top-bar-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.footer-top-bar-text strong { display: block; font-size: 15px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-pill);
  background: #fff; color: var(--forest);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s var(--ease); white-space: nowrap; flex-shrink: 0;
}
.footer-cta:hover { background: var(--gray-1); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* MAIN */
.footer-main {
  padding: 56px 80px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name { font-family: var(--f-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 24px; max-width: 260px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-mini a { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 10px; transition: color 0.2s; text-decoration: none; }
.footer-contact-mini a:hover { color: var(--sage); }
.footer-contact-mini svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sage); opacity: 0.7; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li span { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: ''; width: 0; height: 1px; background: var(--sage); transition: width 0.2s; flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--sage); }
.footer-col ul li a:hover::before { width: 8px; }

/* BOTTOM */
.footer-bottom { padding: 18px 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all 0.2s; cursor: none; text-decoration: none; }
.footer-social-btn svg { width: 14px; height: 14px; }
.footer-social-btn:hover { background: var(--forest); border-color: var(--forest); color: #fff; transform: translateY(-2px); }

/* ════════════════════════════════════
   WHATSAPP + BACK TO TOP
════════════════════════════════════ */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 9000; display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: var(--r-pill); background: var(--forest); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; box-shadow: var(--shadow-green); transition: all 0.3s var(--spring); border: none; text-decoration: none; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26,58,40,0.4); background: var(--fern); }
.whatsapp-icon { width: 18px; height: 18px; flex-shrink: 0; }

.back-to-top { position: fixed; right: 24px; bottom: 88px; z-index: 8000; width: 40px; height: 40px; background: var(--white); color: var(--forest); border: 1px solid var(--gray-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: none; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(10px); transition: all 0.3s var(--spring); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero, .about, .contact { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 100px 48px 60px; }
  .hero::before { display: none; }
  .hero-right { justify-content: center; }
  .about { padding: 80px 48px; }
  .about-visual { display: block; }
  .products, .why, .commitment, .markets { padding: 80px 48px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .contact { padding: 80px 48px; grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .key-figures { padding: 40px 48px; }
  .footer-top-bar { padding: 24px 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 48px 0; }
  .footer-bottom { padding: 20px 48px; }
  .nav-links li:not(:last-child) a { display: none; }
  .menu-btn { display: flex; }
  .process { padding: 80px 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-arrow { display: none; }
}
@media (max-width: 768px) {
  .key-figures { grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 40px 24px; }
  .kf-sep { display: none; }
}
@media (max-width: 680px) {
  .site-logo { top: 12px; left: 14px; font-size: 12px; max-width: none; overflow: visible; white-space: nowrap; }
  .navbar { padding: 0 14px; height: 48px; }
  .nav-links li:last-child a { display: none; }
  .lang-toggle { top: 12px; right: 12px; }
  .lang-btn { padding: 5px 9px; font-size: 9px; }

  .hero { padding: 90px 20px 50px; }
  .hero-h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-2); }
  .hero-stat { border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; width: 100% !important; }
  .hs-num { font-size: 32px; }

  .about, .products, .why, .commitment, .markets, .contact { padding-top: 64px; padding-bottom: 64px; padding-left: 20px; padding-right: 20px; }
  .certifications { padding: 64px 20px; }
  .process { padding: 64px 20px; }
  .products-grid, .why-grid, .commitment-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }

  .footer-top-bar { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 0; }
  .footer-bottom { padding: 16px 20px; }

  .certs-grid { grid-template-columns: 1fr; }
  .certs-footer { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 16px; }
  .cs-num { font-size: 28px; }

  .whatsapp-float { right: 12px; bottom: 12px; padding: 10px 14px; font-size: 11px; }
  .back-to-top { right: 12px; bottom: 72px; width: 36px; height: 36px; }
  .key-figures { padding: 32px 20px; }
  .scroll-indicator { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 420px) {
  .markets-grid { grid-template-columns: 1fr; }
  .hero-stat { width: 100%; }
  .hero-h1 { font-size: clamp(28px, 8vw, 40px); }
  .site-logo { font-size: 13px; max-width: 80px; }
  .scroll-indicator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}


/* ── SPINNER FORMULAIRE ── */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.spinner.active { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════
   PRODUCT SPECS & TAGS
════════════════════════════════════ */
.product-specs {
  display: flex; flex-direction: column;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden;
}
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; flex-shrink: 0; }
.spec-value { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.7); text-align: right; line-height: 1.5; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.ptag {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(116,198,157,0.12);
  color: var(--sage);
  border: 1px solid rgba(116,198,157,0.2);
}

/* ════════════════════════════════════
   CERTIFICATIONS
════════════════════════════════════ */
.certifications {
  padding: 100px 80px; background: var(--gray-1);
  text-align: center; position: relative; overflow: hidden;
}
.certifications::before { display: none; }
.certs-intro { margin: 0 auto 48px; text-align: center; color: var(--gray-4); }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 48px; }
.cert-card {
  padding: 28px 22px;
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: 20px; text-align: left;
  transition: all 0.3s var(--spring); position: relative; overflow: hidden;
}
.cert-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--forest), var(--moss)); opacity: 0; transition: opacity 0.3s; }
.cert-card:hover::after { opacity: 1; }
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-3); }
.cert-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--mist); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.cert-name { font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.cert-desc { font-size: 12px; color: var(--gray-4); line-height: 1.6; }
.certs-footer {
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  background: var(--forest); border-radius: 20px;
  padding: 36px 48px;
}
.certs-sep { background: rgba(255,255,255,0.1); }
.certs-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 20px; text-align: center; }
.cs-num { font-family: var(--f-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; line-height: 1; }
.cs-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.5; }

@media (max-width: 1100px) {
  .certifications { padding: 80px 48px; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .certs-footer { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px; }
  .certs-sep { display: none; }
}
@media (max-width: 680px) {
  .certifications { padding: 64px 20px; }
  .certs-grid { grid-template-columns: 1fr; }
  .certs-footer { grid-template-columns: 1fr 1fr; padding: 20px 16px; }
}

/* ════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 8500;
  max-width: 420px; width: calc(100% - 48px);
  background: var(--ink);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { display: flex; flex-direction: column; gap: 16px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 6px; }
.cookie-link { font-size: 12px; color: var(--sage); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-refuse {
  flex: 1; padding: 9px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.cookie-refuse:hover { background: rgba(255,255,255,0.14); }
.cookie-accept {
  flex: 1; padding: 9px 16px; border-radius: 8px;
  background: var(--forest); border: none;
  color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.cookie-accept:hover { background: var(--fern); }

@media (max-width: 480px) {
  .cookie-banner { left: 12px; bottom: 12px; width: calc(100% - 24px); }
}

/* ── FOOTER LEGAL INFO ── */
.footer-legal-info {
  display: flex; flex-direction: column; gap: 3px;
  margin-bottom: 16px;
}
.footer-legal-info span {
  font-size: 11px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq { padding: 100px 80px; background: var(--white); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq .section-tag { justify-content: flex-start; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; border-top: 1px solid var(--gray-2); }

.faq-item { border-bottom: 1px solid var(--gray-2); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--f-sans); font-size: 16px; font-weight: 600;
  color: var(--ink); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--forest); }
.faq-q[aria-expanded="true"] { color: var(--forest); }

.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--gray-4);
  transition: transform 0.3s var(--spring);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--forest); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--spring), padding 0.3s;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding-bottom: 20px;
  font-size: 15px; color: var(--gray-4); line-height: 1.75;
}

@media (max-width: 680px) {
  .faq { padding: 64px 20px; }
  .faq-q { font-size: 14px; }
}