/* ── Hub Carrosserie ─────────────────────────────────────── */
.crs-hub {
  font-family: inherit;
  color: #1a1a2e;
  padding-top: 28px;
}

/* Hero 2 colonnes */
.crs-hub__hero {
  background: #f8f7ff;
  border-bottom: 1px solid #e8e4ff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}
.crs-hub__hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  padding: 56px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .crs-hub__hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
}
.crs-hub__hero-left { display: flex; flex-direction: column; }

.crs-hub__breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6646ff;
  font-weight: 600;
  margin-bottom: 20px;
}
.crs-hub__breadcrumb a { color: #6646ff; text-decoration: none; }
.crs-hub__breadcrumb a:hover { text-decoration: underline; }

.crs-hub__h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1a1a2e;
}
.crs-hub__h1 span { color: #6646ff; }

.crs-hub__subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #555;
  margin: 0 0 28px;
  line-height: 1.65;
}

.crs-hub__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.crs-hub__pill {
  background: #fff;
  border: 1.5px solid #e8e4ff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* Colonne droite — carte formulaire */
.crs-hub__hero-right {}
.crs-hub__form-card {
  background: #fff;
  border: 1.5px solid #e8e4ff;
  border-radius: 14px;
  padding: 28px;
}
.crs-hub__form-card-header { margin-bottom: 20px; }
.crs-hub__form-card-header .crs-hub__form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 6px 0 10px;
}
.crs-hub__form-card-header .crs-hub__form-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 14px;
}
.crs-hub__form-card-header .crs-hub__form-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #6646ff;
  text-decoration: none;
}
.crs-hub__form-card-header .crs-hub__form-phone:hover { color: #4f35d4; }
.crs-hub__form-card-header .crs-hub__form-phone-label {
  font-size: 0.75rem;
  color: #999;
  margin: 3px 0 0;
}
.crs-hub__form-card .form-body { display: flex; flex-direction: column; gap: 12px; }
.crs-hub__form-card .field { display: flex; flex-direction: column; gap: 4px; }
.crs-hub__form-card .field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.crs-hub__form-card .field input,
.crs-hub__form-card .field select,
.crs-hub__form-card .field textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.88rem;
  color: #1a1a2e;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.crs-hub__form-card .field input:focus,
.crs-hub__form-card .field select:focus,
.crs-hub__form-card .field textarea:focus { border-color: #6646ff; background: #fff; }
.crs-hub__form-card .form-note {
  font-size: 0.72rem;
  color: #bbb;
  text-align: center;
  margin: 2px 0 0;
}
.crs-hub__form-card .btn-violet,
.crs-hub__form-card .form-submit {
  background: #6646ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
}
.crs-hub__form-card .btn-violet:hover,
.crs-hub__form-card .form-submit:hover { background: #4f35d4; }

/* SEO intro */
.crs-hub__intro {
  padding: 32px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.crs-hub__intro-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}
.crs-hub__intro-text strong { color: #1a1a2e; }

/* Scroll invite */
.crs-hub__scroll-invite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 28px;
  color: #6646ff;
}
.crs-hub__scroll-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}
.crs-hub__scroll-arrow {
  animation: crs-bounce 1.5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes crs-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.6; }
}

/* Section titre */
.crs-hub__section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6646ff;
  margin-bottom: 10px;
}
.crs-hub__section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 40px;
  color: #1a1a2e;
}

/* Grid villes */
.crs-hub__grid-section {
  padding: 40px 24px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.crs-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .crs-hub__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .crs-hub__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Card ville */
.crs-hub__card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e8e4ff;
  border-radius: 14px;
  padding: 22px 20px 18px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.crs-hub__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #6646ff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.crs-hub__card:hover::before { opacity: 1; }
.crs-hub__card:hover { border-color: #6646ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,70,255,0.18); }
.crs-hub__card:hover .crs-hub__card-city,
.crs-hub__card:hover .crs-hub__card-dept,
.crs-hub__card:hover .crs-hub__card-region,
.crs-hub__card:hover .crs-hub__card-arrow { color: #fff; }
.crs-hub__card:hover .crs-hub__card-tag { background: rgba(255,255,255,0.2); color: #fff; }

.crs-hub__card-inner { position: relative; }
.crs-hub__card-tag {
  display: inline-block;
  background: #f0edff;
  color: #6646ff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.crs-hub__card-city {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.crs-hub__card-dept {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6646ff;
  transition: color 0.2s;
}
.crs-hub__card-region {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.crs-hub__card-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6646ff;
  transition: color 0.2s;
}
.crs-hub__card-arrow::after { content: ' →'; }

/* SEO bloc bas */
.crs-hub__seo {
  background: #f8f7ff;
  border: 1px solid #e8e4ff;
  padding: 48px 24px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.crs-hub__seo-inner {
  max-width: 900px;
  margin: 0 auto;
}
.crs-hub__seo h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}
.crs-hub__seo p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px;
}
.crs-hub__seo p:last-child { margin: 0; }

/* CTA band */
.crs-hub__cta {
  background: #6646ff;
  padding: 48px 24px;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.crs-hub__cta-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.crs-hub__cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
}
.crs-hub__cta-btn {
  display: inline-block;
  background: #fff;
  color: #6646ff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.crs-hub__cta-btn:hover { opacity: 0.9; }

/* Mentions légales */
.crs-hub .crs-mentions-legales {
  padding: 32px 24px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.crs-hub .crs-mentions-legales p {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.7;
  margin: 0 0 8px;
}
.crs-hub .crs-mentions-legales p:last-child { margin: 0; }
