/* === SUZUKI PARIS — STYLES PRINCIPAUX === */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Barlow:wght@400;500;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --primary: #1A1A2E;
  --primary-light: #16213E;
  --accent: #E63946;
  --accent-dark: #c1121f;
  --accent-light: #ff6b6b;
  --white: #ffffff;
  --gray-50: #f0f2f5;
  --gray-100: #e2e6ea;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #2d6a4f;
  --success-light: #d8f3dc;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Barlow', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray-700); line-height: 1.7; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* === NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.nav-cta-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nav-logo-icon {
  width: 46px;
  height: 32px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 3px 5px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.logo-suzuki { color: var(--accent); }
.logo-sep    { color: var(--accent); }
.logo-paris  { color: var(--accent); }
.logo-tld    { color: var(--white); }

.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius) !important;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === BREADCRUMB BAR === */
.breadcrumb-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.6rem 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--gray-600);
  transition: var(--transition);
}
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--gray-400); }
.breadcrumb-current { color: var(--gray-800); font-weight: 500; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0f3460 100%);
  color: var(--white);
  padding: 4rem 0 5rem;
  position: relative;
}
.hero--with-bg {
  background: var(--primary);
  position: relative;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,0.97) 0%, rgba(15,52,96,0.92) 60%, rgba(26,26,46,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  z-index: 3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,57,70,0.2);
  border: 1px solid rgba(230,57,70,0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Quick links hero */
.hero-quick-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-ql {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
}
.hero-ql:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* === HERO TRUST BUBBLE === */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-bubble {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  background: rgba(230, 57, 70, 0.12);
  border: 2px solid var(--accent);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  gap: 1.25rem;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08), 0 4px 20px rgba(230, 57, 70, 0.2);
}
.hero-trust-bubble .trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-trust-bubble .trust-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
}
.hero-trust-bubble .trust-item:not(:last-child)::after {
  content: '·';
  color: rgba(230, 57, 70, 0.6);
  margin-left: 1.25rem;
  font-size: 1.2rem;
  line-height: 1;
}

/* === GARAGE VISUAL CSS === */
.garage-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.garage-scene {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d1b2a 0%, #1a1a2e 60%, #1e1e35 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
}
.garage-scene::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.6), rgba(255,255,255,0.3), rgba(230,57,70,0.6), transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 40px rgba(255,255,255,0.15), 0 0 80px rgba(230,57,70,0.2);
}
.garage-scene::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.15) 0%, transparent 70%);
}
.garage-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.garage-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, #111827 0%, #0d1117 100%);
  border-top: 2px solid rgba(230,57,70,0.3);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.garage-car {
  width: 90%;
  max-width: 340px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(230,57,70,0.3)) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  animation: garage-car-float 4s ease-in-out infinite;
}
@keyframes garage-car-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.garage-tool {
  position: absolute;
  bottom: 18%;
  right: 12%;
  width: 48px;
  height: 48px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: tool-pulse 3s ease-in-out infinite;
}
@keyframes tool-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.garage-badge-float {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
  z-index: 4;
}

/* === SPLIT SECTION === */
.split-section { background: var(--white); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
}
.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: var(--radius-xl);
}
.split-image-wrap:hover .split-img { transform: scale(1.03); }
.split-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-image-fallback::after {
  content: '🚗';
  font-size: 5rem;
  opacity: 0.3;
}
.split-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.split-content .section-tag { margin-bottom: 0.75rem; display: inline-block; }
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p { margin-bottom: 1rem; }
.split-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.split-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.split-feature strong { display: block; font-size: 0.95rem; color: var(--primary); margin-bottom: 0.2rem; }
.split-feature p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* === FORM CARD === */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.form-card-sub {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}
.form-legal {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* === STATS BAR === */
.stats-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(230,57,70,0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(230,57,70,0.2);
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* === CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.9rem; color: var(--gray-600); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}
.card-link:hover { gap: 0.5rem; }

/* === SERVICE CARD === */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-header {
  background: var(--primary);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card-header h3 { color: var(--white); font-size: 1rem; margin: 0; }
.service-card-header p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0.2rem 0 0; }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-row span:first-child { color: var(--gray-700); }
.price-tag { font-weight: 700; color: var(--accent); white-space: nowrap; }
.service-card-body .card-link { margin-top: auto; padding-top: 1rem; }

/* === MODÈLES GRID === */
.modeles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.modele-card {
  background: var(--primary);
  border: 2px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.modele-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(230,57,70,0.25);
  transform: translateY(-5px);
}
.modele-svg-wrap {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.modele-card:hover .modele-svg-wrap {
  background: rgba(230,57,70,0.08);
  border-color: rgba(230,57,70,0.2);
}
.modele-svg { width: 100%; height: auto; display: block; }
.modele-pill {
  display: inline-block;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.2rem;
  transition: var(--transition);
}
.modele-card:hover .modele-pill {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.modele-card h3 { font-size: 0.9rem; color: var(--white); margin: 0; font-weight: 700; }
.modele-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }
.modele-cta {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.modele-card:hover .modele-cta { color: var(--accent-light); letter-spacing: 0.1em; }

/* === ARRONDISSEMENTS GRID === */
.arr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.arr-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 0.85rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition);
  position: relative;
}
.arr-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.arr-card--partner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-dark);
}
.arr-card--partner:hover {
  box-shadow: 0 8px 24px rgba(230,57,70,0.45);
  transform: translateY(-4px);
  border-color: var(--accent-dark);
}
.arr-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.35);
}
.arr-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.arr-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.arr-num sup { font-size: 0.65rem; vertical-align: super; }
.arr-card--partner .arr-num { color: var(--white); }
.arr-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.arr-pop {
  font-size: 0.72rem;
  color: var(--gray-500);
  display: block;
}
.arr-card--partner .arr-name { color: rgba(255,255,255,0.95); }
.arr-card--partner .arr-pop  { color: rgba(255,255,255,0.65); }
.arr-quartiers {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.arr-card--partner .arr-quartiers { color: rgba(255,255,255,0.75); }
.arr-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.25rem;
  transition: var(--transition);
}
.arr-card--partner .arr-cta { color: rgba(255,255,255,0.9); }
.arr-card:not(.arr-card--partner):hover .arr-cta { letter-spacing: 0.04em; }
.arr-card.featured { border-color: var(--accent); background: rgba(230,57,70,0.04); }
.arr-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.active { background: var(--gray-50); color: var(--accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-band-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === CONTENT PAGE === */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 3.5rem 0;
  color: var(--white);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); }
.page-hero-desc {
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === CONTENT LAYOUT === */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.sticky-sidebar { position: sticky; top: 88px; }
.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1rem; }
.content-body ul { list-style: none; margin: 1rem 0; }
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.content-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* === SIDEBAR WIDGETS === */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--accent); padding-left: 0.25rem; }
.sidebar-links a::before { content: '→'; color: var(--accent); font-size: 0.8rem; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; color: #f4a261; }
.testimonial-text {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.author-vehicle { font-size: 0.78rem; color: var(--gray-500); }

/* === TESTIMONIALS NOUVELLE VERSION === */
.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(230,57,70,0.03) 0%, var(--white) 100%);
}
.testi-featured-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.testi-info { flex: 1; }
.testi-name { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.testi-vehicle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}
.testi-stars { color: #f4a261; font-size: 0.85rem; flex-shrink: 0; }
.testi-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}
.testi-service {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.rating-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rating-stars { color: #f4a261; font-size: 1.4rem; }
.rating-count { font-size: 0.88rem; color: var(--gray-600); }
.rating-count strong { color: var(--primary); }

/* === SOCIAL PROOF SECTION === */
.social-proof-section { background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.proof-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.proof-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.proof-card--accent {
  background: var(--primary);
  border-color: var(--primary);
}
.proof-card--accent .proof-icon { color: var(--accent); background: rgba(230,57,70,0.15); }
.proof-card--accent .proof-number { color: var(--white); }
.proof-card--accent .proof-label { color: rgba(255,255,255,0.8); }
.proof-card--accent .proof-sub { color: rgba(255,255,255,0.5); }
.proof-icon {
  width: 56px;
  height: 56px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1.25rem;
}
.proof-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.proof-sub { font-size: 0.78rem; color: var(--gray-500); }

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.step-item h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.85rem; color: var(--gray-600); }

/* === NOTICE === */
.notice-bar {
  background: var(--gray-100);
  border-top: 3px solid var(--gray-300);
  padding: 1rem 0;
  text-align: center;
}
.notice-bar p { font-size: 0.78rem; color: var(--gray-500); }
.notice-bar a { color: var(--gray-600); text-decoration: underline; }

/* === FOOTER === */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo .nav-logo-icon { background: var(--white); }
.footer-logo .nav-logo-text { font-size: 1.4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 0.5rem 0; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 0.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-disclaimer {
  background: rgba(0,0,0,0.3);
  padding: 0.75rem 1.5rem;
  margin: 0 -1.5rem;
  text-align: center;
}
.footer-disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* === ALERT === */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success { background: var(--success-light); color: var(--success); border: 1px solid #b7e4c7; }
.alert-error { background: #fff0f0; color: #c92a2a; border: 1px solid #ffc9c9; }

/* === PAGE DEVIS === */
.devis-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.devis-page-hero h1 { color: var(--white); }
.devis-form-wrapper {
  max-width: 700px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 10;
}
.devis-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* === 404 PAGE === */
.page-404-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
}
.page-404-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.page-404-content { position: relative; z-index: 1; }
.page-404-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.page-404-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.page-404-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; }
.page-404-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-404-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.page-404-form-intro h2 { margin-bottom: 1rem; }
.page-404-form-intro p { margin-bottom: 1.5rem; color: var(--gray-600); }
.page-404-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.page-404-benefits li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--gray-700); }
.page-404-benefits li svg { color: var(--accent); flex-shrink: 0; }
.page-404-form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }

/* === BLOG === */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.blog-hero-badge {
  display: inline-block;
  background: rgba(230,57,70,0.2);
  border: 1px solid rgba(230,57,70,0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.blog-coming { padding: 4rem 0; background: var(--gray-50); }
.blog-coming-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.blog-coming-icon { margin: 0 auto 1.5rem; width: 64px; height: 64px; }
.blog-coming-card h2 { margin-bottom: 0.75rem; }
.blog-coming-card p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }
.blog-coming-topics { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2rem; }
.blog-topic-pill {
  background: rgba(230,57,70,0.07);
  border: 1px solid rgba(230,57,70,0.2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.blog-coming-notif p { font-size: 0.9rem; margin-bottom: 1rem; color: var(--gray-600); }
.blog-preview { padding: 4rem 0; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-preview-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-preview-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-preview-cat {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  align-self: flex-start;
}
.blog-preview-card h3 { font-size: 1rem; line-height: 1.4; color: var(--primary); margin: 0; }
.blog-preview-card p { font-size: 0.87rem; color: var(--gray-600); margin: 0; flex: 1; }
.blog-preview-soon {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-style: italic;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* === CALCULATEUR === */
.calc-section { background: var(--gray-50); }
.calc-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.calc-header {
  background: var(--primary);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.calc-header-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.calc-header h3 { color: var(--white); font-size: 1.2rem; margin: 0; }
.calc-header p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0.25rem 0 0; }
.calc-body { padding: 2.5rem; }
.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.calc-field select,
.calc-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.calc-field select:focus, .calc-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.calc-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.calc-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}
.calc-result {
  display: none;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.calc-result.visible { display: block; }
.calc-result-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc-result-item { text-align: center; }
.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.calc-result-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.calc-result-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.calc-result-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.calc-disclaimer { font-size: 0.75rem; color: var(--gray-500); text-align: center; margin-top: 1rem; }

/* === CCM PAGE === */
.ccm-hero { position: relative; }
.ccm-hero-content { max-width: 700px; margin: 0 auto; text-align: center; }
.ccm-hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.ccm-hero-stat { text-align: center; }
.ccm-hero-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--accent-light); font-family: var(--font-heading); }
.ccm-hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.ccm-step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.ccm-step:last-child { border-bottom: none; }
.ccm-step--reverse { direction: rtl; }
.ccm-step--reverse > * { direction: ltr; }
.ccm-step-number {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.ccm-step-number span { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--white); }
.ccm-step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.ccm-step-header h2 { margin: 0; font-size: 1.4rem; }
.ccm-step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.ccm-step-details { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.ccm-detail-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ccm-detail-item svg { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.ccm-detail-item strong { display: block; font-size: 0.95rem; color: var(--primary); margin-bottom: 0.2rem; }
.ccm-detail-item p { font-size: 0.87rem; color: var(--gray-600); margin: 0; }
.ccm-form-preview, .ccm-devis-preview, .ccm-process-visual, .ccm-choice-visual {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.ccm-form-preview-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.ccm-form-preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.ccm-form-preview-dot.red { background: #ff5f57; }
.ccm-form-preview-dot.yellow { background: #febc2e; }
.ccm-form-preview-dot.green { background: #28c840; }
.ccm-form-preview-title { font-size: 0.82rem; color: var(--gray-600); margin-left: 0.25rem; }
.ccm-form-field { margin-bottom: 0.75rem; }
.ccm-form-label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.3rem; }
.ccm-form-value { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius); padding: 0.5rem 0.75rem; font-size: 0.85rem; color: var(--gray-700); }
.ccm-form-placeholder { color: var(--gray-400); font-style: italic; }
.ccm-form-btn { background: var(--accent); color: var(--white); border-radius: var(--radius); padding: 0.6rem 1rem; text-align: center; font-size: 0.85rem; font-weight: 700; margin-top: 0.75rem; }
.ccm-guarantees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ccm-guarantee-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.ccm-guarantee-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ccm-guarantee-icon { width: 56px; height: 56px; background: rgba(230,57,70,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--accent); margin: 0 auto 1.25rem; }
.ccm-guarantee-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.ccm-guarantee-card p { font-size: 0.87rem; color: var(--gray-600); }
.ccm-process-node--center { background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; justify-content: center; margin-bottom: 1rem; }
.ccm-process-arrows { display: flex; justify-content: space-around; margin: 0.5rem 0; }
.ccm-process-arrow { width: 2px; height: 30px; background: var(--accent); position: relative; }
.ccm-process-arrow::after { content: '▼'; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); color: var(--accent); font-size: 0.6rem; }
.ccm-process-garages { display: flex; flex-direction: column; gap: 0.5rem; }
.ccm-process-garage { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--gray-700); }
.ccm-devis-header { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.ccm-devis-line { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.87rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.ccm-devis-sep { height: 1px; background: var(--gray-300); margin: 0.5rem 0; }
.ccm-devis-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1rem; color: var(--primary); padding: 0.5rem 0; }
.ccm-devis-economy { background: var(--success-light); color: var(--success); font-size: 0.82rem; font-weight: 600; padding: 0.5rem 0.75rem; border-radius: var(--radius); margin-top: 0.75rem; }
.ccm-choice-title { font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; font-size: 0.9rem; }
.ccm-choice-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.5rem; transition: var(--transition); }
.ccm-choice-option--selected { border-color: var(--accent); background: rgba(230,57,70,0.03); }
.ccm-choice-check { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.ccm-choice-radio { width: 22px; height: 22px; border: 2px solid var(--gray-300); border-radius: 50%; flex-shrink: 0; }
.ccm-choice-option strong { display: block; font-size: 0.88rem; color: var(--primary); }
.ccm-choice-option p { font-size: 0.78rem; color: var(--gray-500); margin: 0; }
.ccm-choice-note { font-size: 0.75rem; color: var(--gray-400); font-style: italic; margin-top: 0.5rem; }

/* === REVEAL ANIMATION ===
   IMPORTANT : opacity:0 appliqué UNIQUEMENT quand JS est actif (.js-ready)
   Sans JS ou si l'observer échoue → les éléments sont toujours visibles
*/
.js-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE === */
@media (max-width: 1200px) {
  .nav-menu {
    position: static;
    transform: none;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .nav-wrapper { justify-content: space-between; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .form-card { max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .arr-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid-new { grid-template-columns: repeat(2, 1fr); }
  .modeles-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-fields { grid-template-columns: 1fr 1fr; }
  .page-404-form-wrap { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ccm-step { grid-template-columns: auto 1fr; }
  .ccm-step-visual { grid-column: 2; }
  .ccm-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 1rem 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.75rem 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; }
  .nav-cta-wrap { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .arr-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid-new { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-buttons { flex-direction: column; align-items: center; }
  .nav-logo-text { font-size: 1.2rem; }
  .modeles-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-fields { grid-template-columns: 1fr; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .page-404-links { flex-direction: column; align-items: center; }
  .hero-trust-bubble { border-radius: var(--radius-lg); padding: 0.75rem 1rem; gap: 0.75rem; }
  .hero-trust-bubble .trust-item:not(:last-child)::after { display: none; }
  .ccm-step { grid-template-columns: 1fr; }
  .ccm-step-number { width: 48px; height: 48px; }
  .ccm-guarantees-grid { grid-template-columns: 1fr; }
  .split-grid { gap: 2rem; }
  .garage-visual { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .arr-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-logo-text { font-size: 1rem; }
  .modeles-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-quick-links { gap: 0.4rem; }
  .hero-ql { font-size: 0.78rem; padding: 0.35rem 0.7rem; }
}
/* === FIX ANTI-DÉBORDEMENT MOBILE (ajouté) === */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
body > * {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
@media (max-width: 968px) {
  .hero-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-content, .form-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }
  .hero h1 {
    font-size: clamp(1.4rem, 5vw, 2.2rem) !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
  }
  .hero-trust-bubble {
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
  .footer-disclaimer {
    max-width: 100% !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
  }
  .footer-disclaimer table {
    table-layout: fixed !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* === FIX MENU MOBILE === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    z-index: 1001;
  }
  .nav-menu {
    z-index: 1001 !important;
  }
  .nav-menu.open {
    display: flex !important;
  }
  /* La règle body > * ne doit PAS casser le menu */
  header.site-header {
    overflow: visible !important;
  }
  header.site-header .nav-wrapper {
    overflow: visible !important;
  }
}

