/* VARIABLES */

:root {
  --primary: #0e1a2b;
  --primary-soft: #16263d;
  --accent: #c8742a;
  --accent-hover: #a85e22;

  --text: #1a1a1a;
  --light: rgba(251, 251, 251, 0.245);
  --lighttext: #2b2b2b;
  --muted: #6b7280;

  --surface: rgba(255, 255, 255, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.68);
  --surface-dark: rgba(255, 255, 255, 0.06);

  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);

  --radius-6: 6px;
  --radius-10: 10px;
  --radius-14: 14px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-pill: 999px;

  --container: 1140px;

  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 14px 34px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 18px 44px rgba(0, 0, 0, 0.13);

  --section-space: 80px;
  --gutter: 2rem;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(200, 116, 42, 0.22);
}

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

a {
  color: inherit;
}

a,
button,
input,
textarea {
  outline-color: rgba(200, 116, 42, 0.65);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(200, 116, 42, 0.6);
}
.link-underline {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding-bottom: 4px;
  line-height: 1;
  transition: color 1s ease;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.8s ease;
}

.link-underline:hover,
.link-underline:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
  width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

p {
  max-width: 760px;
}

.section-head {
  display: grid;
  grid-template-columns: 0 1fr;
  column-gap: 0.75rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.section-head h2 {
  grid-column: 1 / -1;
  margin-bottom: 0.9rem;
}

.section-intro {
  grid-column: 2;
  margin-bottom: 2.5rem;
  max-width: 980px;
  padding-left: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 2px solid rgba(200, 116, 42, 0.22);
}

/* LOGO */

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  /* margin-top: 3px; */
  /* margin-bottom: 5px; */
}

.site-logo-icon {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  flex: 0 0 35px;
}

.site-logo-wordmark {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 0;
  
}
.site-logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 28px;
  }
}
/* 
@media (max-width: 768px) {
  .site-logo {
    gap: 0.45rem;
  }

  .site-logo-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .site-logo-wordmark {
    height: 28px;
  }
} */

/* HEADER */

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem var(--gutter);
  padding-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(5px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.desktop-nav a {
  position: relative;
  margin-left: 2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* MOBILE NAV */

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(14, 26, 43, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  opacity: 0;
  pointer-events: none;
  background: rgba(14, 26, 43, 0.28);
  backdrop-filter: blur(4px);
  transition: opacity 0.22s ease;
}

.mobile-menu-overlay[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: min(70vw, 300px);
  height: 100vh;
  padding: 1.2rem 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: -12px 0 30px rgba(14, 26, 43, 0.12);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-menu a {
  padding: 0.95rem 0.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
  border-bottom: 1px solid rgba(14, 26, 43, 0.06);
}

.mobile-menu-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary);
  border: 1px solid rgba(14, 26, 43, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 11px 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-6);
  background: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.btn:hover,
button:hover {
  background: var(--accent-hover);
  box-shadow:
    inset 0 1px 10px rgba(255, 255, 255, 0.24),
    0 4px 10px rgba(0, 0, 0, 0.18);
  /* transform: translateY(-2px); */
}

.btn-secondary {
  /* color: #381b03; */
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* LAYOUT */

section {
  position: relative;
  width: 100%;
  padding: var(--section-space) 0;
  scroll-margin-top: 10px;
}

section > * {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section + section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(92%, 1140px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 26, 43, 0.1),
    rgba(14, 26, 43, 0.3),
    rgba(14, 26, 43, 0.1),
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 116, 42, 0.1), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(200, 116, 42, 0.06), transparent 26%),
    linear-gradient(180deg, #fdf9f4 0%, #f6eee5 100%);
}

.section-clear {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.section-legal {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 110, 100, 0.08), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(120, 110, 100, 0.06), transparent 30%),
    linear-gradient(180deg, #f8f6f3 0%, #ece8e3 100%);
}

.section-legal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.35), transparent 45%);
  pointer-events: none;
}

.section-pricing {
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 26, 43, 0.06), transparent 28%),
    linear-gradient(180deg, #f2f5f8 0%, #e9eef3 100%);
}

.section-contact {
  background:
    radial-gradient(circle at 85% 20%, rgba(14, 26, 43, 0.08), transparent 28%),
    linear-gradient(180deg, #f3f6fa 0%, #e7edf4 100%);
}


/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(200, 116, 42, 0.16), transparent 32%),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, #0d1828 0%, #101d30 55%, #0e1a2b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 20%, transparent 80%, rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(255,255,255,0.028), transparent 24%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  gap: 2.3rem;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) 240px;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.4rem);
}

/* COLONNE TEXTE */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
  padding-left: 1.1rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 2px;
  height: calc(100% - 0.7rem);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(200, 116, 42, 0.95) 0%,
    rgba(200, 116, 42, 0.62) 34%,
    rgba(200, 116, 42, 0.18) 100%
  );
  box-shadow:
    0 0 18px rgba(200, 116, 42, 0.18),
    0 0 38px rgba(200, 116, 42, 0.08);
}

.hero h1 {
  max-width: 16ch;
  margin: 0 0 1.05rem;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  /* text-wrap: balance; */
}

.hero-soustitre {
  max-width: 40rem;
  margin: 0 0 1rem;
  font-size: clamp(1.06rem, 1.65vw, 1.28rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.hero-subtitle {
  max-width: 37rem;
  margin: 0;
  padding-top: 1rem;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  /* border-top: 1px solid rgba(255, 255, 255, 0.10); */
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* PREUVES */
.hero-proof-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.45rem;
  padding-top: 1.15rem;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.hero-proof-inline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 0.95rem;
  font-size: 0.89rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.04)
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center; /* centré comme demandé */
  align-items: center;
  width: 100%;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.hero-cta .btn {
  min-width: 0;
  min-height: 48px;
  padding: 12px 30px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 12px 28px rgba(0,0,0,0.20);
}

/* IMAGE */

.media-hero {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0;
  justify-self: start;
  align-self: center;
  background: transparent;
  box-shadow: none;
}

.media-hero::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -14px 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.16),
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
}

.media-hero img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.24));
}

/* KICKER */
.hero-kicker {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

/* DESKTOP INTERMEDIAIRE */
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 215px;
    gap: 2rem;
  }

  .hero-content {
    max-width: none;
  }

  .media-hero {
    max-width: 210px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-shell {
    gap: 1.65rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .hero-content {
    padding-left: 0.95rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 1.01;
  }

  .hero-soustitre,
  .hero-subtitle {
    max-width: 100%;
  }

  .hero-proof-inline {
    gap: 0.55rem;
  }

  .hero-proof-inline span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-cta .btn {
    width: min(100%, 340px);
  }

  .media-hero {
    max-width: 185px;
    justify-self: center;
  }

  .hero-kicker {
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-left: 0.8rem;
  }

  .hero-content::before {
    width: 2px;
  }

  .hero-soustitre {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .media-hero {
    max-width: 165px;
  }
}

/* MEDIA */

.media {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-16);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PRISE EN CHARGE - CARTES */

.feature-card,
.step,
.pricing-card,
.review-card {
  max-width: 900px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-16);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.feature-card {
  padding: 1.55rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}


/* ===== INTERVENTION ===== */

.intervention-list {
  display: grid;
  gap: 20px;
}

.intervention-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.intervention-row-reverse .intervention-text {
  order: 2;
}

.intervention-row-reverse .intervention-media {
  order: 1;
}

#intervention .feature-card {
  border: 1px solid rgba(14, 26, 43, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: none;
}

#intervention .feature-card:hover {
  transform: none;
  border-color: rgba(14, 26, 43, 0.1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

/* bloc texte */
.intervention-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem;
  min-height: 0;
}

.intervention-text h3 {
  margin-top: 0;
}

.intervention-text p:last-child {
  margin-bottom: 0;
}
/* bloc image générique */
.intervention-media {
  position: relative;
  min-height: 0;
  padding: 0 !important;
  /* overflow: hidden; */
}

/* seulement pour une image unique directe */
.intervention-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* variante mosaïque */
.intervention-media-mosaic {
  display: flex;
  align-items: stretch;
}

.repair-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 6px;
  overflow: visible;
}

.repair-mosaic img {
  position: static;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center;
}

.repair-mosaic img:hover {
  /* transform: scale(1.25); */
  overflow: auto;
  /* filter: brightness(1.03); */
}


@media (max-width: 980px) {
  .repair-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .intervention-row {
    grid-template-columns: 1fr;
  }

  .intervention-row-reverse .intervention-text,
  .intervention-row-reverse .intervention-media,
  .intervention-row .intervention-text,
  .intervention-row .intervention-media {
    order: unset;
  }

  .intervention-media {
    min-height: 220px;
  }

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

@media (max-width: 560px) {
  .repair-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }
}

/* PROCESS */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 2rem auto 0;
}

.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 21px;
  width: 1px;
  background: rgba(200, 116, 42, 0.16);
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.3rem 1.4rem;
  border-left: 3px solid rgba(200, 116, 42, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.step-num {
  position: relative;
  z-index: 2;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(200, 116, 42, 0.32);
  border-radius: 8px;
  background: rgba(200, 116, 42, 0.12);
}

.step-body {
  flex: 1;
}

.step-title {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.step-text {
  line-height: 1.55;
  color: var(--muted);
}

/* PRICING */

.pricing-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.pricing-card {
  padding: 1.8rem;
  border: 1px solid rgba(14, 26, 43, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  box-shadow: 0 14px 32px rgba(14, 26, 43, 0.07);
}

.pricing-item + .pricing-item {
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(14, 26, 43, 0.08);
}

.pricing-item:nth-child(2) {
  margin-inline: -1.8rem;
  padding-right: 1.8rem;
  padding-bottom: 1.5rem;
  padding-left: calc(1.8rem - 3px);
  background: rgba(200, 116, 42, 0.06);
  border-left: 3px solid #a85e2272;
}

.pricing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.pricing-head h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0;
  font-size: 1.05rem;
  color: var(--primary);
}

.pricing-head strong {
  white-space: nowrap;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-desc {
  max-width: none;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

.pricing-note-box {
  margin: 1.6rem auto 0;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid rgba(200, 116, 42, 0.2);
  border-radius: 10px;
  background: rgba(200, 116, 42, 0);
}

.pricing-note-box p {
  max-width: none;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-note-box p + p {
  margin-top: 0.45rem;
}

.pricing-badge {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 400;
  vertical-align: middle;
  color: #a85e22;
  border-radius: 999px;
  background: rgba(200, 116, 42, 0.1);
}

/* REVIEWS */

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 1.5rem;
}

.reviews-track-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background-color: #fff;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 120px;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(255, 255, 255, 0) 100%
  );
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #f7f9fb 0%,
    rgba(247, 249, 251, 0.92) 38%,
    rgba(247, 249, 251, 0) 100%
  );
}

.reviews-track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 1.8s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.review-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 1.4rem;
  align-items: center;

  flex: 0 0 min(62%, 560px);
  padding: 1.6rem;
  opacity: 0.38;
  transform: scale(0.88);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    box-shadow 0.4s ease;
}

.review-card.prev,
.review-card.next {
  opacity: 0.68;
  transform: scale(0.94);
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-weight: 700;
  color: var(--primary);
  border-radius: 50%;
  background: rgba(200, 116, 42, 0.15);
}

.review-meta {
  line-height: 1.2;
}

.review-meta strong {
  display: block;
  font-size: 1rem;
}

.review-meta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-stars {
  margin-bottom: 0.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #f4b400;
}
.review-photo-container {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  margin-top: 1rem;
}

.review-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.review-text {
  max-width: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.review-photo {
  flex: 0 0 180px;
  width: 180px;
  min-width: 180px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.review-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.review-card:hover .review-photo img {
  transform: scale(1.03);
}

.carousel-btn {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  color: var(--accent);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.2rem;
}

.dot {
  width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(14, 26, 43, 0.18);
  box-shadow: none;
}

.dot.active {
  background: var(--accent);
}

.reviews-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: small;
  font-weight: 300;
}

/* CONTACT FORM */

.formul {
  padding: 110px 0;
}

.form-container {
  max-width: 880px;
  margin: auto;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(14, 26, 43, 0.08);
  backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 1.4rem;
  text-align: center;
}

.form-title {
  display: block;
  margin-bottom: 0.6rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.form-success {
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(14, 26, 43, 0.5);
  border-radius: 16px;
  background: rgba(42, 89, 200, 0.18);
  box-shadow: 0 12px 28px rgba(14, 26, 43, 0.06);
}

.form-success p {
  max-width: none;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 0.9rem;
  padding-left: 10px;
  font-size: 0.92rem;
  color: #7a808a;
  border-left: 2px solid rgba(200, 116, 42, 0.22);
}

.breadcrumb p {
  margin: 0;
}

.wizard-status {
  margin-bottom: 1.7rem;
}

.progress-bar2 {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef1f5;
}

.progress-bar2 div {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #d88a45);
  transition: width 0.45s ease;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-step-title {
  margin-top: 2rem;
  margin-bottom: 1.1rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--primary);
}

.form-step.step-enter {
  animation: stepEnter 0.22s ease;
}

.form-step.step-enter-back {
  animation: stepEnterBack 0.22s ease;
}

@keyframes stepEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepEnterBack {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choice-grid {
  display: grid;
  gap: 14px;
}

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

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 124px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(14, 26, 43, 0.1);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
  box-shadow: 0 10px 20px rgba(14, 26, 43, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.choice-card::before {
  content: "";
  width: 28px;
  height: 2px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.65;
  transition: width 0.95s ease;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 116, 42, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: 0 18px 30px rgba(14, 26, 43, 0.1);
}

.choice-card:hover::before {
  width: 70px;
}

.choice-card:active {
  transform: translateY(-1px) scale(0.99);
}

.choice-title {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.choice-desc {
  padding-right: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #6b7280;
}

.form-fields {
  margin-bottom: 1rem;
}

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

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  font: inherit;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(200, 116, 42, 0.7);
  box-shadow: 0 0 0 3px rgba(200, 116, 42, 0.15);
}

.upload-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

#photoUpload {
  display: block;
  width: 100%;
  padding: 12px;
  font: inherit;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  background: #fff;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.photo-preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.88);
}

.photo-remove:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 116, 42, 0.22);
}

.urgency-block {
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: #fafafa;
}

.urgency-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0.65rem;
}

.urgency-label {
  font-weight: 600;
  color: var(--primary);
}

.urgency-preview {
  font-size: 0.92rem;
  color: var(--muted);
}

.rate {
  display: flex;
  gap: 6px;
}

.rate i {
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
  color: #c7ccd3;
  cursor: pointer;
  user-select: none;
  transition:
    color 0.15s ease,
    transform 0.15s ease,
    text-shadow 0.15s ease;
}

.rate i.hovered,
.rate i.selected {
  color: #f4b400;
  text-shadow: 0 0 14px rgba(244, 180, 0, 0.22);
}

.rate i:hover {
  transform: translateY(-1px);
}

.step-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin: 2rem auto;
}

.submit-actions {
  margin-top: 1.5rem;
}

.submit-actions > button {
  flex: 1 1 0;
  min-width: 0;
  max-width: 15rem;
}

.submit-actions button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.back-button {
  min-width: 100%;
  padding: 10px 16px;
  color: #5f6670;
  cursor: pointer;
  border: 1px solid #c6ccd4;
  border-radius: 10px;
  background: #eef1f5;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.back-button:hover {
  color: var(--primary);
  border-color: #b7bec7;
  background: #fff;
}

button.loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-reassurance {
  margin-top: 2rem;
  padding: 0;
  font-size: 0.9rem;
  text-align: right;
  color: #707782;
  border: none;
  background: transparent;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}


/* LEGAL */

.legal-cta {
  margin-left: auto; /* pousse à droite */
  margin-right: 12px; /* marge optique, pas collé */
  padding: 10px 16px;
  
  background: #C8742A;
  color: #fff;
  
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  
  border-radius: 999px;
  text-decoration: none;
  
  transition: background 1.5s ease;
}

.legal-cta:hover {
  background: #000000;

}


/* FOOTER */

.site-footer {
  padding: 2.2rem 1rem 1.4rem;
  color: #fff;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: end;
  gap: 1.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.footer-brand strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.2rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-legal a {
  opacity: 0.8;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-meta {
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

.notification {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  max-width: 420px;
  padding: 14px 16px 18px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.notification.success {
  background: #2f7d4a;
}

.notification.error {
  background: #a13a3a;
}

.notification .progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  border-radius: 0 0 12px 12px;
  background: rgba(255,255,255,.7);
}

/* ANIMATIONS */

.fade-in,
.fade-in.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.parallax {
  transform: translateY(var(--parallax-y, 0px));
}

/* COOKIES */

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 1400;
  width: 100%;
  pointer-events: none;

  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 26, 43, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-banner-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
}

.cookie-banner-media {
  flex-shrink: 0;
  margin-top: 0;
  align-self: center;
}

.cookie-banner-media img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  background: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.cookie-banner-copy strong {
  display: block;

  font-size: 1rem;
  /* line-height: 1.2; */
  color: #fff;
}

.cookie-banner-copy p {
  margin: 0;
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.cookie-banner-copy a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: min(100%, 260px);
  margin-left: auto;
}

.cookie-banner .btn {
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  white-space: nowrap;
}

.cookie-banner .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  box-shadow: none;
}

.cookie-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}

.cookie-banner .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.cookie-banner:not([hidden]) .cookie-banner-inner {
  animation: cookieBannerIn 0.75s ease-out;
}

@keyframes cookieBannerIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MODALE FORM CTA */

/* NAMESPACE rp- : évite les conflits avec votre CSS existant */
.rp-modal[hidden] { display: none; }

.rp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: end center; /* mobile-first : modale “bottom sheet” */
  padding: 12px;
}

.rp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.rp-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: auto;
  background: #0b1220;
  color: #f4f7ff;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.rp-modal__title { margin: 4px 34px 6px 0; font-size: 1.15rem; }
.rp-modal__desc  { margin: 0 0 14px 0; opacity: .85; font-size: .95rem; }

.rp-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  font-size: 20px;
  cursor: pointer;
}

.rp-field { margin-bottom: 12px; }
.rp-field label { display: block; font-size: .92rem; margin-bottom: 6px; opacity: .9; }

.rp-field input, .rp-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: inherit;
  padding: 10px 12px;
}

.rp-field input:focus-visible, .rp-field textarea:focus-visible,
.rp-modal__close:focus-visible, .rp-form .btn:focus-visible {
  outline: 3px solid rgba(120,180,255,.55);
  outline-offset: 2px;
}

.rp-hint { margin-top: 6px; font-size: .85rem; opacity: .75; }
.rp-error { margin-top: 6px; font-size: .85rem; color: #ffb3b3; min-height: 1.1em; }

.rp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rp-legal { margin: 10px 0 0; font-size: .82rem; opacity: .70; }
.rp-alt   { margin: 8px 0 0; font-size: .88rem; opacity: .85; }
.rp-alt a { color: #a9c7ff; }

.rp-toast {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(60, 160, 90, .18);
  border: 1px solid rgba(60, 160, 90, .35);
}

/* Desktop : centrage */
@media (min-width: 720px) {
  .rp-modal { place-items: center; padding: 18px; }
}

/* Respect “reduce motion” */
@media (prefers-reduced-motion: reduce) {
  .rp-modal__dialog { scroll-behavior: auto; }
}

/* Bloque le scroll de fond quand la modale est ouverte */
body.rp-modal-open { overflow: hidden; }


/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 1.4rem;
  }

  .proof-item:last-child {
    grid-column: 1 / -1;
  }

  .proof-item {
    padding: 0.75rem 0.85rem;
  }

  .proof-kicker {
    font-size: 0.78rem;
    margin: 0 0 0.3rem;
  }

  .proof-item p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero-layout {
    gap: 1.5rem;
  }

  .media-hero {
    max-width: 260px;
    margin: 0 auto;
  }

  #intervention .media-intervention {
    max-width: 100%;
    height: 260px;
  }

  .pricing-card,
  .form-container {
    max-width: 100%;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 900px) {
  .cookie-banner-inner {
    grid-template-columns: 56px 1fr;
    align-items: start;
  }

  .cookie-banner-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 0.2rem;
  }

  .cookie-banner-media img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 850px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-track-wrapper {
    display: block;
    padding: 0.5rem 0.5rem;
    overflow: visible;
    background: transparent;
  }

  .reviews-track-wrapper::before,
  .reviews-track-wrapper::after {
    display: none;
  }

  .reviews-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
    transform: none !important;
  }

  .review-card {
    display: grid;
    grid-template-columns: 1fr;
    width: min(80%, 850px);
    margin-inline: auto;
    padding: 1.1rem;
    opacity: 1;
    transform: none;
    box-shadow: var(--shadow-soft);
  }

  .review-card.prev,
  .review-card.next,
  .review-card.active {
    opacity: 1;
    transform: none;
    box-shadow: var(--shadow-soft);
  }

  .carousel-btn,
  .carousel-dots {
    display: none;
  }

  .review-photo {
    width: 100%;
    min-width: 0;
    height: 180px;
    
  }
}
@media (max-width: 768px) {
  header {
    padding: 0.85rem var(--gutter);
    height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  section {
    padding: 90px 0;
  }

  .hero {
    min-height: auto;
    /* padding-top: 110px; */
    padding-bottom: 50px;
  }

  .hero-inner {
    padding-bottom: 2.4rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-main {
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 7vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: none;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-lead {
    max-width: none;
    margin-top: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero-cta {
    gap: 10px;
    margin-top: 1.25rem;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 30px;
  }

  .media-hero {
    max-width: 220px;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 1.4rem;
  }

  .proof-item:last-child {
    grid-column: 1 / -1;
  }

  .proof-item {
    padding: 0.75rem 0.85rem;
  }

  .proof-kicker {
    font-size: 0.78rem;
    margin: 0 0 0.3rem;
  }

  .proof-item p {
    font-size: 0.82rem;
    line-height: 1.35;
  }
}
@media (max-width: 700px) {
  .choice-grid {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 640px) {
  .review-photo-container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .review-photo {
    width: 65%;
    height: 200px;
    margin-inline: auto;
    justify-self: center;
  }

  .review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .reviews-track-wrapper {
  padding: 0 0;
  }

  .review-card {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 90%;
  }


  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cookie-banner-inner {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "media copy"
      "actions actions";
    align-items: start;
    gap: 0.85rem 0.9rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(14, 26, 43, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .cookie-banner-media {
    grid-area: media;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .cookie-banner-media img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .cookie-banner-copy {
    grid-area: copy;
    text-align: left;
  }

  .cookie-banner-actions {
    grid-area: actions;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: nowrap;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: auto;
    flex: 0 0 auto;
  }

  .cookie-banner .btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
}
@media (max-width: 560px) {
  :root {
    --section-space: 78px;
    --gutter: 1rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  button,
  .hero-cta .btn {
    width: 100%;
  }

  .hero-proof {
    margin-top: 2rem;
  }
/* 
  .feature-card,
  .step,
  .review-card,
  .pricing-card,
  .form-container,
  .proof-item {
    padding: 1.2rem;
  } */

  .media-hero {
    max-width: 190px;
  }

  #intervention .media-intervention {
    height: 190px;
  }

  .pricing-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .pricing-head h3 {
    gap: 0.4rem;
  }
}
@media (max-width: 380px) {
  header {
    padding: 0.75rem 0.9rem;
  }

  h1 {
    font-size: 1.85rem;
  }

  .hero-subtitle,
  .hero-lead,
  .review-text {
    font-size: 0.95rem;
  }

  .feature-card,
  .step,
  .review-card,
  .pricing-card,
  .form-container,
  .proof-item {
    padding: 1rem;
  }

  .media-hero {
    max-width: 160px;
  }

  #intervention .media-intervention {
    height: 170px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  button,
  .progress-bar2 div,
  .reviews-track,
  .review-card,
  .desktop-nav a::after {
    transition: none !important;
  }

  .btn:hover,
  button:hover {
    transform: none;
  }

  .parallax {
    transform: none !important;
  }
}
@media (max-width: 768px) {
  .intervention-row {
    grid-template-columns: 1fr;
  }

  .intervention-row-reverse .intervention-text,
  .intervention-row-reverse .intervention-media,
  .intervention-row .intervention-text,
  .intervention-row .intervention-media {
    order: unset;
  }

  .intervention-media {
    min-height: 220px;
  }
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(200, 116, 42, 0.6);
  outline-offset: 2px;
}