/* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
:root {
  /* Charte VAP : marine + vert */
  --navy:        #1a2a4a;
  --navy-mid:    #22345a;
  --navy-light:  #2c4068;
  --green:       #5aaa3c;
  --green-light: #72c050;
  --green-dark:  #448a2c;
  --white:       #ffffff;
  --off-white:   #f6f8f5;
  --grey-light:  #e6eae2;
  --grey:        #9a9a9a;
  --text:        #1e2d1e;
  --text-mid:    #505850;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);

  --transition:  0.3s ease;
  --container:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light-bg { background: var(--off-white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header--light .section__title { color: var(--white); }

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.section__eyebrow--green { color: var(--green-light); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section--dark .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,170,60,0.38);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  padding: 10px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Logo image nav — fond blanc, couleurs natives */
.nav__logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo-sep {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(26,42,74,0.18);
  flex-shrink: 0;
}
.nav__logo-region {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  padding-left: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green-dark); }
.nav__cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Dropdown — sans gap pour éviter la perte de hover */
.nav__dropdown { position: relative; }
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 8px;
  background: transparent;
}
.nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(90,170,60,0.2);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 200;
}
.nav__submenu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.84rem !important;
  color: rgba(255,255,255,0.78) !important;
  transition: background var(--transition), color var(--transition);
}
.nav__submenu li a:hover {
  background: rgba(90,170,60,0.15);
  color: var(--white) !important;
  padding-left: 22px;
}
.nav__dropdown:hover .nav__submenu,
.nav__dropdown:hover::after { display: block; }

/* Phone / contact */
.contact__phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-block;
  transition: color var(--transition);
}
.contact__phone:hover { color: var(--green-dark); }
.contact__hours { font-size: 0.82rem; color: var(--grey); }
.footer__phone {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
  display: inline-block;
}
.footer__phone:hover { color: var(--green-light); }

/* ─── INNER PAGES ────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 50%; height: 160%;
  background: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='rgba(90,170,60,0.06)' stroke-width='1'/%3E%3Ccircle cx='300' cy='300' r='270' fill='none' stroke='rgba(90,170,60,0.04)' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero__eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--green-light);
  display: block;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 760px;
}
.page-hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero__breadcrumb a:hover { color: var(--green-light); }

/* Content page */
.page-body { padding: 80px 0; }
.page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content ul.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.page-content ul.check-list li {
  font-size: 0.93rem;
  color: var(--text-mid);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.page-content ul.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}

/* FAQ */
.page-featured-img {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
}
.page-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.faq { margin-top: 48px; border-top: 1px solid var(--grey-light); padding-top: 40px; }
.faq h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.faq__item { border-bottom: 1px solid var(--grey-light); padding: 18px 0; }
.faq__q {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  cursor: pointer;
}
.faq__a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Sidebar sticky */
.page-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.sidebar-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; text-align: center; }
.sidebar-contact { background: var(--navy); }
.sidebar-contact h3,
.sidebar-contact p { color: rgba(255,255,255,0.85); }
.sidebar-contact p { color: rgba(255,255,255,0.6); }
.sidebar-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-light);
  margin: 4px 0;
  transition: color var(--transition);
}
.sidebar-phone:hover { color: var(--white); }
/* Typeform choices sidebar */
.typeform-choices { padding: 28px 24px !important; }
.typeform-choices h3 { color: var(--navy) !important; font-size: 1rem !important; margin-bottom: 20px; }
.typeform-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
}
.typeform-item:last-child { border-bottom: none; padding-bottom: 0; }
.typeform-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(90,170,60,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-top: 2px;
}
.typeform-icon svg { width: 16px; height: 16px; }
.typeform-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.typeform-item p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 0.78rem;
}

.sidebar-address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 200;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Photo pleine largeur avec fondu gauche */
.hero__photo-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
.hero__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0d1628        0%,
    #0d1628        18%,
    rgba(13,22,40,0.97) 28%,
    rgba(13,22,40,0.82) 40%,
    rgba(13,22,40,0.50) 55%,
    rgba(13,22,40,0.18) 72%,
    rgba(13,22,40,0.10) 100%
  );
}

/* Layout gauche */
.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 96px);
}
.hero__left {
  max-width: 560px;
}
.hero__logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 40px;
  display: block;
}
.hero__title-green {
  color: var(--green-light);
  display: block;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 760px;
}
/* Bouton outline spécifique hero */
.btn--outline-hero {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.btn--outline-hero:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Strip valeurs bas du hero */
.hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(10, 18, 34, 0.75);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(90,170,60,0.2);
  padding: 18px 0;
}
.hero__strip-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 24px;
}
.hero__strip-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--green-light);
}
.hero__strip-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero__strip-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.hero__strip-item .strip-stat {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-light);
}
.hero__strip-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--green-light);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--green-light));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid rgba(90,170,60,0.18);
  border-bottom: 1px solid rgba(90,170,60,0.18);
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats__item {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}
.stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__sup {
  font-size: 1.3rem;
  vertical-align: super;
}
.stats__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.stats__divider {
  width: 1px; height: 52px;
  background: rgba(90,170,60,0.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   EXPERTISE (cartes avec photo)
═══════════════════════════════════════════════════ */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.expertise__card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.expertise__card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.expertise__card-img {
  height: 180px;
  overflow: hidden;
}
.expertise__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.expertise__card:hover .expertise__card-img img { transform: scale(1.06); }
.expertise__card-body { padding: 24px 24px 28px; flex: 1; }
.expertise__card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.expertise__card-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.expertise__list { display: flex; flex-direction: column; gap: 7px; }
.expertise__list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.expertise__list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--green);
}

/* ═══════════════════════════════════════════════════
   SPÉCIALITÉS
═══════════════════════════════════════════════════ */
.specialites__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.specialites__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.specialites__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.specialites__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.specialites__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.specialites__card:hover .specialites__img img { transform: scale(1.08); }
.specialites__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,42,74,0.85) 100%);
}
.specialites__body { padding: 28px 32px 36px; flex: 1; }
.specialites__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(90,170,60,0.4);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.specialites__body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.specialites__body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}
.specialites__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.specialites__link:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   SECTION VIDÉO
═══════════════════════════════════════════════════ */
.video-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.video-section__bg {
  position: absolute;
  inset: 0;
}
.video-section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.4);
  transform: scale(1.04);
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,42,74,0.92) 30%, rgba(26,42,74,0.6) 100%);
}
.video-section__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.video-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.video-section__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}
.video-section__player {
  display: flex;
  align-items: center;
}
.video-section__player video {
  width: 100%;
  max-height: 260px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 1.5px solid rgba(90,170,60,0.25);
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   SOLUTIONS
═══════════════════════════════════════════════════ */
.solutions.section { background: #eef2f7; }

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.solutions__item {
  padding: 28px 24px 28px 28px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,42,74,0.07);
  transition: all var(--transition);
  position: relative;
}
.solutions__item:hover {
  box-shadow: 0 6px 28px rgba(26,42,74,0.14);
  transform: translateY(-3px);
  border-left-color: var(--green-dark);
}
.solutions__num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.solutions__item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.solutions__item p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.solutions__cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   POURQUOI NOUS
═══════════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.why__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.why__badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-bottom: 3px solid var(--green);
}
.why__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.why__badge-num sup { font-size: 0.9rem; vertical-align: super; }
.why__badge-text {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.why__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}
.why__features { display: flex; flex-direction: column; gap: 28px; }
.why__feature { display: flex; gap: 16px; align-items: flex-start; }
.why__feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(90,170,60,0.14), rgba(90,170,60,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-top: 2px;
}
.why__feature-icon svg { width: 20px; height: 20px; }
.why__feature h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why__feature p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   VALEURS (bande navy)
═══════════════════════════════════════════════════ */
.values {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(90,170,60,0.15);
}
.values__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.values__item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.values__item:last-child { border-right: none; }
.values__icon {
  display: block;
  color: var(--green-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.values__item h4 {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact__photo {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
}
.contact__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.contact__info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact__info-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.contact__legal {
  border-top: 1px solid var(--grey-light);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.8;
}
.contact__legal a { color: var(--green-dark); text-decoration: underline; }

/* FORM */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
}
.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(90,170,60,0.12);
}
.form__group textarea { resize: vertical; min-height: 88px; }
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.form__consent input { flex-shrink: 0; margin-top: 3px; accent-color: var(--green); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(90,170,60,0.15);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}
.footer__region {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer__nav h4,
.footer__legal-block h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__legal-block p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer__main-link {
  font-size: 0.82rem;
  color: var(--green-light);
  font-weight: 600;
  transition: color var(--transition);
}
.footer__main-link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .specialites__grid { grid-template-columns: 1fr 1fr; }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__photo { height: 360px; }
  .video-section__content { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 40px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    z-index: 150;
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1rem; color: rgba(255,255,255,0.85); }
  .nav__links a:hover { color: var(--white); }
  .nav__burger { display: flex; }

  .hero__photo-right { width: 100%; opacity: 0.25; }
  .hero__left { max-width: 100%; }
  .hero__logo { height: 40px; }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__strip-grid { flex-wrap: wrap; }
  .hero__strip-item { flex: 1 1 100%; padding: 8px 16px; }
  .hero__strip-sep { display: none; }

  .stats__grid { flex-wrap: wrap; }
  .stats__item { flex: 1 1 45%; }
  .stats__divider { display: none; }

  .expertise__grid { grid-template-columns: 1fr; }
  .specialites__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-wrap { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .values__grid { flex-wrap: wrap; }
  .values__item { min-width: 120px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .stats__item { flex: 1 1 100%; }
}
