:root {
  --cream: #faf7f2;
  --cream2: #f2ede4;
  --ink: #1a1612;
  --ink2: #2e2920;
  --muted: #7a7060;
  --border: #e5ddd0;
  --accent: #e85d04;
  --accent2: #9d4a00;
  --blue: #1c4ed8;
  --green: #16a34a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,22,18,0.08);
  --shadow-lg: 0 16px 60px rgba(26,22,18,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,93,4,0.28);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(26,22,18,0.04);
}

.btn-full { width: 100%; justify-content: center; }

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  text-align: center;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .sep { opacity: 0.3; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(26,22,18,0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  flex-shrink: 0;
}
.logo em { color: var(--accent); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream2); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.nav-tel:hover { border-color: var(--ink); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(26,22,18,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--ink); background: var(--cream2); }
.mobile-menu .btn-primary { margin-top: 12px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-intro h2, .section-intro.centered h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-intro h2 em { font-style: italic; color: var(--accent); }
.section-intro p { color: var(--muted); max-width: 480px; }
.section-intro { margin-bottom: 48px; }
.section-intro.centered { text-align: center; }
.section-intro.centered p { margin: 0 auto; }

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--cream);
}

.hero-deco-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
}
.line-1 { left: 20%; }
.line-2 { right: 20%; }

.hero-deco-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.label-num {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-bottom: 28px;
  line-height: 1.05;
}

.serif-block {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--ink);
}
.serif-italic {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-style: italic;
  color: var(--ink);
}
.big-outline {
  display: block;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  line-height: 1;
}

.hero-desc-wrap p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 260px;
}

.hcard {
  position: absolute;
  width: 320px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hcard-back {
  height: 220px;
  top: 40px;
  left: 20px;
  transform: rotate(3deg);
  opacity: 0.4;
}

.hcard-mid {
  height: 230px;
  top: 20px;
  left: 10px;
  transform: rotate(-1.5deg);
  opacity: 0.65;
}

.hcard-front {
  padding: 24px;
  top: 0;
  left: 0;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hcard-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.hcard-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.hcard-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.hcard-badge {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.hcard-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
.detail-row span:first-child { color: var(--muted); }
.detail-val { font-weight: 600; }
.detail-val.accent { color: var(--accent); }

.hcard-bar {
  height: 4px;
  background: var(--cream2);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--accent), #ffb347);
  border-radius: 4px;
  animation: barPulse 2s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { width: 65%; }
  50% { width: 80%; }
}

.hcard-foot {
  font-size: 0.75rem;
  color: var(--muted);
}

.floating-review {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
  animation: cardFloat 4s 2s ease-in-out infinite;
}
.fr-stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 4px; }
.fr-text { font-size: 0.78rem; color: var(--ink); margin-bottom: 4px; line-height: 1.4; }
.fr-author { font-size: 0.7rem; color: var(--muted); }

.floating-stat {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  animation: cardFloat 4s 1s ease-in-out infinite;
}
.fs-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.fs-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.marques-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.brand-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.brand-btn:hover { border-color: var(--ink); color: var(--ink); }
.brand-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.model-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.model-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.model-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.model-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.model-repairs {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.model-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.model-cta:hover { text-decoration: underline; }
.model-more {
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.model-more .model-name { font-size: 0.95rem; }

.simulateur-section {
  padding: 100px 0;
  background: var(--cream);
}

.sim-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.sim-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sim-left h2 em { color: var(--accent); font-style: italic; }
.sim-left p { color: var(--muted); margin-bottom: 24px; }

.sim-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
}

.sim-right {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow);
}

.sim-step { display: flex; flex-direction: column; gap: 12px; }
.sim-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.sim-radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sim-radio {
  cursor: pointer;
}
.sim-radio input { display: none; }
.sim-radio span {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}
.sim-radio:hover span { border-color: var(--ink); color: var(--ink); }
.sim-radio input:checked + span {
  border-color: var(--accent);
  background: rgba(232,93,4,0.06);
  color: var(--accent);
  font-weight: 600;
}

.sim-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.sim-select:focus { border-color: var(--accent); }

.sim-result {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.sim-result-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sim-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  transition: all 0.3s;
}
.sim-result-time {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.services-section {
  padding: 100px 0;
  background: var(--cream2);
  border-top: 1px solid var(--border);
}

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 160px 120px 100px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-row:hover { background: rgba(255,255,255,0.6); }

.sr-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--border);
}

.sr-body h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.sr-body p {
  font-size: 0.82rem;
  color: var(--muted);
}

.sr-price {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}
.sr-price strong { color: var(--accent); font-size: 1.05rem; }

.sr-time {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.sr-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
  transition: color 0.2s;
}
.sr-cta:hover { text-decoration: underline; }

.why-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}
.why-left h2 em { color: var(--accent); font-style: italic; }

.big-number-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.big-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.big-number-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 4px; }
.big-number-sub { font-size: 0.78rem; color: var(--muted); }

.why-right {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.wi-bar {
  width: 3px;
  min-height: 40px;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 4px;
}

.why-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.why-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.avis-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.avis-masonry {
  columns: 3;
  column-gap: 16px;
  margin-bottom: 40px;
}

.avis-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.avis-tall { background: var(--ink); border-color: var(--ink); }
.avis-tall p, .avis-tall .avis-footer strong, .avis-tall .avis-footer span { color: rgba(255,255,255,0.8); }
.avis-tall .avis-stars { color: #fbbf24; }
.avis-tall .avis-footer strong { color: #fff; }

.avis-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.avis-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.avis-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avis-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avis-footer strong { display: block; font-size: 0.82rem; }
.avis-footer span { font-size: 0.72rem; color: var(--muted); }

.avis-cta-row {
  display: flex;
  justify-content: center;
}

.google-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--muted);
}
.google-row strong { color: var(--ink); }

.faq-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.faq-left h2 em { color: var(--accent); font-style: italic; }
.faq-left p { color: var(--muted); margin-bottom: 28px; }

.faq-right {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.devis-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.devis-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.devis-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.devis-left h2 em { color: var(--accent); font-style: italic; }
.devis-left p { color: var(--muted); margin-bottom: 32px; }

.devis-infos {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.di-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.di-item > span { font-size: 1.1rem; flex-shrink: 0; width: 28px; text-align: center; }
.di-item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }
.di-item span:not(:first-child), .di-item a, .di-item > div > span {
  display: block;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.55;
}
.di-item a:hover { color: var(--accent); }

.devis-right {
  position: relative;
}

.devis-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bdb0a0; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -8px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.form-success h3 { font-size: 1.4rem; font-weight: 700; }
.form-success p { color: var(--muted); }

.footer {
  background: var(--ink);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .logo em { color: var(--accent); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.fab-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
}
.fab-call a {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(232,93,4,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-call a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(232,93,4,0.6);
}

@media (max-width: 1100px) {
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-inner, .sim-wrap, .why-inner, .faq-inner, .devis-inner, .garanties-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .service-row { grid-template-columns: 48px 1fr auto; }
  .sr-time, .sr-cta { display: none; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .header { position: sticky; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .avis-masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .topbar { font-size: 0.72rem; gap: 6px; }
  .topbar .sep { display: none; }
}

@media (max-width: 480px) {
  .models-grid { grid-template-columns: 1fr; }
}