/* ============================================================
   Bengal Consulting — style.css
   Couleurs : bleu #2233DD, cuivre #C4895A, sable #F5F0E8
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --blue:       #2233DD;
  --blue-dark:  #1628B8;
  --blue-light: #EEF0FD;
  --blue-mid:   #6B7AE8;
  --sand:       #F5F0E8;
  --copper:     #C4895A;
  --copper-light:#E8C9A8;
  --text:       #111111;
  --text-muted: #555555;
  --border:     #DDE0F5;
  --white:      #FFFFFF;
  --radius:     10px;
  --nav-h:      72px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── ACCESSIBILITÉ ───────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── TYPOGRAPHIE ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
.eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 14px;
  display: block;
}
.italic { font-style: italic; }
.copper { color: var(--copper); }
p { line-height: 1.75; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; scroll-margin-top: var(--nav-h); }

/* ── NAV ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-logo {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  width: 160px;

  height: var(--nav-h);

  position: relative;

  flex-shrink: 0;

}

.nav-logo img {

  position: absolute;

  top: 0;

  left: 0;

  width: 160px;

  height: 160px;

  border-radius: 6px;

  object-fit: contain;

}
.nav-brand { font-family: 'Helvetica Neue', Arial, sans-serif; }
.nav-brand strong { font-size: 17px; font-weight: 700; color: var(--blue); display: block; }
.nav-brand span { font-size: 11px; color: var(--blue-mid); letter-spacing: .1em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  padding: 9px 20px; border-radius: 7px;
  background: var(--blue); color: var(--white) !important;
  font-weight: 600 !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 2px solid var(--blue);
  padding: 16px 32px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; font-weight: 500; color: var(--text);
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--blue); color: var(--white);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(255,255,255,.05) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 24px; display: block;
}
.hero-title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 8px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.65); }
.hero-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.72); margin: 24px 0 40px; max-width: 500px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-flex; align-items: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 8px;
  background: var(--white); color: var(--blue);
  transition: opacity .2s; border: none; cursor: pointer;
}
.btn-primary:hover { opacity: .88; color: var(--blue); }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); overflow: hidden; margin-top: 48px;
}
.hero-stat {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-size: 13px; font-weight: 700; color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.2;
}
.hero-stat .lbl {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; color: rgba(255,255,255,.5); margin-top: 5px; line-height: 1.4;
}
.hero-photo {
  position: relative; display: flex; justify-content: center;
}
.hero-photo img {
  width: 100%; max-width: 420px; height: 520px;
  object-fit: cover; object-position: center top;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

/* ── EXPERTISE ───────────────────────────────────────────── */
/* ── EXPERTISE ─────────────────────────────────────────── */

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

/* Colonne gauche */

.expertise-visual {
  display: flex;
  flex-direction: column;
}

.expertise-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

/* Chiffres */

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.stat {
  grid-column: span 2;
  min-height: 115px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Les deux derniers chiffres sont centrés sur la deuxième ligne */

.stat:nth-child(4) {
  grid-column: 2 / span 2;
  border-bottom: none;
}

.stat:nth-child(5) {
  grid-column: 4 / span 2;
  border-bottom: none;
  border-right: none;
}

.stat:nth-child(3) {
  border-right: none;
}

.stat strong {
  display: block;
  margin-bottom: 7px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.stat span {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Colonne droite */

.expertise-content h2 {
  max-width: 550px;
  margin-bottom: 36px;
}

.expertise-content p {
  margin-bottom: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.expertise-content a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.expertise-content a:hover {
  text-decoration: underline;
}

/* ── INTERVENTIONS ───────────────────────────────────────── */
/* ── TROIS MISSIONS ─────────────────────────────────────── */

/* Étoile — accompagnement stratégique */

.mission-strategie .mission-icon img {

  max-width: 135px;

  max-height: 135px;

}

/* Alambic — création de distillerie */

.mission-distillerie .mission-icon img {

  max-width: 145px;

  max-height: 145px;

}

/* Éprouvette — création de produits */

.mission-produits .mission-icon img {

  max-width: 110px;

  max-height: 145px;

}
#interventions {
  background: var(--white);
}

.interventions-header {
  max-width: 760px;
  margin-bottom: 64px;
}

.interventions-header h2 {
  max-width: 700px;
  margin-bottom: 18px;
}

.interventions-header p {
  max-width: 680px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-column {
  position: relative;
  min-height: 560px;
  padding: 48px 42px 42px;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: var(--white);
  border-right: 1px solid var(--border);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-column:last-child {
  border-right: none;
}

.mission-column:hover {
  background: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(34, 51, 221, 0.08);
  z-index: 2;
}

.mission-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.mission-icon svg {
  width: 76px;
  height: 76px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-number {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-mid);
  margin-bottom: 14px;
}

.mission-column h3 {
  max-width: 260px;
  font-size: 25px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.mission-promise {
  min-height: 52px;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  color: var(--copper);
}

.mission-column ul {
  margin-bottom: 34px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.mission-column li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
}

.mission-column li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.mission-link {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.mission-link span {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.mission-column:hover .mission-link span {
  transform: translateX(5px);
}

/* ── PHILOSOPHIE ─────────────────────────────────────────── */
#philosophie { background: var(--blue); color: var(--white); padding: 80px 0; }
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philo-left h2 { color: var(--white); margin-bottom: 20px; }
.philo-left p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.7); margin-bottom: 16px;
}
.piliers { display: flex; flex-direction: column; }
.pilier {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.pilier:last-child { border-bottom: none; }
.pilier-num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,.3); width: 24px; flex-shrink: 0;
}
.pilier-text { font-size: 15px; color: rgba(255,255,255,.82); }

/* ── PROJETS ─────────────────────────────────────────────── */
#projets { background: var(--sand); }
.projets-intro { max-width: 620px; margin-bottom: 56px; }
.projets-intro p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; color: var(--text-muted); margin-top: 14px; line-height: 1.7;
}
.projets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.projet-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.projet-card img { width: 100%; height: 220px; object-fit: cover; }
.projet-card-body { padding: 28px; flex: 1; }
.projet-card-body h3 { font-size: 17px; margin-bottom: 12px; }
.projet-card-body p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
/* Références */
.refs-wrap { margin-top: 72px; }
.refs-wrap h3 { font-size: 17px; font-style: italic; color: var(--copper); margin-bottom: 24px; }
.refs-logos {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 24px;

  align-items: stretch;

}

.ref-logo {

  min-height: 150px;

  padding: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid var(--border);

  border-radius: 10px;

}

.ref-logo img {

  display: block;

  width: auto;

  height: auto;

  max-width: 100%;

  max-height: 105px;

  object-fit: contain;

}
.refs-note {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 20px;
}

.ref-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ref-logo img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ref-logo a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* ── RÉCOMPENSES ─────────────────────────────────────────── */

.recomp-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;

  margin-top: 40px;

  align-items: stretch;

}

.recomp-logo {

  min-height: 150px;

  padding: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid var(--border);

  border-radius: 10px;

}

.recomp-logo a {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  height: 100%;

}

.recomp-logo img {

  display: block;

  width: auto;

  height: auto;

  max-width: 100%;

  max-height: 105px;

  object-fit: contain;

  transition: transform 0.25s ease, opacity 0.25s ease;

}

.recomp-logo a:hover img {

  transform: scale(1.05);

  opacity: 0.85;

}
.recomp-logo-iwsc img {

  max-height: 55px;

}

.recomp-logo-vinalies img {

  max-height: 110px;

}

.recomp-logo-concours-general img {

  max-height: 115px;

}

.recomp-logo-london img {

  max-height: 120px;

}

.recomp-logo-isc img {

  max-height: 115px;

}

.recomp-logo-spirits-selection img {

  max-height: 125px;

}

.recomp-logo-rhum-fest img {

  max-height: 110px;

}

.recomp-logo-world-drinks img {

  max-height: 85px;

}

.recomp-logo-lyon img {

  max-height: 105px;

}
@media (max-width: 960px) {

  .recomp-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}

@media (max-width: 600px) {

  .recomp-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

  }

  .recomp-logo {

    min-height: 120px;

    padding: 14px;

  }

  .recomp-logo img {

    max-height: 85px;

  }

}
/* Structure prête pour enrichissement futur */
.recomp-table { margin-top: 40px; display: none; } /* À activer quand données disponibles */

/* ── BENGAL RÉDUCTION ────────────────────────────────────── */
#app-section { background: var(--blue-light); }
.app-intro { max-width: 680px; margin-bottom: 48px; }
.app-intro p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; color: var(--text-muted); margin-top: 14px; line-height: 1.7;
}
.app-warning {
  background: #FFF8E7; border: 1.5px solid #E6C45A; border-radius: 8px;
  padding: 16px 20px; margin: 20px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px;
  color: #7A5C00; line-height: 1.6;
}
.app-warning strong { display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.app-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.app-desc h3 { font-size: 19px; margin-bottom: 14px; }
.app-desc p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: var(--blue-light); color: var(--blue);
  margin: 4px 4px 0 0;
}
.btn-fullscreen {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 8px;
  background: var(--blue); color: var(--white);
  transition: background .2s;
}
.btn-fullscreen:hover { background: var(--blue-dark); color: var(--white); }
.btn-fullscreen svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* App widget embed */
.app-embed {
  max-width: 380px; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(34,51,221,.10);
  background: var(--white);
}
.app-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 10px; border-bottom: 2px solid #2B3FD9; background: var(--white);
}
.app-logo-area { display: flex; align-items: center; gap: 8px; }
.app-logo-area img { width: 34px; height: 34px; border-radius: 5px; object-fit: contain; }
.app-brand-text { font-family: 'Helvetica Neue', Arial, sans-serif; }
.app-brand-name { font-size: 15px; font-weight: 500; color: #2B3FD9; display: block; }
.app-brand-sub { font-size: 9px; color: #6B7AE8; letter-spacing: .1em; text-transform: uppercase; }
.app-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 2px solid #2B3FD9; }
.app-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 4px 11px; cursor: pointer; border: none; background: none;
  font-family: 'Helvetica Neue', Arial, sans-serif; color: #A0A8EF;
  font-size: 9px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  transition: color .15s;
}
.app-tab.active { color: #2B3FD9; }
.app-tab svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.app-panel { display: none; }
.app-panel.active { display: block; }
.app-content { padding: 16px 18px; }
.app-field { margin-bottom: 13px; }
.app-label {
  font-size: 13px; font-weight: 500; color: var(--text);
  margin-bottom: 5px; font-family: 'Helvetica Neue', Arial, sans-serif; display: block;
}
.app-input-row {
  display: flex; align-items: stretch;
  border: 1.5px solid #A0A8EF; border-radius: 7px; overflow: hidden; transition: border-color .15s;
}
.app-input-row:focus-within { border-color: #2B3FD9; }
.app-input-row input {
  flex: 1; border: none; outline: none; font-size: 18px; font-weight: 400;
  text-align: right; padding: 9px 8px; color: var(--text); background: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.app-input-unit {
  display: flex; align-items: center; padding: 0 12px 0 2px;
  font-size: 15px; color: #6B7AE8; background: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.app-corr-tag {
  display: none; font-size: 10px; color: #2B3FD9;
  background: #EEF0FD; border-radius: 4px; padding: 2px 6px; margin-top: 3px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.app-results { padding: 12px 18px 16px; background: #EEF0FD; border-top: 2px solid #2B3FD9; }
.app-result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0; border-bottom: .5px solid #C5CAF0;
}
.app-result-row:last-child { border-bottom: none; }
.app-result-label { font-size: 13px; color: #2B3FD9; font-family: 'Helvetica Neue', Arial, sans-serif; }
.app-result-val { font-size: 17px; font-weight: 500; color: #1A2AAA; font-family: 'Helvetica Neue', Arial, sans-serif; }
.app-result-val.sm { font-size: 12px; color: #4A56C8; font-weight: 400; }
.app-warn {
  font-size: 11px; color: #7A3800; margin-top: 6px; padding: 6px 9px;
  background: #FFF0E0; border-radius: 5px; border-left: 2px solid #E08000;
  line-height: 1.4; font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { background: var(--blue); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left h2 { color: var(--white); margin-bottom: 18px; }
.contact-left > p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 15px; color: rgba(255,255,255,.82);
}
.contact-item svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.82); transition: color .2s; }
.contact-item a:hover { color: var(--white); }
.social-links { display: flex; gap: 14px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Formulaire contact */
.contact-form-wrap {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 8px;
}
.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
  width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 7px;
  background: rgba(255,255,255,.08); color: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 15px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1628B8; color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.form-check input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 0 0 0;
  cursor: pointer;
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.form-check label {
  cursor: pointer;
  pointer-events: auto;
  line-height: 1.5;
}
.form-submit:hover { opacity: .88; }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-msg {
  display: none; padding: 14px; border-radius: 7px; margin-top: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 15px; text-align: center;
}
.form-msg.success { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); display: block; }
.form-msg.error { background: rgba(220,50,50,.15); color: rgba(255,200,200,.9); display: block; }
.form-privacy {
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 12px;
  color: rgba(255,255,255,.4); margin-top: 12px; text-align: center;
}
.form-privacy a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #0E1580; padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 30px; height: 30px; border-radius: 4px; object-fit: contain; }
.footer-logo span { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }
.footer-links {
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13px;
  color: rgba(255,255,255,.45); transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy {
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13px;
  color: rgba(255,255,255,.3); width: 100%; text-align: center; margin-top: 8px;
}

/* ── PAGES LÉGALES ───────────────────────────────────────── */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.legal-page .subtitle { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; color: var(--text-muted); margin-bottom: 48px; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 18px; margin-bottom: 10px; color: var(--blue); }
.legal-section p, .legal-section li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 8px;
}
.legal-section ul { padding-left: 20px; }
.legal-section ul li { list-style: disc; }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; color: var(--blue);
}
.legal-back:hover { text-decoration: underline; }

/* ── PAGE RÉDUCTION PLEIN ÉCRAN ──────────────────────────── */
.reduction-page { padding-top: var(--nav-h); min-height: 100vh; background: var(--blue-light); }
.reduction-header { background: var(--blue); color: var(--white); padding: 48px 0 40px; }
.reduction-header h1 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 8px; }
.reduction-header p { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 16px; color: rgba(255,255,255,.7); max-width: 600px; }
.reduction-body { padding: 48px 0 80px; }
.reduction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
/* Widget plein écran */
.reduction-widget {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(34,51,221,.10);
  overflow: hidden; max-width: 460px;
}
.reduction-widget .app-content { padding: 20px 24px; }
.reduction-widget .app-field { margin-bottom: 16px; }
.reduction-widget .app-input-row input { font-size: 22px; padding: 11px 10px; }
.reduction-widget .app-results { padding: 16px 24px 20px; }
.reduction-widget .app-result-val { font-size: 20px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { display: none; }
  .expertise-grid, .philo-grid, .app-layout, .contact-grid, .reduction-grid { grid-template-columns: 1fr; gap: 40px; }
  .interventions-grid, .projets-grid { grid-template-columns: 1fr; gap: 2px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .refs-list { gap: 8px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
/* ═══════════════════════════════════════════════════════════
   PAGE ACCOMPAGNEMENT TECHNIQUE & STRATÉGIQUE
   ═══════════════════════════════════════════════════════════ */


/* ── VARIABLES DE SÉCURITÉ ──────────────────────────────── */

:root {
  --blue: #2438e8;
  --blue-dark: #1728c7;
  --blue-light: #f0f2ff;
  --copper: #d3936e;
  --cream: #f7f1e9;
  --white: #ffffff;
  --text: #111111;
  --text-muted: #555555;
  --border: #dedede;
}


/* ═══════════════════════════════════════════════════════════
   STRUCTURE GÉNÉRALE
   ═══════════════════════════════════════════════════════════ */

.service-page {
  width: 100%;
  overflow: hidden;
}

.service-page .container {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.service-hero {
  position: relative;
  padding: 100px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

/* Grande étoile décorative en arrière-plan */
.service-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translateY(-50%);
  background-image: url("../images/accompagnement-strategique.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 55px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-back:hover {
  color: var(--blue);
}

.service-hero-icon {
  width: 105px;
  height: 105px;
  margin-bottom: 25px;
}

.service-hero-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-hero .eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.service-hero h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
}

.service-hero > .container > p {
  max-width: 750px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ── Conseil → Co-pilotage → Direction technique ───────── */

.implication-path {
  max-width: 760px;
  margin-top: 50px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(36, 56, 232, 0.18);
}

.implication-path span:not(.path-arrow) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--blue);
}

.path-arrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: var(--copper);
}


/* ═══════════════════════════════════════════════════════════
   LES TROIS NIVEAUX
   ═══════════════════════════════════════════════════════════ */

.accompagnement-levels {
  padding: 110px 0 120px;
  background: var(--white);
}

.accompagnement-levels > .container > .eyebrow {
  display: block;
  margin-bottom: 45px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--copper);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.level-card {
  position: relative;
  min-height: 570px;
  padding: 42px 38px 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.level-card:last-child {
  border-right: none;
}

.level-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: #fafaff;
  box-shadow: 0 20px 50px rgba(20, 30, 100, 0.08);
}


/* Numéro */

.level-number {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}


/* Titre */

.level-card h2 {
  max-width: 330px;
  margin: 0 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}


/* Accroche en gras */

.level-lead {
  min-height: 70px;
  margin-bottom: 22px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.45 !important;
  color: var(--text) !important;
}


/* Paragraphes */

.level-card > p:not(.level-lead) {
  margin: 0 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}


/* Métadonnées en bas */

.level-meta {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.level-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 100px;
  background: var(--blue-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
}


/* ── Troisième offre mise en avant ─────────────────────── */

.level-card-featured {
  background: var(--blue);
}

.level-card-featured:hover {
  background: var(--blue-dark);
  box-shadow: 0 25px 60px rgba(36, 56, 232, 0.2);
}

.level-card-featured .level-number {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.level-card-featured h2 {
  color: var(--white);
}

.level-card-featured .level-lead {
  color: var(--white) !important;
}

.level-card-featured > p:not(.level-lead) {
  color: rgba(255, 255, 255, 0.78);
}

.level-card-featured .level-meta {
  border-color: rgba(255, 255, 255, 0.25);
}

.level-card-featured .level-meta span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   TABLEAU COMPARATIF
   ═══════════════════════════════════════════════════════════ */

.comparison-section {
  padding: 115px 0 125px;
  background: var(--cream);
}

.comparison-section .eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.comparison-section h2 {
  max-width: 750px;
  margin: 0 0 55px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(20, 20, 20, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 20px;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.4;
}


/* Première colonne */

.comparison-table tbody th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  background: #f7f7f7;
}


/* En-tête */

.comparison-table thead th {
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text);
  background: var(--white);
}

.comparison-table thead th span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}


/* Lignes alternées */

.comparison-table tbody tr:nth-child(even) td {
  background: #fafafa;
}


/* Colonne premium */

.comparison-table .featured-column {
  background: var(--blue);
  color: var(--white);
}

.comparison-table thead .featured-column span {
  color: rgba(255, 255, 255, 0.75);
}

.comparison-table tbody td:last-child {
  background: var(--blue-light);
  font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) td:last-child {
  background: #e7eaff;
}


/* Dernière ligne */

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}


/* Note */

.comparison-note {
  max-width: 900px;
  margin: 25px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  color: #777;
}


/* ═══════════════════════════════════════════════════════════
   APPEL À L'ACTION
   ═══════════════════════════════════════════════════════════ */

.service-cta {
  padding: 110px 0;
  text-align: center;
  background: var(--blue);
  color: var(--white);
}

.service-cta .container {
  max-width: 900px;
}

.service-cta h2 {
  max-width: 800px;
  margin: 0 auto 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

.service-cta p {
  max-width: 680px;
  margin: 0 auto 38px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.service-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--white);
  border-radius: 4px;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-cta .btn-primary:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {

  .service-page .container {
    width: min(100% - 48px, 1320px);
  }

  .service-hero {
    padding: 80px 0 75px;
  }

  .service-hero::after {
    width: 320px;
    height: 320px;
    right: -100px;
  }

  .levels-grid {
    grid-template-columns: 1fr;
    border-bottom: none;
  }

  .level-card {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .level-lead {
    min-height: auto;
  }

  .level-card:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 600px) {

  .service-page .container {
    width: calc(100% - 36px);
  }

  .service-hero {
    padding: 55px 0 60px;
  }

  .service-back {
    margin-bottom: 35px;
  }

  .service-hero-icon {
    width: 80px;
    height: 80px;
  }

  .service-hero h1 {
    font-size: 42px;
  }

  .service-hero > .container > p {
    font-size: 16px;
  }

  .service-hero::after {
    display: none;
  }

  .implication-path {
    margin-top: 35px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .implication-path span:not(.path-arrow) {
    font-size: 15px;
  }

  .accompagnement-levels {
    padding: 70px 0 80px;
  }

  .accompagnement-levels > .container > .eyebrow {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .level-card {
    padding: 34px 24px;
  }

  .level-card h2 {
    font-size: 28px;
  }

  .comparison-section {
    padding: 75px 0 85px;
  }

  .comparison-section h2 {
    margin-bottom: 35px;
    font-size: 40px;
  }

  .comparison-table-wrap {
    margin-right: -18px;
    width: calc(100% + 18px);
    border-radius: 8px 0 0 8px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 12px;
  }

  .service-cta {
    padding: 75px 0;
  }

  .service-cta h2 {
    font-size: 39px;
  }

  .service-cta p {
    font-size: 16px;
  }
}
/* ═══════════════════════════════════════════════════════════
   PAGE CRÉATION DE DISTILLERIE
   ═══════════════════════════════════════════════════════════ */


/* ── HERO ────────────────────────────────────────────────── */

.distillerie-hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.distillerie-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  bottom: -210px;
  background-image: url("../images/creation-distillerie.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.distillerie-hero .service-back {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
}

.distillerie-hero .service-back:hover {
  color: var(--white);
}

.distillerie-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.distillerie-hero-content {
  max-width: 720px;
}

.distillerie-hero-icon {
  width: 135px;
  height: 135px;
  margin-bottom: 25px;
}

.distillerie-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.distillerie-hero .eyebrow {
  color: var(--copper-light);
}

.distillerie-hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
}

.distillerie-hero-content > p {
  max-width: 680px;
  margin-bottom: 17px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.distillerie-path {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.distillerie-path span:not(.path-arrow) {
  font-size: 19px;
  font-style: italic;
  color: var(--white);
}

.distillerie-path .path-arrow {
  color: var(--copper-light);
}

.distillerie-hero-visual {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.distillerie-hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}


/* ── EN-TÊTES DE SECTION ───────────────────────────────── */

.distillerie-section-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.distillerie-section-heading h2 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.distillerie-section-heading > p {
  max-width: 700px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ── LES TROIS PHASES ──────────────────────────────────── */

.distillerie-phases {
  padding: 115px 0 125px;
  background: var(--white);
}

.distillerie-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.distillerie-phase-card {
  position: relative;
  min-height: 760px;
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(20, 20, 20, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.distillerie-phase-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(20, 30, 100, 0.1);
}

.phase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 29px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue);
}

.phase-number,
.phase-name {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.distillerie-phase-card h3 {
  min-height: 72px;
  margin-bottom: 23px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.phase-lead {
  min-height: 65px;
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.distillerie-phase-card > p:not(.phase-lead) {
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.phase-divider {
  height: 1px;
  margin: 8px 0 24px;
  background: var(--border);
}

.distillerie-phase-card h4 {
  min-height: 42px;
  margin-bottom: 17px;
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
  color: var(--copper);
}

.distillerie-phase-card ul {
  margin-bottom: 28px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.distillerie-phase-card li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 18px;
}

.distillerie-phase-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.phase-result {
  margin-top: auto;
  padding: 20px;
  background: var(--blue-light);
  border-radius: 8px;
}

.phase-result strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

.phase-result span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}


/* Phase 3 mise en avant */

.distillerie-phase-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.distillerie-phase-featured:hover {
  box-shadow: 0 25px 65px rgba(34, 51, 221, 0.22);
}

.distillerie-phase-featured .phase-heading {
  border-color: rgba(255, 255, 255, 0.65);
}

.distillerie-phase-featured .phase-number,
.distillerie-phase-featured .phase-name {
  color: var(--white);
}

.distillerie-phase-featured h3,
.distillerie-phase-featured .phase-lead {
  color: var(--white);
}

.distillerie-phase-featured > p:not(.phase-lead) {
  color: rgba(255, 255, 255, 0.76);
}

.distillerie-phase-featured .phase-divider {
  background: rgba(255, 255, 255, 0.22);
}

.distillerie-phase-featured h4 {
  color: var(--copper-light);
}

.distillerie-phase-featured ul {
  color: rgba(255, 255, 255, 0.82);
}

.distillerie-phase-featured li::before {
  color: var(--white);
}

.distillerie-phase-featured .phase-result {
  background: rgba(255, 255, 255, 0.13);
}

.distillerie-phase-featured .phase-result strong {
  color: var(--white);
}

.distillerie-phase-featured .phase-result span {
  color: rgba(255, 255, 255, 0.8);
}


/* ── MÉTHODE ─────────────────────────────────────────────── */

.distillerie-method {
  padding: 115px 0;
  background: var(--sand);
}

.distillerie-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 95px;
  align-items: start;
}

.distillerie-method-intro {
  position: sticky;
  top: calc(var(--nav-h) + 45px);
}

.distillerie-method-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.distillerie-method-intro p {
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.distillerie-method-list {
  display: flex;
  flex-direction: column;
}

.method-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(34, 51, 221, 0.16);
}

.method-item:first-child {
  padding-top: 0;
}

.method-item > span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.method-item h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.method-item p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ── SITUATIONS ─────────────────────────────────────────── */

.distillerie-situations {
  padding: 115px 0 125px;
  background: var(--white);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.situation-card {
  min-height: 210px;
  padding: 34px;
  background: var(--blue-light);
  border-radius: 10px;
  border-left: 4px solid var(--blue);
}

.situation-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.situation-card p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ── CTA ─────────────────────────────────────────────────── */

.distillerie-cta {
  background: var(--blue);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1050px) {

  .distillerie-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .distillerie-hero-visual {
    max-width: 720px;
  }

  .distillerie-hero-visual img {
    height: 480px;
  }

  .distillerie-phases-grid {
    grid-template-columns: 1fr;
  }

  .distillerie-phase-card {
    min-height: auto;
  }

  .distillerie-phase-card h3,
  .phase-lead,
  .distillerie-phase-card h4 {
    min-height: auto;
  }

  .distillerie-method-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .distillerie-method-intro {
    position: static;
  }
}


@media (max-width: 700px) {

  .distillerie-hero {
    padding: 70px 0 65px;
  }

  .distillerie-hero h1 {
    font-size: 43px;
  }

  .distillerie-hero-content > p {
    font-size: 16px;
  }

  .distillerie-hero-icon {
    width: 100px;
    height: 100px;
  }

  .distillerie-path {
    gap: 10px;
    flex-wrap: wrap;
  }

  .distillerie-path span:not(.path-arrow) {
    font-size: 16px;
  }

  .distillerie-hero-visual img {
    height: 360px;
  }

  .distillerie-phases,
  .distillerie-method,
  .distillerie-situations {
    padding: 75px 0 85px;
  }

  .distillerie-section-heading {
    margin-bottom: 40px;
  }

  .distillerie-phase-card {
    padding: 31px 23px 25px;
  }

  .distillerie-phase-card h3 {
    font-size: 27px;
  }

  .situations-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    min-height: auto;
    padding: 27px 24px;
  }
}
/* ═══════════════════════════════════════════════════════════
   PAGE CRÉATION DE PRODUITS
   ═══════════════════════════════════════════════════════════ */

/* HERO */

.produits-hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--sand);
  overflow: hidden;
}

.produits-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background-image: url("../images/creation-produit.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}

.produits-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.produits-hero-content {
  max-width: 720px;
}

.produits-hero-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.produits-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.produits-hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.produits-hero-content > p {
  max-width: 680px;
  margin-bottom: 17px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.produits-path {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding-top: 26px;
  border-top: 1px solid rgba(34, 51, 221, 0.18);
}

.produits-path span:not(.path-arrow) {
  font-size: 19px;
  font-style: italic;
  color: var(--blue);
}

.produits-path .path-arrow {
  color: var(--copper);
}

.produits-hero-visual {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.produits-hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

/* EN-TÊTES */

.produits-section-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.produits-section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.produits-section-heading > p {
  max-width: 700px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* TROIS EXPERTISES */

.produits-expertises {
  padding: 115px 0 125px;
  background: var(--white);
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.produit-card {
  min-height: 680px;
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(20, 20, 20, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(20, 30, 100, 0.1);
}

.produit-number {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
}

.produit-card h3 {
  margin-bottom: 22px;
  font-size: 31px;
  line-height: 1.08;
}

.produit-lead {
  min-height: 65px;
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.produit-card > p:not(.produit-lead) {
  margin-bottom: 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.produit-card ul {
  margin-bottom: 28px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.produit-card li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 18px;
}

.produit-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.produit-result {
  margin-top: auto;
  padding: 20px;
  background: var(--blue-light);
  border-radius: 8px;
}

.produit-result strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

.produit-result span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* CARTE 3 MISE EN AVANT */

.produit-card-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.produit-card-featured .produit-number {
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}

.produit-card-featured h3,
.produit-card-featured .produit-lead {
  color: var(--white);
}

.produit-card-featured > p:not(.produit-lead),
.produit-card-featured ul {
  color: rgba(255,255,255,.8);
}

.produit-card-featured li::before {
  color: var(--white);
}

.produit-card-featured .produit-result {
  background: rgba(255,255,255,.13);
}

.produit-card-featured .produit-result strong {
  color: var(--white);
}

.produit-card-featured .produit-result span {
  color: rgba(255,255,255,.82);
}

/* MÉTHODE */

.produits-method {
  padding: 115px 0;
  background: var(--sand);
}

.produits-method-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 95px;
}

.produits-method-intro {
  position: sticky;
  top: calc(var(--nav-h) + 45px);
}

.produits-method-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.03;
}

.produits-method-intro p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.produits-method-list {
  display: flex;
  flex-direction: column;
}

.produit-method-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(34,51,221,.16);
}

.produit-method-item:first-child {
  padding-top: 0;
}

.produit-method-item > span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
}

.produit-method-item h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.produit-method-item p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* SITUATIONS */

.produits-situations {
  padding: 115px 0 125px;
  background: var(--white);
}

.produits-situations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.produits-situation-card {
  min-height: 210px;
  padding: 34px;
  background: var(--blue-light);
  border-radius: 10px;
  border-left: 4px solid var(--blue);
}

.produits-situation-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.produits-situation-card p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .produits-hero-grid,
  .produits-method-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .produits-grid {
    grid-template-columns: 1fr;
  }

  .produit-card {
    min-height: auto;
  }

  .produits-method-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .produits-hero {
    padding: 70px 0 65px;
  }

  .produits-hero h1 {
    font-size: 43px;
  }

  .produits-hero-content > p {
    font-size: 16px;
  }

  .produits-hero-visual img {
    height: 360px;
  }

  .produits-path {
    gap: 10px;
    flex-wrap: wrap;
  }

  .produits-expertises,
  .produits-method,
  .produits-situations {
    padding: 75px 0 85px;
  }

  .produit-card {
    padding: 31px 23px 25px;
  }

  .produits-situations-grid {
    grid-template-columns: 1fr;
  }
}