:root {
  --yellow: #fbc01e;
  --yellow-dark: #d99b00;
  --black: #000000;
  --ink: #151515;
  --muted: #5f6875;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f7f8fa;
  --blue: #1d4ed8;
  --green: #0f766e;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 10;
  background: var(--black);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--black);
  color: var(--paper);
  font-size: 0.85rem;
}

.topbar-inner,
.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 6px 0;
}

.topbar strong {
  color: var(--yellow);
}

.header-inner {
  display: block;
  gap: 12px;
  padding: 12px 0;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 176px;
  display: block;
}

.main-nav {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: visible;
  padding-bottom: 2px;
}

.header-call {
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

.main-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #20242a;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  background: var(--yellow);
  color: var(--black);
}

.hero {
  position: relative;
  color: var(--paper);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: var(--yellow);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 44px;
}

.hero-conversion-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-form-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-form-card h2 {
  font-size: 1.35rem;
}

.hero-form-card p {
  margin-top: 6px;
  color: var(--muted);
}

.quick-form {
  margin-top: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  background: var(--yellow);
  border-radius: 999px;
}

h1,
h2,
h3,
.display {
  margin: 0;
  line-height: 1.06;
  font-weight: 900;
}

h1 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(2.15rem, 8vw, 4.55rem);
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 710px;
  margin-top: 16px;
  font-size: clamp(1rem, 2.6vw, 1.24rem);
  color: #f2f4f7;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(251, 192, 30, 0.28);
}

.btn-primary:hover {
  background: #ffd452;
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--paper);
  background: var(--black);
}

.btn-outline {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.trust-list,
.price-list,
.zone-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-list li,
.price-chip,
.tag {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.price-chip {
  width: fit-content;
  color: var(--black);
  background: var(--paper);
  border-color: var(--paper);
}

.section {
  padding: 56px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--black);
  color: var(--paper);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-head p,
.section-dark .muted {
  color: #d7dbe0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3,
.grid-2,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
}

.section-dark .card {
  color: var(--ink);
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.muted {
  color: var(--muted);
}

.service-card {
  display: grid;
  gap: 14px;
}

.service-mark,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.service-card a {
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.highlight-panel {
  border-left: 7px solid var(--yellow);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 24px;
}

.highlight-panel h2 {
  font-size: clamp(1.55rem, 5vw, 2.25rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px var(--black);
}

.section-dark .check-list li {
  color: #e4e7eb;
}

.photo-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card.wide img {
  aspect-ratio: 16 / 9;
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: var(--paper);
  font-weight: 900;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78));
}

.step {
  display: grid;
  gap: 12px;
  align-content: start;
}

.testimonial {
  display: grid;
  gap: 12px;
}

.stars {
  color: var(--yellow-dark);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 900;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd5dd;
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  background: var(--paper);
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-success {
  display: none;
  border: 1px solid rgba(15, 118, 110, 0.3);
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.08);
  color: #064e3b;
  padding: 12px;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 8px 12px;
  font-weight: 800;
}

.cta-band {
  background: var(--yellow);
  color: var(--black);
  padding: 34px 0;
}

.cta-band .section-inner {
  display: grid;
  gap: 16px;
  align-items: center;
}

.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: 38px 0 86px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #f6f7f9;
  text-decoration: none;
}

.footer-small {
  margin-top: 28px;
  color: #b8bec8;
  font-size: 0.88rem;
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
}

.mobile-call-bar a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  font-weight: 900;
}

.mobile-call-bar a:first-child {
  background: var(--yellow);
  color: var(--black);
}

.mobile-call-bar a:last-child {
  background: var(--black);
  color: var(--paper);
}

.identity-spec {
  display: grid;
  gap: 14px;
}

.swatch-row {
  display: grid;
  gap: 10px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.swatch-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.notice {
  border-left: 7px solid var(--blue);
  border-radius: var(--radius);
  background: #eef4ff;
  padding: 18px;
}

.notice p {
  color: #17356f;
}

@media (min-width: 720px) {
  .header-inner {
    display: block;
  }

  .brand-row {
    justify-content: space-between;
  }

  .main-nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    overflow: visible;
  }

  .hero-inner {
    padding: 82px 0 70px;
  }

  .hero-conversion-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.62fr);
  }

  .price-list {
    grid-template-columns: repeat(2, max-content);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .cta-band .section-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .site-footer {
    padding-bottom: 38px;
  }

  .mobile-call-bar {
    display: none;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 58px;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .brand img {
    width: 142px;
  }

  .header-call {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 1.82rem;
    line-height: 1.04;
  }

  .hero-text {
    margin-top: 12px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .price-list {
    gap: 8px;
    margin-top: 14px;
  }

  .hero .trust-list {
    display: none;
  }

  .hero-form-card {
    padding: 16px;
  }

  .hero-form-card h2 {
    font-size: 1.18rem;
  }

  .quick-form .field textarea {
    min-height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Avis Google (chargés via /api/avis-google) */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.reviews-score {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.reviews-score-stars {
  color: var(--yellow-dark);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.reviews-score-count {
  color: var(--muted);
  font-weight: 800;
}

.review-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.review-author {
  font-weight: 900;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.9rem;
}

.review-time {
  color: var(--muted);
}

.review-text {
  color: var(--muted);
}

.reviews-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.reviews-google {
  font-weight: 900;
}

.reviews-more {
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
}

.reviews-more:hover {
  text-decoration: underline;
}
