/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ THEME ============ */
:root {
  --primary: #009DE0;
  --primary-dark: #0073A8;
  --primary-light: #E5F5FC;
  --green: #00B388;
  --green-light: #E0F5EE;
  --yellow: #FFD200;
  --yellow-light: #FFF8DB;
  --orange: #F26A21;
  --orange-light: #FEEDE2;
  --dark: #1B2026;
  --text: #2A2F36;
  --text-muted: #5C6370;
  --text-light: #8A8F96;
  --gray: #F4F6F8;
  --gray-2: #E8ECEF;
  --border: #E0E4E8;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1280px, 92vw);
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

.container { width: var(--container); margin: 0 auto; }

/* ============ UTILITY BAR ============ */
.util-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
}
.util-inner { display: flex; justify-content: flex-end; gap: 28px; }
.util-inner a { color: rgba(255,255,255,0.85); transition: color 0.2s; font-weight: 400; }
.util-inner a:hover { color: var(--white); }

/* ============ HEADER ============ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
/* On masque le texte à côté du logo car le logo image l'inclut déjà */
.logo-text,
.logo .logo-name,
.logo .logo-tag { display: none !important; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 22px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; line-height: 1; }
.logo-tag { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 10px 20px; }
.btn-outline:hover { background: var(--primary-light); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #FFC700; }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-large { padding: 16px 28px; font-size: 15px; }

.header-nav { border-top: 1px solid var(--border); }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-list > li > a {
  display: block;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--primary); }
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-list > li > a:hover::after, .nav-list > li > a.active::after { transform: scaleX(1); }
.nav-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .nav-list { overflow-x: auto; }
  .nav-list > li > a { padding: 14px 14px; font-size: 13px; }
}
@media (max-width: 768px) {
  .util-bar { display: none; }
  .header-nav { display: none; }
  .logo-tag { display: none; }
  .btn-outline { display: none; }
  .header-actions .btn-primary { display: none; }
  .header-top { padding: 10px 0; padding-right: 60px; }
  .logo-mark { height: 56px; max-width: 240px; }
}
@media (max-width: 480px) {
  .logo-mark { height: 48px; max-width: 200px; }
}

/* ============ HERO BIG (Homepage) ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #003A5C 0%, #005A8F 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 540px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 157, 224, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 179, 136, 0.25) 0%, transparent 50%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0 90px;
}
.hero-content { max-width: 600px; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { padding: 16px 28px; font-size: 15px; }
.btn-glass {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); }

.hero-image {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 40px);
}
.hero-image-content {
  position: absolute;
  inset: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.hero-stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  align-self: flex-start;
}
.hero-stats-pill .star { color: var(--yellow); }
.hero-image-bottom {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--dark);
}
.hero-image-bottom .label { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.hero-image-bottom .num { font-size: 28px; font-weight: 900; color: var(--primary); line-height: 1; }
.hero-image-bottom .desc { font-size: 13px; color: var(--text); margin-top: 6px; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 80px; }
  .hero-image { height: 280px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 32px 0 40px; gap: 24px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; padding: 14px 20px; }
  .hero-image { height: auto; min-height: 0; padding: 20px; }
  .hero-image-content { position: static; inset: auto; gap: 16px; }
  .hero-image-bottom { padding: 16px; }
  .hero-image-bottom .num { font-size: 22px; }
  .hero-stats-pill { font-size: 12px; padding: 8px 14px; }
  .hero-badges { margin-bottom: 16px; }
  .badge { font-size: 11px; padding: 5px 10px; }
}

/* ============ HERO SMALL (sub-pages) ============ */
.hero-sm {
  background: linear-gradient(135deg, #003A5C 0%, #005A8F 100%);
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0, 157, 224, 0.3) 0%, transparent 60%);
}
.hero-sm-inner { position: relative; max-width: 800px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }
.hero-sm h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-sm h1 .accent { color: var(--yellow); }
.hero-sm p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-sm-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero-sm-meta-item { display: flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
  .hero-sm { padding: 40px 0 50px; }
  .hero-sm h1 { font-size: 26px; }
  .hero-sm p { font-size: 15px; }
}

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-header { margin-bottom: 40px; max-width: 800px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section { padding: 50px 0; }
  .section-header { margin-bottom: 28px; }
  .section-subtitle { font-size: 15px; }
}

/* Background variants */
.bg-gray { background: var(--gray); }
.bg-white { background: var(--white); }
.bg-primary-light { background: var(--primary-light); }

/* ============ TILES (3 entries) ============ */
.hero-tiles { background: var(--white); border-bottom: 1px solid var(--border); margin-top: -40px; position: relative; z-index: 5; }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.tile {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
}
.tile:last-child { border-right: none; }
.tile:hover { background: var(--gray); }
.tile-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-content h3 { font-size: 16px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.tile-content p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 768px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .tile { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============ TABS ============ */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gray-2);
  flex-wrap: wrap;
}
.tab {
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab:hover { color: var(--primary); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-icon { width: 24px; height: 24px; flex-shrink: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============ SERVICE CARDS ============ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.svc-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.25) 0%, transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,0.04) 30px 60px);
}
.svc-card-img.var-orange { background: linear-gradient(135deg, var(--orange) 0%, #C84B0F 100%); }
.svc-card-img.var-green { background: linear-gradient(135deg, var(--green) 0%, #007D5C 100%); }
.svc-card-img.var-yellow { background: linear-gradient(135deg, #FFD200 0%, #F8AB00 100%); }
.svc-card-img.var-purple { background: linear-gradient(135deg, #6E5BC4 0%, #4A3BA0 100%); }
.svc-card-img.var-pink { background: linear-gradient(135deg, #FF6B9D 0%, #C8478C 100%); }
.svc-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  z-index: 2;
}
.svc-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}
.svc-card-tag.urgent { background: var(--orange); color: var(--white); }
.svc-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 20px; font-weight: 900; color: var(--primary); margin-bottom: 10px; line-height: 1.25; }
.svc-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; flex-grow: 1; margin-bottom: 18px; }
.svc-card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-card-link:hover { gap: 10px; }

/* ============ AVIS ============ */
.avis-header { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.avis-rating { display: flex; align-items: center; gap: 16px; background: var(--gray); padding: 16px 24px; border-radius: var(--radius); }
.avis-rating-num { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.avis-rating-num span { font-size: 18px; color: var(--text-muted); font-weight: 400; }
.avis-rating-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.avis-rating-label { font-size: 12px; color: var(--text-muted); }

.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .avis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .avis-grid { grid-template-columns: 1fr; } }

.avis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.avis-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.avis-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.avis-text { color: var(--text); font-size: 15px; line-height: 1.5; flex-grow: 1; }
.avis-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.avis-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
}
.avis-name { font-weight: 700; font-size: 14px; }
.avis-meta { font-size: 12px; color: var(--text-muted); }

/* ============ DON'T MISS / Cards 4 ============ */
.dontmiss-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .dontmiss-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .dontmiss-grid { grid-template-columns: 1fr; } }

.dm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.dm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dm-card-img { height: 140px; position: relative; overflow: hidden; }
.dm-card-img.elu {
  background: linear-gradient(135deg, var(--yellow) 0%, #F8AB00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 900;
  font-size: 38px;
}
.dm-card-img.bilan { background: linear-gradient(135deg, #00B388, #007D5C); }
.dm-card-img.heures { background: linear-gradient(135deg, #6E5BC4, #4A3BA0); }
.dm-card-img.gaz { background: linear-gradient(135deg, #F26A21, #C84B0F); }
.dm-card-img.blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.dm-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  z-index: 2;
}
.dm-card-body { padding: 20px; flex-grow: 1; }
.dm-card h4 { font-size: 16px; font-weight: 900; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.dm-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.dm-card-link { color: var(--primary); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.dm-card-link:hover { gap: 10px; }

/* ============ CONTACT BAND ============ */
.contact-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.contact-band-inner { position: relative; }
.contact-band h2 { font-size: clamp(26px, 3.5vw, 34px); font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; }
.contact-band p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.contact-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}
.contact-band-cta:hover { transform: translateY(-2px) scale(1.02); }
.contact-band-meta { margin-top: 16px; font-size: 13px; opacity: 0.8; }

/* ============ INFO BLOCKS ============ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 1024px) { .info-grid { grid-template-columns: 1fr; gap: 32px; } }
.info-block { display: flex; gap: 20px; }
.info-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-block.green .info-icon { background: var(--green-light); color: var(--green); }
.info-block.yellow .info-icon { background: var(--yellow-light); color: #B8870A; }
.info-block.orange .info-icon { background: var(--orange-light); color: var(--orange); }
.info-content h3 { font-size: 18px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.info-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.info-content a { color: var(--primary); font-weight: 700; }
.info-content a:hover { text-decoration: underline; }

/* ============ NOTIFICATIONS ============ */
.notif {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  margin-bottom: 12px;
  align-items: flex-start;
}
.notif:last-child { margin-bottom: 0; }
.notif.warn { border-left-color: var(--orange); }
.notif-icon { flex-shrink: 0; color: var(--primary); }
.notif.warn .notif-icon { color: var(--orange); }
.notif-content h4 { font-size: 15px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.notif-content p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============ TWO COLUMN ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > div:first-child { order: 0; }
}
.two-col-content h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 900; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.15; }
.two-col-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.two-col-content ul.check-list { margin: 20px 0; }
.two-col-content ul.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}
.two-col-content ul.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px; height: 22px;
  background: var(--green-light);
  border-radius: 50%;
}
.two-col-content ul.check-list li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.two-col-img {
  height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.two-col-img.orange { background: linear-gradient(135deg, var(--orange) 0%, #C84B0F 100%); }
.two-col-img.purple { background: linear-gradient(135deg, #6E5BC4 0%, #4A3BA0 100%); }
.two-col-img.green { background: linear-gradient(135deg, var(--green) 0%, #007D5C 100%); }
.two-col-img.yellow { background: linear-gradient(135deg, #FFD200 0%, #F8AB00 100%); }
.two-col-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 40px);
}
.two-col-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  z-index: 2;
}
@media (max-width: 768px) { .two-col-img { height: 240px; } }

/* ============ PROCESS / STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; }

/* ============ FORM ============ */
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 157, 224, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ============ AID/CEE TABLE ============ */
.aid-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .aid-grid { grid-template-columns: 1fr; } }
.aid-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.aid-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.aid-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.aid-card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aid-card.green .aid-card-icon { background: var(--green-light); color: var(--green); }
.aid-card.yellow .aid-card-icon { background: var(--yellow-light); color: #B8870A; }
.aid-card.orange .aid-card-icon { background: var(--orange-light); color: var(--orange); }
.aid-card-amount {
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 12px;
  border-radius: 100px;
}
.aid-card h3 { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.aid-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.aid-card ul { margin-bottom: 16px; }
.aid-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}
.aid-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

/* ============ BLOG ============ */
.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  border: 1px solid var(--border);
}
@media (max-width: 1024px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured-img {
  background: linear-gradient(135deg, var(--green) 0%, #007D5C 100%);
  position: relative;
  min-height: 380px;
}
.blog-featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 40px);
}
.blog-featured-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
}
.blog-featured-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.blog-tag.green { background: var(--green-light); color: var(--green); }
.blog-tag.yellow { background: var(--yellow-light); color: #B8870A; }
.blog-tag.orange { background: var(--orange-light); color: var(--orange); }
.blog-tag.purple { background: #EFEBFA; color: #4A3BA0; }
.blog-featured h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.blog-featured p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.blog-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; align-items: center; }
.blog-meta-item { display: flex; align-items: center; gap: 6px; }

.blog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog-filter {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--primary); color: var(--primary); }
.blog-filter.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.blog-card-img.green { background: linear-gradient(135deg, var(--green) 0%, #007D5C 100%); }
.blog-card-img.purple { background: linear-gradient(135deg, #6E5BC4 0%, #4A3BA0 100%); }
.blog-card-img.orange { background: linear-gradient(135deg, var(--orange) 0%, #C84B0F 100%); }
.blog-card-img.yellow { background: linear-gradient(135deg, #FFD200 0%, #F8AB00 100%); }
.blog-card-img.blue { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.blog-card-img.pink { background: linear-gradient(135deg, #FF6B9D 0%, #C8478C 100%); }
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,0.05) 30px 60px);
}
.blog-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
  margin: 12px 0 10px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.blog-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.blog-card-foot a { color: var(--primary); font-weight: 700; }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.newsletter-inner { position: relative; max-width: 600px; margin: 0 auto; }
.newsletter h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; }
.newsletter p { opacity: 0.9; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex-grow: 1;
  padding: 14px 18px;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
}
.newsletter-form button {
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #FFC700; transform: translateY(-1px); }
@media (max-width: 540px) {
  .newsletter { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
}

/* ============ PROMO HERO (Bons plans) ============ */
.promo-hero {
  background: linear-gradient(135deg, var(--yellow) 0%, #F8AB00 100%);
  color: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.promo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
}
.promo-hero-inner { position: relative; max-width: 800px; }
.promo-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.promo-hero p { font-size: 17px; line-height: 1.55; max-width: 640px; margin-bottom: 24px; }

.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .promo-card { grid-template-columns: 1fr; } }
.promo-card-img {
  background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
  position: relative;
  min-height: 280px;
}
.promo-card-img.var-orange { background: linear-gradient(135deg, var(--orange) 0%, #C84B0F 100%); }
.promo-card-img.var-purple { background: linear-gradient(135deg, #6E5BC4 0%, #4A3BA0 100%); }
.promo-card-img.var-yellow { background: linear-gradient(135deg, #FFD200 0%, #F8AB00 100%); }
.promo-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.2) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 40px);
}
.promo-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.promo-card-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.promo-card-tag.urgent { background: var(--orange); color: var(--white); }
.promo-card-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.promo-card-body h2 { font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2; }
.promo-card-body p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.55; }
.promo-card-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}
.promo-card-amount span { font-size: 18px; color: var(--text-muted); font-weight: 400; }
.promo-card-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ CONTACT GRID ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.contact-info-block:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-block h3 { font-size: 16px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.contact-info-block p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.contact-info-block a { color: var(--primary); font-weight: 700; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 60px 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,0.6); }
.footer-slogan { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.7); margin-bottom: 20px; font-weight: 300; }
.footer-slogan strong { font-weight: 900; color: var(--yellow); font-style: normal; }

.footer-col h5 {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.social a:hover { background: var(--primary); transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ====================================================================
   MENU HAMBURGER MOBILE
   ==================================================================== */

/* Bouton hamburger — visible uniquement sur mobile, dans le header */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 18px;
  right: 14px;
  z-index: 110; /* au-dessus du header (z-index 100) */
  width: 38px;
  height: 38px;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 157, 224, 0.3);
  transition: all 0.25s ease;
}
.hamburger-btn:hover { background: var(--primary-dark); }
.hamburger-btn:active { transform: scale(0.95); }
.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.open { background: var(--primary-dark); }
.hamburger-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
}

/* Overlay sombre derrière le menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 199;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

/* Panneau du menu (slide depuis la droite) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: linear-gradient(180deg, #003A5C 0%, #001F33 100%);
  color: white;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-head .logo { gap: 10px; }
.mobile-menu-head .logo-mark { height: 44px; width: auto; max-width: 180px; }
.mobile-menu-head .logo-name { display: none; }

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255, 255, 255, 0.2); }

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  background: rgba(0, 157, 224, 0.2);
  color: white;
  padding-left: 32px;
}

.mobile-menu-foot {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

/* ============================================================
   NOUVELLES PAGES — VILLES & MONEY
   ============================================================ */

/* Hero secondaire (pages internes) */
.hero-page {
  background: linear-gradient(135deg, var(--primary) 0%, #006fb3 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,210,0,0.15), transparent 50%);
  pointer-events: none;
}
.hero-page-content { position: relative; max-width: 800px; }
.hero-page h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin: 16px 0 20px;
  color: white;
}
.hero-page .highlight-yellow {
  color: var(--yellow);
  display: inline-block;
}
.hero-page .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
}
.hero-page .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-page .btn-outline {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(10px);
}
.hero-page .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}
.badge-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* Sections génériques */
.section { padding: 70px 0; }
.section-light { background: #f8fafc; }
.section-dark {
  background: linear-gradient(135deg, #1B2026 0%, #0d1117 100%);
  color: white;
}
.section-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFC700 100%);
  text-align: center;
}
.section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; font-weight: 900; }
.section .subtitle {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 48px;
}
.text-center { text-align: center; }

/* Grilles 2 colonnes */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

.rounded-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Placeholder photo (si l'image n'existe pas encore) */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 2px dashed var(--primary);
  border-radius: 16px;
  padding: 60px 24px;
  min-height: 320px;
}
.photo-placeholder span {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.photo-placeholder small {
  color: var(--gray);
  font-size: 13px;
}
.photo-placeholder code {
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

/* Cards services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,157,224,0.15);
  border-color: var(--primary);
}
.service-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p { color: var(--gray); margin-bottom: 16px; }
.link-arrow {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.link-arrow:hover { text-decoration: underline; }

/* Liste quartiers */
.quartiers-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.quartiers-list li {
  background: var(--primary);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

/* Témoignages */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: 16px;
  color: white;
}
.testimonial-card .stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial-author strong { display: block; font-style: normal; }
.testimonial-author small {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
  font-weight: 300;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Bloc CTA final */
.cta-block {
  text-align: center;
}
.cta-block h2 { color: var(--dark); }
.cta-block p {
  font-size: 17px;
  margin-bottom: 24px;
  color: rgba(0,0,0,0.7);
}
.cta-block .hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.cta-block small { color: rgba(0,0,0,0.6); font-size: 13px; }
.cta-block .btn-outline {
  background: white;
  border-color: var(--dark);
  color: var(--dark);
}

/* Tableaux de prix */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin: 24px 0;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.pricing-table th {
  background: var(--primary);
  color: white;
  font-weight: 700;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover { background: #f8fafc; }
.price-cell {
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
}

/* Comparatif */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.compare-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 2px solid #e5e7eb;
  position: relative;
}
.compare-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}
.compare-card.featured::before {
  content: "RECOMMANDÉ";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.compare-card .price-big {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  margin: 8px 0 16px;
}
.compare-card ul {
  list-style: none;
  padding: 0;
}
.compare-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.compare-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
