.recruitment {
  padding: 4rem 0;
  background: var(--bg);
}

.conditional-field {
  display: none;
  margin-top: 1rem;
}

.conditional-field.visible {
  display: block;
}

.conditional-field label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.conditional-field input {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.recruitment-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
:root {
  --primary: #1f6bff;
  --primary-dark: #0a53db;
  --text: #0e141b;
  --text-muted: #54606f;
  --bg: #f6f7fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.language-switcher {
  position: relative;
  font-size: 0.8rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  font-weight: 500;
}

.language-toggle .flag-icon {
  width: 24px;
  height: 18px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.flag-fr {
  background: linear-gradient(90deg, #002395 33%, #ffffff 33%, #ffffff 66%, #ed2939 66%);
}

.flag-gb {
  background: linear-gradient(135deg, transparent 40%, #C8102E 40%, #C8102E 45%, transparent 45%, transparent 55%, #C8102E 55%, #C8102E 60%, transparent 60%),
              linear-gradient(45deg, transparent 40%, #C8102E 40%, #C8102E 45%, transparent 45%, transparent 55%, #C8102E 55%, #C8102E 60%, transparent 60%),
              linear-gradient(90deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
              linear-gradient(0deg, transparent 45%, #C8102E 45%, #C8102E 55%, transparent 55%),
              #012169;
}

.language-toggle .lang-text {
  line-height: 1;
}

.language-toggle::after {
  content: "▾";
  font-size: 0.55rem;
}

.language-menu {
  list-style: none;
  margin-top: 0.25rem;
  padding: 0.35rem 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
  min-width: 150px;
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.3rem);
}

.language-switcher[data-open="true"] .language-menu {
  display: block;
}

.language-menu li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-menu li .flag-icon {
  width: 22px;
  height: 16px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
}

.language-menu li:hover {
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 15px 30px rgba(31, 107, 255, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  border: 1px solid rgba(31, 107, 255, 0.2);
}

.btn.ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn.outline:hover {
  color: var(--white);
  border-color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(31, 107, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand--header .brand-icon {
  width: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.brand--header .brand-icon img {
  height: 44px;
  width: auto;
  display: block;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bouton hamburger - caché par défaut sur desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100000;
  position: relative;
  flex-shrink: 0;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  align-items: center;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Styles responsive pour mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 0;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }
  
  .brand {
    display: none;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 99999;
    gap: 2rem;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a {
    font-size: 1.5rem;
    padding: 0.5rem 0;
    color: var(--text);
    text-align: center;
    width: auto;
    border: none;
    font-weight: 600;
  }
  
  .main-nav a:first-child {
    color: var(--primary);
  }
  
  .header-actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-left: auto;
  }
  
  .nav-ctas {
    display: flex;
    gap: 0.3rem;
  }
  
  .nav-ctas .btn {
    padding: 0.4rem 0.5rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }
  
  .language-switcher {
    font-size: 0.7rem;
  }
  
  .language-toggle {
    padding: 0.35rem 0.5rem;
  }
  
  .lang-text {
    display: none;
  }
  
  .flag-icon {
    width: 16px;
    height: 16px;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    padding: 5px;
  }
  
  .hamburger-line {
    width: 24px;
    height: 2.5px;
  }
}

.nav-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-ctas .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(31, 107, 255, 0.25);
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-visual {
  background: url('../images/page-d\'acceuil.png') center/cover;
  color: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-visual .hero-card {
  background: rgba(255, 255, 255, 0.92);
}

.estimator-hero {
  /* Hide the large estimator header band on all quote steps (FR + EN).
     This keeps only the progress bar + form visible on simulator pages
     without impacting other hero sections like the homepage. */
  display: none;
}

.hero-content {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--white);
  background: var(--primary);
  padding: 0 0.35em;
  border-radius: 0.35em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
}

.hero-card li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

.stats {
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.stats article {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}

.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.services {
  padding: 4rem 0;
}

.showcase {
  padding: 4rem 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.showcase figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.showcase figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.showcase figcaption {
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}

.showcase-text ul {
  list-style: disc inside;
  color: var(--text-muted);
  margin-top: 1rem;
}

.about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.zones {
  margin-top: 1.5rem;
}

.zones strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.zone-chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(31, 107, 255, 0.08);
}

.about-map-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.estimator {
  padding: 4rem 0 2rem;
  background: var(--bg);
}

/* On quote steps, hide the heading block above the step progress indicator
   so only the level dots + form are visible. */
.estimator .section-heading {
  display: none;
}

.progress-indicator {
  margin: 1.5rem auto 3rem;
  width: min(960px, 92vw);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 1.35rem 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: visible;
}

.progress-indicator ol {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  counter-reset: step;
}

.progress-indicator li {
  flex: 1;
  position: relative;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding-top: 2.8rem;
}

.progress-indicator li::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text-muted);
  transition: all 0.25s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.progress-indicator li::after {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 6px;
  background: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.1);
  z-index: 0;
}

.progress-indicator li:last-child::after {
  display: none;
}

.progress-indicator li.done,
.progress-indicator li.current {
  color: var(--text);
}

.progress-indicator li.done::before {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 107, 255, 0.35);
}

.progress-indicator li.done::after {
  background: linear-gradient(90deg, #1f6bff, #39c5ff);
  box-shadow: 0 10px 22px rgba(31, 107, 255, 0.3);
}

.progress-indicator li.current::before {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(31, 107, 255, 0.08);
  box-shadow: 0 12px 26px rgba(31, 107, 255, 0.25);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.form-nav .btn {
  flex: 1;
  min-width: 180px;
}

.piece-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.piece-grid label {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--white);
}

.piece-grid input {
  accent-color: var(--primary);
}

.category-grid,
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.category-card,
.detail-card,
.budget-card,
.info-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.category-card span,
.detail-card span,
.info-card span {
  font-size: 2rem;
}

.category-card strong,
.detail-card strong {
  font-size: 1.1rem;
}

.steps-hint {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.detail-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.35rem;
}

.budget-card label,
.info-card label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.budget-card input,
.info-card input,
.info-card textarea,
.info-card select {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  text-align: center;
}

.info-grid input,
.info-grid textarea,
.info-grid select {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.icon-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.estimator-selected {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

.estimator-selected span {
  font-size: 1.6rem;
  color: var(--primary);
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.estimator-next {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.estimator-group {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.estimator-upload {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.upload-dropzone {
  border: 1.5px dashed rgba(31, 107, 255, 0.4);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: rgba(31, 107, 255, 0.04);
}

.upload-dropzone.is-dragover {
  border-color: #1f6bff;
  background: rgba(31, 107, 255, 0.08);
  box-shadow: 0 12px 30px rgba(31, 107, 255, 0.15);
}

.upload-illustration {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f6bff, #39c5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
}

.upload-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.upload-copy strong {
  font-size: 1rem;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.btn-link:hover {
  color: var(--secondary);
}

.upload-hint {
  font-weight: 600;
  color: var(--text);
}

.upload-preview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}

.upload-preview.visible {
  display: flex;
}

.upload-preview li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.9rem;
}

.preview-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-thumb.doc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  background: #f7f9ff;
}

.upload-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.upload-preview .file-name {
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.upload-preview .file-size {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.upload-remove {
  background: rgba(15, 23, 42, 0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.upload-remove:hover {
  background: rgba(31, 107, 255, 0.15);
  color: var(--primary);
}

.upload-feedback {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-feedback.error {
  color: #c0392b;
}

.client-type {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.chip-option {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg);
}

.chip-option input {
  accent-color: var(--primary);
}

.chip-option strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.client-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.needs-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.estimator-divider h3 {
  margin-bottom: 0.5rem;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.needs-group {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
}

.needs-group h4 {
  margin-bottom: 0.35rem;
}

.needs-group p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.needs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.needs-list label {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.needs-list input {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.pro-panel label,
.pro-panel fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.pro-panel select,
.pro-panel input,
.pro-panel textarea {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font: inherit;
}

.finish-options {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  gap: 0.5rem;
}

.finish-options legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.finish-options label {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.pro-panel textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.estimator-group h3 {
  margin-bottom: 1rem;
}

.estimator-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.choice-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.choice-card input {
  accent-color: var(--primary);
}

.choice-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(31, 107, 255, 0.12);
  transform: translateY(-3px);
}

.choice-card small {
  color: var(--text-muted);
}

.estimator-hint {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-group label {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
}

.pill-group input {
  accent-color: var(--primary);
}

.budget-range {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.budget-range input {
  width: 100%;
}

.upload-box {
  border: 2px dashed rgba(15, 23, 42, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  display: block;
  cursor: pointer;
  background: rgba(31, 107, 255, 0.05);
}

.upload-box input {
  display: none;
}

.upload-box span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.upload-box small {
  color: var(--text-muted);
}

.estimator-submit {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

.estimator-submit p {
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  transition: transform 0.2s ease, border 0.2s ease;
}

.service-card span {
  font-size: 1.85rem;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.about {
  padding: 4rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-list {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-list li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 0.5rem;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card dl {
  margin-top: 1.5rem;
}

.about-card dt {
  font-weight: 600;
  color: var(--text-muted);
}

.about-card dd {
  margin-bottom: 1rem;
  color: var(--text);
}

.cta {
  padding: 4rem 0;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 35px 60px rgba(31, 107, 255, 0.35);
  max-width: 720px;
  margin: 0 auto;
}

.testimonials {
  padding: 4rem 0;
  background: var(--bg);
}

.testimonials .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.testimonials .section-heading .btn {
  margin-top: 1rem;
}

.testimonial-carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 0 60px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid rgba(31, 107, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.testimonial-arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(31, 107, 255, 0.3);
}

.testimonial-arrow-left {
  left: 0;
}

.testimonial-arrow-right {
  right: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow: hidden;
}

.testimonial-slide {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  display: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.testimonial-grid blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .testimonial-carousel-wrapper {
    padding: 0 50px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.star-line {
  font-size: 1.6rem;
  color: #ffcc00;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.8);
}

.contact {
  padding: 4rem 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  filter: brightness(1.05);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  color: currentColor;
}

.social-link--instagram {
  background: linear-gradient(120deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-link--facebook {
  background: linear-gradient(120deg, #1877f2, #0f5ad7);
}

.social-link--linkedin {
  background: linear-gradient(120deg, #0a66c2, #0b5aa3);
}

.social-link--tiktok {
  background: linear-gradient(120deg, #00f2ea, #00b7ff, #ff0050);
}

.socials {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.contact-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 107, 255, 0.25);
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Modal overlay (reviews & booking) */
.review-modal,
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.review-modal.active,
.booking-modal.active {
  display: flex;
}

.review-modal-content,
.booking-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}

.review-modal-close,
.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal-close:hover,
.booking-modal-close:hover {
  color: var(--text);
}

.review-modal-content h3,
.booking-modal-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.review-modal-content > p,
.booking-modal-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.review-form,
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-form label,
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.review-form input,
.review-form textarea,
.booking-form input,
.booking-form textarea,
.booking-form select {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.booking-form small {
  color: var(--text-muted);
  font-weight: 400;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  line-height: 1.4;
}

.consent-checkbox input {
  margin-top: 0.25rem;
}

.review-form input:focus,
.review-form textarea:focus,
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: 2px solid rgba(31, 107, 255, 0.25);
  border-color: var(--primary);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 2rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffcc00;
}

.review-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #059669;
  font-weight: 600;
}

.testimonials .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.testimonials .section-heading .btn {
  margin-top: 1rem;
}

.support {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  color: #fff;
}

.support-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
  border-radius: 32px;
  padding: 2.75rem;
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.support-card::before,
.support-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(0px);
  z-index: 0;
}

.support-card::before {
  top: -60px;
  right: 40px;
}

.support-card::after {
  bottom: -70px;
  left: -30px;
  background: rgba(14, 165, 233, 0.35);
}

.support-text {
  position: relative;
  z-index: 1;
}

.support-text .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.support-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}


.support-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.social-slider {
  position: relative;
  border-radius: 28px;
  padding: 1.6rem 0;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.social-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.35));
  pointer-events: none;
}

.slider-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 1rem;
  animation: slider-marquee 18s linear infinite;
}

.social-slider:hover .slider-track {
  animation-play-state: paused;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-pill .icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.social-pill .icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.social-pill strong {
  font-size: 0.95rem;
}

.social-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
}

.social-pill.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-pill.facebook {
  background: linear-gradient(135deg, #1877f2, #1d4ed8);
}

.social-pill.linkedin {
  background: linear-gradient(135deg, #0a66c2, #0f4c81);
}

.social-pill.tiktok {
  background: linear-gradient(135deg, #25f4ee, #3e7fff, #fe2c55);
}

.support-descriptions {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  font-size: 0.9rem;
}

.support-descriptions li {
  color: rgba(255, 255, 255, 0.8);
}

.support-descriptions strong {
  color: #fff;
}

.support-note {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

@keyframes slider-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Styles du bouton burger */
.menu-toggle {
  display: none; /* Caché par défaut */
  background: none;
  border: none;
  padding: 12px;
  margin: 0;
  margin-right: -12px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  order: -1;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  opacity: 0.8;
  outline: none;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
}

/* Animation du bouton burger */
body.menu-open .menu-toggle {
  position: fixed;
  right: 0;
  z-index: 10001;
}

body.menu-open .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--text);
}

body.menu-open .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--text);
}

/* Panneau latéral mobile */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 300px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  padding: 1.5rem;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

/* Animation d'ouverture/fermeture du menu */
body.menu-open .mobile-menu-overlay {
  display: block;
  opacity: 1;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -0.5rem -0.5rem -0.5rem auto;
  transition: color 0.2s ease;
}

.close-menu:hover,
.close-menu:focus {
  color: var(--primary);
  outline: none;
}

.close-menu svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin: 0 -1.5rem;
  padding: 0 1.5rem 1.5rem;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary);
  padding-left: 0.5rem;
  outline: none;
}

/* Styles pour le texte masqué */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Désactiver le défilement du corps quand le menu est ouvert */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Amélioration de l'accessibilité pour le focus */
.mobile-menu *:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Transition plus fluide pour l'overlay */
.mobile-menu-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}

body.menu-open .mobile-menu-overlay {
  visibility: visible;
}

body.menu-open .mobile-menu {
  transform: translateX(320px);
}

@media (max-width: 900px) {
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
    position: relative;
    z-index: 1000;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -0.5rem;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease;
  }
  
  .menu-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 10001;
  }
  
  .brand--header {
    margin: 0 auto 0 0;
    position: relative;
    z-index: 1;
  }
  
  .brand--header .brand-icon {
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .brand--header .brand-icon img {
    height: 40px;
    width: auto;
    max-width: 100%;
  }
  
  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .nav-ctas {
    display: flex;
    gap: 0.5rem;
  }
  
  .main-nav {
    display: none; /* Caché sur mobile, peut être affiché via un menu burger */
  }
  
  /* Ajustements pour les écrans très petits */
  @media (max-width: 480px) {
    .nav-ctas {
      display: none;
    }
    
    .header-actions {
      margin-left: auto;
    }
  }
}

.nav-ctas {
  display: flex;
  gap: 0.75rem;
}

.nav-ctas .btn {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.language-switcher {
  margin-left: 0.5rem;
}
  
  @media (max-width: 900px) {
  .language-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .support-card {
    padding: 1.5rem;
  }
  
  .review-modal-content {
    padding: 1.5rem;
  }
  
  /* Styles spécifiques pour la page de devis */
  .estimator-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .hero-card {
    margin-top: 1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .estimator-group {
    padding: 1.5rem;
  }
  
  .upload-dropzone {
    padding: 2rem 1rem;
  }
  
  .upload-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-nav .btn {
    width: 100%;
    text-align: center;
  }
  
  .estimator-submit {
    text-align: center;
  }
  
  .estimator-submit .btn {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .progress-indicator {
    padding: 0.75rem 1rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .progress-indicator ol {
    min-width: 600px;
  }
}
