/* ============================================================
   R-COST — styles.css
   Mobile-first, responsive, vanilla CSS
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Biryani:wght@300;400;600;700;800;900&family=Cabin:wght@400;500;600;700&family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Colors */
  --color-orange:      #f18b1d;
  --color-yellow:      #ffd230;
  --color-blue:        #1396d4;
  --color-grey:        #c0c7c5;
  --color-dark:        #000100;
  --color-white:       #ffffff;
  --color-bg-light:    #f5f1eb;
  --color-bg-alt:      #f5ebdf;
  --color-bg-dark:     #3a3a3a;
  --color-bg-cta:      #1a2e3b;
  --color-rse:         #004261;
  --color-text-muted:  #666666;
  --color-border:      #e0dbd3;

  /* Typography */
  --font-title:  'Biryani', sans-serif;
  --font-body:   'Noto Sans', sans-serif;
  --font-button: 'Cabin', sans-serif;

  /* Spacing */
  --section-py:   80px;
  --section-px:   24px;
  --max-width:    1280px;
  --card-radius:  15px;
  --btn-radius:   10px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --shadow-card:  0 4px 24px rgba(0,0,0,.09);

  /* Transitions */
  --transition:   0.28s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-button);
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.section {
  padding-block: var(--section-py);
}

.section--light  { background-color: var(--color-bg-light); }
.section--alt    { background-color: var(--color-bg-alt); }
.section--dark   { background-color: var(--color-bg-cta); color: var(--color-white); }
.section--rse    { background-color: var(--color-rse);   color: var(--color-white); }
.section--white  { background-color: var(--color-white); }

.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p  { font-size: 1rem; color: var(--color-text-muted); }

.section--dark p,
.section--rse  p { color: rgba(255,255,255,.80); }

.section-label {
  display: inline-block;
  font-family: var(--font-button);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: .6rem;
}

.section--dark  .section-label { color: var(--color-yellow); }
.section--rse   .section-label { color: var(--color-yellow); }

.section-header {
  margin-bottom: 56px;
}

.section-header p {
  max-width: 680px;
  margin-top: .9rem;
}

.section-header.text-center p {
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-button);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--btn-radius);
  padding: 11px 22px;
  transition: background-color var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}

.btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

/* Primary */
.btn--primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(241,139,29,.35);
}
.btn--primary:hover {
  background-color: #d97a10;
  box-shadow: 0 4px 20px rgba(241,139,29,.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

/* Secondary (outline) */
.btn--secondary {
  background-color: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}
.btn--secondary:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* White outline (on dark sections) */
.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-bg-cta);
  transform: translateY(-2px);
}

/* Ghost link */
.btn--link {
  padding: 0;
  color: var(--color-orange);
  font-weight: 600;
  background: none;
  border-radius: 0;
  gap: 6px;
}
.btn--link::after {
  content: '→';
  transition: transform var(--transition);
}
.btn--link:hover::after { transform: translateX(5px); }
.btn--link:hover { color: #d97a10; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 16px;
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
}

/* Nav links wrapper */
.navbar__menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 72px 0 0 0;
  background-color: var(--color-white);
  padding: 24px var(--section-px) 40px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 999;
}
.navbar__menu.is-open { display: flex; }

.navbar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.navbar__nav-item {
  position: relative;
}

.navbar__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.navbar__nav-link:hover,
.navbar__nav-link.is-active { color: var(--color-orange); }

.navbar__nav-link .chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.navbar__nav-item.is-open > .navbar__nav-link .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.navbar__dropdown {
  display: none;
  flex-direction: column;
  padding: 8px 0 8px 16px;
  gap: 2px;
}
.navbar__nav-item.is-open > .navbar__dropdown { display: flex; }

.navbar__dropdown-link {
  display: block;
  padding: 9px 12px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 6px;
  transition: background-color var(--transition), color var(--transition);
}
.navbar__dropdown-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-orange);
}

/* CTA in nav */
.navbar__cta {
  margin-top: 24px;
  align-self: flex-start;
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background-color var(--transition);
}
.navbar__hamburger:hover { background-color: var(--color-bg-light); }

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.navbar__hamburger.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Desktop Navbar ( ≥ 1024px ) ─────────────────────────── */
@media (min-width: 1024px) {
  .navbar__hamburger { display: none; }

  .navbar__menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    inset: auto;
    padding: 0;
    overflow: visible;
    box-shadow: none;
    gap: 8px;
  }

  .navbar__nav {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
  }

  .navbar__nav-link {
    padding: 8px 14px;
    border-bottom: none;
    border-radius: 6px;
    font-size: .95rem;
  }
  .navbar__nav-link:hover,
  .navbar__nav-link.is-active {
    color: var(--color-orange);
    background-color: rgba(241,139,29,.06);
  }

  /* Desktop dropdown */
  .navbar__nav-item:hover > .navbar__dropdown,
  .navbar__nav-item:focus-within > .navbar__dropdown {
    display: flex;
  }
  .navbar__nav-item.is-open > .navbar__dropdown { display: flex; }

  .navbar__dropdown {
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    gap: 2px;
  }

  .navbar__cta { margin-top: 0; margin-left: 16px; }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a2035 0%, #2d1a00 60%, #1e1000 100%);
  color: var(--color-white);
  overflow: hidden;
  padding-block: 100px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(241,139,29,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(19,150,212,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative shape */
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,139,29,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* ── Hero grille 2 colonnes ───────────────────────────────── */
.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .hero__top {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-col img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  display: block;
}

@media (max-width: 1023px) {
  .hero__image-col {
    order: 1;
  }
  .hero__text-col {
    order: 0;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,139,29,.18);
  border: 1px solid rgba(241,139,29,.35);
  color: var(--color-yellow);
  font-family: var(--font-button);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 24px;
  line-height: 1.18;
}

.hero h1 .highlight {
  color: var(--color-orange);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__stat-value {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}

.hero__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.60);
  margin-top: 4px;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card--border-top {
  border-top: 4px solid var(--color-orange);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(241,139,29,.15) 0%, rgba(241,139,29,.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card__icon svg { width: 28px; height: 28px; color: var(--color-orange); }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.card p { font-size: .93rem; line-height: 1.7; }

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Section : Valeurs / Onboarding intro ─────────────────── */
.values-grid .card {
  display: flex;
  flex-direction: column;
}

.values-grid .card__number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(241,139,29,.15);
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Section Services ─────────────────────────────────────── */
.services-grid { gap: 32px; }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: 40px 32px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-orange), #f5a84e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(241,139,29,.30);
}
.service-card__icon svg { width: 32px; height: 32px; color: white; }

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-dark);
}
.service-card p { flex: 1; }
.service-card .btn--link { margin-top: 4px; align-self: flex-start; }

/* ── Section CTA Central ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a2e3b 0%, #0d1e28 100%);
  color: var(--color-white);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-section__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.cta-section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.cta-section__body p { margin-bottom: 16px; }

.cta-services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block: 32px;
}

.cta-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  transition: background-color var(--transition);
}
.cta-service-item:hover { background: rgba(241,139,29,.12); }

.cta-service-item svg { width: 22px; height: 22px; color: var(--color-orange); flex-shrink: 0; }

.cta-service-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--color-white);
}

.cta-section__panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-section__panel-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--color-dark);

  margin: 0;
}

.cta-section__panel p {
  color: var(--color-dark);
  margin: 0;
}

/* ── Section Trust / Raisons ──────────────────────────────── */
.trust-grid { gap: 24px; }

.trust-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-orange);
}

.trust-card__badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241,139,29,.15), rgba(255,210,48,.10));
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card__badge svg { width: 26px; height: 26px; color: var(--color-orange); }

.trust-card h3 { font-size: 1.05rem; }
.trust-card p  { font-size: .90rem; }

.trust-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Section RSE ──────────────────────────────────────────── */
.rse-section { background-color: var(--color-rse); }

.rse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 768px)  { .rse-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rse-grid { grid-template-columns: repeat(3, 1fr); } }

.rse-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  transition: background-color var(--transition), transform var(--transition);
}
.rse-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}

.rse-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,210,48,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.rse-card__icon svg { width: 26px; height: 26px; color: var(--color-yellow); }

.rse-card h3 { color: var(--color-white); margin-bottom: 10px; font-size: 1.08rem; }
.rse-card p  { color: rgba(255,255,255,.72); font-size: .91rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.footer__main {
  padding-block: 64px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer__main { grid-template-columns: repeat(2, 1fr); gap: 40px 60px; }
}

@media (min-width: 1024px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0 80px;
  }
}

.footer__logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer__address {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  transition: background-color var(--transition), transform var(--transition);
}
.footer__social-link:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
}
.footer__social-link svg { width: 18px; height: 18px; color: white; }

.footer__col-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background-color: var(--color-orange);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer__link:hover {
  color: var(--color-orange);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__legal {
  font-size: .80rem;
  color: rgba(255,255,255,.40);
}
.footer__legal-link {
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color .2s;
}
.footer__legal-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__credit {
  font-size: .80rem;
  color: rgba(255,255,255,.35);
}

/* ── Scroll-to-top button ─────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 990;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(241,139,29,.40);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top svg { width: 22px; height: 22px; }
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #d97a10;
  transform: translateY(-3px);
}

/* ── Fade-in animation (IntersectionObserver) ─────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-left.is-visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-right.is-visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger-children.is-visible > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.stagger-children.is-visible > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.stagger-children.is-visible > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.stagger-children.is-visible > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: .35s; }

/* ── Responsive helpers ───────────────────────────────────── */
@media (max-width: 767px) {
  :root { --section-py: 56px; --section-px: 18px; }

  .hero { padding-block: 72px 56px; }

  .hero__stats { gap: 28px; }

  .cta-section__panel { padding: 32px 24px; }
}

@media (min-width: 768px) {
  :root { --section-px: 32px; }
}

@media (min-width: 1280px) {
  :root { --section-px: 40px; }
}

/* ── Divider wave ─────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── Highlight strip ──────────────────────────────────────── */
.highlight-strip {
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-yellow) 100%);
  padding-block: 18px;
  text-align: center;
}
.highlight-strip p {
  color: var(--color-white);
  font-family: var(--font-button);
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
}

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Texte blanc ──────────────────────────────────────── */
.text-white {
  color: #fff !important;
}


/* ================================================================
   PAGE : À PROPOS
================================================================ */

/* ── Hero page intérieure ─────────────────────────── */
.page-hero {
  background: var(--color-blue-deep, #004261);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(19,150,212,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(241,139,29,.15);
  border: 1px solid rgba(241,139,29,.35);
  color: #f18b1d;
  font-family: 'Cabin', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.page-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f18b1d;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  max-width: 750px;
  margin-bottom: 1.25rem;
}
.page-hero__subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ── Section A à Z ────────────────────────────────── */
.atoz {
  background: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.atoz__inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .atoz__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.atoz__header {
  max-width: 520px;
}
.atoz__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
@media (max-width: 479px) {
  .atoz__cols { grid-template-columns: 1fr; }
}
.atoz__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.atoz__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .97rem;
  color: var(--color-dark, #000100);
  line-height: 1.5;
}
.atoz__list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--color-orange, #f18b1d);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Timeline ─────────────────────────────────────── */
.timeline-section {
  background: var(--color-light, #f5f1eb);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.timeline {
  position: relative;
  margin-top: 3rem;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-orange, #f18b1d), var(--color-blue, #1396d4));
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .timeline::before {
    left: 18px;
    transform: none;
  }
}
.timeline__item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline__item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}
@media (max-width: 767px) {
  .timeline__item,
  .timeline__item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 3.5rem;
  }
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.1rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-orange, #f18b1d);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-orange, #f18b1d);
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .timeline__item::before {
    left: 18px;
    transform: none;
  }
}
.timeline__card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  max-width: 420px;
  width: 100%;
  transition: box-shadow .25s, transform .25s;
}
.timeline__card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.timeline__year {
  display: inline-block;
  font-family: 'Biryani', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-orange, #f18b1d);
  padding: .2rem .65rem;
  border-radius: 4px;
  margin-bottom: .7rem;
}
.timeline__title {
  font-family: 'Biryani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark, #000100);
  margin: 0 0 .5rem;
  line-height: 1.35;
}
.timeline__text {
  font-size: .9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA final (orange) ───────────────────────────── */
.cta-orange {
  background: var(--color-orange, #f18b1d);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-orange h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.btn--white {
  background: #fff;
  color: var(--color-orange, #f18b1d);
  border: 2px solid #fff;
  font-family: 'Cabin', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.btn--white:active {
  transform: translateY(0);
}


/* ================================================================
   PAGE : CONTACT
================================================================ */

/* ── Hero contact ─────────────────────────────────── */
.hero--contact {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, #005a82 60%, #006f9e 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero--contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(241,139,29,.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero--contact__inner {
  width: 100%;
}
.hero--contact h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero--contact h1 .highlight {
  color: var(--color-orange);
}
.hero--contact__subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Section contact principale ──────────────────── */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--color-bg-light);
}
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

/* ── Colonne infos ────────────────────────────────── */
.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: .75rem;
}
.contact-info__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(241,139,29,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
}
.contact-info__item-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.contact-info__item-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-orange);
}
.contact-info__item-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}
.contact-info__item-value a {
  color: var(--color-text);
  text-decoration: none;
  transition: color .2s;
}
.contact-info__item-value a:hover {
  color: var(--color-blue);
}
.contact-info__boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info__box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-left: 4px solid var(--color-orange);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.contact-info__box-title {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-blue-deep);
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-info__box-title svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}
.contact-info__box p {
  font-size: .93rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ── Formulaire ───────────────────────────────────── */
.contact-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
@media (min-width: 640px) {
  .contact-form-wrapper {
    padding: 3rem 2.5rem;
  }
}
.contact-form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: .75rem;
}
.contact-form__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-label abbr {
  text-decoration: none;
  color: var(--color-orange);
  margin-left: .15em;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: #fafafa;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
}
.form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(19,150,212,.15);
  background: #fff;
}
.form-control:invalid:not(:placeholder-shown) {
  border-color: #e53e3e;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--color-orange);
  cursor: pointer;
}
.form-checkbox span {
  font-size: .82rem;
  color: #666;
  line-height: 1.5;
}
.form-submit {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form .btn--primary {
  align-self: flex-start;
  padding: .875rem 2rem;
  font-size: 1rem;
}
.form-note {
  font-size: .78rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}
.form-note svg {
  display: inline;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  margin-right: .3rem;
  color: var(--color-orange);
}


/* ================================================================
   PAGE : INFOGÉRANCE
================================================================ */

/* ── Stats sous l'image hero ──────────────────────── */
.hero__image-col {
  flex-direction: column;
  align-items: stretch;
}
.hero__image-col img {
  width: 100%;
}
.hero__image-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.hero__image-stat {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.hero__image-stat__value {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}
.hero__image-stat__label {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}

/* ── Hero infogérance ─────────────────────────────── */
.hero--infogerance {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, #002f47 60%, #001f30 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero--infogerance::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(241,139,29,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(19,150,212,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero--infogerance .hero__inner {
  max-width: 780px;
}
.hero--infogerance h1 {
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* ── Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-family: 'Noto Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover {
  color: var(--color-orange);
}
.breadcrumb__sep {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
}
.breadcrumb__current {
  color: var(--color-orange);
  font-weight: 600;
}

/* ── Section intro ────────────────────────────────── */
.intro-section {
  padding: 80px 0;
  background: var(--color-bg-light, #f5f1eb);
}
.intro-section__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .intro-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.intro-section__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}
.intro-section__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}
.intro-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-visual-box {
  background: linear-gradient(135deg, var(--color-blue-deep, #004261) 0%, #002f47 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,66,97,.25);
}
.intro-visual-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(241,139,29,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-visual-box__icon {
  width: 72px;
  height: 72px;
  background: rgba(241,139,29,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-orange);
}
.intro-visual-box__icon svg {
  width: 36px;
  height: 36px;
}
.intro-visual-box__title {
  font-family: 'Biryani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.intro-visual-box__text {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* ── Section chiffres clés ────────────────────────── */
.stats-section {
  background: #fff;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--color-bg-light, #f5f1eb);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  border-top: 4px solid transparent;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  border-top-color: var(--color-orange);
}
.stat-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-orange) 0%, #e07310 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Biryani', sans-serif;
  line-height: 1;
}
.stat-card__label {
  font-family: 'Biryani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .6rem;
}
.stat-card__desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.6;
}

/* ── Section fonctionnement ───────────────────────── */
.how-section {
  background: var(--color-blue-deep, #004261);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(241,139,29,.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(19,150,212,.1) 0%, transparent 70%);
  pointer-events: none;
}
.how-section .section-label {
  color: var(--color-orange);
}
.how-section h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.how-section h3 {
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.how-section__inner {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .how-section__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.how-section__content p {
  color: rgba(255,255,255,.75);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.how-section__quote {
  background: rgba(255,255,255,.08);
  border-left: 4px solid var(--color-orange);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 1.75rem 0 2rem;
  color: #fff;
  font-family: 'Biryani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
}
.how-section__panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.how-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Biryani', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
}
.how-step__text {
  padding-top: 8px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.6;
}
.how-step__text strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ── Section atouts infogérance ───────────────────── */
.atouts-section {
  background: var(--color-bg-light, #f5f1eb);
  padding: 80px 0;
}
.atouts-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .atouts-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── .atout-card : base partagée ─────────────────── */
.atout-card {
  background: var(--color-white, #fff);
  border-radius: var(--card-radius, 15px);
  padding: 40px 32px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

/* Infogérance : centré, icône ronde, bordure basse animée */
.atouts-grid .atout-card {
  border-radius: 16px;
  text-align: center;
}
.atouts-grid .atout-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.atouts-grid .atout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.atouts-grid .atout-card:hover::after { transform: scaleX(1); }
.atouts-grid .atout-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(241,139,29,.12) 0%, rgba(19,150,212,.12) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-orange);
}
.atouts-grid .atout-card__icon svg { width: 32px; height: 32px; }
.atouts-grid .atout-card h3 {
  font-family: 'Biryani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .75rem;
}
.atouts-grid .atout-card p { font-size: .95rem; color: #666; line-height: 1.7; }

/* Leasing : flex colonne, icône carrée, bordure haute animée */
.grid-4 .atout-card {
  box-shadow: var(--shadow-card, 0 4px 24px rgba(0,0,0,.09));
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 4px solid transparent;
}
.grid-4 .atout-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(0,0,0,.14));
  border-top-color: var(--color-orange);
}
.grid-4 .atout-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(241,139,29,.16) 0%, rgba(241,139,29,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.grid-4 .atout-card__icon svg { width: 28px; height: 28px; color: var(--color-orange); }
.grid-4 .atout-card h3 { font-size: 1.15rem; color: var(--color-dark); margin: 0; }
.grid-4 .atout-card p { font-size: .93rem; line-height: 1.75; margin: 0; }
.atouts-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Cartes catégories / produits IT (partagée) ──── */
.feature-section {
  background: var(--color-bg-light, #f5f1eb);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1023px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .feature-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .feature-grid--4col { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--color-white, #fff);
  border-radius: var(--card-radius, 15px);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-card, 0 4px 24px rgba(0,0,0,.09));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition, .28s ease), box-shadow var(--transition, .28s ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue, #1396d4), var(--color-orange, #f18b1d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition, .28s ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(0,0,0,.14));
}
.feature-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  border: 3px solid var(--color-blue, #1396d4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-blue, #1396d4);
  background: rgba(19, 150, 212, .06);
}
.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark, #000100);
  margin: 0 0 1rem;
}
.feature-card__desc {
  font-size: .875rem;
  color: var(--color-text-muted, #666);
  line-height: 1.65;
  margin: 0 0 .9rem;
  text-align: center;
}

.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  text-align: left;
  width: 100%;
}
.feature-card__list li {
  display: block;
  position: relative;
  padding-left: calc(8px + .55rem);
  font-family: var(--font-body, 'Noto Sans', sans-serif);
  font-size: .93rem;
  color: var(--color-text-muted, #666);
  line-height: 1.65;
}
.feature-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-blue, #1396d4);
}


.feature-card__more {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
  font-size: .8rem;
  color: var(--color-text-muted, #666);
  text-align: center;
  width: 100%;
}
.feature-card__more-link {
  color: var(--color-blue, #1396d4);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition, .28s ease);
}
.feature-card__more-link:hover {
  color: var(--color-orange, #f18b1d);
}

/* ================================================================
   PAGE : LEASING INFORMATIQUE
================================================================ */

/* ── Hero leasing ─────────────────────────────────── */
.hero--leasing {
  background: linear-gradient(135deg, #1a2035 0%, #2d1a00 60%, #1e1000 100%);
}

/* ── Section intro leasing ────────────────────────── */
.leasing-intro__text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 780px;
}
.leasing-intro__cta {
  margin-top: 40px;
}



/* ── Timeline des étapes ──────────────────────────── */
.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(180deg, var(--color-orange) 0%, rgba(241,139,29,.15) 100%);
}
.step__number {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), #f5a84e);
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(241,139,29,.35);
}
.step__body {
  padding-bottom: 48px;
  flex: 1;
}
.step:last-child .step__body {
  padding-bottom: 0;
}
.step__body h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  margin-top: 12px;
}
.step__body p {
  font-size: .95rem;
  line-height: 1.75;
}
.steps__cta {
  text-align: center;
  margin-top: 56px;
}
@media (max-width: 639px) {
  .step { gap: 20px; }
  .step__number { width: 46px; height: 46px; font-size: 1.1rem; }
  .step:not(:last-child)::after { left: 22px; top: 46px; }
}

/* ── Avantages cards ──────────────────────────────── */
.avantage-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.avantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-orange);
}
.avantage-card__badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241,139,29,.15), rgba(255,210,48,.10));
  display: flex;
  align-items: center;
  justify-content: center;
}
.avantage-card__badge svg {
  width: 26px;
  height: 26px;
  color: var(--color-orange);
}
.avantage-card h3 {
  font-size: 1.08rem;
  color: var(--color-dark);
  margin: 0;
}
.avantage-card p {
  font-size: .91rem;
  line-height: 1.75;
  margin: 0;
}
.avantages__cta {
  text-align: center;
  margin-top: 52px;
}

/* ── Green IT badge ───────────────────────────────── */
.green-it-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-button);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2e7d32;
  background: rgba(46,125,50,.12);
  border: 1px solid rgba(46,125,50,.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}
.green-it-badge svg {
  width: 13px;
  height: 13px;
  color: #2e7d32;
}

/* ── Grille 2 colonnes intro leasing ──────────────── */
.leasing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .leasing-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .leasing-two-col .leasing-two-col__img {
    width: 100%;
    justify-content: center;
  }
  .leasing-two-col .leasing-two-col__img img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}




/* ================================================================
   PAGES LÉGALES
   (mentions-légales · CGU · CGV · politique de confidentialité)
================================================================ */

/* ── Section contenu légal ────────────────────────── */
.legal-section {
  background: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Biryani', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-blue-deep, #004261);
  margin: 2.75rem 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--color-orange, #f18b1d);
  display: inline-block;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-family: 'Biryani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark, #000100);
  margin: 1.75rem 0 .6rem;
}
.legal-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin: 0 0 1rem;
}
.legal-content strong {
  color: var(--color-dark, #000100);
  font-weight: 600;
}
.legal-content address {
  font-style: normal;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
.legal-content a {
  color: var(--color-orange, #f18b1d);
  text-decoration: none;
  font-weight: 500;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-content ul {
  margin: .5rem 0 1.25rem 0;
  padding: 0;
  list-style: none;
  display: block;
}
.legal-content ul li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .97rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: .6rem;
}
.legal-content ul li:last-child {
  margin-bottom: 0;
}
.legal-content ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--color-orange, #f18b1d);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.legal-info-grid {
  display: grid;
  gap: .6rem;
  margin: 1rem 0 1.5rem;
}
.legal-info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: .7rem 1rem;
  border-radius: 8px;
  background: var(--color-light, #f5f1eb);
  font-size: .97rem;
}
@media (max-width: 540px) {
  .legal-info-row {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
}
.legal-info-row__label {
  font-weight: 600;
  color: var(--color-blue-deep, #004261);
}
.legal-info-row__value {
  color: #444;
}
.legal-info-row__value a {
  color: var(--color-orange, #f18b1d);
  text-decoration: none;
  font-weight: 500;
}
.legal-info-row__value a:hover {
  text-decoration: underline;
}
.legal-highlight {
  background: var(--color-light, #f5f1eb);
  border-left: 4px solid var(--color-orange, #f18b1d);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-highlight p {
  margin: 0;
  font-size: .97rem;
  color: #444;
  line-height: 1.75;
}
.legal-highlight p + p {
  margin-top: .75rem;
}
.legal-preamble {
  background: var(--color-light, #f5f1eb);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.legal-preamble p {
  font-size: .95rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}
.legal-update {
  display: inline-block;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  font-style: italic;
}


/* ================================================================
   PAGE : 404
================================================================ */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  background: var(--color-blue-deep, #004261);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(241,139,29,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,66,97,.3) 0%, transparent 50%);
  pointer-events: none;
}
.error-page__inner {
  position: relative;
  max-width: 640px;
}
.error-page__code {
  font-family: var(--ff-heading, 'Biryani', sans-serif);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-orange, #f18b1d) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25em;
}
.error-page__title {
  font-family: var(--ff-heading, 'Biryani', sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.error-page__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.error-page__links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s;
}
.error-page__links a:hover {
  color: var(--color-orange, #f18b1d);
}

/* ── Glossaire des termes techniques ─────────────────────── */
sup.gloss {
  display: inline;
  position: relative;
  top: -0.4em;
  line-height: 0;
  margin-left: 0.05em;
  color: var(--color-blue);
  font-size: .58em;
  font-weight: 700;
  font-family: var(--font-button);
  cursor: default;
}

.glossary {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 48px;
}

.glossary__inner {
  max-width: 860px;
}

.glossary__title {
  font-family: var(--font-title);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.glossary__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 0;
  margin: 0;
}

.glossary__item {
  display: flex;
  gap: .6rem;
  align-items: baseline;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.glossary__num {
  color: var(--color-blue);
  font-weight: 700;
  font-family: var(--font-button);
  font-size: .7rem;
  flex-shrink: 0;
  min-width: 1.4rem;
}

.glossary__item strong {
  color: var(--color-dark);
}

.glossary__item em {
  font-style: italic;
}

/* ── Formulaire de contact — états de validation ─────────── */

/* Bordure rouge sur le champ invalide */
.field--invalid .form-control {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, .10);
  outline: none;
}

/* Bordure verte discrète sur le champ valide */
.field--valid .form-control {
  border-color: #1e8e3e;
}

/* Message d'erreur sous le champ */
.form-error-msg {
  display: block;
  margin-top: .35rem;
  font-size: .78rem;
  font-family: var(--font-body);
  color: #d93025;
  line-height: 1.4;
}

/* Zone de feedback globale (succès / erreur) */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.form-feedback:not([hidden]) {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.form-feedback--success {
  background: #e8f5ee;
  border: 1px solid #a8d5b8;
  color: #1a5c33;
}

.form-feedback--success a {
  color: #1a5c33;
  text-decoration: underline;
}

.form-feedback--error {
  background: #fce9e7;
  border: 1px solid #f5c4c0;
  color: #8c1b13;
}

.form-feedback--error a {
  color: #8c1b13;
  font-weight: 700;
}

/* Bouton en état de chargement */
.btn--loading {
  opacity: .72;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}

.btn--loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
  margin-left: .5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Masque l'icône SVG pendant le chargement */
.btn--loading svg:last-of-type {
  display: none;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* ================================================================
   FAQ PAGE
================================================================ */

/* Container principal */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Section de questions */
.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent);
  font-weight: 700;
}

/* Item FAQ (accordéon) */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 66, 97, 0.1);
}

/* Question (bouton accordéon) */
.faq-question {
  background: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.05rem;
  transition: background 0.3s ease;
  border: 0;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question.active {
  background: #f0f8ff;
  color: var(--accent);
}

/* Icône de la question */
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* Réponse (contenu accordéon) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafafa;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 20px 25px;
}

.faq-answer p {
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer strong {
  color: var(--primary-dark);
}

.faq-answer ul {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* Zones géographiques */
.zones-list {
  margin-top: 15px;
}

.zone-item {
  margin-bottom: 15px;
}

.zone-title {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.zone-cities {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    padding: 40px 15px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .faq-answer.active {
    padding: 15px 20px;
  }
}
