:root {
    --bleu: #002395;
    --bleu-clair: #1a3fad;
    --bleu-tres-clair: #e8ecf8;
    --rouge: #ED2939;
    --rouge-fonce: #c01e2c;
    --rouge-clair: #fdeced;
    --blanc: #ffffff;
    --gris-clair: #f4f5f7;
    --gris-moyen: #e2e4e9;
    --gris-texte: #4a4f5e;
    --texte-principal: #111827;
    --ombre: 0 2px 16px rgba(0,35,149,0.09);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100%; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    color: var(--texte-principal);
    background: var(--blanc);
    line-height: 1.6;
  }
  a { text-decoration: none; color: inherit; }

  /* BANDE TICKER */
  .ticker-bar {
    background: var(--bleu);
    color: var(--blanc);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-block;
    animation: ticker 30s linear infinite;
  }
  .ticker-inner span {
    margin: 0 40px;
  }
  .ticker-inner span::before {
    content: "⭐ ";
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* NAV */
  nav {
    background: var(--blanc);
    border-bottom: 3px solid var(--bleu);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--ombre);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-flag {
    display: flex;
    width: 36px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .logo-flag span {
    flex: 1;
    display: block;
  }
  .logo-flag .b { background: var(--bleu); }
  .logo-flag .w { background: var(--blanc); border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; }
  .logo-flag .r { background: var(--rouge); }
  .logo-text {
    font-family: 'Marianne', 'Source Sans 3', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--bleu);
    line-height: 1.2;
  }
  .logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gris-texte);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--texte-principal);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--bleu); }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .btn-tel {
    background: var(--rouge);
    color: var(--blanc) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
  }
  .btn-tel:hover { background: var(--rouge-fonce); }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--bleu) 0%, #001770 100%);
    color: var(--blanc);
    padding: 72px 24px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: var(--rouge);
    border-radius: 50%;
    opacity: 0.08;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: var(--blanc);
    border-radius: 50%;
    opacity: 0.04;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
    position: relative;
  }
  .hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }
  .hero-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,35,0.72));
    padding: 24px 20px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-image-overlay .overlay-badge {
    background: var(--rouge);
    color: var(--blanc);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .hero-image-overlay .overlay-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
  }
  .hero-form-row {
    max-width: 1100px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
  }
  .hero h1 {
    font-family: 'Marianne', 'Source Sans 3', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--blanc);
  }
  .hero h1 em {
    font-style: normal;
    color: #ffcd00;
  }
  .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    line-height: 1.65;
  }
  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blanc);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .hero-tag::before { content: "✓"; color: #ffcd00; }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: #22c55e;
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
  .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: background 0.2s;
    cursor: pointer;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.2); }
  .hero-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .review-avatars {
    display: flex;
  }
  .review-avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bleu);
    background: var(--bleu-clair);
    font-size: 13px;
    font-weight: 700;
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
  }
  .review-avatars span:first-child { margin-left: 0; }
  .review-text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
  }
  .review-text strong { color: var(--blanc); }
  .stars-row { color: #ffcd00; letter-spacing: 1px; font-size: 14px; }

  /* HERO CARD FORM */
  .hero-card {
    background: var(--blanc);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  }
  .hero-card h3 {
    font-family: 'Marianne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bleu);
    margin-bottom: 6px;
  }
  .hero-card p {
    font-size: 14px;
    color: var(--gris-texte);
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gris-texte);
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gris-moyen);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--texte-principal);
    transition: border-color 0.2s;
    background: var(--blanc);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--bleu);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .btn-form {
    width: 100%;
    background: #22c55e;
    color: var(--blanc);
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }
  .btn-form:hover { background: #16a34a; }
  .form-trust {
    text-align: center;
    font-size: 12px;
    color: var(--gris-texte);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  /* LOGOS AGRÉMENTS */
  .logos-bar {
    background: var(--gris-clair);
    border-bottom: 2px solid var(--gris-moyen);
    padding: 18px 24px;
  }
  .logos-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .logos-inner span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gris-texte);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .badge-agree {
    background: var(--bleu);
    color: var(--blanc);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .badge-vhu {
    background: var(--rouge);
    color: var(--blanc);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* SECTION COMMUNE */
  section { padding: 72px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: var(--bleu-tres-clair);
    color: var(--bleu);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Marianne', 'Source Sans 3', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--texte-principal);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .section-sub {
    font-size: 17px;
    color: var(--gris-texte);
    max-width: 560px;
    margin-bottom: 48px;
  }

  /* COMMENT ÇA MARCHE */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step-card {
    background: var(--blanc);
    border: 1.5px solid var(--gris-moyen);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .step-card:hover {
    border-color: var(--bleu);
    box-shadow: 0 4px 24px rgba(0,35,149,0.1);
  }
  .step-num {
    width: 44px;
    height: 44px;
    background: var(--bleu);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .step-card h3 {
    font-family: 'Marianne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .step-card p { font-size: 15px; color: var(--gris-texte); line-height: 1.6; }

  /* AVANTAGES */
  .avantages-bg { background: var(--gris-clair); }
  .avantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
  .avantage-item {
    background: var(--blanc);
    border: 1.5px solid var(--gris-moyen);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.2s;
  }
  .avantage-item:hover { border-color: var(--bleu); }
  .avantage-icon {
    width: 42px;
    height: 42px;
    background: var(--bleu-tres-clair);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .avantage-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--texte-principal);
  }
  .avantage-text p { font-size: 13px; color: var(--gris-texte); line-height: 1.5; }
  .avantages-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .avantages-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-box {
    background: var(--blanc);
    border: 1.5px solid var(--gris-moyen);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }
  .stat-box .stat-num {
    font-family: 'Marianne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--bleu);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-box .stat-label { font-size: 13px; color: var(--gris-texte); font-weight: 600; }
  .avantages-right h3 {
    font-family: 'Marianne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--texte-principal);
  }
  .avantages-right p {
    font-size: 15px;
    color: var(--gris-texte);
    margin-bottom: 20px;
    line-height: 1.65;
  }

  /* INTERVENTIONS */
  .interventions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }
  .intervention-card {
    background: var(--gris-clair);
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--gris-moyen);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .intervention-card:hover {
    border-color: var(--bleu);
    box-shadow: 0 4px 20px rgba(0,35,149,0.08);
  }
  .intervention-img {
    height: 180px;
    background: linear-gradient(135deg, #002395 0%, #0038d1 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .intervention-img .img-emoji { font-size: 56px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
  .intervention-img .ville-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    color: var(--bleu);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
  }
  .intervention-body { padding: 18px 20px; }
  .intervention-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .intervention-body p { font-size: 13px; color: var(--gris-texte); }

  /* VÉRIF IMMAT */
  .immat-section { background: var(--bleu); }
  .immat-inner { max-width: 700px; margin: 0 auto; text-align: center; }
  .immat-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
  .immat-section .section-title { color: var(--blanc); }
  .immat-section .section-sub { color: rgba(255,255,255,0.75); max-width: 100%; }
  .immat-form {
    background: var(--blanc);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  }
  .immat-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .immat-plate-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gris-moyen);
    border-radius: 8px;
    font-size: 22px;
    font-family: 'Marianne', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--texte-principal);
    transition: border-color 0.2s;
    text-align: center;
  }
  .immat-plate-input:focus { outline: none; border-color: var(--bleu); }
  .immat-plate-input::placeholder { font-size: 16px; letter-spacing: 0; font-weight: 400; color: #bbb; }
  .btn-verifier {
    background: var(--rouge);
    color: var(--blanc);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .btn-verifier:hover { background: var(--rouge-fonce); }
  .immat-result {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: none;
  }
  .immat-result.ok { background: #e8f8ee; color: #1a6e33; border: 1.5px solid #a3d9b4; }
  .immat-result.ko { background: #fdeced; color: #9b2335; border: 1.5px solid #f5aab2; }

  /* TÉMOIGNAGES */
  .temoignages-bg { background: var(--gris-clair); }
  .temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
  .temoignage-card {
    background: var(--blanc);
    border: 1.5px solid var(--gris-moyen);
    border-radius: 14px;
    padding: 24px;
  }
  .stars { color: #f4c542; font-size: 16px; margin-bottom: 10px; letter-spacing: 1px; }
  .temoignage-texte { font-size: 14px; color: var(--gris-texte); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
  .temoignage-auteur {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .auteur-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bleu);
    color: var(--blanc);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .auteur-nom { font-size: 14px; font-weight: 700; color: var(--texte-principal); }
  .auteur-date { font-size: 12px; color: var(--gris-texte); }

  /* FAQ */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border: 1.5px solid var(--gris-moyen);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-question {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--blanc);
    color: var(--texte-principal);
    transition: background 0.2s;
  }
  .faq-question:hover { background: var(--gris-clair); }
  .faq-question .arrow {
    font-size: 18px;
    color: var(--bleu);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .faq-item.open .faq-question { background: var(--bleu-tres-clair); color: var(--bleu); }
  .faq-item.open .arrow { transform: rotate(180deg); }
  .faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    font-size: 15px;
    color: var(--gris-texte);
    line-height: 1.7;
    background: var(--blanc);
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 14px 22px 18px; }

  /* CTA FINAL */
  .cta-final { background: linear-gradient(135deg, #001770 0%, var(--bleu) 60%, var(--rouge-fonce) 100%); }
  .cta-final .section-title { color: var(--blanc); text-align: center; }
  .cta-final .section-sub { color: rgba(255,255,255,0.75); text-align: center; margin: 0 auto 36px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-blanc {
    background: var(--blanc);
    color: var(--bleu);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
  }
  .btn-blanc:hover { opacity: 0.92; transform: translateY(-1px); }

  /* FOOTER */
  footer {
    background: #0a0e2e;
    color: rgba(255,255,255,0.65);
    padding: 48px 24px 28px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
  }
  .footer-brand .logo-text { color: var(--blanc); font-size: 18px; margin-bottom: 12px; display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.65; }
  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--blanc);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--blanc); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }
  .footer-drapeau { display: flex; gap: 3px; }
  .footer-drapeau span { width: 10px; height: 16px; border-radius: 1px; }
  .fd-b { background: var(--bleu); }
  .fd-w { background: var(--blanc); }
  .fd-r { background: var(--rouge); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-inner {
      flex-wrap: wrap;
      height: auto;
      padding: 12px 16px;
      gap: 10px;
      justify-content: center;
    }
    .logo { width: 100%; justify-content: center; }
    .nav-cta { width: 100%; justify-content: center; gap: 8px; }
    .btn-tel { font-size: 13px; padding: 8px 14px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-wrap img { height: 260px; }
    .hero-form-row .hero-card > div[style*="grid-template-columns"] {
      grid-template-columns: 1fr !important;
    }
    .immat-input-row { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-verifier { width: 100%; }
    .steps, .avantages-grid, .temoignages-grid { grid-template-columns: 1fr; }
    .interventions-grid { grid-template-columns: 1fr; }
    .avantages-bottom { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero h1 { font-size: 32px; }
    .section-title { font-size: 26px; }
  }

/* === Styles pages département === */
.breadcrumb {
  background: var(--gris-clair);
  padding: 14px 24px;
  border-bottom: 1px solid var(--gris-moyen);
  font-size: 13px;
  color: var(--gris-texte);
}
.breadcrumb .breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--bleu);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep {
  margin: 0 8px;
  color: var(--gris-moyen);
}

.dept-hero {
  background: linear-gradient(135deg, var(--bleu) 0%, #001770 100%);
  color: var(--blanc);
  padding: 64px 24px 52px;
  position: relative;
  overflow: hidden;
}
.dept-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: var(--rouge);
  border-radius: 50%;
  opacity: 0.08;
}
.dept-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dept-hero-num {
  font-family: 'Marianne', sans-serif;
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  margin-bottom: -50px;
}
.dept-hero h1 {
  font-family: 'Marianne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--blanc);
}
.dept-hero h1 em {
  font-style: normal;
  color: #25c45a;
}
.dept-intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--texte-principal);
}
.dept-intro-text p {
  margin-bottom: 16px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 32px 0;
}
.city-link {
  background: var(--blanc);
  border: 1.5px solid var(--gris-moyen);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--texte-principal);
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.city-link:hover {
  border-color: var(--bleu);
  background: var(--bleu-tres-clair);
  color: var(--bleu);
}
.city-link .city-zip {
  font-size: 11px;
  color: var(--gris-texte);
  font-weight: 700;
  background: var(--gris-clair);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.city-link:hover .city-zip {
  background: var(--blanc);
  color: var(--bleu);
}

@media (max-width: 900px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-hero h1 { font-size: 30px; }
  .dept-hero-num { font-size: 80px; margin-bottom: -36px; }
}
@media (max-width: 500px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* === Sections Risque légal & Économie circulaire responsive === */
@media (max-width: 900px) {
  .section-inner [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}