:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #eef6f2;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #d9e2ec;
  --brand: #12355b;
  --brand-2: #0b2744;
  --secondary: #2e7d5b;
  --accent: #f59e0b;
  --accent-2: #fff3d6;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(18, 53, 91, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 53, 91, 0.1);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1280px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(18, 53, 91, 0.24);
}

.brand small {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 650;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 0;
}

.nav-links a {
  padding: 10px 10px;
  border-radius: 8px;
  color: #243447;
}

.nav-links a:hover {
  background: rgba(18, 53, 91, 0.08);
}

.nav-cta {
  background: var(--accent);
  color: #111827 !important;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 75vh, 760px);
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #0b2744;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 39, 0.92) 0%, rgba(8, 36, 64, 0.78) 48%, rgba(8, 36, 64, 0.36) 100%),
    var(--hero-image, url("/assets/images/hero-debarras-plus-camion-paris.webp")) center/cover no-repeat;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-content: center;
}

.eyebrow {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe4ad;
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.15rem, 5.6vw, 3.65rem);
  max-width: 980px;
}

.hero p {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: #111827;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button.light {
  color: var(--ink);
  background: #fff;
}

.button.whatsapp {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 14px 30px rgba(46, 125, 91, 0.2);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 820px;
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-item strong {
  display: block;
  font-size: 1.22rem;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.section {
  padding: 78px 0;
}

.section.tight {
  padding: 50px 0;
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 12px 0 0;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.18rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(18, 53, 91, 0.05);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.card a {
  color: var(--brand);
  font-weight: 850;
}

.feature-list,
.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--accent);
}

.band {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
}

.article > * + * {
  margin-top: 28px;
}

.article p {
  color: var(--muted);
  margin: 10px 0 0;
}

.article ul {
  margin-top: 12px;
}

.article li {
  margin: 7px 0;
  color: var(--muted);
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.96rem;
}

.article th,
.article td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}

.article th {
  background: rgba(18, 53, 91, 0.08);
  color: var(--brand);
}

.article td:last-child {
  font-weight: 800;
  color: var(--ink);
}

.sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.quote-box {
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-box p {
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 0;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #fff;
  font-weight: 750;
}

.page-hero {
  min-height: 410px;
}

.page-hero .hero-inner {
  padding-top: 70px;
  padding-bottom: 58px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.link-grid a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 750;
  color: var(--brand-2);
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  border-left: 4px solid var(--accent);
  background: #fff8e8;
  padding: 14px 16px;
  color: #654712;
}

.footer {
  background: #0b1724;
  color: #fff;
  padding: 54px 0 28px;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 26px;
}

.footer h2,
.footer h3 {
  font-size: 1rem;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.68);
}

.footer ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.trust-item {
  min-height: 116px;
  padding: 18px 14px;
  border-left: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 5px;
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item span,
.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #ffd37c);
  display: block;
}

.trust-item strong {
  color: var(--brand);
}

.trust-item small {
  color: var(--muted);
  line-height: 1.35;
}

.simulator {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.sim-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 850;
  color: var(--brand);
}

.sim-progress div {
  height: 9px;
  border-radius: 999px;
  background: #e6edf4;
  overflow: hidden;
}

.sim-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  transition: width 0.2s ease;
}

.sim-step {
  display: none;
}

.sim-step.active {
  display: grid;
  gap: 18px;
}

.choice-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
}

.choice input {
  accent-color: var(--secondary);
}

.choice:has(input:checked) {
  border-color: var(--secondary);
  background: #eef8f3;
}

.range-field {
  display: grid;
  gap: 16px;
}

.range-field input {
  width: 100%;
  accent-color: var(--accent);
}

.result-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--bg);
}

.result-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.result-grid strong {
  display: block;
  color: var(--brand);
  font-size: 1.15rem;
  margin-top: 4px;
}

.sim-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.service-card,
.formula-card,
.review-card,
.before-after {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(18, 53, 91, 0.05);
}

.service-card {
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
}

.service-card img {
  width: calc(100% + 44px);
  max-width: none;
  height: 170px;
  object-fit: cover;
  margin: -22px -22px 8px;
  border-bottom: 1px solid var(--line);
}

.service-card p,
.formula-card p,
.review-card p,
.before-after p {
  color: var(--muted);
  margin: 0;
}

.service-card a {
  color: var(--brand);
  font-weight: 850;
  margin-top: 4px;
}

.before-after {
  overflow: hidden;
}

.before-after img {
  width: calc(100% + 44px);
  max-width: none;
  height: 230px;
  object-fit: cover;
  margin: -22px -22px 16px;
  border-bottom: 1px solid var(--line);
}

.formula-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent-2);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 16px;
}

.ba-visual {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.ba-visual div {
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
}

.ba-visual div:first-child {
  background: repeating-linear-gradient(45deg, #596575, #596575 12px, #475569 12px, #475569 24px);
}

.ba-visual div:last-child {
  background: linear-gradient(135deg, #2e7d5b, #75b798);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.timeline-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.timeline-step p {
  margin: 0;
  font-weight: 750;
}

.split-feature,
.zones-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

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

.tag-cloud span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand);
  font-weight: 800;
}

.map-card {
  min-height: 330px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 53, 91, 0.94), rgba(46, 125, 91, 0.86)),
    var(--map-image, url("/assets/images/hero-debarras-plus-camion-paris.webp")) center/cover no-repeat;
  color: #fff;
  padding: 28px;
  display: grid;
  align-content: end;
  box-shadow: var(--shadow);
}

.map-card strong {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.map-card p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.zones-columns {
  display: grid;
  gap: 20px;
}

.zones-columns .link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-score {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 20px;
}

.review-score strong {
  color: var(--brand);
  font-size: 2.4rem;
  line-height: 1;
}

.review-score span,
.review-card small {
  color: var(--muted);
}

.review-card {
  display: grid;
  gap: 12px;
}

.review-card strong {
  color: var(--brand);
}

.final-cta {
  padding: 78px 0;
  background: var(--brand);
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-proof,
  .trust-grid,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .content,
  .footer-grid,
  .link-grid,
  .choice-grid,
  .result-grid,
  .timeline,
  .split-feature,
  .zones-panel {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .section {
    padding: 54px 0;
  }

  .trust-item {
    border-right: 1px solid var(--line);
    min-height: auto;
  }

  .zones-columns .link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 72px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card,
  .article,
  .service-card,
  .formula-card,
  .review-card,
  .before-after,
  .simulator {
    padding: 18px;
  }

  .service-card img,
  .before-after img {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
  }

  .service-card img {
    margin-top: -18px;
  }

  .before-after img {
    margin-top: -18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(18, 53, 91, 0.12);
  }

  .mobile-sticky-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 8px;
    font-size: 0.88rem;
    font-weight: 900;
    text-align: center;
    color: var(--brand);
  }

  .mobile-sticky-cta a:nth-child(2) {
    color: #111827;
    background: var(--accent);
  }

}
