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

/* ============================================================
   EVAMED — CHARTE GRAPHIQUE
   Santé & Bien-être Naturels · Tunisie
   Senior UI/UX Design System
   ============================================================ */
:root {
  /* — Palette Verts Méditerranéens — */
  --forest:     #1C4A2E;
  --olive:      #2E6644;
  --sage:       #4A8C63;
  --leaf:       #74B990;
  --mint:       #B2D9C2;

  /* — Ivoires & Neutres Chauds — */
  --ivory:      #FAF7F0;
  --cream:      #F3ECE0;
  --sand:       #E4D9C8;
  --linen:      #D0C4B0;

  /* — Accents Dorés — */
  --terracotta: #C9A020;
  --copper:     #D4AA50;
  --gold:       #B8892A;
  --gold-light: #D4AA50;

  /* — Texte — */
  --text-deep:  #162518;
  --text-mid:   #3A5040;
  --text-soft:  #6A8070;
  --text-faint: #9AB0A0;

  /* — Aliases (compatibilité structure HTML) — */
  --white:      #FFFFFF;
  --off-white:  var(--ivory);
  --blue-950:   var(--forest);
  --blue-800:   var(--olive);
  --blue-600:   var(--sage);
  --teal-500:   var(--sage);
  --teal-600:   var(--olive);
  --gray-100:   var(--cream);
  --gray-300:   var(--sand);
  --text-dark:  var(--text-deep);
  --text-muted: var(--text-soft);

  /* — Typographie — */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font:         'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* — Rayons organiques — */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  /* — Ombres chaudes (teinte verte, pas grise) — */
  --shadow-sm:  0 4px 20px rgba(28,74,46,0.08);
  --shadow-md:  0 12px 44px rgba(28,74,46,0.14);
  --shadow-lg:  0 28px 72px rgba(28,74,46,0.20);
  --shadow-teal:0 10px 36px rgba(74,140,99,0.32);
  --shadow-gold:0 8px 24px rgba(184,137,42,0.28);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text-mid);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity .7s, visibility .7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-icon {
  width: 64px; height: 64px;
  background: linear-gradient(145deg, var(--sage), var(--forest));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  animation: gentlePulse 1.8s infinite;
  box-shadow: var(--shadow-teal);
}
.preloader-brand {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--forest);
}
.preloader-brand span { color: var(--terracotta); font-style: italic; }
.preloader-bar {
  width: 200px; height: 3px;
  background: var(--sand);
  border-radius: 12px; overflow: hidden;
}
.preloader-bar::after {
  content: ''; display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  animation: loading 1.4s ease infinite;
}
@keyframes gentlePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .88; transform: scale(.95); }
}
@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, var(--forest) 0%, var(--olive) 65%, #2A5C3C 100%);
  height: 36px; overflow: hidden;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(116,185,144,.35);
}
.ticker-inner {
  display: flex;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 40px;
  font-size: 11.5px; font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: 1.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.ticker-item i { color: var(--gold-light); font-size: 10px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .45s cubic-bezier(.22,1,.36,1);
  background: rgba(22,37,24,.35);
  backdrop-filter: blur(12px);
}
@media(max-width:1024px) { .navbar { padding: 14px 24px; } }

.navbar.scrolled {
  background: rgba(250,247,240,.97);
  backdrop-filter: blur(24px);
  padding: 12px 64px;
  box-shadow: var(--shadow-sm);
  top: 0;
  border-bottom: 1px solid var(--sand);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; flex-shrink: 0; transition: .4s;
}
.navbar.scrolled .nav-logo-icon {
  background: linear-gradient(145deg, var(--sage), var(--forest));
  border-color: transparent;
  box-shadow: var(--shadow-teal);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; font-style: italic;
  color: white; letter-spacing: .5px; line-height: 1; transition: .4s;
}
.nav-logo-text em { color: var(--gold-light); font-style: normal; }
.navbar.scrolled .nav-logo-text { color: var(--forest); }
.navbar.scrolled .nav-logo-text em { color: var(--terracotta); }
.nav-logo-sub {
  font-size: 8.5px; color: rgba(255,255,255,.55);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-top: 3px; display: block; transition: .4s;
}
.navbar.scrolled .nav-logo-sub { color: var(--text-soft); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.menu-close-li { display: none; }

@media(max-width:1024px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh;
    background: linear-gradient(160deg, var(--forest) 0%, var(--olive) 100%);
    justify-content: flex-start; align-items: stretch; gap: 0;
    padding-top: 72px; overflow-y: auto; z-index: 1100; list-style: none;
  }
  .nav-links.open::before { display: none; }
  .nav-links.open li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links.open li.menu-close-li {
    display: flex; justify-content: flex-end;
    padding: 20px 24px; border-bottom: none;
    position: absolute; top: 0; right: 0; z-index: 10;
  }
  .menu-close-btn {
    background: none; border: none; color: white;
    font-size: 22px; cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    opacity: .7; transition: opacity .2s;
  }
  .menu-close-btn:hover { opacity: 1; }
  .nav-links.open a {
    font-family: var(--font-display);
    font-size: clamp(20px,5vw,26px); font-weight: 700;
    letter-spacing: 1px; color: white; width: 100%;
    text-align: center; padding: 24px 20px;
    display: flex; justify-content: center;
    transition: opacity .2s;
  }
  .nav-links.open a.nav-cta-link { color: var(--copper); font-weight: 800; }
  .nav-links.open a:hover { opacity: .65; }
  .nav-links.open a::after { display: none; }
  .navbar.scrolled .nav-links.open a { color: white; }
  body.menu-open { overflow: hidden; height: 100vh; }
}

.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
  transition: .3s; position: relative; padding-bottom: 4px;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transition: width .35s; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta-link {
  padding: 10px 26px !important;
  background: var(--gold-light) !important;
  color: var(--forest) !important;
  border-radius: 40px; font-weight: 800 !important;
  letter-spacing: .2px;
}
.nav-cta-link:hover {
  background: var(--terracotta) !important;
  color: var(--forest) !important;
}
.nav-cta-link::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 8px; z-index: 1002;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: .3s;
}
.navbar.scrolled .hamburger span { background: var(--forest); }
@media(max-width:1024px) { .hamburger { display: flex; } }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 660px;
  overflow: hidden; padding-top: 36px;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s; }
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1); transition: transform 8s;
}
.slide.active .slide-bg { transform: scale(1.06); }

/* Gradient ivoire-végétal — plus chaleureux que noir */
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(22,37,24,.88) 0%,
    rgba(28,74,46,.60) 45%,
    rgba(46,102,68,.18) 75%,
    rgba(46,102,68,.05) 100%
  );
  z-index: 1;
}
.slide-overlay::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 50%; height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
}

.slide-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 100px; max-width: 1300px; margin: 0 auto;
}
@media(max-width:768px) { .slide-content { padding: 0 28px; } }

.slide-tag {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px; opacity: 0; transform: translateY(30px);
}
.slide.active .slide-tag { animation: fadeUp .7s .3s forwards; }
.slide-tag-line { width: 36px; height: 2px; background: var(--terracotta); }
.slide-tag-text {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(32px,7vw,68px);
  font-weight: 800; color: white; line-height: 1.08;
  margin-bottom: 22px; opacity: 0; transform: translateY(44px);
  max-width: 860px; letter-spacing: -.5px;
}
.slide.active .slide-title { animation: fadeUp .85s .5s forwards; }
.slide-title .accent {
  color: var(--gold-light);
  font-style: italic;
}

.slide-desc {
  font-size: 16px; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.75;
  margin-bottom: 32px; opacity: 0; transform: translateY(38px);
}
.slide.active .slide-desc { animation: fadeUp .8s .7s forwards; }
.slide-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(28px);
}
.slide.active .slide-actions { animation: fadeUp .7s .9s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.slider-controls {
  position: absolute; bottom: 32px; left: 64px; right: 64px;
  z-index: 20; display: flex; align-items: center; justify-content: space-between;
}
.slider-progress-bar {
  width: 40px; height: 2px; border-radius: 3px;
  background: rgba(255,255,255,.25); cursor: pointer; overflow: hidden;
}
.slider-arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); color: white;
  cursor: pointer; transition: .35s;
}
.slider-arrow-btn:hover {
  background: var(--terracotta); border-color: var(--terracotta);
}
.slider-count { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); }
.slider-count .now { color: white; font-size: 24px; font-weight: 900; }

/* ============================================================
   FEATURE BAND — from EVAMED design
   ============================================================ */
.band {
  background: var(--forest);
  color: #e8f0ea;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.band-orb {
  position: absolute; top: 50%; left: 80%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(116,185,144,.22), transparent 65%);
  opacity: .5; filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.band-inner {
  position: relative; z-index: 1;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .4s;
  position: relative;
}
.feature:last-child { border-right: 0; }
.feature::before {
  content: ""; position: absolute;
  left: 36px; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width .4s;
}
.feature:hover { background: rgba(255,255,255,.04); }
.feature:hover::before { width: 46px; }
.feature .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(116,185,144,.14);
  color: var(--leaf);
  margin-bottom: 22px; transition: .45s;
}
.feature .ic svg { width: 24px; height: 24px; }
.feature:hover .ic {
  transform: translateY(-4px) rotate(-5deg);
  background: var(--gold-light); color: var(--forest);
}
.feature h4 {
  font-family: var(--font);
  font-size: .88rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.feature p {
  font-size: .875rem;
  color: rgba(232,240,234,.65);
  line-height: 1.72;
}
@media(max-width:900px) {
  .band-grid { grid-template-columns: repeat(2,1fr); }
  .feature { border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .feature:nth-child(even) { border-right: 0; }
}
@media(max-width:560px) {
  .band-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0 !important; }
  .feature { padding: 36px 24px; }
}

/* ============================================================
   SECTIONS — Layout général
   ============================================================ */
section { padding: 80px 64px; }
@media(max-width:1024px) { section { padding: 60px 40px; } }
@media(max-width:640px)  { section { padding: 48px 24px; } }
section#contact { padding-top: 40px; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.section-tag-dot {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 2px;
}
.section-tag-text {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--terracotta);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px,5.5vw,56px);
  font-weight: 800; color: var(--forest);
  line-height: 1.12; margin-bottom: 18px;
}
.section-title .accent-italic { font-style: italic; color: var(--sage); }
.section-subtitle {
  font-size: 16px; color: var(--text-soft);
  max-width: 620px; margin: 0 auto; line-height: 1.75;
}
.section-title span { font-style: italic; color: var(--sage); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 20px;
}
@media(max-width:1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; transition: all .4s cubic-bezier(.22,1,.36,1);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(74,140,99,.12), rgba(28,74,46,.08));
  border: 1.5px solid rgba(74,140,99,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--sage); font-size: 28px;
  transition: .4s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--sage), var(--forest));
  color: white; border-color: transparent;
  box-shadow: var(--shadow-teal);
}
.service-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--forest); margin-bottom: 12px;
}
.service-desc { color: var(--text-soft); font-size: 14px; line-height: 1.7; }

/* ============================================================
   PRODUITS — Catalogue
   ============================================================ */
.prod-section {
  background: var(--ivory);
  padding-top: 0;
  margin-top: -40px;
}
.prod-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap; margin-bottom: 54px;
}
.prod-tagline {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; color: var(--sage);
  margin: 7px 0 10px;
  display: block; width: fit-content;
  padding-bottom: 6px;
  background: linear-gradient(90deg, var(--sage), var(--gold-light));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.prod-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800; color: var(--forest); line-height: 1.1;
  margin-top: 14px;
}

.products-wrapper {
  overflow: hidden;
  width: 100%;
}
.products {
  display: flex;
  flex-direction: row;
  gap: 28px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.prod-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.prod-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 70px;
  justify-content: center;
}
.prod-counter-now {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}
.prod-counter-sep {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-soft);
}
.prod-counter-total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}
.prod-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  background: white;
  color: var(--forest);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
  box-shadow: 0 4px 16px rgba(28,74,46,.10);
}
.prod-arrow:hover:not(:disabled) {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
  transform: scale(1.08);
}
.prod-arrow:disabled { cursor: default; }

.prod-card {
  background: white; border: 1px solid var(--sand);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s;
}
.prod-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(135deg, var(--gold-light), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .45s; pointer-events: none;
}
.prod-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.prod-card:hover::before { opacity: 1; }

.card-media {
  position: relative; height: 248px; overflow: hidden;
  background: linear-gradient(160deg, var(--mint), #9bbfa4);
}
.card-media .media { position: absolute; inset: 0; }
.card-media .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.prod-card:hover .card-media .media img { transform: scale(1.08); }
.card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,36,24,.18));
}

.pill-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(250,247,239,.92); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 700; color: var(--sage);
  padding: 8px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.6);
}

.stars {
  position: absolute; bottom: 14px; right: 16px; z-index: 2;
  display: flex; gap: 2px; color: var(--gold-light);
}
.stars svg { width: 14px; height: 14px; }

.card-body { padding: 28px 28px 32px; }
.card-body .sub {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 700; margin-bottom: 9px;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem; color: var(--forest);
  font-weight: 700; letter-spacing: -.01em; margin-bottom: 0;
}
.card-body p { color: var(--text-soft); font-size: .92rem; margin: 9px 0 20px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-top: 18px; border-top: 1px solid var(--sand);
}
.btn-pdf-card {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  color: #e74c3c;
  background: #fff5f5;
  border: 1.5px solid rgba(231,76,60,.3);
  padding: 10px 16px; border-radius: 50px;
  transition: background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-pdf-card:hover { background: #fee; border-color: #e74c3c; }
.price {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.45rem; color: var(--text-deep);
}
.price s { color: var(--text-soft); font-size: .85rem; opacity: .6; margin-right: 7px; }

.add {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #fff;
  background: var(--forest); padding: 11px 18px;
  border-radius: 50px; transition: .35s; text-decoration: none;
}
.add:hover { background: var(--sage); transform: translateY(-2px); }
.add svg { width: 14px; height: 14px; transition: transform .3s; }
.add:hover svg { transform: translateX(3px); }

/* ============================================================
   ABOUT SPLIT — Signature Section
   ============================================================ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh;
}
@media(max-width:900px) { .split-section { grid-template-columns: 1fr; } }

.split-left {
  background: linear-gradient(150deg, var(--forest) 0%, var(--olive) 100%);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.split-left::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(116,185,144,.08);
  pointer-events: none;
}
.split-left::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(201,160,32,.08);
  pointer-events: none;
}

.split-right {
  background: var(--ivory); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}

.split-left-title {
  font-family: var(--font-display);
  font-size: clamp(30px,3.2vw,50px);
  font-weight: 800; color: white;
  line-height: 1.12; margin-bottom: 22px;
}
.split-left-title span { color: var(--gold-light); font-style: italic; }
.split-left-text {
  color: rgba(255,255,255,.72); font-size: 15.5px; line-height: 1.78; margin-bottom: 28px;
}

.split-right-title {
  font-family: var(--font-display);
  font-size: clamp(30px,3.2vw,50px);
  font-weight: 800; color: var(--forest);
  line-height: 1.12; margin-bottom: 22px;
}
.split-right-title span { color: var(--terracotta); font-style: italic; }

.advantage-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.advantage-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.adv-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(116,185,144,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf); font-size: 20px;
}
.adv-name { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.adv-desc { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.5; }

/* ============================================================
   NOTRE MÉTHODE — Approche Scientifique
   ============================================================ */
.approche-section { background: var(--ivory); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold-light); border-radius: 2px;
}

.approche-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.about-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
  padding-top: 52px;
  overflow: hidden;
}

.approche-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800; color: var(--forest);
  line-height: 1.12; margin: 16px 0 20px;
}
.approche-h2 em { color: var(--sage); font-style: italic; }

.approche-body { font-size: 15.5px; color: var(--text-soft); line-height: 1.78; }

.about-lead {
  font-size: 1.05rem; font-weight: 500;
  color: var(--forest); line-height: 1.8;
  margin-bottom: 18px;
}

.about-quote {
  margin: 22px 0;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(28,74,46,.05), rgba(74,140,99,.07));
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  color: var(--forest); font-weight: 600;
  line-height: 1.65;
}

.about-mission {
  font-size: .93rem; color: var(--text-mid);
  line-height: 1.78; margin-top: 18px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
}

.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 15px; font-size: .97rem; color: var(--text-mid);
}
.checklist .ck {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--leaf));
  color: #fff; display: grid; place-items: center; margin-top: 2px;
}

/* — Circular media component — */
.circle-media {
  position: relative;
  width: min(385px, 86%); aspect-ratio: 1;
  flex-shrink: 0;
}

/* Main circle */
.circle-media .ring {
  position: absolute; inset: 0;
  border-radius: 50%; overflow: hidden; z-index: 2;
  box-shadow:
    0 24px 64px rgba(28,74,46,.22),
    0 4px 20px rgba(28,74,46,.12),
    inset 0 2px 12px rgba(255,255,255,.6);
}
.circle-media .ring img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 32px; transition: transform .6s ease;
}
.circle-media:hover .ring img { transform: scale(1.05); }

/* Inner decorative ring */
.circle-media .frame {
  position: absolute; inset: -16px;
  border-radius: 50%; z-index: 1;
  border: 1.5px solid var(--sage);
  opacity: .35;
}

/* Outer dashed ring */
.circle-media .frame-outer {
  position: absolute; inset: -36px;
  border-radius: 50%; z-index: 1;
  border: 1px dashed rgba(74,140,99,.22);
}

/* Spinning text ring */
.ring-text {
  position: absolute; inset: -66px; z-index: 3;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Glow pulse on hover */
.circle-media:hover .ring {
  box-shadow:
    0 32px 80px rgba(28,74,46,.28),
    0 8px 28px rgba(28,74,46,.18),
    inset 0 2px 12px rgba(255,255,255,.6);
}

/* — Floating stat chips — */
.stat-chip {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(28,74,46,.14), 0 2px 8px rgba(28,74,46,.08);
  min-width: 100px;
}
.stat-chip.c1 { bottom: 6%; left: -8%; }
.stat-chip.c2 { top: 8%;  right: -6%; }

.chip-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 8px; font-size: 11px; color: white;
}
.stat-chip.c1 .chip-icon { background: linear-gradient(135deg, var(--forest), var(--sage)); }
.stat-chip.c2 .chip-icon { background: linear-gradient(135deg, var(--terracotta), var(--gold-light)); }

.stat-chip strong {
  display: block; font-weight: 800;
  font-size: 1.5rem; color: var(--forest); line-height: 1;
  margin-bottom: 3px;
}
.stat-chip small {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-soft);
}

/* — Float animation — */
.float { animation: bob 4s ease-in-out infinite; }
.float.alt { animation-delay: -2s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media(max-width:960px) {
  .approche-grid { grid-template-columns: 1fr; gap: 52px; }
  .circle-media  { width: min(380px, 85%); margin: 0 auto; }
  .stat-chip.c1  { bottom: 2%; left: 2%; }
  .stat-chip.c2  { top: 4%;  right: 2%; }
}
@media(max-width:640px) {
  .circle-media { width: min(310px, 90%); }
}

/* ============================================================
   PROCESS — Timeline
   ============================================================ */
.process-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.process-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px; margin-top: 48px; padding: 0 12px;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 60px; bottom: 60px; left: 50%; width: 1px;
  background: linear-gradient(180deg, var(--sand) 0%, transparent 100%);
  transform: translateX(-50%); z-index: 1;
}

.process-card {
  position: relative; background: white;
  border-radius: var(--radius-xl); padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  z-index: 2; min-height: 220px;
  transition: transform .38s, border-color .38s, box-shadow .38s;
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--mint);
  box-shadow: var(--shadow-md);
}
.process-card:nth-child(odd)  { margin-right: auto; }
.process-card:nth-child(even) { margin-left: auto; }

.process-card::before {
  content: attr(data-step);
  position: absolute; top: 24px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow-gold); z-index: 3;
  border: 2px solid white;
}
.process-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(74,140,99,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-size: 22px; margin-bottom: 18px;
}
.process-card-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--forest); margin-bottom: 12px;
}
.process-card-text { font-size: 14px; color: var(--text-soft); line-height: 1.8; }

@media(max-width:900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { left: 24px; top: 80px; bottom: 60px; }
  .process-card { margin: 0; padding-left: 88px; }
  .process-card::before { left: 24px; right: auto; width: 46px; height: 46px; font-size: 13px; }
  .process-card:nth-child(even) { margin-left: 0; }
  .process-card:nth-child(odd)  { margin-right: 0; }
}
@media(max-width:600px) {
  .process-grid { gap: 18px; padding: 0 8px; }
  .process-card { min-height: 190px; padding: 28px 18px; }
  .process-card-title { font-size: 17px; }
  .process-card-text { font-size: 13px; }
}

/* ============================================================
   ÉQUIPE — Team Section
   ============================================================ */
.team-section { background: var(--ivory); }

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

.team-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  position: relative; height: 300px; overflow: hidden;
}
.team-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.team-card:hover .team-photo { transform: scale(1.06); }

.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22,37,24,.72) 100%);
}

.team-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold-light); color: var(--forest);
  font-size: .62rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; padding: 7px 15px; border-radius: 50px;
}

.team-name-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 24px 18px;
}
.team-name-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 4px;
}
.team-name-overlay span {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-light);
}

.team-body { padding: 24px 26px 28px; }
.team-bio {
  font-size: .92rem; color: var(--text-soft);
  line-height: 1.75; margin-bottom: 20px;
}

.team-socials { display: flex; gap: 10px; }
.team-linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--forest); color: white; font-size: 15px;
  text-decoration: none; transition: .3s;
  border: 2px solid transparent;
}
.team-linkedin:hover {
  background: transparent; color: var(--forest);
  border-color: var(--forest);
}

.team-divider {
  width: 36px; height: 2px; margin-bottom: 14px;
  background: linear-gradient(90deg, var(--gold-light), var(--sage));
  border-radius: 2px;
}

@media(max-width:900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo-wrap { height: 260px; }
}

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-section { background: var(--ivory); }

.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--forest) 0%, #0f2318 100%);
  color: #eaf2ec; border-radius: 34px;
  padding: 84px 60px; text-align: center;
  max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(116,185,144,.18);
}
.cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(116,185,144,.35), transparent 60%);
  opacity: .7; filter: blur(60px);
}
.cta-orb.o1 { top: -50%; left: -10%; width: 60%; height: 170%; }
.cta-orb.o2 {
  left: auto; right: -10%; bottom: -50%; top: auto; width: 60%; height: 170%;
  background: radial-gradient(circle, rgba(74,140,99,.32), transparent 60%);
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-inner .eyebrow::before { background: var(--gold-light); }

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin: 18px 0 0;
}
.cta-box h2 em { font-style: italic; color: var(--gold-light); }

.cta-box > .cta-inner > p {
  color: rgba(234,242,236,.72);
  max-width: 500px; margin: 20px auto 34px;
  font-size: 1rem; line-height: 1.7;
}

.signup {
  display: flex; gap: 10px;
  max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: 7px 7px 7px 22px;
}
.signup input {
  flex: 1; background: none; border: 0;
  color: #fff; font-family: var(--font);
  font-size: .92rem; outline: none;
}
.signup input::placeholder { color: rgba(234,242,236,.45); }
.signup .btn-signup {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; border: none; cursor: pointer;
  background: #fff; color: var(--forest);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font); white-space: nowrap;
  transition: background .3s, color .3s;
}
.signup .btn-signup:hover { background: var(--gold-light); color: var(--forest); }

.cta-micro {
  font-size: .74rem; color: rgba(234,242,236,.45); margin-top: 16px;
}

@media(max-width:768px) {
  .cta-box { padding: 56px 28px; border-radius: 24px; }
  .signup { flex-direction: column; border-radius: 20px; padding: 16px; }
  .signup input { text-align: center; }
  .signup .btn-signup { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: white;
  border-radius: 28px;
  padding: 56px 56px 60px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(28,74,46,.08), 0 2px 16px rgba(28,74,46,.05);
  border: 1px solid rgba(201,160,32,.3);
}

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
@media(max-width:900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info-panel { display: flex; flex-direction: column; gap: 22px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 300px; }
.contact-map iframe { width: 100%; height: 300px; border: 0; display: block; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-row-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px;
  box-shadow: var(--shadow-teal);
}
.contact-row-label {
  font-size: 10.5px; font-weight: 700;
  color: var(--terracotta); text-transform: uppercase; letter-spacing: 1.5px;
}
.contact-row-value { font-size: 15px; font-weight: 600; color: var(--forest); margin-top: 2px; }

.contact-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px; box-shadow: none;
  border: 1.5px solid rgba(201,160,32,.52);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media(max-width:520px) { .form-2col { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  font-weight: 700; font-size: 13px; color: var(--text-mid);
  margin-bottom: 8px; display: block; letter-spacing: .2px;
}
.field input,
.field select,
.field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(201,160,32,.52);
  border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: var(--font);
  background: white; color: var(--text-mid);
  transition: .3s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  background: white;
  box-shadow: 0 0 0 4px rgba(74,140,99,.1);
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all .4s; text-decoration: none; border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--sage);
  color: white;
}
.btn-primary:hover {
  background: var(--forest);
}
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
}
.btn-terracotta {
  background: var(--gold-light);
  color: var(--forest);
  font-weight: 800;
}
.btn-terracotta:hover {
  background: var(--terracotta);
}
.intro-tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  color: var(--forest); font-weight: 600;
  border-left: 3px solid var(--gold-light);
  padding-left: 14px; line-height: 1.5;
}

.btn-ghost {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-ghost:hover {
  background: var(--forest); color: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, var(--forest) 0%, #112A1C 100%);
  padding: 56px 64px 28px;
  color: rgba(255,255,255,.5);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--sage), var(--terracotta), var(--gold)) 1;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 36px;
}
@media(max-width:1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }

.footer-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; margin-bottom: 18px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 20px;
  box-shadow: var(--shadow-teal);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  font-style: italic; color: white;
}
.footer-logo-text span { color: var(--gold-light); font-style: normal; }

.footer-col h4 {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2.5px;
}
.footer-col p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,.45); text-decoration: none;
  font-size: 13.5px; transition: .3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul a::before {
  content: ''; width: 0; height: 1px;
  background: var(--terracotta); transition: width .3s;
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col ul a:hover::before { width: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; text-align: center;
  font-size: 12.5px;
}
.footer-divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 12px;
  color: rgba(255,255,255,.2); font-size: 11px; letter-spacing: 4px;
}

/* ============================================================
   SECTION SEPARATORS
   ============================================================ */

/* — Ornamental separator — */
.sep {
  display: flex; align-items: center; gap: 18px;
  padding: 0; background: var(--ivory);
  height: 56px;
}
.band + .sep { height: 130px; }
.sep::before,
.sep::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--mint) 20%,
    var(--sage) 45%,
    var(--forest) 50%,
    var(--sage) 55%,
    var(--mint) 80%,
    transparent 100%
  );
}
.sep-center {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.sep-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); opacity: .45;
}
.sep-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  display: grid; place-items: center;
  color: white; font-size: 13px;
  box-shadow: 0 4px 16px rgba(28,74,46,.28);
}
@media(max-width:640px) { .sep { padding: 0 32px; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: all .95s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 28px rgba(37,211,102,.42);
  transition: all .3s; z-index: 1000; text-decoration: none;
  border: 3px solid rgba(255,255,255,.25);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37,211,102,.58);
}
.whatsapp-btn:active { transform: scale(.95); }

/* ============================================================
   CV MODAL
   ============================================================ */
.btn-cv {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: var(--forest); padding: 9px 20px;
  border-radius: 50px; border: 2px solid var(--forest);
  cursor: pointer; font-family: var(--font); transition: .3s;
}
.btn-cv:hover { background: transparent; color: var(--forest); }
.btn-cv i { font-size: .8rem; }

.cv-modal-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(10,24,14,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cv-modal-overlay.active { opacity: 1; pointer-events: all; }
.cv-modal-box {
  background: #fff; border-radius: 18px;
  max-width: 640px; width: 100%; max-height: 85vh;
  overflow: hidden; position: relative;
  transform: translateY(24px); transition: transform .3s;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  display: flex; flex-direction: column;
}
.cv-modal-scroll {
  overflow-y: auto; flex: 1;
}
.cv-modal-scroll::-webkit-scrollbar { width: 6px; }
.cv-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.cv-modal-scroll::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 99px; }
.cv-modal-scroll::-webkit-scrollbar-thumb:hover { background: var(--forest); }
.cv-modal-overlay.active .cv-modal-box { transform: translateY(0); }
.cv-modal-header {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--sand);
  background: linear-gradient(135deg, var(--forest) 0%, #0f2318 100%);
  border-radius: 18px 18px 0 0;
}
.cv-modal-photo {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(255,255,255,.3); flex-shrink: 0;
}
.cv-modal-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 6px;
}
.cv-modal-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; }
.cv-modal-role { font-size: .82rem; color: rgba(255,255,255,.65); margin: 3px 0 0; }
.cv-modal-body { padding: 28px 36px 36px; display: flex; flex-direction: column; gap: 24px; }
.cv-bio { font-size: .92rem; color: var(--text-soft); line-height: 1.75; text-align: center; font-style: italic; border-bottom: 1px solid var(--sand); padding-bottom: 20px; margin: 0; }
.cv-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cv-pillar { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 14px 8px; background: rgba(116,185,144,.08); border-radius: 10px; }
.cv-pillar i { font-size: 1.2rem; color: var(--forest); }
.cv-pillar strong { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); }
.cv-pillar span { font-size: .75rem; color: var(--text-soft); line-height: 1.4; }
@media(max-width:500px) { .cv-pillars { grid-template-columns: repeat(2,1fr); } }
.cv-section-title {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--forest);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.cv-section-title i { font-size: .85rem; }
.cv-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.cv-list li { font-size: .88rem; color: var(--text-soft); line-height: 1.6; padding-left: 16px; position: relative; }
.cv-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.cv-timeline { display: flex; flex-direction: column; gap: 14px; }
.cv-timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.cv-period {
  font-size: .75rem; font-weight: 700; color: var(--forest);
  background: rgba(116,185,144,.12); padding: 3px 10px;
  border-radius: 50px; white-space: nowrap; flex-shrink: 0;
}
.cv-timeline-item strong { font-size: .88rem; color: var(--text-deep); display: block; }
.cv-company { font-size: .82rem; color: var(--text-soft); }
@media(max-width:600px) {
  .cv-modal-header { padding: 24px 20px; flex-direction: column; text-align: center; }
  .cv-modal-body   { padding: 20px; }
}
@media(max-width:480px) {
  .cv-modal-overlay { padding: 10px; }
  .cv-modal-box     { border-radius: 14px; }
  .cv-modal-header  { padding: 18px 16px; }
  .cv-modal-photo   { width: 64px; height: 64px; }
  .cv-modal-name    { font-size: 1.15rem; }
  .cv-modal-body    { padding: 16px; }
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.btn-details {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--forest);
  background: #fff; padding: 11px 18px;
  border-radius: 50px; border: 1.5px solid var(--forest); cursor: pointer;
  transition: .35s; font-family: var(--font);
}
.btn-details:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-details i { font-size: 14px; transition: transform .3s; }
.btn-details:hover i { transform: translateX(3px); }

/* ── PRODUCT MODAL ──────────────────────────────────────────── */
.prod-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6,15,10,.65);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.prod-modal-overlay.active { opacity: 1; pointer-events: all; }

.prod-modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 820px; width: 100%;
  display: grid; grid-template-columns: 380px 1fr;
  overflow: hidden; position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,.28), 0 8px 24px rgba(0,0,0,.12);
}
.prod-modal-overlay.active .prod-modal-box {
  transform: translateY(0);
  opacity: 1;
}

/* ── Close button ─────────────────────────────────────────── */
.prod-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 20;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 15px; color: #1c4a2e;
  transition: background .2s, transform .25s, box-shadow .2s;
}
.prod-modal-close:hover {
  background: #f0f0f0;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}

/* ── Image panel ──────────────────────────────────────────── */
.prod-modal-img {
  position: relative;
  background: linear-gradient(145deg, #0f2419 0%, #1c4a2e 50%, #2e6644 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 36px 28px;
  overflow: hidden;
  min-height: 420px;
}



/* Category tag */
.pmi-tag-wrap {
  position: absolute; top: 20px; left: 20px;
}
.pmi-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  padding: 5px 14px; border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Product image card */
.pmi-card {
  position: relative; z-index: 2;
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 20px 56px rgba(0,0,0,.30), 0 6px 16px rgba(0,0,0,.14);
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 300px;
  min-height: 270px;
}
.pmi-card img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
}

/* "100% Naturel" badge at bottom */
.pmi-badge {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,160,32,.2);
  border: 1px solid rgba(201,160,32,.4);
  color: #f0d97a;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.pmi-badge i { font-size: 11px; }

/* ── Content panel ────────────────────────────────────────── */
.prod-modal-body {
  padding: 44px 40px 40px;
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}

.prod-modal-sub {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage, #74b990);
  margin: 0;
}

.prod-modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--forest, #1c4a2e);
  line-height: 1.1; margin: 0;
}

.prod-modal-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--forest, #1c4a2e), var(--sage, #74b990));
  border-radius: 3px;
  margin: 0;
}

.prod-modal-desc {
  color: var(--text-soft, #4a6258);
  font-size: .93rem; line-height: 1.78;
  flex: 1; margin: 0;
}

/* Feature pills */
.prod-modal-pills {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px;
  background: #f5f9f6;
  border-radius: 14px;
  border: 1px solid #deeee5;
}
.pmp-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  color: var(--forest, #1c4a2e);
}
.pmp-item i {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #deeee5, #c5e0d0);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #1c4a2e;
  flex-shrink: 0;
}

/* CTA button */
.prod-modal-cta { margin-top: 4px; }
.prod-modal-btn {
  display: inline-flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #1c4a2e 0%, #2e6644 100%);
  color: #fff;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: .04em;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 6px 20px rgba(28,74,46,.3);
  justify-content: center;
}
.prod-modal-btn:hover {
  background: linear-gradient(135deg, #163323 0%, #1c4a2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28,74,46,.42);
}
.prod-modal-btn span { flex: 1; text-align: center; }

/* CV modal close override */
.cv-modal-box .prod-modal-close { background: rgba(255,255,255,.22); color: #fff; box-shadow: none; border: 1.5px solid rgba(255,255,255,.45); }
.cv-modal-box .prod-modal-close:hover { background: rgba(255,255,255,.38); }

@media(max-width:700px) {
  /* Stack image above content */
  .prod-modal-box         { grid-template-columns: 1fr; }
  .prod-modal-img         { min-height: 220px; padding: 28px 24px; }
  .pmi-card               { max-width: 260px; min-height: unset; padding: 20px 18px; border-radius: 20px; }
  .pmi-card img           { max-height: 190px; }
  .prod-modal-body        { padding: 28px 22px; }
  .prod-modal-title       { font-size: 1.7rem; }
  /* Allow vertical scroll when modal taller than viewport */
  .prod-modal-overlay     { align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .prod-modal-box         { margin: 16px auto; }
  /* Commander button full-width for easy tap */
  .prod-modal-body .add   { display: flex; width: 100%; justify-content: center; }
}

@media(max-width:480px) {
  .prod-modal-overlay     { padding: 10px; }
  .prod-modal-box         { margin: 10px auto; border-radius: 16px; }
  .prod-modal-img         { min-height: 180px; padding: 16px; }
  .pmi-card               { max-width: 210px; padding: 16px 14px; border-radius: 16px; }
  .pmi-card img           { max-height: 150px; }
  .prod-modal-body        { padding: 20px 16px 24px; }
  .prod-modal-title       { font-size: 1.45rem; }
}

/* ============================================================
   SOCIAL SIDEBAR
   ============================================================ */
.social-sidebar {
  position: fixed;
  right: 22px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}

.social-pill {
  position: relative;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  animation: socialFadeIn .5s ease both;
}
.social-pill:nth-child(1) { animation-delay: .1s; }
.social-pill:nth-child(2) { animation-delay: .2s; }
.social-pill:nth-child(3) { animation-delay: .3s; }

@keyframes socialFadeIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Tooltip label */
.social-pill::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10,20,14,.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 5px 12px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}
.social-pill:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Ring glow on hover */
.social-pill::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.social-pill:hover::after { opacity: 1; }

.social-pill:hover { transform: scale(1.14) translateY(-2px); }

/* Instagram */
.social-pill.instagram {
  background: radial-gradient(circle at 30% 110%, #f9a825 0%, #e84393 50%, #9c27b0 100%);
  box-shadow: 0 6px 20px rgba(220,39,90,.38);
}
.social-pill.instagram:hover { box-shadow: 0 10px 30px rgba(220,39,90,.58); }

/* Facebook */
.social-pill.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0a5abf 100%);
  box-shadow: 0 6px 20px rgba(24,119,242,.38);
}
.social-pill.facebook:hover { box-shadow: 0 10px 30px rgba(24,119,242,.58); }

/* WhatsApp */
.social-pill.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c50 100%);
  box-shadow: 0 6px 20px rgba(37,211,102,.38);
}
.social-pill.whatsapp:hover { box-shadow: 0 10px 30px rgba(37,211,102,.58); }

@media(max-width:768px) {
  .social-sidebar { right: 12px; bottom: 18px; gap: 10px; }
  .social-pill { width: 44px; height: 44px; font-size: 18px; }
  .social-pill::before, .social-pill::after { display: none; }
}

/* ============================================================
   RESPONSIVE — Comprehensive
   ============================================================ */
@media(max-width:1200px) {
  .hero .slide-content  { padding: 0 80px; }
  .stats-strip          { padding: 0 40px; }
  section               { padding: 60px 40px; }
  .contact-wrap         { gap: 40px; }
  .footer               { padding: 48px 40px 24px; }
  .navbar.scrolled      { padding: 12px 40px; }
}

@media(max-width:1024px) {
  .navbar               { padding: 14px 24px; }
  .navbar.scrolled      { padding: 10px 24px; }
  .hamburger            { display: flex; }
  .hero .slide-content  { padding: 0 40px; }
  .slide-title          { font-size: clamp(26px,6vw,52px); }
  .stats-strip          { grid-template-columns: repeat(2,1fr); }
  .stat                 { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .equipment-grid       { grid-template-columns: repeat(2,1fr); }
  .split-section        { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 48px 32px; }
  .contact-wrap         { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr 1fr; }
  .footer               { padding: 40px 28px 24px; }
}

@media(max-width:768px) {
  .ticker-item          { padding: 0 24px; font-size: 10.5px; }
  .hero                 { min-height: 600px; }
  .hero .slide-content  { padding: 0 24px; }
  .slide-title          { font-size: clamp(24px,8vw,46px); margin-bottom: 16px; }
  .slide-desc           { font-size: 15px; margin-bottom: 24px; }
  .slide-actions        { flex-direction: column; gap: 10px; }
  .slider-controls      { bottom: 20px; left: 24px; right: 24px; }
  .stats-strip          { grid-template-columns: repeat(2,1fr); }
  .stat-val             { font-size: 34px; }
  .services-grid        { grid-template-columns: 1fr; gap: 20px; }
  .equipment-grid       { grid-template-columns: 1fr; }
  .equip-card           { max-width: 400px; margin: 0 auto; }
  .contact-form-card    { padding: 28px 20px; }
  .footer-top           { grid-template-columns: 1fr; gap: 28px; }
  .footer               { padding: 36px 20px 20px; }
  section               { padding: 48px 24px; }
  .section-header       { margin-bottom: 36px; }
}

@media(max-width:480px) {
  .preloader-brand      { font-size: 30px; }
  .ticker-strip         { height: 32px; }
  .ticker-item          { font-size: 9.5px; padding: 0 14px; }
  .navbar               { top: 32px; padding: 10px 16px; }
  .navbar.scrolled      { top: 0; padding: 8px 16px; }
  .hero                 { min-height: 520px; padding-top: 32px; }
  .slide-title          { font-size: clamp(22px,9.5vw,40px); }
  .slide-desc           { font-size: 14px; }
  .stat-val             { font-size: 30px; }
  section               { padding: 40px 16px; }
  .split-left, .split-right { padding: 36px 20px; }
  .contact-form-card    { padding: 22px 16px; }
  .btn                  { padding: 12px 24px; font-size: 12.5px; }
  .footer               { padding: 28px 16px 18px; }
  .whatsapp-btn         { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 22px; }
}

/* ============================================================
   MOBILE — Additional fixes
   ============================================================ */

/* Slider progress bar active state */
.slider-progress-bar.active { background: var(--terracotta); }

/* Products: stack header + nav on small screens */
@media(max-width:640px) {
  .prod-head        { flex-direction: column; align-items: flex-start; gap: 16px; }
  .prod-nav         { display: none; }
  .products-wrapper { overflow: visible; }
  .products         { flex-direction: column; gap: 20px; transform: none !important; }
  .prod-card        { width: 100% !important; }
}

/* Hero CTA buttons — full width on small phones */
@media(max-width:480px) {
  .slide-actions .btn { width: 100%; justify-content: center; }
}

/* Contact card — reduce horizontal padding on mobile */
@media(max-width:900px) {
  .contact-card { padding: 36px 28px 40px; }
}
@media(max-width:640px) {
  .contact-card { padding: 24px 16px 28px; border-radius: 18px; }
}
@media(max-width:480px) {
  .contact-card { padding: 18px 12px 22px; border-radius: 14px; }
}

/* About stat chips — stay within bounds on tiny screens */
@media(max-width:480px) {
  .stat-chip          { padding: 10px 14px; min-width: 80px; }
  .stat-chip strong   { font-size: 1.1rem; }
  .stat-chip.c1       { bottom: 0; left: 0; }
  .stat-chip.c2       { top: 0;   right: 0; }
}
