/* ============================================================
   CVM CONSULTING — DESIGN SYSTEM v2
   Refined aesthetics with hero images on every page
   ============================================================ */

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

:root {
  --navy:    #0a1432;
  --navy2:   #1a2e5a;
  --gold:    #c9a84c;
  --gold-lt: #e0c06a;
  --cream:   #f9f8f6;
  --warm:    #f0ece3;
  --text:    #2c2c3e;
  --muted:   #4a4a5a;
  --border:  #e0dbd0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.78;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Georgia', serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: #ffffff; font-weight: 300; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0 1rem;
  height: 64px;
  line-height: 64px;
  color: #ccc5b0;
  font-size: 0.87rem;
  font-family: 'Georgia', serif;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.09);
  text-decoration: none;
}
.nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  background: #0d1b3e;
  min-width: 260px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  list-style: none;
  z-index: 2000;
  border-radius: 0 0 6px 6px;
}
.nav-menu > li:hover .dropdown { display: block; }
.nav-menu .dropdown li a {
  display: block;
  padding: 0.72rem 1.3rem;
  color: #bdb5a0;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s;
}
.nav-menu .dropdown li:last-child a { border-bottom: none; }
.nav-menu .dropdown li a:hover {
  background: rgba(201,168,76,0.13);
  color: var(--gold);
  text-decoration: none;
}

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.62) 0%, rgba(10,20,50,0.38) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 7%;
}
.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  font-family: 'Georgia', serif;
  max-width: 640px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-overlay p {
  font-size: 1.15rem;
  color: #e0d8c0;
  font-style: italic;
  max-width: 520px;
  margin-bottom: 1.8rem;
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2.1rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.hero-btn:hover { background: var(--gold-lt); transform: translateY(-2px); text-decoration: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,50,0.35) 0%, rgba(10,20,50,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 7% 2.5rem;
}
.page-hero-overlay h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Georgia', serif;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.page-hero-overlay p {
  color: #d8d0b8;
  font-size: 1rem;
  font-style: italic;
}
/* Gold accent bar below hero */
.hero-accent-bar {
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt), var(--gold));
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--warm);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--navy2); }
.breadcrumb-inner a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb-inner span { margin: 0 0.4rem; color: var(--gold); }

/* ── CONTAINER ── */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION TITLES ── */
.section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  padding-left: 0.8rem;
  font-family: 'Georgia', serif;
  line-height: 1.3;
}
.section-title-center {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Georgia', serif;
  text-align: center;
  position: relative;
  padding-bottom: 0.7rem;
  margin-bottom: 0.5rem;
}
.section-title-center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ── INTRO SECTION ── */
.intro-section {
  padding: 3.5rem 0 2rem;
}
.intro-section p {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 1.2rem;
}

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse .img-col { order: 2; }
.two-col.reverse .text-col { order: 1; }
.two-col .text-col p {
  font-size: 1.04rem;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.two-col .text-col ul {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.two-col .text-col ul li {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.55rem;
  padding-left: 0.3rem;
}
.two-col .img-col img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(10,20,50,0.16);
}

/* ── IMAGE GALLERY (3 images) ── */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.img-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(10,20,50,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.img-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(10,20,50,0.2);
}

/* ── CARDS ── */
.cards-section {
  padding: 2rem 0 3rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 2px 14px rgba(10,20,50,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,20,50,0.13);
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
}
.card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}
.card-icon {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

/* ── STEPS ── */
.steps-section {
  padding: 2.5rem 0 4rem;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.4rem 1.4rem;
  position: relative;
  box-shadow: 0 2px 14px rgba(10,20,50,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,20,50,0.13);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 1.4rem;
  background: var(--navy);
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.92rem;
  font-family: 'Georgia', serif;
  box-shadow: 0 2px 8px rgba(10,20,50,0.25);
}
.step-card h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
}
.step-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOMEPAGE SERVICES ── */
.services-section {
  padding: 4rem 0;
  background: var(--warm);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 18px rgba(10,20,50,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(10,20,50,0.15);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-family: 'Georgia', serif;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}
.card-link {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.card-link:hover { color: var(--navy); text-decoration: none; }

/* ── CONTENT SECTION (text pages) ── */
.content-section {
  padding: 3rem 0 4rem;
}
.content-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.9rem;
  font-family: 'Georgia', serif;
  border-left: 4px solid var(--gold);
  padding-left: 0.8rem;
}
.content-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy2);
  margin: 1.8rem 0 0.6rem;
  font-family: 'Georgia', serif;
}
.content-section p {
  font-size: 1.03rem;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.content-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.content-section ul li {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.65;
}
.content-section ul li::marker { color: var(--gold); }
.highlight-box {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 1.3rem 1.6rem;
  margin: 1.8rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(10,20,50,0.07);
}
.highlight-box p {
  margin: 0;
  font-style: italic;
  color: var(--navy2);
  font-size: 1.04rem;
}

/* ── CONTENT IMAGE (inline in text pages) ── */
.content-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(10,20,50,0.14);
  margin: 2rem 0;
}
.content-img-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -1.2rem;
  margin-bottom: 2rem;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-section h2 {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-family: 'Georgia', serif;
}
.cta-section p {
  font-size: 1.05rem;
  color: #c9c0a8;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.cta-btn:hover { background: var(--gold-lt); transform: translateY(-2px); text-decoration: none; }
.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 2px solid var(--gold);
  margin-left: 1rem;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-outline:hover { background: var(--gold); color: var(--navy); text-decoration: none; }

/* ── CONTACT ── */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.5rem;
  color: var(--navy);
  font-family: 'Georgia', serif;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--gold);
  padding-left: 0.8rem;
}
.contact-info p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.contact-item-text a {
  font-size: 1.05rem;
  color: var(--navy2);
  font-weight: 600;
}
.contact-item-text a:hover { color: var(--gold); text-decoration: none; }
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.2rem;
  box-shadow: 0 6px 28px rgba(10,20,50,0.09);
}
.contact-form-box h3 {
  font-size: 1.25rem;
  color: var(--navy);
  font-family: 'Georgia', serif;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--warm);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.form-submit:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
  margin: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: #0d1a3a;
  color: #c8c0b0;
  padding: 4rem 1.5rem 0;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #b0a898;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--gold-lt);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Georgia', serif;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li,
.footer-col ul li a {
  font-size: 0.93rem;
  color: #c0b8a8;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-col ul li a:hover { color: var(--gold-lt); text-decoration: none; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.4rem 0 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #8a8278;
}

/* Hamburger — hidden on desktop and tablet */
.nav-hamburger { display: none; }

/* ── RESPONSIVE ── */

/* General layout adjustments for all screens ≤ 960px */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse .img-col { order: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .img-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet/Desktop : 769px – 960px — keep horizontal nav, just shrink */
@media (min-width: 769px) and (max-width: 960px) {
  .hero { height: 420px; }
  .hero-overlay h1 { font-size: 2.1rem; }
  .page-hero { height: 260px; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse .img-col { order: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .img-gallery { grid-template-columns: repeat(2, 1fr); }
  /* Shrink nav text for tablet */
  .nav-menu > li > a { padding: 0 0.6rem; font-size: 0.8rem; }

  /* ── IMAGES FLOTTANTES : réduire la largeur sur tablette ── */
  img[style*="float:right"],
  img[style*="float: right"] {
    width: 260px !important;
    max-width: 45% !important;
  }

  /* ── GRILLES INLINE 1fr 1fr : passer en 1 colonne sur tablette ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── SECTION COMPLÉMENTARITÉ : 2 colonnes sur tablette ── */
  .cards-grid[style*="minmax(220px"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── OVERFLOW PREVENTION ── */
  body { overflow-x: hidden; }
}

/* Mobile only : ≤ 768px — hamburger menu (covers all iPhones and small tablets) */
@media (max-width: 768px) {
  /* Layout */
  .hero { height: auto; min-height: 420px; }
  .hero-overlay {
    padding: 4rem 6% 3rem;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10,20,50,0.82) 0%, rgba(10,20,50,0.45) 60%, rgba(10,20,50,0.2) 100%);
  }
  .hero-overlay h1 { font-size: 1.65rem; line-height: 1.25; max-width: 100%; margin-bottom: 0.6rem; }
  .hero-overlay p { font-size: 0.9rem; max-width: 100%; margin-bottom: 1.2rem; }
  .hero-overlay > div { flex-direction: column; gap: 0.6rem; }
  .hero-btn { text-align: center; padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .page-hero { height: 220px; }
  .page-hero-overlay { padding: 0 6%; }
  .page-hero-overlay h1 { font-size: 1.25rem; line-height: 1.3; }
  .page-hero-overlay p { font-size: 0.82rem; }
  .cards-grid, .cards-grid-2, .steps-grid, .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .cta-btn-outline { margin-left: 0; margin-top: 0.8rem; display: block; width: fit-content; margin: 0.8rem auto 0; }
  .img-gallery { grid-template-columns: 1fr; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    background: none;
    border: none;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  /* Hide horizontal nav on mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 20, 50, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 1000;
    padding: 80px 20px 40px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { text-align: center; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-menu > li:last-child { border-bottom: none; }
  .nav-menu > li > a {
    font-size: 1.2rem;
    color: #fff;
    padding: 1rem 0;
    height: auto;
    line-height: 1.4;
    display: block;
    white-space: normal;
  }
  .nav-menu > li > a:hover { color: var(--gold); background: transparent; }
  /* Dropdown always visible inside mobile menu */
  .nav-menu .dropdown {
    position: static;
    display: block !important;
    background: transparent;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 0.5rem;
    min-width: auto;
  }
  .nav-menu .dropdown li a {
    font-size: 0.95rem;
    color: var(--gold);
    padding: 0.45rem 0;
    border-bottom: none;
    display: block;
  }
  .nav-menu .dropdown li a:hover { color: #fff; background: transparent; }

  /* ── IMAGES FLOTTANTES : annuler le float sur mobile ── */
  img[style*="float:right"],
  img[style*="float: right"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1.5rem 0 !important;
    display: block;
  }

  /* ── IMAGE FIXE DANS SECTION FLEX (ex: illus_productivite) ── */
  img[style*="width:320px"],
  img[style*="width: 320px"],
  img[style*="width:340px"],
  img[style*="width: 340px"] {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 1 !important;
  }

  /* ── GRILLES INLINE 1fr 1fr : passer en 1 colonne sur mobile ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── SECTION COMPLÉMENTARITÉ : cartes en 1 colonne ── */
  .cards-grid[style*="minmax(220px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── SECTION TITLE CENTER : réduire la taille sur mobile ── */
  .section-title-center { font-size: 1.3rem; }
  .section-title { font-size: 1.25rem; }

  /* ── HIGHLIGHT BOX : padding réduit ── */
  .highlight-box { padding: 1rem 1.1rem; }

  /* ── BLOCKQUOTE / CITATION : padding réduit ── */
  blockquote { padding: 1rem 1.1rem !important; font-size: 0.95rem !important; }

  /* ── CTA SECTION : padding réduit ── */
  .cta-section { padding: 3rem 1.2rem; }
  .cta-section h2 { font-size: 1.5rem; }

  /* ── STEPS GRID : numéros visibles ── */
  .step-card { margin-top: 1.2rem; }

  /* ── CONTAINER : padding latéral réduit ── */
  .container, .container-wide { padding: 0 1rem; }

  /* ── FAQ SECTION ── */
  .faq-item { padding: 1rem 1.1rem; }
  .faq-question { font-size: 0.95rem; }

  /* ── INTRO SECTION ── */
  .intro-section { padding: 2rem 0 1.5rem; }
  .intro-section p { font-size: 1rem; }

  /* ── OVERFLOW PREVENTION ── */
  body { overflow-x: hidden; }
  * { max-width: 100%; }
  img { max-width: 100% !important; }
}
