/* ============================================================
   MAPLE 3 — Feuille de style globale
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  --green:       #3DAA35;
  --green-dark:  #2A7A24;
  --amber:       #C8762A;
  --amber-light: #E8A94D;
  --cream:       #F6FBF5;
  --dark:        #111A10;
  --white:       #FFFFFF;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, .96);
  border-bottom: 3px solid var(--green);
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(61, 170, 53, .1);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
}
.nav-logo span { color: var(--dark); }

nav ul { list-style: none; display: flex; gap: 32px; }

nav ul a {
  text-decoration: none;
  color: var(--dark);
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color .2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
nav ul a:hover,
nav ul a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ============================================================
   BOUTONS GLOBAUX
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
}
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { transform: translateY(-2px); }

.btn-outline { border: 2px solid var(--green-dark); color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 0, 0, .3); }

.btn-outline-w {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  padding: 13px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s;
}
.btn-outline-w:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); }

.btn-testi {
  display: inline-block;
  background: #fff;
  color: var(--green-dark);
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
  margin-top: 28px;
}
.btn-testi:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 0, 0, .15); }

/* ============================================================
   ÉLÉMENTS COMMUNS
   ============================================================ */
.section-label {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.divider {
  width: 50px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 36px;
}
.eyebrow {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A8E89F;
  margin-bottom: 14px;
}
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 70px 40px;
}
.nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  text-align: center;
  padding: 32px;
  font-size: .85rem;
}
footer a { color: #A8E89F; text-decoration: none; }

/* ============================================================
   INDEX — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0D1F0B 0%, #1E4A18 45%, #3DAA35 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(61,170,53,.25) 0%, transparent 60%);
}
.hero-text { padding: 60px 50px 60px 80px; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: #A8E89F; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-bottle {
  height: min(80vh, 600px);
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
.hero-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}

/* ── Strip ──────────────────────────────────────────────────── */
.strip {
  background: var(--green);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.strip-item { color: #fff; text-align: center; }
.strip-item strong { font-size: 1.3rem; font-family: 'Playfair Display', serif; display: block; }
.strip-item span  { font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }

/* ── Intro produit ──────────────────────────────────────────── */
.product-intro { background: #fff; padding: 90px 0; }
.product-intro .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-intro p { font-size: 1.05rem; line-height: 1.9; color: #2A3A28; margin-bottom: 18px; }

.prod-img-wrap { position: relative; display: flex; justify-content: center; }
.prod-img-wrap::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,170,53,.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.prod-img-wrap img {
  max-height: 500px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(61,170,53,.2));
  position: relative;
}

/* ── Gamme ──────────────────────────────────────────────────── */
.gamme-section { background: #F0FAF0; padding: 90px 0; }
.gamme-section .inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }

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

.gamme-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.gamme-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(61,170,53,.15); }

.gamme-card-img {
  width: 100%; height: 280px;
  object-fit: contain;
  background: linear-gradient(135deg, #f5f5f5, #e8f5e8);
  padding: 28px;
}
.gamme-card-body { padding: 22px 24px 28px; }
.gamme-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.gamme-card-body p { font-size: .9rem; color: #4A6A44; line-height: 1.6; }

.gamme-tag {
  display: inline-block;
  margin-top: 14px;
  background: #E8F5E8;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}
.gamme-card-multi {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f5f5, #e8f5e8);
  padding: 18px;
  height: 280px;
}
.gamme-card-multi img { height: 220px; object-fit: contain; }

/* ── Features ───────────────────────────────────────────────── */
.features-section { padding: 90px 0; }
.features-section .inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }

.feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid #D8EDD6;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(61,170,53,.12); }
.feat-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feat-card h3 { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1.1rem; margin-bottom: 10px; }
.feat-card p  { font-size: .9rem; color: #4A6040; line-height: 1.7; }

/* ── Origine ────────────────────────────────────────────────── */
.origin-banner {
  background: linear-gradient(135deg, #0D1F0B, #2A7A24);
  color: #fff;
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  position: relative;
}
.origin-banner::before {
  content: '🍁';
  position: absolute;
  right: -40px; bottom: -60px;
  font-size: 280px;
  opacity: .06;
}
.origin-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.origin-banner p  { font-size: 1rem; line-height: 1.9; opacity: .8; margin-bottom: 16px; }

.origin-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 10px; }
.origin-stat {
  text-align: center;
  background: rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
}
.origin-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: #A8E89F; }
.origin-stat .lbl { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; opacity: .65; margin-top: 4px; }

.origin-img img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  border-radius: 16px;
}

/* ── Teaser témoignage ──────────────────────────────────────── */
.testimony-teaser { background: var(--green); padding: 70px 80px; text-align: center; }
.testimony-teaser blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #fff;
  max-width: 780px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (SEO, Informations, Témoignage)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1A1A1A, #2A7A24);
  padding: 140px 80px 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; margin-top: 16px; max-width: 500px; }

/* ── Hero bouteilles (information.html) ─────────────────────── */
.hero-bottles { display: flex; gap: 10px; align-items: flex-end; }
.hero-bottles img { height: 220px; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0,0,0,.5)); }

/* ── Hero produit stack (seo.html) ──────────────────────────── */
.hero-product-stack { display: flex; justify-content: center; align-items: center; gap: -20px; }
.hero-product-stack img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  transform: rotate(-5deg);
}

/* ============================================================
   TÉMOIGNAGE
   ============================================================ */
.hero-split {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  overflow: hidden;
}
.hero-left {
  background: linear-gradient(145deg, #0D1F0B, #2A7A24);
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); color: #fff; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero-left p  { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; max-width: 400px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,11,.3) 0%, transparent 40%);
}

/* ── Profil ─────────────────────────────────────────────────── */
.profile-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  border-left: 6px solid var(--green);
  margin-bottom: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.profile-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); }
.profile-info p  { font-size: .9rem; color: #5A7A54; margin-top: 4px; }
.stars { color: #F5A623; font-size: 1.2rem; margin-top: 6px; letter-spacing: 3px; }

/* ── Citation ───────────────────────────────────────────────── */
.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  border-left: 5px solid var(--green);
  padding-left: 28px;
  margin-bottom: 40px;
}

/* ── Corps du témoignage ────────────────────────────────────── */
.testimony-body p    { font-size: 1.05rem; line-height: 1.9; color: #2A3A28; margin-bottom: 22px; }
.testimony-body strong { color: var(--green-dark); }

/* ── Highlight produit ──────────────────────────────────────── */
.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,.07);
}
.product-highlight img {
  width: 100%; height: 300px;
  object-fit: contain;
  background: linear-gradient(135deg, #f0faf0, #e0f4df);
  padding: 30px;
}
.product-highlight-text { padding: 36px 36px 36px 0; }
.product-highlight-text h4 { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1.2rem; margin-bottom: 14px; }

.highlight-list { list-style: none; }
.highlight-list li { padding: 6px 0; font-size: .95rem; color: #2A3A28; }
.highlight-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ── Visuel milieu de page ──────────────────────────────────── */
.mid-visual { text-align: center; margin: 40px 0; }
.mid-visual-row { display: flex; gap: 20px; justify-content: center; align-items: flex-end; flex-wrap: wrap; }
.mid-visual-row img { max-height: 300px; object-fit: contain; filter: drop-shadow(0 16px 40px rgba(0,0,0,.1)); }
.mid-visual-row img.tall { max-height: 340px; }
.mid-visual p { margin-top: 12px; font-size: .9rem; color: #5A7A54; font-style: italic; }

/* ── Verdict ────────────────────────────────────────────────── */
.verdict {
  background: linear-gradient(135deg, #0D1F0B, #2A7A24);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}
.verdict-score { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900; color: #A8E89F; line-height: 1; }
.verdict p    { font-size: .9rem; opacity: .7; margin-top: 6px; }
.verdict-text { font-size: 1.05rem; opacity: 1; margin-top: 18px; line-height: 1.7; font-style: italic; }

/* ── CTA section ────────────────────────────────────────────── */
.cta-section { background: var(--green); padding: 60px 40px; text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 2rem; margin-bottom: 24px; }

/* ============================================================
   SEO PAGE
   ============================================================ */
.intro-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border-left: 6px solid var(--green);
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.intro-box h2 { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1.4rem; margin-bottom: 12px; }
.intro-box p  { font-size: 1rem; line-height: 1.8; color: #2A3A28; }

.page-section { margin-bottom: 70px; }
.page-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 32px;
}
.page-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  flex-shrink: 0;
}
.page-section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.page-section-header p  { font-size: .85rem; opacity: .8; margin-top: 2px; }

.page-visual {
  margin: 24px 0 32px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e8, #f0faf0);
  padding: 24px;
  text-align: center;
}
.page-visual img { max-height: 200px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(0,0,0,.12)); }
.page-visual p   { font-size: .8rem; color: #5A7A54; margin-top: 10px; font-style: italic; }

.kw-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.kw-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #C8E8C4;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.kw-tag {
  display: inline-block;
  background: #E8F5E8;
  color: var(--green-dark);
  font-family: 'Source Code Pro', monospace;
  font-size: .85rem; font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #B8DDB4;
  margin-bottom: 12px;
}
.kw-card h4 { font-family: 'Playfair Display', serif; color: var(--dark); font-size: 1rem; margin-bottom: 8px; }
.kw-card p  { font-size: .9rem; color: #3A5A34; line-height: 1.7; }

.kw-volume { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.badge { font-size: .72rem; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.badge-vol    { background: #E8F5E9; color: #1B5E20; }
.badge-comp   { background: #FFF8E1; color: #E65100; }
.badge-intent { background: #E3F2FD; color: #1565C0; }

.tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.tip-card  {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #C8E8C4;
  text-align: center;
}
.tip-icon    { font-size: 2rem; margin-bottom: 8px; }
.tip-card h5 { font-size: .9rem; color: var(--dark); font-weight: 700; margin-bottom: 6px; }
.tip-card p  { font-size: .8rem; color: #4A6A44; line-height: 1.6; }

.recap-table { width: 100%; border-collapse: collapse; margin-top: 20px; border-radius: 16px; overflow: hidden; }
.recap-table th { background: var(--green-dark); color: #fff; padding: 14px 18px; text-align: left; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }
.recap-table td { padding: 12px 18px; border-bottom: 1px solid #D8EDD6; font-size: .9rem; color: #2A3A28; }
.recap-table tr:nth-child(even) td { background: #F0FAF0; }

code {
  font-family: 'Source Code Pro', monospace;
  background: #E8F5E8;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .85em;
  color: var(--green-dark);
}

/* ============================================================
   INFORMATIONS PAGE
   ============================================================ */
.table-section { margin-bottom: 70px; }
.table-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.table-section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--dark); }
.table-subtitle { color: #5A7A54; font-size: .95rem; margin-bottom: 30px; }

.section-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  flex-shrink: 0;
}
.table-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #C8E8C4;
}

/* ── Tableau IA ─────────────────────────────────────────────── */
.table-ia { width: 100%; border-collapse: collapse; }
.table-ia thead tr { background: linear-gradient(135deg, var(--dark), var(--green-dark)); }
.table-ia thead th { color: #fff; padding: 16px 20px; text-align: left; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.table-ia thead th:first-child { width: 42%; }
.table-ia tbody tr { border-bottom: 1px solid #D8EDD6; transition: background .2s; }
.table-ia tbody tr:hover { background: #F0FAF0; }
.table-ia tbody td { padding: 18px 20px; vertical-align: top; }
.table-ia tbody tr:last-child { border-bottom: none; }

.ia-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; padding: 5px 14px; border-radius: 20px; margin-bottom: 8px; }
.badge-claude  { background: #F0E8FF; color: #6B21A8; border: 1px solid #D8B4FE; }
.badge-chatgpt { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }

.prompt-text {
  font-family: 'Source Code Pro', monospace;
  font-size: .78rem;
  background: #F0FAF0;
  border: 1px solid #C8E8C4;
  border-radius: 8px;
  padding: 10px 14px;
  color: #2A4A26;
  margin-top: 8px;
  line-height: 1.6;
}
.content-result { font-size: .9rem; color: #2A3A28; line-height: 1.6; }
.content-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Tableau contributions ──────────────────────────────────── */
.table-contrib { width: 100%; border-collapse: collapse; }
.table-contrib thead tr { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.table-contrib thead th { color: #fff; padding: 16px 20px; text-align: left; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.table-contrib thead th:first-child { width: 32%; }
.table-contrib tbody tr { border-bottom: 1px solid #D8EDD6; transition: background .2s; }
.table-contrib tbody tr:hover { background: #F0FAF0; }
.table-contrib tbody tr:last-child { border-bottom: none; }
.table-contrib tbody td { padding: 18px 20px; vertical-align: top; }

.student-cell { display: flex; align-items: center; gap: 14px; }
.avatar-sm {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.student-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--dark); }
.student-role { font-size: .8rem; color: #5A7A54; margin-top: 2px; }

.contrib-list { list-style: none; }
.contrib-list li { padding: 4px 0; font-size: .9rem; color: #2A3A28; }
.contrib-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 80px 24px 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { height: 320px; }
  .hero-bottle { height: 260px; }
  .product-intro .inner { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .gamme-section .inner { padding: 0 24px; }
  .gamme-grid { grid-template-columns: 1fr; }
  .features-section .inner { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .origin-banner { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .testimony-teaser { padding: 50px 24px; }
}

@media (max-width: 768px) {
  nav ul { display: none; }
  nav { padding: 12px 24px; }
  .container { padding: 50px 20px; }

  /* pages intérieures */
  .page-hero { grid-template-columns: 1fr; padding: 100px 24px 50px; }
  .hero-bottles { display: none; }
  .hero-product-stack { display: none; }

  /* témoignage */
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { height: 240px; }
  .product-highlight { grid-template-columns: 1fr; }
  .product-highlight-text { padding: 24px; }

  /* SEO */
  .kw-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }

  /* informations */
  .table-ia, .table-contrib { font-size: .82rem; }
  .student-cell { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* global */
  .features-grid { grid-template-columns: 1fr; }
}
.section-sub-title { font-family: 'Playfair Display', serif; color: var(--dark); margin: 30px 0 16px; font-size: 1.2rem; }