/* =============================================
   DONESERVICESPLUS — style.css
   Couleurs : #0078FF (bleu) | #FF7605 (orange)
   ============================================= */

/* Material Icons */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

/* ---- Variables ---- */
:root {
  --blue: #0078FF;
  --blue-dark: #0060cc;
  --blue-light: #e8f2ff;
  --orange: #FF7605;
  --orange-dark: #e06500;
  --orange-light: #fff4ec;
  --dark: #1a1a2e;
  --grey: #6b7280;
  --grey-light: #f5f7fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 120, 255, 0.10);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-dark);
}

ul {
  list-style: none;
}

/* ---- Conteneur ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typographie ---- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  color: var(--grey);
  line-height: 1.8;
}

/* ---- Boutons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 118, 5, 0.35);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 120, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
}

/* ---- Section générique ---- */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-title .badge {
  margin-bottom: 12px;
}

/* ---- Trait décoratif sous les titres ---- */
.title-underline {
  display: inline-block;
  position: relative;
}

.title-underline::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 2px;
  margin-top: 8px;
  background: var(--orange);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card-icon-orange {
  background: var(--orange-light);
}

.card-icon-blue {
  background: var(--blue-light);
}

.card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* ---- Grilles ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- HEADER / NAVIGATION ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav .btn {
  font-size: 0.85rem;
  padding: 10px 20px;
  margin-left: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0055cc 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ---- BANDEAU crédit d'impôt ---- */
.bandeau-impot {
  background: var(--orange);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
}

.bandeau-impot p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.bandeau-impot a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}

/* ---- SECTION MÉNAGE (orange) ---- */
.section-menage {
  background: var(--orange-light);
  border-top: 3px solid var(--orange);
}

.section-menage .section-title h2 {
  color: var(--orange);
}

.section-menage .card:hover {
  border-color: var(--orange);
}

/* ---- SECTION AUXILIAIRE (bleu) ---- */
.section-auxiliaire {
  background: var(--blue-light);
  border-top: 3px solid var(--blue);
}

.section-auxiliaire .section-title h2 {
  color: var(--blue);
}

/* ---- SECTION CRÉDIT D'IMPÔT ---- */
.credit-block {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.credit-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.credit-block p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.credit-example {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.credit-example h3 {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.credit-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.credit-line:last-child {
  border-bottom: none;
}

.credit-line span:first-child {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.credit-line strong {
  color: var(--white);
}

.credit-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--orange);
}

.credit-final span {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.credit-final strong {
  color: var(--orange);
  font-size: 1.4rem;
}

/* ---- SECTION ZONE ---- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.zone-item {
  background: var(--blue-light);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.zone-item:hover {
  background: var(--blue);
  color: var(--white);
}

/* ---- SECTION RECRUTEMENT ---- */
.recrutement-block {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.recrutement-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.recrutement-block p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  background: var(--blue);
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: rgba(255,255,255,0.5);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-villes {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* ---- Formulaires ---- */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.88rem;
  color: var(--grey);
  cursor: pointer;
  margin: 0;
}

.form-checkbox label a {
  color: var(--blue);
}

/* ---- Simulateur de devis ---- */
.simulateur-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

.simulateur-result {
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--border);
}

.simulateur-result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.simulateur-result-line:last-child {
  border-bottom: none;
}

.simulateur-result-line span {
  color: var(--grey);
}

.simulateur-result-line strong {
  color: var(--dark);
  font-weight: 600;
}

.simulateur-total {
  margin-top: 16px;
  padding: 16px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simulateur-total span {
  font-weight: 600;
  color: var(--dark);
}

.simulateur-total strong {
  font-size: 1.7rem;
  color: var(--orange);
  font-weight: 700;
}

/* ---- Page hero intérieure ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0055cc 100%);
  color: var(--white);
  padding: 70px 0 60px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ---- Icones emoji dans cards ---- */
.service-list {
  list-style: none;
  margin-top: 16px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--grey);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Info box ---- */
.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.info-box p {
  color: var(--blue);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.warning-box {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.warning-box p {
  color: var(--orange-dark);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* ---- Material Icons ---- */
.mi {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  user-select: none;
  /* Obligatoire : empêche l'héritage de text-transform (ex: .badge) de casser les ligatures */
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.mi-lg { font-size: 2rem; }
.mi-xl { font-size: 2.8rem; }
.mi-sm { font-size: 1.2rem; }

/* ---- Images ---- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.img-rounded {
  border-radius: var(--radius);
  width: 100%;
  display: block;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-image-badge .icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-image-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.hero-image-badge span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* Hero layout avec image */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Section avec image latérale */
.section-img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-img-split.reverse {
  direction: rtl;
}

.section-img-split.reverse > * {
  direction: ltr;
}

.section-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.section-img-wrap:hover img {
  transform: scale(1.03);
}

/* Card avec photo */
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-card-body {
  padding: 20px;
}

.photo-card-body h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    display: none;
  }

  .section-img-split {
    grid-template-columns: 1fr;
  }

  .section-img-split.reverse {
    direction: ltr;
  }
}

/* ---- Cookie banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

#cookie-banner a {
  color: var(--orange);
}

#cookie-banner .btn {
  font-size: 0.85rem;
  padding: 10px 22px;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credit-block {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-stats {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .credit-block {
    padding: 30px 20px;
  }

  .recrutement-block {
    padding: 40px 20px;
  }

  .simulateur-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
