* {
  box-sizing: border-box;
}

:root {
  --red: #e21b23;
  --black: #151515;
  --dark: #252525;
  --gray: #666;
  --light: #f6f6f6;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #eeeeee;
  backdrop-filter: blur(8px);
}

.topbar-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 245px;
  max-width: 48vw;
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.nav a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  border: 2px solid var(--red);
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn-small {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.hero {
  padding: 72px 0 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(226, 27, 35, 0.09), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
  color: var(--red);
  font-style: italic;
}

.hero h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin: 8px 0 22px;
  text-transform: uppercase;
  line-height: 1;
}

.lead {
  font-size: 21px;
  line-height: 1.55;
  color: #333;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust span {
  background: var(--black);
  color: var(--white);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card {
  background: var(--white);
  border: 1px solid #ededed;
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  display: block;
  margin: 0 auto 30px;
}

.card-banner {
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  padding: 16px;
  transform: skewX(-8deg);
}

.section {
  padding: 78px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.section-heading p {
  color: var(--gray);
  font-size: 18px;
}

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

.service {
  background: var(--white);
  border: 1px solid #e9e9e9;
  border-left: 7px solid var(--red);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.service h3 {
  margin: 0 0 10px;
  font-size: 20px;
  text-transform: uppercase;
}

.service p {
  margin: 0;
  color: var(--gray);
  line-height: 1.45;
}

.photos-section {
  background: var(--light);
}

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

figure {
  margin: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

figcaption {
  padding: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  background: var(--red);
  color: var(--white);
  padding: 46px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
}

.cta p {
  margin: 0;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-section h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 20px;
  color: var(--red);
  text-transform: uppercase;
  font-style: italic;
}

.contact-line {
  font-size: 19px;
  line-height: 1.5;
}

.contact-line a {
  color: var(--red);
  font-weight: 900;
}

.contact-form {
  background: var(--black);
  color: var(--white);
  border-radius: 18px;
  padding: 30px;
}

.contact-form h3 {
  margin: 0 0 18px;
  font-size: 30px;
  text-transform: uppercase;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 0;
  border-radius: 8px;
  font: inherit;
}

.form-note {
  color: #ccc;
  font-size: 13px;
}

.footer {
  background: #0e0e0e;
  color: #fff;
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: grid;
  }

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

  .photos-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    height: 72px;
  }

  .brand img {
    width: 200px;
  }

  .btn-small {
    display: none;
  }

  .hero {
    padding: 48px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  figure img {
    height: 260px;
  }
}

/* Correctif logo Garage Wagner */
.brand img {
  width: 260px;
  height: auto;
  object-fit: contain;
}


/* Avis clients */
.reviews-section {
  background: var(--light);
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.rating-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-top: 6px solid var(--red);
}

.platform-name {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stars,
.review-stars {
  color: #f5a623;
  letter-spacing: 3px;
  font-size: 24px;
  margin-bottom: 8px;
}

.rating-score {
  font-size: 34px;
  font-weight: 900;
}

.rating-count {
  color: var(--gray);
  margin: 6px 0 20px;
  font-weight: 700;
}

.review-link {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.review-link:hover {
  background: var(--red);
}

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

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.review-card blockquote {
  margin: 10px 0 18px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.review-author {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.reviews-note {
  margin: 24px auto 0;
  max-width: 820px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}

@media (max-width: 900px) {
  .rating-grid,
  .reviews-highlight {
    grid-template-columns: 1fr;
  }
}
