:root {
  --bg: #020a3a;
  --surface: #030c4c;
  --surface-alt: #02073a;
  --text: #f5f8ff;
  --text-muted: #b9c6f4;
  --accent: #00b7ff;
  --accent-2: #4dd9ff;
  --line: rgba(90, 214, 255, 0.48);
  --success: #5fffd3;
  --shadow: 0 0 24px rgba(0, 183, 255, 0.22);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-heading: "Plus Jakarta Sans", "Inter", sans-serif;
  /* Titres section : ligne principale + sous-ligne (process, offre, confiance, etc.) */
  --section-head-line1-font-size: clamp(2.2rem, 6vw, 4.05rem);
  --section-head-line1-line-height: 1.18;
  --section-head-line1-letter-spacing: -0.03em;
  --section-head-line2-font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  --section-head-line2-line-height: 1.2;
  --section-head-line2-letter-spacing: -0.02em;
  --section-head-line2-margin-top: -0.35rem;
  /* Sous-titres de section (paragraphe sous un titre) */
  --section-subtitle-font-size: clamp(1rem, 1.35vw, 1.2rem);
  --section-subtitle-line-height: 1.7;
  --section-subtitle-color: #4a5f7c;
  --section-subtitle-max-width: 42ch;
  /* Alias pages hero / bandeaux */
  --page-hero-subtitle-font-size: var(--section-subtitle-font-size);
  --page-hero-subtitle-line-height: var(--section-subtitle-line-height);
  /* Boutons & CTA : une seule typo et taille sur le site */
  --btn-font-family: var(--font-heading);
  --btn-font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  --btn-font-weight: 700;
}

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

html {
  scroll-behavior: smooth;
}

#methode,
#contact,
#accueil,
#realisations {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.site-intro-active {
  overflow: hidden;
}

/* Intro plein écran (page d’accueil) */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-intro[hidden] {
  display: none !important;
}

.site-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 4vw, 2rem);
  padding: 1.5rem;
}

.site-intro__logo {
  height: clamp(8.5rem, 28vw, 12.5rem);
  width: auto;
  max-width: min(92vw, 32rem);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9);
  will-change: opacity, transform;
}

.site-intro__loader {
  width: min(240px, 78vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(88, 220, 255, 0.2);
  overflow: hidden;
  opacity: 0;
}

.site-intro__loader-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #58dcff 0%, #9eeaff 55%, #58dcff 100%);
  box-shadow: 0 0 12px rgba(88, 220, 255, 0.45);
}

.site-intro.is-active .site-intro__logo {
  animation: siteIntroLogo 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-intro.is-active .site-intro__loader {
  animation: siteIntroLoaderReveal 2s ease forwards;
}

.site-intro.is-active .site-intro__loader-fill {
  animation: siteIntroLoaderFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes siteIntroLogo {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  22% {
    opacity: 1;
    transform: scale(1);
  }
  72% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes siteIntroLoaderReveal {
  0%,
  18% {
    opacity: 0;
  }
  28%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes siteIntroLoaderFill {
  0% {
    width: 0;
  }
  88% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro.is-active .site-intro__logo {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .site-intro.is-active .site-intro__loader {
    animation: none;
    opacity: 1;
  }

  .site-intro.is-active .site-intro__loader-fill {
    animation: none;
    width: 100%;
  }

  .site-intro.is-leaving {
    transition: none;
  }
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.hero.section {
  position: relative;
  padding-top: 3.1rem;
  padding-bottom: 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: #01052b;
  color: #edf5ff;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(3, 13, 78, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.78rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

.section-heading h2,
h1 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 18ch;
}

p {
  margin: 0;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.25rem;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    color 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(77, 217, 255, 0.4);
}

.btn:focus-visible {
  outline: 2px solid #2b6cb0;
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(140deg, #07c0ff, #007cff);
  color: #001230;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(140deg, #36d6ff, #2198ff);
}

.btn-secondary {
  background: rgba(5, 16, 89, 0.7);
  color: var(--text);
  border-color: var(--line);
}

.btn-inline {
  margin-top: 1rem;
  padding: 0;
  color: var(--accent-2);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 3000;
}

.skip-link:focus {
  left: 0.6rem;
  top: 0.6rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: none;
  background: rgba(1, 9, 58, 0.88);
  backdrop-filter: blur(8px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

@media (min-width: 901px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 1.25rem;
  }

  .brand {
    justify-self: start;
  }

  .main-nav {
    justify-self: center;
  }

  .header-cta {
    justify-self: end;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.main-nav a {
  font-weight: 500;
  color: #deebff;
  transition: color 0.25s ease;
}

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

.main-nav a[aria-current="page"] {
  color: #58dcff;
  font-weight: 700;
}

.main-nav a[aria-current="page"]:hover {
  color: #8aeaff;
}

.burger-btn,
.mobile-nav {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2.2rem;
  align-items: stretch;
}

.hero-content {
  align-self: center;
}

.hero-subtitle {
  margin-top: 1.2rem;
  max-width: 62ch;
}

.hero-pitch {
  margin-top: 1.5rem;
  max-width: 58ch;
  font-size: var(--page-hero-subtitle-font-size);
  line-height: var(--page-hero-subtitle-line-height);
  color: #e8f2ff;
}

.hero.section .hero-pitch {
  font-size: clamp(0.9rem, 1.12vw, 1.05rem);
  line-height: 1.65;
}

.hero-contact-btn {
  margin-top: 1.25rem;
  min-width: 0;
  min-height: 0;
  padding: 0.62rem 1.25rem;
  border-radius: 999px;
  background: #58dcff;
  color: #07122f;
  box-shadow: 0 0 16px rgba(77, 217, 255, 0.45);
  border: 0;
}

.hero-contact-btn:hover,
.hero-contact-btn:focus-visible {
  background: #74e4ff;
  box-shadow: 0 0 26px rgba(116, 228, 255, 0.7);
}

.header-cta {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.85rem);
  max-width: 15ch;
}

.animated-city {
  display: inline-block;
  background: linear-gradient(110deg, #ffffff 0%, #bdefff 30%, #58dcff 50%, #e9f8ff 70%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: cityShimmer 4.2s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(88, 220, 255, 0.25);
}

@keyframes cityShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.rating-row {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 13, 78, 0.62);
  color: #e8f1ff;
  font-weight: 500;
}

.stars {
  color: #ffc94d;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.blob-scene {
  position: relative;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.blob {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(160deg, #5ce7ff, #1eb5ff);
  filter: drop-shadow(0 0 24px rgba(77, 217, 255, 0.35));
}

.blob-one {
  width: 260px;
  height: 300px;
  right: 1.5rem;
  top: 5.7rem;
}

.blob-two {
  width: 120px;
  height: 96px;
  right: 15rem;
  top: 5.2rem;
}

.blob-three {
  width: 132px;
  height: 146px;
  right: 14rem;
  top: 14.5rem;
}

.hero-person-card {
  position: relative;
  right: -2rem;
  width: auto;
  text-align: center;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero-photo {
  display: block;
  margin: 0;
  width: 441px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(77, 217, 255, 0.35));
}

.trust-showcase-section {
  position: relative;
  margin-top: -1px;
  padding: 5.3rem 0 5rem;
  overflow: visible;
  background: #ffffff;
}

.trust-showcase-section::before {
  display: none;
}

.trust-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  overflow: visible;
}

.trust-showcase-content {
  align-self: start;
  margin-top: -0.35rem;
}

.trust-showcase-content h2 {
  margin: 0;
  max-width: none;
  color: #000000;
}

.trust-showcase-title-line1 {
  white-space: nowrap;
  font-size: var(--section-head-line1-font-size);
  line-height: var(--section-head-line1-line-height);
  letter-spacing: var(--section-head-line1-letter-spacing);
}

.trust-showcase-title-line2 {
  display: block;
  margin-top: 0.42rem;
  font-size: var(--section-head-line2-font-size);
  font-weight: 700;
  line-height: var(--section-head-line2-line-height);
  letter-spacing: var(--section-head-line2-letter-spacing);
}

.trust-showcase-highlight {
  display: inline;
  font-weight: 800;
  background: linear-gradient(110deg, #022463 0%, #0a4e9c 26%, #00a9d6 50%, #0a4e9c 74%, #022463 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: trustHighlightShimmer 5s ease-in-out infinite;
}

@keyframes trustHighlightShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.trust-showcase-text,
.home-offer-teaser__subtitle,
.process-intro,
.realisations-subtitle {
  margin: 0;
  max-width: var(--section-subtitle-max-width);
  color: var(--section-subtitle-color);
  font-size: var(--section-subtitle-font-size);
  line-height: var(--section-subtitle-line-height);
}

.trust-showcase-text {
  margin: 1.15rem 0 1.4rem;
  text-align: justify;
}

.trust-showcase-cta {
  padding: 0.62rem 1.25rem;
  background: #59dcff;
  color: #07122f;
  box-shadow: 0 6px 16px rgba(77, 217, 255, 0.22);
}

.trust-showcase-cta:hover,
.trust-showcase-cta:focus-visible {
  background: #74e4ff;
  box-shadow: 0 8px 20px rgba(108, 227, 255, 0.3);
}

.trust-showcase-visual {
  position: relative;
  z-index: 2;
  min-height: 378px;
  margin-top: 5rem;
  margin-left: clamp(-0.7rem, 0.7vw, 0.35rem);
  margin-right: clamp(0rem, -1.5vw, 1.55rem);
  overflow: visible;
}

.trust-showcase-glow {
  position: absolute;
  inset: 28% 6% auto auto;
  width: min(268px, 62%);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77, 217, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(2px);
  pointer-events: none;
}

.trust-showcase-mockups {
  --trust-parallax-x: 0px;
  --trust-parallax-y: 0px;
  position: relative;
  width: min(420px, 108%);
  margin: 2.8rem clamp(0.35rem, -1vw, 1.65rem) -4rem auto;
  min-height: 378px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.trust-mockup {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(120, 170, 220, 0.35);
  background: linear-gradient(165deg, #ffffff 0%, #eff5ff 100%);
  box-shadow:
    0 6px 14px rgba(15, 45, 90, 0.08),
    0 22px 40px rgba(15, 45, 90, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  transform-origin: center center;
  animation: trustMockupFloat 8s ease-in-out infinite;
}

.trust-mockup:hover {
  transform: translateY(-6px) scale(1.02) rotate(var(--trust-rot, 0deg));
  box-shadow:
    0 14px 24px rgba(10, 37, 86, 0.14),
    0 30px 54px rgba(6, 28, 74, 0.34);
}

.trust-mockup--primary {
  --trust-rot: 0deg;
  width: 70%;
  max-width: 256px;
  aspect-ratio: 4 / 5;
  right: 2%;
  top: 11%;
  z-index: 4;
  animation-duration: 7s;
}

.trust-mockup--secondary {
  --trust-rot: 4.8deg;
  width: 54%;
  max-width: 188px;
  aspect-ratio: 10 / 11;
  right: -2%;
  top: 2%;
  z-index: 3;
  animation-duration: 7.8s;
  animation-delay: 0.45s;
}

.trust-mockup--back {
  --trust-rot: -6deg;
  width: 55%;
  max-width: 184px;
  aspect-ratio: 10 / 11;
  left: 2%;
  top: 14%;
  z-index: 2;
  animation-duration: 8.3s;
  animation-delay: 0.3s;
}

.trust-mockup__chrome {
  height: 1.28rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.34rem 0.48rem 0;
}

.trust-mockup__chrome span {
  width: 0.39rem;
  height: 0.39rem;
  border-radius: 999px;
  opacity: 0.95;
}

.trust-mockup__chrome span:first-child {
  background: #ff6f72;
}

.trust-mockup__chrome span:nth-child(2) {
  background: #ffd766;
}

.trust-mockup__chrome span:nth-child(3) {
  background: #51d2f1;
}

.trust-mockup__body {
  padding: 0.5rem 0.55rem 0.6rem;
}

.trust-site-nav {
  display: flex;
  gap: 0.32rem;
}

.trust-site-nav span {
  padding: 0.16rem 0.36rem;
  border-radius: 999px;
  font-size: 0.45rem;
  font-weight: 700;
  color: #566783;
  background: #eef3fa;
  border: 1px solid rgba(28, 50, 82, 0.12);
}

.trust-site-hero {
  margin-top: 0.52rem;
  border-radius: 11px;
  padding: 0.5rem 0.52rem;
  background: linear-gradient(118deg, #064a6e 0%, #0d7a9a 38%, #2db8c8 68%, #7fe8f0 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.trust-site-hero span {
  text-transform: uppercase;
  font-size: 0.51rem;
  font-weight: 800;
  color: #f2fdff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(4, 40, 58, 0.18);
}

.trust-mockup--primary h3 {
  margin: 0.52rem 0 0;
  color: #000000;
  font-size: 1rem;
}

.trust-mockup--primary p {
  margin: 0.1rem 0 0.52rem;
  font-size: 0.56rem;
  font-weight: 600;
  color: #657590;
}

.trust-site-cta {
  display: inline-flex;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 700;
  color: #04204b;
  background: linear-gradient(118deg, #72e8ff 0%, #36c9f4 100%);
  box-shadow: 0 6px 14px rgba(35, 164, 220, 0.3);
}

.trust-site-rows {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.32rem;
}

.trust-site-rows div {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(21, 48, 85, 0.1);
  border-radius: 9px;
  padding: 0.3rem 0.35rem;
  background: #f4f7fc;
}

.trust-site-rows span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #d2e6ff;
}

.trust-site-rows em {
  font-style: normal;
  font-size: 0.51rem;
  font-weight: 700;
  color: #233b61;
}

.trust-law-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-law-brand {
  color: #0d3f7e;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-law-chip {
  padding: 0.14rem 0.38rem;
  border-radius: 999px;
  font-size: 0.4rem;
  color: #4f6385;
  background: #e9f3ff;
  border: 1px solid rgba(34, 95, 164, 0.18);
}

.trust-law-banner {
  height: 1.42rem;
  margin-top: 0.42rem;
  border-radius: 10px;
  background: linear-gradient(115deg, #27406c 0%, #3a789d 50%, #9cd9f0 100%);
}

.trust-law-copy {
  margin: 0.43rem 0;
  color: #4e6484;
  font-size: 0.45rem;
  line-height: 1.38;
}

.trust-law-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
}

.trust-law-cards span {
  border-radius: 8px;
  padding: 0.27rem 0.16rem;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 700;
  color: #163258;
  background: #f5f9ff;
  border: 1px solid rgba(32, 74, 126, 0.13);
}

.trust-mini-top {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.75fr;
  gap: 0.2rem;
}

.trust-mini-top span {
  height: 0.29rem;
  border-radius: 999px;
  background: #e6edf7;
}

.trust-mini-hero {
  margin-top: 0.35rem;
  height: 1.08rem;
  border-radius: 9px;
  background: linear-gradient(118deg, #dff3ff 0%, #c4e8fc 58%, #9ed1f0 100%);
}

.trust-mini-lines {
  margin-top: 0.34rem;
  display: grid;
  gap: 0.18rem;
}

.trust-mini-lines span {
  height: 0.26rem;
  border-radius: 999px;
  background: #d3dfed;
}

.trust-mini-grid {
  margin-top: 0.36rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.22rem;
}

.trust-mini-grid span {
  height: 1.45rem;
  border-radius: 9px;
  background: #eaf1fa;
  border: 1px solid rgba(36, 72, 118, 0.08);
}

@keyframes trustMockupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--trust-rot, 0deg));
  }
  50% {
    transform: translateY(-9px) rotate(calc(var(--trust-rot, 0deg) + 0.55deg));
  }
}

.insight-kicker-accent {
  display: inline-block;
  font-size: 1.16em;
  font-weight: 800;
  background: linear-gradient(110deg, #022463 0%, #0a4e9c 26%, #00a9d6 50%, #0a4e9c 74%, #022463 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(2, 36, 99, 0.08);
}

@keyframes kickerShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.home-offer-teaser {
  position: relative;
  margin-top: clamp(-5.5rem, -10vw, -3.75rem);
  padding: clamp(2.15rem, 5.5vw, 3.65rem) 0 clamp(4.25rem, 9vw, 6rem);
  overflow: visible;
  background: #ffffff;
}

.home-offer-teaser::before {
  display: none;
}

/* Page Mon offre (offre.html) : même bleu sur toute la hauteur du bandeau (pas de couture avec le body) */
.offer-devis-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  padding: clamp(0.45rem, 1.25vw, 0.7rem) 0 clamp(0.2rem, 0.75vw, 0.4rem);
  overflow: visible;
}

.offer-devis-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 450px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  /* Hauteur minimale stable du bandeau (évite les sauts si le contenu change) */
  min-height: clamp(292px, 32vmin, 372px);
}

.offer-devis-banner__heading {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.offer-devis-banner__title {
  margin: 0 0 0.55rem;
  max-width: none;
  color: #f4f8ff;
  font-family: var(--font-heading);
  font-size: var(--section-head-line1-font-size);
  font-weight: 800;
  letter-spacing: var(--section-head-line1-letter-spacing);
  line-height: var(--section-head-line1-line-height);
  position: relative;
  z-index: 1;
}

.offer-devis-banner__subtitle {
  margin: 0;
  color: rgba(200, 220, 245, 0.92);
  font-size: var(--page-hero-subtitle-font-size);
  font-weight: 400;
  line-height: var(--page-hero-subtitle-line-height);
  max-width: 34ch;
}

.offer-devis-banner__title-accent {
  display: inline-block;
  padding-bottom: 0.04em;
  background: linear-gradient(110deg, #58dcff 0%, #b5f2ff 35%, #ffffff 50%, #8aeaff 68%, #58dcff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

/* Évite le rectangle sans texte (clip + transform reveal) sur WebKit */
.offer-devis-banner__heading.reveal {
  transform: none;
}

.offer-devis-banner__heading.reveal.visible {
  transform: none;
}

.offer-devis-banner .home-offer-teaser__card-shell {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 100%;
  max-width: 450px;
  margin-bottom: clamp(-7.5rem, -17vw, -5rem);
}

.offer-devis-intro {
  position: relative;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: clamp(4.5rem, 9.5vw, 6.35rem) 0 clamp(0.2rem, 0.9vw, 0.45rem);
}

.offer-devis-intro__inner {
  max-width: none;
  margin-inline: 0;
  text-align: left;
  /* Aligné avec le texte à l’intérieur de .offer-builder-main (même padding) */
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  box-sizing: border-box;
}

.offer-devis-intro__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: #0a1628;
}

.offer-devis-intro__text {
  margin: 0;
  max-width: min(40rem, 100%);
  color: #4a5f7c;
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  line-height: 1.45;
}

.offer-devis-intro__devis {
  display: inline-block;
  padding-bottom: 0.04em;
  color: #000000;
  font-weight: inherit;
}

.home-offer-teaser__wrap {
  position: relative;
  z-index: 1;
  max-width: 70rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.home-offer-teaser__intro {
  align-self: center;
  justify-self: center;
  text-align: left;
  max-width: 34rem;
  margin-inline: 0;
  width: min(100%, 34rem);
}

/* Même échelle / interligne que le hero « Mon process » (page d’accueil) */
.home-offer-teaser__headline {
  margin: 0 0 0.7rem;
  max-width: none;
  color: #000000;
}

.home-offer-teaser__headline-line1 {
  white-space: nowrap;
  font-size: var(--section-head-line1-font-size);
  line-height: var(--section-head-line1-line-height);
  letter-spacing: var(--section-head-line1-letter-spacing);
}

.home-offer-teaser__headline-line2 {
  display: block;
  margin-top: var(--section-head-line2-margin-top);
  font-size: var(--section-head-line2-font-size);
  font-weight: 700;
  line-height: var(--section-head-line2-line-height);
  letter-spacing: var(--section-head-line2-letter-spacing);
}

.home-offer-teaser__headline-accent {
  background: linear-gradient(110deg, #022463 0%, #0a4e9c 26%, #00a9d6 50%, #0a4e9c 74%, #022463 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

.home-offer-teaser__card-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  max-width: 450px;
  margin-top: clamp(0.85rem, 2.2vw, 1.65rem);
  align-self: start;
}

.home-offer-premium-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: clamp(24px, 4.5vw, 34px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #0c1a42 0%, #060d24 45%, #02050f 100%);
  border: 1px solid rgba(88, 220, 255, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 6px 28px rgba(0, 0, 0, 0.38),
    0 28px 64px rgba(4, 12, 40, 0.48),
    0 0 100px rgba(50, 190, 230, 0.1);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
}

.home-offer-premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 235, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 12px 36px rgba(0, 0, 0, 0.42),
    0 36px 72px rgba(4, 16, 52, 0.55),
    0 0 120px rgba(77, 217, 255, 0.18);
}

.home-offer-premium-card__sheen {
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  background: linear-gradient(
    180deg,
    rgba(0, 210, 255, 0.28) 0%,
    rgba(60, 170, 230, 0.1) 38%,
    rgba(8, 20, 50, 0) 100%
  );
  pointer-events: none;
}

.home-offer-premium-card__orb {
  position: absolute;
  top: -18%;
  right: -22%;
  width: min(72%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 235, 255, 0.45) 0%,
    rgba(60, 150, 220, 0.14) 42%,
    rgba(5, 15, 40, 0) 72%
  );
  filter: blur(22px);
  opacity: 0.9;
  pointer-events: none;
}

.home-offer-premium-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 3.8vw, 2.05rem) clamp(1.3rem, 4vw, 2.15rem) clamp(1.5rem, 3.8vw, 2.15rem);
}

.home-offer-premium-card__top {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.home-offer-premium-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 16px;
  background: rgba(88, 220, 255, 0.12);
  border: 1px solid rgba(120, 230, 255, 0.32);
  color: #8aeaff;
  box-shadow:
    0 0 28px rgba(88, 220, 255, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.home-offer-premium-card__title {
  margin: 0 0 0.4rem;
  color: #f2f7ff;
  font-size: clamp(1.32rem, 2.6vw, 1.68rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-offer-premium-card__subtitle {
  margin: 0 0 0.45rem;
  color: rgba(200, 218, 245, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-offer-premium-card__price-line {
  margin: 0 0 1.2rem;
  color: rgba(200, 218, 245, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-offer-premium-card__price-num {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: clamp(1.72rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(110deg, #b8f6ff 0%, #58dcff 35%, #f0fdff 52%, #58dcff 72%, #36c9f4 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: trustHighlightShimmer 5.5s ease-in-out infinite;
}

.home-offer-premium-card__list {
  margin: 0 0 1.45rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.home-offer-premium-card__list li {
  position: relative;
  padding-left: 1.72rem;
  color: rgba(225, 235, 252, 0.94);
  font-size: 0.89rem;
  font-weight: 500;
  line-height: 1.48;
}

.home-offer-premium-card__list-accent {
  color: #58dcff;
  font-weight: 600;
}

.home-offer-premium-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15rem;
  text-align: center;
  color: #031022;
  background: linear-gradient(145deg, #7ce9ff 0%, #58dcff 45%, #2eb0e8 100%);
  box-shadow: 0 0 16px rgba(88, 220, 255, 0.4);
}

/* Page Mon offre : garde le contenu global centré, sauf la checklist qui reste alignée à gauche */
.offer-devis-banner .home-offer-premium-card__list,
.offer-devis-banner .home-offer-premium-card__list li {
  text-align: left;
}

.home-offer-premium-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  color: #031525;
  background: linear-gradient(118deg, #9aefff 0%, #58dcff 38%, #36c9f4 100%);
  border: 0;
  box-shadow:
    0 6px 24px rgba(77, 217, 255, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.home-offer-premium-card__cta:hover,
.home-offer-premium-card__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow:
    0 10px 32px rgba(77, 217, 255, 0.48),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-offer-premium-card {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .home-offer-premium-card:hover {
    transform: none;
  }

  .home-offer-premium-card__price-num {
    animation: none;
  }

  .home-offer-premium-card__cta:hover,
  .home-offer-premium-card__cta:focus-visible {
    transform: none;
  }
}

.process-scroll-section {
  position: relative;
  padding: 6.25rem 0 5.5rem;
  overflow: hidden;
  background: #ffffff;
}

.process-scroll-section > .container {
  position: relative;
  z-index: 1;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  column-gap: clamp(1.2rem, 3vw, 2.7rem);
  row-gap: clamp(0.55rem, 1.2vw, 0.85rem);
  align-items: start;
}

.process-layout__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.65rem, 3.8vw, 2.6rem);
  min-width: 0;
}

.process-scroll-head {
  text-align: left;
  margin-bottom: 0;
  max-width: 42rem;
  margin-inline: 0;
}

.process-scroll-head :is(h1, h2) {
  margin: 0;
  color: #000000;
  font-family: var(--font-heading);
}

.process-title-line1 {
  display: inline-block;
  max-width: 100%;
  font-size: var(--section-head-line1-font-size);
  line-height: var(--section-head-line1-line-height);
  letter-spacing: var(--section-head-line1-letter-spacing);
  font-weight: 700;
  white-space: nowrap;
}

.process-title-line2 {
  display: block;
  margin-top: var(--section-head-line2-margin-top);
  font-size: var(--section-head-line2-font-size);
  font-weight: 700;
  line-height: var(--section-head-line2-line-height);
  letter-spacing: var(--section-head-line2-letter-spacing);
}

.process-scroll-head :is(h1, h2) .insight-kicker-accent {
  font-size: 1em;
}

.process-intro {
  margin: 1.2rem 0 0;
}

/* Illustration « site qui prend forme » — colonne gauche Mon process */
.process-premium-illustration {
  width: 100%;
  max-width: min(38rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-premium-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: clamp(300px, 52vw, 410px);
  margin-top: 0.25rem;
}

.process-premium-visual::before {
  content: "";
  position: absolute;
  inset: 2.5rem 0 4.35rem;
  background-image: radial-gradient(rgba(34, 184, 225, 0.22) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.process-premium-visual__glow {
  position: absolute;
  inset: 5rem 3.1rem 2.2rem;
  background: radial-gradient(circle, rgba(64, 211, 255, 0.2), transparent 68%);
  filter: blur(16px);
  animation: process-premium-glow 4.2s ease-in-out infinite;
}

.process-premium-browser {
  position: absolute;
  left: clamp(3.5rem, 14vw, 5.9rem);
  top: clamp(0.75rem, 2vw, 1.25rem);
  width: min(430px, 72%);
  height: min(300px, 74%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 163, 218, 0.32);
  box-shadow: 0 24px 60px rgba(6, 47, 84, 0.12);
  overflow: hidden;
  animation: process-premium-float-main 5.5s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.process-premium-browser__top {
  height: 34px;
  background: linear-gradient(90deg, #061b3c, #0b2d68);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
}

.process-premium-browser__top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a4e3ff;
}

.process-premium-browser__top span:nth-child(1) {
  background: #f5b5c8;
}

.process-premium-browser__top span:nth-child(2) {
  background: #c4f6cb;
}

.process-premium-browser__content {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.process-premium-hero {
  position: relative;
  width: min(245px, 100%);
  height: 118px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eaf8ff, #bfe9ff);
  border: 1px solid rgba(156, 223, 255, 0.95);
  overflow: hidden;
}

.process-premium-mountain {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 70px;
  background: linear-gradient(135deg, #8ed0ff, #dff6ff);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.process-premium-mountain--one {
  left: 40px;
}

.process-premium-mountain--two {
  right: 20px;
  height: 55px;
  opacity: 0.82;
}

.process-premium-sun {
  position: absolute;
  right: 42px;
  top: 30px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.process-premium-line {
  height: 11px;
  border-radius: 999px;
  background: #dff2ff;
  margin-top: 16px;
}

.process-premium-line--lg {
  width: min(260px, 100%);
}

.process-premium-line--md {
  width: min(170px, 72%);
}

.process-premium-line--sm {
  width: min(130px, 52%);
}

.process-premium-side {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  width: 108px;
  height: 70px;
  border: 2px dashed rgba(39, 179, 232, 0.42);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-premium-side--text {
  top: 55px;
}

.process-premium-side--text span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #b5eaff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b65bc;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.process-premium-side--click {
  top: 145px;
}

.process-premium-cursor {
  width: 0;
  height: 0;
  border-left: 16px solid #061b3c;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-20deg);
  animation: process-premium-cursor 2.8s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(6, 27, 60, 0.18));
}

.process-premium-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(42, 187, 239, 0.45);
  box-shadow: 0 16px 40px rgba(0, 92, 150, 0.1);
  backdrop-filter: blur(10px);
}

.process-premium-float--image {
  left: 4%;
  top: 58%;
  width: 155px;
  height: 78px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  animation: process-premium-float-card 4.5s ease-in-out infinite;
}

.process-premium-mini-image {
  flex-shrink: 0;
  width: 55px;
  height: 48px;
  border-radius: 7px;
  background: linear-gradient(135deg, #eaf8ff, #9bdcff);
  position: relative;
}

.process-premium-mini-image::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 8px;
  width: 34px;
  height: 22px;
  background: #6ac5ff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.process-premium-mini-line {
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: #dff2ff;
  margin-bottom: 8px;
}

.process-premium-mini-line--short {
  width: 45px;
}

.process-premium-float--code {
  right: 2%;
  top: 62%;
  width: 90px;
  height: 72px;
  border-radius: 10px;
  color: #0a5fae;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  animation: process-premium-float-card 4.8s ease-in-out infinite reverse;
}

.process-premium-float--icons {
  left: 48%;
  bottom: 10%;
  width: min(220px, 52%);
  height: 92px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.35rem;
  animation: process-premium-float-card 5.2s ease-in-out infinite;
}

.process-premium-icon-pill {
  text-align: center;
}

.process-premium-icon-pill span {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  border: 1px solid #aee8ff;
  background: linear-gradient(145deg, rgba(235, 252, 255, 0.95), rgba(255, 255, 255, 0.85));
  color: #0867bc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 auto 9px;
  font-family: var(--font-heading);
}

.process-premium-icon-pill:nth-child(1) span::after {
  content: "01";
}

.process-premium-icon-pill:nth-child(2) span::after {
  content: "02";
}

.process-premium-icon-pill:nth-child(3) span::after {
  content: "03";
}

.process-premium-icon-pill small {
  display: block;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: #dff2ff;
  margin-inline: auto;
}

.process-premium-badge {
  position: absolute;
  top: 6%;
  right: 10%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6be5ff, #1596d8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(28, 185, 232, 0.32);
  animation: process-premium-badge 2.4s ease-in-out infinite;
  font-family: var(--font-heading);
}

@keyframes process-premium-float-main {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes process-premium-float-card {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(3px);
  }
}

@keyframes process-premium-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes process-premium-glow {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes process-premium-cursor {
  0%,
  100% {
    transform: translate(0, 0) rotate(-20deg);
  }
  50% {
    transform: translate(10px, -7px) rotate(-20deg);
  }
}

.process-scroll-section .insight-kicker-accent {
  background: linear-gradient(110deg, #022463 0%, #0a4e9c 26%, #00a9d6 50%, #0a4e9c 74%, #022463 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.process-scroll-wrap {
  position: relative;
  width: min(492px, 100%);
  margin: 0 0 0 auto;
  display: grid;
  gap: 1rem;
  --process-progress: 0;
}

.process-progress-rail {
  position: absolute;
  left: 23px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  border-radius: 999px;
  background: rgba(6, 70, 82, 0.22);
}

.process-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(var(--process-progress));
  border-radius: inherit;
  background: linear-gradient(180deg, #5ed4ff 0%, #2e8fd4 55%, #0a4e9c 100%);
  transition: transform 0.2s linear;
  position: relative;
}

.process-progress-fill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #5ed4ff;
  transform: translate(-50%, 50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 2px 12px rgba(60, 170, 220, 0.35);
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 1rem 1.15rem;
  --reveal-item: 0;
  will-change: transform, opacity;
}

.process-item-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #58dcff;
  background: #061b4d;
  border: 1px solid rgba(88, 220, 255, 0.48);
  box-shadow: 0 2px 10px rgba(8, 42, 105, 0.3);
  opacity: 0.42;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.process-item-card {
  background: linear-gradient(162deg, #071a4a 0%, #04153a 100%);
  border: 1px solid rgba(88, 220, 255, 0.24);
  border-radius: 16px;
  padding: 0.92rem 1.2rem 1.02rem;
  box-shadow: 0 8px 24px rgba(5, 24, 62, 0.28);
  opacity: calc(0.16 + var(--reveal-item) * 0.84);
  transform: translateY(calc(12px - var(--reveal-item) * 12px));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-item--final .process-item-card {
  background: linear-gradient(162deg, #071a4a 0%, #04153a 100%);
  border-color: rgba(88, 220, 255, 0.24);
}

.process-item.process-item-active .process-item-card {
  border-color: rgba(88, 220, 255, 0.48);
  box-shadow: 0 10px 30px rgba(8, 42, 105, 0.35);
}

.process-item.process-item-active .process-item-number {
  color: #04235e;
  background: #58dcff;
  border-color: rgba(188, 244, 255, 0.95);
  box-shadow: 0 5px 18px rgba(88, 220, 255, 0.38);
  opacity: 1;
  transform: scale(1);
}

.process-step-label {
  margin: 0 0 0.38rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.process-item-card .process-step-label {
  color: #58dcff;
}

.process-item-card h3 {
  margin: 0 0 0.48rem;
  color: #ffffff;
  font-size: clamp(1.06rem, 1.75vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-item-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.62;
  font-size: 0.96rem;
}

.process-text-accent {
  color: #58dcff;
  font-weight: 600;
}

.process-left-cta {
  margin: 0;
  margin-top: clamp(-0.85rem, -1.8vw, -0.25rem);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(5.5rem, 15vw, 10.5rem);
  text-align: right;
  position: relative;
  z-index: 2;
}

.process-left-cta .process-cta {
  width: auto;
}

/* CTA en fin de timeline : visible uniquement sur mobile (accueil) */
.process-mobile-cta {
  display: none;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.62rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5ad8ff 0%, #38c8f4 100%);
  color: #061433;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 16px rgba(20, 100, 150, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process-cta:hover,
.process-cta:focus-visible {
  background: linear-gradient(180deg, #6ee0ff 0%, #4dd4f8 100%);
  box-shadow: 0 6px 22px rgba(20, 110, 160, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.process-cta:focus-visible {
  outline: 2px solid #0a4e9c;
  outline-offset: 3px;
}

.realisations-section {
  /* Même blanc que .process-scroll-section en haut pour éviter la coupure nette, puis léger voile */
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
  padding: 4.5rem 0 5rem;
}

.realisations-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.realisations-kicker {
  color: #0a4e9c;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.realisations-head h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-heading);
  font-size: var(--section-head-line1-font-size);
  line-height: var(--section-head-line1-line-height);
  letter-spacing: var(--section-head-line1-letter-spacing);
  font-weight: 700;
}

.realisations-subtitle {
  margin: 0.85rem auto 0;
  text-align: center;
}

.realisations-title-accent {
  background: linear-gradient(110deg, #022463 0%, #0a4e9c 26%, #00a9d6 50%, #0a4e9c 74%, #022463 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.realisations-cta-wrap {
  margin: clamp(2.85rem, 5.5vw, 3.75rem) 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.realisations-cta-wrap .process-cta {
  flex-shrink: 0;
}

.real-card {
  margin: 0;
}

.real-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #e8edf4;
  box-shadow: 0 14px 32px rgba(15, 35, 75, 0.12);
}

.real-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.real-card-frame:hover .real-thumb {
  transform: scale(1.04);
}

.real-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f4f8ff;
  outline: none;
}

.real-card-overlay__shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 32, 0.78);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.real-card-overlay__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem;
  text-align: center;
  max-width: 90%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.real-card-overlay__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.real-card-overlay__tag {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fd5ff;
}

.real-card-overlay__url {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #58dcff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.real-card-overlay:hover .real-card-overlay__shade,
.real-card-overlay:focus-visible .real-card-overlay__shade {
  opacity: 1;
}

.real-card-overlay:hover .real-card-overlay__inner,
.real-card-overlay:focus-visible .real-card-overlay__inner {
  opacity: 1;
  transform: translateY(0);
}

.real-card-overlay:focus-visible {
  box-shadow: inset 0 0 0 3px #58dcff;
}

.real-card.is-filter-hidden {
  display: none !important;
}

.real-page-hero {
  background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  padding: clamp(2.35rem, 4.5vw, 3.15rem) 0 clamp(1.55rem, 2.8vw, 2.35rem);
  color: #f0f7ff;
}

.real-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 1.5rem 2.25rem;
  align-items: center;
}

.real-page-hero-text {
  max-width: 40rem;
  transform: translateY(-18px);
}

.real-page-kicker {
  margin: 0 0 0.5rem;
  color: #58dcff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.real-page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: var(--section-head-line1-font-size);
  font-weight: 800;
  letter-spacing: var(--section-head-line1-letter-spacing);
  line-height: var(--section-head-line1-line-height);
  color: #ffffff;
}

.real-page-title-gradient {
  background: linear-gradient(110deg, #58dcff 0%, #b5f2ff 35%, #ffffff 50%, #8aeaff 68%, #58dcff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

.real-page-intro {
  margin: 0;
  font-size: var(--page-hero-subtitle-font-size);
  line-height: var(--page-hero-subtitle-line-height);
  color: rgba(220, 235, 255, 0.92);
  max-width: 38ch;
}

.process-scroll-section.process-page-timeline {
  position: relative;
  overflow: hidden;
  /* Continuite avec le hero: depart blanc, puis degrade doux */
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 28%, #eef5fb 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.25rem, 5vw, 4.75rem);
}

.process-page-timeline-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.process-scroll-wrap.process-scroll-wrap--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Page Mon process : grille identique à l’accueil — illustration animée à gauche, étapes à droite */
.process-scroll-section.process-page-timeline .process-layout__left {
  gap: 0;
}

.process-page-timeline-col {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.process-scroll-section.process-page-timeline .process-layout .process-scroll-wrap {
  order: 1;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: min(492px, 100%);
}

.process-page-timeline-col .process-page-actions {
  order: 2;
}

.real-hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 260px;
  margin-inline: auto;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.real-hero-visual__glow {
  position: absolute;
  inset: 8% -4% 12% -4%;
  background: radial-gradient(
    ellipse 72% 58% at 52% 48%,
    rgba(88, 220, 255, 0.2) 0%,
    rgba(30, 120, 200, 0.08) 42%,
    transparent 72%
  );
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.realisations-lottie-wrapper {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.realisations-lottie-wrapper dotlottie-player,
.realisations-lottie-wrapper dotlottie-wc {
  width: 100%;
  height: 100%;
  display: block;
}

.real-portfolio-orbit {
  display: grid;
  place-items: center;
  min-height: inherit;
}

.real-portfolio-halo {
  position: absolute;
  inset: 16% 13% 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(88, 220, 255, 0.18) 0%, rgba(88, 220, 255, 0.08) 34%, rgba(5, 25, 75, 0) 72%);
  filter: blur(12px);
  animation: realPortfolioHaloPulse 7.8s ease-in-out infinite;
}

.real-portfolio-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(120, 228, 255, 0.28);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.real-portfolio-ring--one {
  width: 280px;
  height: 186px;
  animation: realPortfolioOrbitRotate 26s linear infinite;
}

.real-portfolio-ring--two {
  width: 222px;
  height: 224px;
  transform: translate(-50%, -50%) rotate(24deg);
  animation: realPortfolioOrbitRotateReverse 31s linear infinite;
}

.real-portfolio-ring--three {
  width: 330px;
  height: 160px;
  transform: translate(-50%, -50%) rotate(-18deg);
  border-color: rgba(120, 228, 255, 0.2);
  animation: realPortfolioOrbitRotate 36s linear infinite;
}

.real-portfolio-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #aef1ff 38%, #58dcff 100%);
  box-shadow: 0 0 12px rgba(88, 220, 255, 0.5);
}

.real-portfolio-node--a {
  left: 18%;
  top: -5px;
}

.real-portfolio-node--b {
  right: 15%;
  bottom: -5px;
}

.real-portfolio-node--c {
  right: -5px;
  top: 26%;
}

.real-portfolio-node--d {
  left: -5px;
  bottom: 26%;
}

.real-portfolio-node--e {
  right: 22%;
  top: -5px;
}

.real-portfolio-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 32% 28%, #ffffff 0%, #cef6ff 35%, #58dcff 70%, #18a9d8 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.22),
    0 0 28px rgba(88, 220, 255, 0.46),
    0 0 64px rgba(8, 130, 175, 0.35);
  animation: realPortfolioCoreFloat 7.5s ease-in-out infinite;
}

.real-portfolio-core strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #082746;
  line-height: 1;
}

.real-portfolio-core small {
  margin-top: 0.28rem;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(7, 36, 63, 0.78);
}

.real-portfolio-badges {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.real-portfolio-badge {
  --badge-float: -8px;
  position: absolute;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  color: #eaf8ff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid rgba(125, 226, 255, 0.42);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(124, 208, 255, 0.08));
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 22px rgba(4, 16, 52, 0.3);
  animation: realPortfolioBadgeFloat 9.6s ease-in-out infinite;
}

.real-portfolio-badge--design {
  left: 9%;
  top: 18%;
  --badge-float: -9px;
}

.real-portfolio-badge--seo {
  right: 5%;
  top: 24%;
  --badge-float: -7px;
  animation-delay: -1.8s;
}

.real-portfolio-badge--responsive {
  right: 12%;
  bottom: 16%;
  --badge-float: -10px;
  animation-delay: -3s;
}

.real-portfolio-badge--ux {
  left: 18%;
  bottom: 11%;
  --badge-float: -6px;
  animation-delay: -1.1s;
}

.real-portfolio-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(210, 247, 255, 0.9);
  box-shadow: 0 0 9px rgba(120, 228, 255, 0.55);
  animation: realPortfolioStarTwinkle 6.3s ease-in-out infinite;
}

.real-portfolio-star--1 {
  left: 8%;
  top: 58%;
}

.real-portfolio-star--2 {
  left: 35%;
  top: 8%;
  animation-delay: -1.8s;
}

.real-portfolio-star--3 {
  right: 8%;
  top: 58%;
  animation-delay: -3.2s;
}

.real-portfolio-star--4 {
  left: 57%;
  bottom: 6%;
  animation-delay: -2.6s;
}

@keyframes realPortfolioHaloPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes realPortfolioCoreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-7px);
  }
}

@keyframes realPortfolioOrbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes realPortfolioOrbitRotateReverse {
  from {
    transform: translate(-50%, -50%) rotate(24deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-336deg);
  }
}

@keyframes realPortfolioBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(var(--badge-float));
  }
}

@keyframes realPortfolioStarTwinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .real-portfolio-halo,
  .real-portfolio-core,
  .real-portfolio-ring,
  .real-portfolio-badge,
  .real-portfolio-star {
    animation: none;
  }

  .process-page-illustration-img {
    animation: none;
  }
}

.real-page-content {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 0 1.75rem;
}

.process-page-content {
  background: #ffffff;
  padding: 3rem 0 4.5rem;
}

.process-page-content.process-page-content--tight-top {
  padding-top: 1.5rem;
}

.real-hero-visual.process-page-hero-visual {
  isolation: auto;
  min-height: 0;
  max-width: 480px;
}

.process-page-illustration-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
}

.process-page-illustration-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.35));
  animation: processPageIllustrationFloat 7s ease-in-out infinite;
}

@keyframes processPageIllustrationFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.real-page-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.real-filter-chip {
  appearance: none;
  border: 1px solid #c5d0e0;
  background: #ffffff;
  padding: 0.48rem 1.05rem;
  border-radius: 999px;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  color: #07173d;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.real-filter-chip:hover {
  border-color: #58dcff;
  box-shadow: 0 2px 10px rgba(88, 220, 255, 0.2);
}

.real-filter-chip.is-active {
  background: #07173d;
  color: #f0f7ff;
  border-color: #07173d;
  box-shadow: 0 4px 14px rgba(7, 23, 61, 0.2);
}

.real-page-footnote-wrap {
  padding: 1.25rem 0 3.25rem;
  background: #ffffff;
}

.real-page-footnote-cta {
  margin: 0 0 1.35rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.real-page-footnote {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 2.9vw, 2rem);
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.offer-hero {
  background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  padding: 4.85rem 0 3.8rem;
}

.offer-hero-inner {
  max-width: 54rem;
  text-align: center;
  margin-inline: auto;
}

.offer-hero h1 {
  margin: 0 0 0.8rem;
  color: #f4f8ff;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.offer-hero p {
  margin: 0 auto;
  max-width: 46rem;
  color: rgba(220, 235, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
}

.offer-estimator-section {
  background: linear-gradient(180deg, #f8fafd 0%, #f1f6fb 100%);
  padding: 3.2rem 0 3.8rem;
}

.offer-estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.3rem;
  align-items: start;
}

.offer-estimator-main {
  display: grid;
  gap: 1rem;
}

.offer-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(8, 52, 118, 0.1);
  box-shadow: 0 8px 24px rgba(8, 36, 76, 0.08);
  padding: 1.25rem 1.2rem;
}

.offer-card h2 {
  margin: 0 0 0.72rem;
  color: #000000;
  font-size: 1.06rem;
}

.offer-label,
.offer-question {
  color: #314b71;
  font-size: 0.95rem;
}

.offer-input {
  width: 100%;
  margin-top: 0.55rem;
  border: 1px solid rgba(14, 79, 152, 0.2);
  border-radius: 12px;
  padding: 0.78rem 0.92rem;
  font: inherit;
  color: #07173d;
  background: #fefefe;
}

.offer-input:focus-visible {
  outline: 2px solid rgba(88, 220, 255, 0.85);
  outline-offset: 2px;
  border-color: rgba(88, 220, 255, 0.72);
}

.offer-choice-group {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.58rem;
}

.offer-choice {
  display: flex;
  gap: 0.62rem;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid rgba(7, 32, 77, 0.12);
  background: #fbfdff;
  padding: 0.64rem 0.72rem;
  cursor: pointer;
}

.offer-choice span {
  color: #112f58;
  line-height: 1.45;
}

.offer-alert {
  margin-top: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 78, 156, 0.24);
  background: linear-gradient(140deg, rgba(236, 247, 255, 0.95), rgba(224, 243, 255, 0.92));
  padding: 0.88rem 0.95rem;
  display: grid;
  gap: 0.78rem;
}

.offer-alert p {
  color: #153867;
}

.offer-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.86rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(8, 52, 118, 0.08);
}

.offer-option:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.offer-option:has(> .offer-check) {
  grid-template-columns: 1fr;
}

.offer-option h3 {
  margin: 0 0 0.18rem;
  font-size: 0.99rem;
  color: #000000;
}

.offer-option p {
  color: #4b6488;
  font-size: 0.9rem;
}

.offer-option strong {
  color: #092c5f;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  white-space: nowrap;
}

.offer-option-base {
  padding-top: 0.2rem;
  border-bottom: 0;
}

.offer-base-headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.offer-base-headline h3 {
  margin: 0;
}

.offer-base-headline strong {
  font-size: 1.06rem;
  color: #0a4e9c;
}

.offer-base-box {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(88, 198, 255, 0.34);
  background: linear-gradient(145deg, rgba(234, 247, 255, 0.95), rgba(224, 242, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 0.82rem 0.86rem;
}

.offer-option-hosting {
  display: block;
  border-bottom: 0;
  padding: 0.55rem 0 0;
}

.offer-hosting-box {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(88, 198, 255, 0.38);
  background: linear-gradient(152deg, rgba(240, 250, 255, 0.98), rgba(228, 244, 255, 0.94));
  box-shadow:
    0 4px 14px rgba(12, 60, 120, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 0.88rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-hosting-box:hover {
  border-color: rgba(88, 198, 255, 0.55);
  box-shadow:
    0 6px 18px rgba(12, 60, 120, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.offer-option-hosting .offer-check {
  width: 100%;
}

.offer-option-heading {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-bottom: 0.18rem;
  max-width: 100%;
}

.offer-option-heading h3 {
  margin: 0;
  flex: 0 1 auto;
}

.offer-option-heading .offer-option-help {
  flex-shrink: 0;
  margin-top: 0;
}

.offer-check__body {
  display: contents;
}

.offer-check__title-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.28rem;
  max-width: 100%;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.offer-check__title-row .offer-option-help--inline {
  flex-shrink: 0;
}

.offer-option-help {
  position: relative;
  align-self: flex-start;
}

.offer-option-help--inline {
  display: inline-flex;
  align-items: center;
}

.offer-option-help--inline .offer-help-popover {
  left: 0;
  right: auto;
}

.offer-help-btn {
  width: 1.38rem;
  height: 1.38rem;
  padding: 0;
  border: 1px solid rgba(10, 78, 156, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f9ff 0%, #e8f2fc 100%);
  color: #0a4e9c;
  font-family: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.offer-help-btn__glyph {
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-heading);
  text-transform: lowercase;
}

.offer-help-btn:hover,
.offer-help-btn:focus-visible {
  background: linear-gradient(180deg, #d8f0ff 0%, #c8e8fc 100%);
  border-color: rgba(88, 198, 255, 0.65);
  box-shadow: 0 2px 10px rgba(35, 150, 200, 0.22);
  outline: none;
}

.offer-help-popover {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  width: min(288px, calc(100vw - 2.25rem));
  padding: 0.78rem 0.88rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(120, 170, 220, 0.48);
  box-shadow:
    0 14px 32px rgba(15, 45, 90, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  color: #3d5677;
  font-size: 0.84rem;
  line-height: 1.52;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.offer-option-help:hover .offer-help-popover,
.offer-option-help:focus-within .offer-help-popover,
.offer-option-help.is-open .offer-help-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.offer-help-popover p {
  margin: 0;
}

.offer-help-popover strong {
  color: #163a6a;
  font-weight: 700;
}

@media (max-width: 520px) {
  .offer-help-popover {
    right: auto;
    left: 0;
    width: min(300px, calc(100vw - 1.75rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-help-popover {
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transform: none;
  }

  .offer-option-help:hover .offer-help-popover,
  .offer-option-help:focus-within .offer-help-popover,
  .offer-option-help.is-open .offer-help-popover {
    transform: none;
  }
}

.offer-included-list {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.42rem;
}

.offer-included-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  color: #1e436f;
  font-size: 0.87rem;
  line-height: 1.35;
}

.offer-included-item input {
  margin: 0;
  align-self: center;
}

.offer-included-item em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f6a91;
  border-radius: 999px;
  padding: 0.16rem 0.42rem;
  background: rgba(88, 220, 255, 0.18);
  border: 1px solid rgba(88, 198, 255, 0.3);
}

.offer-option-control {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
}

.offer-option-control label {
  color: #4a6182;
  font-size: 0.8rem;
}

.offer-option-control input {
  width: 74px;
  text-align: center;
  border: 1px solid rgba(10, 78, 156, 0.22);
  border-radius: 9px;
  padding: 0.4rem 0.35rem;
  font: inherit;
}

.offer-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.5rem;
  row-gap: 0.12rem;
  align-items: start;
  cursor: pointer;
}

.offer-check input[type="checkbox"],
.offer-included-item input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}

.offer-check input[type="checkbox"] {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.offer-check strong {
  color: #07173d;
}

.offer-check small {
  grid-column: 2;
  grid-row: 2;
  color: #4b6488;
  line-height: 1.36;
}

.offer-check--included small {
  color: #0f6a91;
  font-weight: 700;
}

.offer-estimator-summary {
  position: sticky;
  top: 98px;
}

.offer-summary-card {
  background: linear-gradient(148deg, #071b4b 0%, #0c2967 45%, #0e377f 100%);
  border-radius: 18px;
  border: 1px solid rgba(120, 210, 255, 0.24);
  box-shadow: 0 10px 26px rgba(8, 34, 79, 0.18);
  padding: 1.08rem 1.05rem 1.18rem;
}

.offer-summary-kicker {
  color: #7ce8ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.offer-summary-total {
  margin-top: 0.48rem;
  color: #dff6ff;
  font-size: 1.02rem;
}

.offer-summary-total strong {
  color: #ffffff;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, #58dcff 0%, #b5f2ff 35%, #ffffff 50%, #8aeaff 68%, #58dcff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

.offer-summary-monthly {
  margin-top: 0.44rem;
  color: #d4ebff;
}

.offer-summary-note {
  margin-top: 0.74rem;
  color: rgba(220, 236, 255, 0.9);
  font-size: 0.89rem;
}

.offer-summary-details {
  margin-top: 0.74rem;
  color: #b8dbff;
  white-space: pre-line;
  font-size: 0.86rem;
}

.offer-summary-card .process-cta {
  margin-top: 0.95rem;
  width: 100%;
}

.offer-mail-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.offer-pricing-section {
  background: #ffffff;
  padding: 3.1rem 0 4.4rem;
}

.offer-pricing-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.offer-pricing-head h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.offer-pricing-head p {
  margin-top: 0.62rem;
  color: #4d6485;
}

.offer-pricing-table-wrap {
  border-radius: 18px;
  border: 1px solid rgba(7, 35, 82, 0.11);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 32, 74, 0.08);
}

.offer-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.offer-pricing-table th,
.offer-pricing-table td {
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid rgba(9, 44, 96, 0.08);
  text-align: left;
  vertical-align: top;
}

.offer-pricing-table th {
  background: #f1f7ff;
  color: #083269;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.offer-pricing-table td {
  color: #203f66;
}

.offer-pricing-table tbody td:first-child {
  width: 24%;
  color: #081f48;
  font-weight: 700;
}

.offer-pricing-table tbody td:last-child {
  width: 17%;
  color: #09316d;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(110deg, #0a4e9c 0%, #00a9d6 45%, #58dcff 60%, #0a4e9c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kickerShimmer 4.8s ease-in-out infinite;
}

.offer-pricing-note {
  margin: 1rem 0 0;
  color: #4e6381;
  max-width: 66rem;
}

.offer-hero--builder .offer-start-btn {
  margin-top: 1.15rem;
}

.offer-builder-section {
  background: linear-gradient(180deg, #f7faff 0%, #eef5fb 100%);
  padding: clamp(1.45rem, 3vw, 2.05rem) 0 3.8rem;
}

.offer-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 1.2rem;
  align-items: start;
}

.offer-builder-main {
  background: #ffffff;
  border: 1px solid rgba(8, 52, 118, 0.11);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(8, 34, 79, 0.08);
  padding: 1.2rem;
}

.offer-progress-label {
  margin: 0 0 0.45rem;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 78, 156, 0.12);
  overflow: hidden;
}

.offer-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #58dcff 0%, #2e8fd4 100%);
  transition: width 0.35s ease;
}

.offer-step {
  display: none;
  margin-top: 1rem;
}

.offer-step.is-active {
  display: block;
  animation: offerStepFade 0.3s ease;
}

@keyframes offerStepFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-step h2 {
  margin: 0;
  color: #000000;
}

.offer-step > p {
  margin-top: 0.32rem;
  color: #486183;
}

.offer-step[data-offer-step="2"] > h2,
.offer-step[data-offer-step="3"] > h2 {
  margin-top: clamp(2.1rem, 4.8vw, 3rem);
}

.offer-card-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.offer-card-grid--site-type {
  grid-template-columns: 1fr;
}

.offer-select-card {
  border: 1px solid rgba(10, 78, 156, 0.16);
  background: #fbfdff;
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  text-align: left;
  color: #0f315f;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-select-card:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 220, 255, 0.6);
  box-shadow: 0 6px 16px rgba(20, 80, 150, 0.1);
}

.offer-select-card.is-active {
  border-color: rgba(18, 135, 180, 0.72);
  background: linear-gradient(145deg, rgba(235, 248, 255, 0.95), rgba(220, 242, 255, 0.92));
}

.offer-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(88, 220, 255, 0.2);
}

.offer-option-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.15rem;
}

.offer-option ul {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  list-style: disc;
}

.offer-counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 78, 156, 0.22);
  border-radius: 12px;
  overflow: hidden;
}

.offer-counter button {
  border: 0;
  background: #eef6ff;
  color: #0a3a73;
  width: 34px;
  height: 34px;
  font-size: 1.05rem;
  cursor: pointer;
}

.offer-counter span {
  min-width: 30px;
  text-align: center;
  color: #0a2c5a;
  font-weight: 700;
}

.offer-option.is-locked {
  opacity: 0.92;
}

.offer-option.is-locked .offer-check small::after {
  content: " (ajoute automatiquement)";
  color: #0d5f86;
}

.offer-step-actions {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
}

.offer-step-actions .btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.offer-builder-side {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 0.85rem;
}

.offer-summary-card--live {
  padding: 1rem;
}

.offer-mockup-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.offer-mockup {
  margin-top: 0.5rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(155, 193, 226, 0.55);
  box-shadow:
    0 14px 28px rgba(8, 35, 75, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 0.82rem;
}

.offer-mockup-browser {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.offer-mockup-browser span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.offer-mockup-browser span:nth-child(1) {
  background: #ff7878;
}

.offer-mockup-browser span:nth-child(2) {
  background: #ffd46a;
}

.offer-mockup-browser span:nth-child(3) {
  background: #59d5ff;
}

.offer-mockup-nav {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.66rem;
}

.offer-mockup-nav span {
  border-radius: 999px;
  padding: 0.26rem 0.56rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: #5f6f8b;
  background: #e9eef6;
  border: 1px solid #d2deed;
}

.offer-mockup-hero {
  border-radius: 16px;
  padding: 0.6rem 0.7rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #11648b 0%, #2bb0d0 56%, #68d0da 100%);
}

.offer-mockup-title {
  margin-top: 0.64rem;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.offer-mockup-subline {
  margin-top: 0.28rem;
  color: #687c9e;
  font-size: 0.88rem;
  font-weight: 600;
}

.offer-mockup-cta {
  margin-top: 0.6rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #0b355f;
  background: linear-gradient(180deg, #64dbff 0%, #39c7f1 100%);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(38, 170, 220, 0.2);
}

.offer-mockup-line {
  margin-top: 0.62rem;
  color: #56749a;
  font-size: 0.8rem;
  font-weight: 600;
}

.offer-mockup-costs {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.24rem;
}

.offer-mockup-costs p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  padding: 0.1rem 0;
  background: transparent;
  border: 0;
  color: #526e92;
  font-size: 0.72rem;
}

.offer-mockup-costs strong {
  color: #163a6a;
  font-size: 0.72rem;
}

.offer-mockup-costs strong.offer-mockup-cost-price--zero {
  color: #0d7a6e;
  font-weight: 700;
}

.offer-mockup-badges {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.offer-mockup-badges span {
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  color: #1b4a74;
  background: linear-gradient(180deg, #d2f5ff 0%, #b8ebff 100%);
  border: 1px solid rgba(116, 190, 220, 0.38);
}

.offer-mockup-summary {
  margin-top: 0.62rem;
  border-top: 1px solid #d7e3f0;
  padding-top: 0.5rem;
  display: grid;
  gap: 0.28rem;
}

.offer-mockup-summary p {
  margin: 0;
  color: #476487;
  font-size: 0.74rem;
  font-weight: 600;
}

.offer-mockup-summary .offer-mockup-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.1rem 0;
  color: #143861;
  font-size: 0.92rem;
  font-weight: 800;
}

.offer-mockup-summary .offer-mockup-total-line span,
.offer-mockup-summary .offer-mockup-total-line strong {
  font-size: inherit;
  font-weight: 800;
}

.offer-mockup-summary .offer-mockup-total-line strong {
  color: #163a6a;
}

.offer-mockup-note {
  color: #60799a;
  font-size: 0.69rem;
  line-height: 1.35;
}

.offer-mockup-form {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.25rem;
}

.offer-mockup-form span {
  border-radius: 8px;
  padding: 0.24rem 0.34rem;
  background: #e8eef7;
  color: #647b9e;
  font-size: 0.72rem;
}

.offer-final-card {
  margin-top: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 78, 156, 0.16);
  background: #f9fcff;
  padding: 0.92rem;
  display: grid;
  gap: 0.42rem;
}

.offer-final-card p {
  color: #1f416d;
}

.offer-final-options {
  color: #10437c;
}

.offer-final-textarea {
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid rgba(10, 78, 156, 0.22);
  border-radius: 11px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  color: #0b2f5f;
  background: #ffffff;
  resize: vertical;
}

.offer-final-card .process-cta {
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  margin-top: 0.35rem;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.offer-bullet-list {
  margin: 0;
  padding-left: 1rem;
}

.offer-bullet-list li {
  margin: 0.06rem 0;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(2, 12, 38, 0.52);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.offer-modal[hidden] {
  display: none !important;
}

.offer-modal-card {
  width: min(560px, 100%);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 78, 156, 0.15);
  box-shadow: 0 18px 38px rgba(8, 34, 79, 0.2);
  padding: 1.15rem 1rem;
  display: grid;
  gap: 0.72rem;
}

.offer-modal-emoji {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.offer-modal-text {
  margin: 0;
  color: #1b3e6c;
}

@media (max-width: 900px) {
  .process-layout {
    grid-template-columns: 1fr;
    column-gap: 1.3rem;
    row-gap: 0.75rem;
  }

  .process-page-timeline-col {
    align-items: center;
  }

  .process-scroll-head {
    text-align: center;
    margin-inline: auto;
  }

  .process-intro {
    margin-inline: auto;
  }

  .process-premium-illustration {
    margin-inline: auto;
  }

  .process-left-cta {
    display: none;
  }

  .process-mobile-cta {
    display: flex;
    justify-content: center;
    margin: clamp(1.5rem, 5vw, 2.25rem) 0 0;
    padding: 0 0.35rem;
    text-align: center;
    grid-column: 1;
  }

  .process-mobile-cta .process-cta {
    width: max-content;
    margin-inline: auto;
  }

  .real-page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .real-page-intro {
    margin-inline: auto;
    max-width: 42ch;
  }

  .real-page-hero-text {
    transform: translateY(-6px);
  }

  .real-hero-visual {
    min-height: 210px;
    max-width: 370px;
    order: 2;
  }

  .real-hero-visual.process-page-hero-visual {
    min-height: 0;
  }

  .offer-estimator-layout {
    grid-template-columns: 1fr;
  }

  .offer-estimator-summary {
    position: static;
  }

  .offer-pricing-table-wrap {
    overflow: auto;
  }

  .offer-pricing-table {
    min-width: 760px;
  }

  .realisations-lottie-wrapper {
    width: min(100%, 320px);
  }

  .process-page-illustration-wrap {
    width: min(100%, 340px);
  }

  .real-portfolio-core {
    width: 104px;
    height: 104px;
  }

  .real-portfolio-core strong {
    font-size: 1.68rem;
  }

  .real-portfolio-ring--one {
    width: 236px;
    height: 156px;
  }

  .real-portfolio-ring--two {
    width: 190px;
    height: 192px;
  }

  .real-portfolio-ring--three {
    width: 278px;
    height: 136px;
  }

  .real-portfolio-badge {
    font-size: 0.67rem;
    padding: 0.36rem 0.62rem;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.problem-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 0.7rem;
}

.problem-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #76e2ff;
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(5, 18, 98, 0.8);
  color: #61ddff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.card h3,
.project-card h3,
.price-card h3,
.step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

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

.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.step-number {
  display: inline-block;
  font-size: 0.85rem;
  color: #b9d8ff;
  margin-bottom: 0.5rem;
}

.step p {
  color: #d4d8de;
}

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

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  height: 205px;
  width: 100%;
  object-fit: cover;
}

.project-body {
  padding: 1.2rem;
}

.project-type {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4dd9ff;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-weight: 500;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  position: relative;
}

.price-card.featured {
  border-color: #76e2ff;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(7, 192, 255, 0.2);
  color: #8aeaff;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.price {
  font-size: 1.55rem;
  color: #f3f8ff;
  font-weight: 800;
}

.price-target {
  margin: 0.4rem 0 1rem;
}

.price-card ul {
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-card li::before {
  content: "•";
  color: #4dd9ff;
  margin-right: 0.45rem;
}

.pricing-note {
  margin-top: 1.3rem;
  font-size: 0.95rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(2, 10, 58, 0.7);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #f4f6f8;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.2rem;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: #cfd6de;
  padding: 0 1.2rem 1rem;
}

.contact-page-section,
.process-page-hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 72% at 50% 0%, rgba(90, 170, 255, 0.2) 0%, rgba(90, 170, 255, 0.06) 38%, rgba(255, 255, 255, 0) 75%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 55%);
}

.contact-page-section {
  padding: 5.2rem 0 6.5rem;
}

.process-page-hero-section {
  padding: clamp(3.25rem, 6vw, 5.2rem) 0 clamp(2rem, 4vw, 3.15rem);
}

.contact-page-section::before,
.process-page-hero-section::before,
.process-scroll-section.process-page-timeline::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 15% 25%, rgba(130, 185, 255, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 75% 65% at 88% 75%, rgba(95, 165, 235, 0.09) 0%, transparent 52%),
    linear-gradient(
      118deg,
      rgba(236, 245, 255, 0.55) 0%,
      rgba(250, 252, 255, 0.12) 32%,
      rgba(224, 238, 255, 0.42) 54%,
      rgba(248, 251, 255, 0.18) 78%,
      rgba(232, 242, 255, 0.5) 100%
    );
  background-size: 100% 100%, 100% 100%, 320% 320%;
  background-repeat: no-repeat;
  background-position: 0% 0%, 0% 0%, 0% 50%;
  opacity: 0.72;
  animation: contactPageBgDrift 26s ease-in-out infinite;
}

.contact-page-section > .container,
.process-page-hero-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes contactPageBgDrift {
  0%,
  100% {
    background-position: 0% 0%, 0% 0%, 0% 48%;
    transform: translate(0%, 0%) scale(1);
  }
  33% {
    background-position: 8% 6%, -6% -4%, 55% 42%;
    transform: translate(0.8%, -0.5%) scale(1.02);
  }
  66% {
    background-position: -5% 4%, 5% 8%, 100% 58%;
    transform: translate(-0.6%, 0.4%) scale(1.01);
  }
}

/* Page Mon process : fond fixe (sans déplacement type « vagues » du voile) */
.process-page-hero-section::before,
.process-scroll-section.process-page-timeline::before {
  animation: none;
  transform: none;
  background-position: 0% 0%, 0% 0%, 40% 50%;
}

/* Page Mon process: pas de voile decoratif pour une continuite parfaite */
.process-page-hero-section::before,
.process-scroll-section.process-page-timeline::before {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-section::before,
  .process-page-hero-section::before,
  .process-scroll-section.process-page-timeline::before {
    animation: none;
    background-position: 0% 0%, 0% 0%, 40% 50%;
    transform: none;
  }

  .about-page-hero-band .contact-gradient-word {
    animation: none;
  }

  .offer-devis-banner__title-accent {
    animation: none;
  }

}

.about-page .contact-page-section::before {
  content: none;
}

.about-page-section.contact-page-section {
  padding: 0 0 6.5rem;
}

.about-page-hero-band {
  --about-hero-pt: clamp(2.65rem, 5.5vw, 4.5rem);
  --about-hero-pb: clamp(2.1rem, 4.5vw, 3.5rem);
  background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  padding: var(--about-hero-pt) 0 var(--about-hero-pb);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-page-hero-band .about-page-hero-grid {
  margin-bottom: 0;
  align-items: center;
}

.about-page-hero-band .about-page-photo-wrap {
  max-width: min(280px, 100%);
}

/* Titre + accroche centrés verticalement dans la colonne (hauteur imposée par la photo) */
.about-page-hero-band .contact-page-hero.about-page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
}

.about-page-hero-band .contact-page-hero.about-page-hero-text h1 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: var(--section-head-line1-font-size);
  font-weight: 800;
  letter-spacing: var(--section-head-line1-letter-spacing);
  line-height: var(--section-head-line1-line-height);
}

.about-page-hero-band .contact-page-hero.about-page-hero-text .hero-pitch {
  margin: 0;
  color: rgba(220, 235, 255, 0.92);
  font-size: var(--page-hero-subtitle-font-size);
  line-height: var(--page-hero-subtitle-line-height);
  max-width: 38ch;
}

.about-page-hero-band .contact-gradient-word {
  background: linear-gradient(110deg, #58dcff 0%, #b5f2ff 35%, #ffffff 50%, #8aeaff 68%, #58dcff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: kickerShimmer 4.5s ease-in-out infinite;
}

/* Pas de translate sur le reveal : sinon WebKit affiche le dégradé en rectangle (clip text cassé) */
.contact-page-hero.about-page-hero-text.reveal {
  transform: none;
}

.contact-page-hero.about-page-hero-text.reveal.visible {
  transform: none;
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, min(30vw, 280px));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.about-page-photo-wrap {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: min(280px, 100%);
}

.about-page-photo {
  display: block;
  width: 100%;
  height: auto;
  /* PNG avec fond noir : fondre le noir dans le bandeau, sans drop-shadow (double ombre) */
  mix-blend-mode: lighten;
}

/* Desktop : portrait haut = haut du bandeau, bas = bas du bandeau (même hauteur de bloc qu’avant) */
@media (min-width: 901px) {
  .about-page-hero-band .about-page-hero-grid {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(220px, min(40vw, 400px));
  }

  .about-page-hero-band .about-page-photo-wrap {
    align-self: stretch;
    margin-top: calc(-1 * var(--about-hero-pt));
    margin-bottom: calc(-1 * var(--about-hero-pb));
    height: calc(100% + var(--about-hero-pt) + var(--about-hero-pb));
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    max-width: none;
    width: 100%;
    min-height: 0;
  }

  .about-page-hero-band .about-page-photo {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: none;
    margin-left: auto;
    object-fit: contain;
    object-position: right center;
  }
}

.contact-page-section .section-heading h1,
.contact-page-section .section-heading h2,
.process-page-hero-section .section-heading h1,
.process-page-hero-section .section-heading h2 {
  color: #000000;
}

.contact-page-section .hero-pitch,
.process-page-hero-section .hero-pitch {
  color: #4c5f7c;
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.process-page-hero-section .hero-pitch {
  color: #000000;
  margin-top: 0.05rem;
  font-size: clamp(1.32rem, 2.1vw, 1.68rem);
  font-weight: 700;
}

.process-page-hero-section .contact-page-hero h1 {
  margin-bottom: 0.2rem;
}

.process-page-hero-section .process-page-hero-lede {
  margin-top: 0.55rem;
  max-width: min(52ch, 100%);
}

.contact-page-hero {
  text-align: center;
  margin-bottom: 2.2rem;
}

.process-page-hero-section .contact-page-hero {
  margin-bottom: 0;
}

/* Même correctif WebKit que la page contact (reveal + texte en dégradé) */
.process-page-hero-section .contact-page-hero.reveal,
.process-page-hero-section .contact-page-hero.reveal.visible {
  transform: none;
}

.contact-page-chip {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(125, 190, 255, 0.42);
  color: #275789;
  box-shadow: 0 8px 20px rgba(66, 120, 190, 0.1);
}

.contact-page-hero h1 {
  margin: 0.55rem auto 0.95rem;
  max-width: none;
  font-size: var(--section-head-line1-font-size);
  line-height: var(--section-head-line1-line-height);
  letter-spacing: var(--section-head-line1-letter-spacing);
  white-space: nowrap;
}

.contact-page-hero.about-page-hero-text {
  margin-bottom: 0;
  text-align: left;
}

.contact-page-section .contact-page-hero.about-page-hero-text .hero-pitch {
  margin-inline: 0;
  text-align: left;
  max-width: 52ch;
}

/* Même largeur de ligne que la page Réalisations (.real-page-intro) */
.about-page-section .about-page-hero-band .contact-page-hero.about-page-hero-text .hero-pitch {
  max-width: 38ch;
}

.contact-page-hero.about-page-hero-text h1 {
  margin: 0.55rem 0 0.95rem;
  white-space: normal;
}

.about-page-story {
  max-width: 42rem;
  margin-inline: auto;
}

.about-page-story > p {
  margin: 0 0 1.2rem;
  color: #3d5677;
  font-size: clamp(1rem, 1.12vw, 1.06rem);
  line-height: 1.72;
  text-align: justify;
}

.about-page-story > p:last-of-type {
  margin-bottom: 0;
}

.about-page-story strong {
  color: #163a6a;
  font-weight: 700;
}

.about-page-highlight {
  margin: 1.85rem 0 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.about-page-highlight__lead {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  font-weight: 700;
  line-height: 1.3;
  color: #49d1f9;
}

.about-page-highlight__body {
  margin: 0;
  max-width: 42rem;
  color: #3d5677;
  font-size: clamp(1rem, 1.12vw, 1.06rem);
  font-weight: 400;
  line-height: 1.72;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* Page dédiée « Mon process » (process.html) */
.process-page-steps {
  --process-rail-x: 26px;
  --process-num-size: 52px;
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.4rem 0 0.55rem 0.15rem;
}

.process-page-steps::before {
  content: "";
  position: absolute;
  left: calc(var(--process-rail-x) - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 2px;
  background: #9fd4f0;
  z-index: 0;
}

.process-page-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--process-num-size) minmax(0, 1fr);
  gap: 1rem 1.15rem;
  align-items: center;
}

.process-page-step__num {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: var(--process-num-size);
  height: var(--process-num-size);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #051130;
  background: linear-gradient(145deg, #5ee6ff 0%, #00d9ff 55%, #3ad4ff 100%);
  border: 2px solid rgba(200, 248, 255, 0.95);
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 22px rgba(0, 217, 255, 0.55),
    0 0 38px rgba(0, 217, 255, 0.28),
    0 6px 16px rgba(0, 140, 180, 0.2);
}

.process-page-step__card {
  background: #051130;
  border: 1px solid rgba(88, 220, 255, 0.22);
  border-radius: 18px;
  padding: 1.15rem 1.35rem 1.22rem;
  box-shadow: 0 10px 28px rgba(5, 17, 48, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-page-step--final .process-page-step__card {
  background: #7c8ba1;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(55, 70, 90, 0.32);
}

.process-page-step__card:hover {
  border-color: rgba(88, 220, 255, 0.42);
  box-shadow: 0 12px 32px rgba(8, 42, 105, 0.28);
}

.process-page-step--final .process-page-step__card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(55, 70, 90, 0.38);
}

.process-page-step__label {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #58dcff;
}

.process-page-step__title {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.process-page-step__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.65;
}

.process-page-step__footer-accent {
  margin: 1rem 0 0;
  font-size: clamp(0.82rem, 1.5vw, 0.9rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00d9ff;
}

.process-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.85rem;
  padding-bottom: 0.5rem;
}

.process-page-actions.process-page-actions--under-timeline {
  margin-top: 2.35rem;
  padding-top: 0.35rem;
}

@media (max-width: 640px) {
  .process-page-steps {
    --process-rail-x: 24px;
    --process-num-size: 48px;
    gap: 1.05rem;
  }

  .process-page-step {
    gap: 0.85rem 0.9rem;
  }

  .process-page-step__num {
    font-size: 0.95rem;
  }

  .process-page-step__card {
    padding: 0.95rem 1.05rem 1.05rem;
  }
}

.contact-gradient-word {
  display: inline-block;
  background: linear-gradient(100deg, #0a4e9c 0%, #1f7fd8 34%, #4ca9ff 58%, #285fa8 82%, #0e2d60 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0.06em;
  animation: contactBlueFlow 6.8s ease-in-out infinite;
}

.contact-gradient-title {
  display: block;
  background: linear-gradient(100deg, #0a4e9c 0%, #1f7fd8 34%, #4ca9ff 58%, #285fa8 82%, #0e2d60 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: contactBlueFlow 6.8s ease-in-out infinite;
}

@keyframes contactBlueFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contact-page-section .contact-card,
.contact-page-section .contact-form {
  background: #ffffff;
  border: 1px solid #d9dee8;
  box-shadow: 0 8px 24px rgba(15, 24, 40, 0.06);
}

.contact-page-section .contact-card li,
.contact-page-section .contact-trust-note {
  color: #4a5568;
}

.contact-page-section .contact-card li a {
  color: #1f2937;
}

.contact-page-section label {
  color: #1f2937;
}

.contact-page-section input,
.contact-page-section select,
.contact-page-section textarea {
  background: #f8fafc;
  color: #1f2937;
  border: 1px solid #d4dbe6;
}

.contact-page-section input::placeholder,
.contact-page-section textarea::placeholder {
  color: #8a94a6;
}

.contact-page-section input:focus,
.contact-page-section select:focus,
.contact-page-section textarea:focus {
  outline: 2px solid #cbd5e1;
  border-color: #b8c4d7;
}

.contact-page-section .contact-form .contact-submit-wrap {
  align-items: center;
}

.contact-page-section .contact-submit {
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.62rem 1.35rem;
  background: linear-gradient(165deg, #0a2d66 0%, #041634 100%);
  color: #e8f4ff;
  border: 1px solid rgba(100, 170, 220, 0.45);
  box-shadow: 0 4px 14px rgba(4, 20, 52, 0.35);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
}

.contact-page-section .contact-submit:hover,
.contact-page-section .contact-submit:focus-visible {
  background: linear-gradient(165deg, #0c3878 0%, #051d3d 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(4, 24, 62, 0.42);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.85rem;
  padding-bottom: 0;
  align-items: stretch;
}

.contact-info-grid > .contact-info-card {
  margin: 0;
}

.contact-info-card {
  background: linear-gradient(165deg, #031748 0%, #062561 100%);
  border: 1px solid rgba(130, 190, 255, 0.28);
  border-radius: 14px;
  padding: 1.2rem 1.25rem 1.05rem;
  box-shadow: 0 6px 16px rgba(2, 14, 40, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 300px;
  min-height: 248px;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(10, 78, 156, 0.35), rgba(88, 220, 255, 0.22));
  color: #58dcff;
  border: 1px solid rgba(130, 210, 255, 0.45);
}

.contact-info-svg {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.contact-info-svg-linkedin {
  width: 30px;
  height: 30px;
}

.contact-info-label {
  margin: 0.72rem 0 0;
  font-size: 1.55rem;
  color: #f3f8ff;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 800;
  font-family: var(--font-heading);
}

.contact-info-sub {
  margin: 0.4rem 0 0;
  color: #b5c8e8;
  line-height: 1.45;
  font-size: 0.96rem;
}

.contact-info-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 0.5rem;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  color: #b8e8ff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  background: transparent;
  border: 1px solid #58dcff;
  border-radius: 8px;
  word-break: break-word;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-info-card:hover,
.contact-info-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(140, 215, 255, 0.52);
  box-shadow: 0 10px 22px rgba(3, 18, 55, 0.32);
}

.contact-info-card:hover .contact-info-action,
.contact-info-card:focus-within .contact-info-action {
  background: linear-gradient(135deg, #7fd6ff 0%, #58dcff 55%, #42c8f4 100%);
  border-color: #58dcff;
  color: #042047;
  box-shadow: 0 8px 18px rgba(88, 220, 255, 0.34);
}

.contact-info-action:focus-visible {
  outline: 2px solid #58dcff;
  outline-offset: 2px;
}

.contact-page-section .contact-form-wrap {
  width: min(100%, calc(900px + 2.5rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-page-section .contact-form-or {
  margin: 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #516d96;
  text-transform: uppercase;
}

.contact-page-section .contact-form-heading {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.65rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-align: center;
}

.contact-page-section .contact-form-heading .contact-gradient-word {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-page-section .contact-form-wrap .contact-form {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}

.contact-card {
  margin-top: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.contact-card ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.35rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(82, 191, 255, 0.45);
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: rgba(2, 10, 58, 0.72);
  color: #edf5ff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #8ab0da;
  border-color: #8ab0da;
}

.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  background: #01052b;
  color: #d7dde8;
  padding: 3rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.75rem 1.2rem;
  align-items: start;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7dd3ff;
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
}

.footer-brand-link {
  display: inline-block;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #a8b6d4;
  max-width: 32ch;
}

.footer-list a {
  color: #c9d4f0;
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--accent-2);
}

.footer-list a:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-muted {
  color: #8a9ab8;
  font-size: 0.92rem;
}

.footer-contact-location {
  margin: 0;
  line-height: 1.5;
}

.footer-contact .footer-contact-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(88, 207, 255, 0.92);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact-icon--linkedin {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-contact-link {
  color: #c9d4f0;
  font-size: 0.92rem;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(88, 207, 255, 0.45);
  overflow-wrap: anywhere;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--accent-2);
  text-decoration-color: var(--accent-2);
}

.footer-contact-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(88, 207, 255, 0.24);
  margin-top: 1.85rem;
  text-align: center;
  padding: 1.15rem 0 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #8a94a8;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 1.5rem));
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #d9e2ef;
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  z-index: 2200;
  box-shadow: 0 16px 36px rgba(15, 30, 60, 0.2);
}

.cookie-banner-hidden {
  display: none;
}

.cookie-banner-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a4e9c;
}

.cookie-banner-title {
  margin: 0.35rem 0 0.45rem;
  color: #000000;
  font-size: clamp(1.22rem, 2.4vw, 1.65rem);
  font-family: var(--font-heading);
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: #4d5f79;
}

.cookie-banner-text a {
  color: #0a4e9c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 1rem;
}

.cookie-btn {
  appearance: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.58rem 1.05rem;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-light {
  background: #ffffff;
  color: #1f2937;
  border-color: #cfd8e6;
}

.cookie-btn-primary {
  background: #0b4ea2;
  color: #ffffff;
  border-color: #0b4ea2;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 40, 0.46);
  display: grid;
  place-items: center;
  z-index: 2300;
  padding: 1rem;
}

.cookie-modal-hidden {
  display: none;
}

.cookie-modal-card {
  width: min(980px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d9e2ef;
  box-shadow: 0 18px 40px rgba(8, 20, 45, 0.3);
  padding: 1.2rem;
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-modal-head h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}

.cookie-modal-close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: #3f4d66;
  cursor: pointer;
  padding: 0;
}

.cookie-modal-intro {
  margin: 0.7rem 0 1rem;
  color: #4b5d79;
  line-height: 1.56;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid #dde6f3;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.65rem;
  background: #fbfdff;
}

.cookie-category h3 {
  margin: 0;
  color: #000000;
  font-size: 1rem;
}

.cookie-category p {
  margin: 0.24rem 0 0;
  color: #4f627f;
  font-size: 0.9rem;
  line-height: 1.48;
}

.cookie-always-on {
  margin: 0 !important;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: #eaf4ff;
  color: #0a4e9c !important;
  font-size: 0.78rem !important;
  font-weight: 700;
}

.cookie-toggle-group {
  display: inline-flex;
  gap: 0.45rem;
}

.cookie-toggle-btn {
  appearance: none;
  border-radius: 999px;
  border: 1px solid #cfd9e7;
  background: #ffffff;
  color: #37475f;
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.2;
  padding: 0.4rem 0.78rem;
  cursor: pointer;
}

.cookie-toggle-active {
  background: #0b4ea2;
  border-color: #0b4ea2;
  color: #ffffff;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legal-page {
  padding: 5.5rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  margin: 0 0 1.75rem;
  color: #f4f8ff;
}

.legal-page .legal-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: #9edcff;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 0.75rem;
}

.legal-page a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1100px) {
  .trust-showcase-grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 1.45rem;
  }

  .trust-showcase-visual {
    min-height: 352px;
  }

  .trust-showcase-mockups {
    min-height: 352px;
    width: min(356px, 100%);
  }

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

  .service-grid,
  .project-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  :root {
    --mobile-header-height: 78px;
  }

  html,
  body {
    background: #ffffff;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
  }

  /* Hero / bandeaux bleus remontent sous le header transparent */
  .hero.section,
  #accueil {
    margin-top: calc(-1 * var(--mobile-header-height));
    padding-top: calc(var(--mobile-header-height) + 2.6rem);
    background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%);
  }

  .contact-page-section:not(.about-page-section) {
    margin-top: calc(-1 * var(--mobile-header-height));
    padding-top: calc(5.2rem + var(--mobile-header-height));
  }

  .about-page-section.contact-page-section {
    margin-top: calc(-1 * var(--mobile-header-height));
  }

  .about-page-hero-band {
    margin-top: 0;
    padding-top: calc(var(--about-hero-pt) + var(--mobile-header-height));
  }

  .offer-devis-banner {
    margin-top: calc(-1 * var(--mobile-header-height));
    padding-top: calc(clamp(1.15rem, 4vw, 1.95rem) + var(--mobile-header-height));
  }

  .real-page-hero {
    margin-top: calc(-1 * var(--mobile-header-height));
    padding-top: calc(clamp(2.35rem, 4.5vw, 3.15rem) + var(--mobile-header-height));
  }

  .trust-showcase-section,
  .home-offer-teaser,
  .process-scroll-section,
  .realisations-section {
    background: #ffffff;
  }

  /* Header toujours transparent : le bleu vient du hero, pas du body blanc */
  .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }

  /* Me contacter mobile : header visible comme les autres pages */
  .contact-page .site-header {
    background: rgba(1, 9, 58, 0.88) !important;
    backdrop-filter: blur(8px) !important;
  }

  body.mobile-menu-open .site-header {
    background: linear-gradient(165deg, #020a3a 0%, #061c52 55%, #0a2868 100%) !important;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(88, 220, 255, 0.28);
    background: rgba(3, 12, 76, 0.28);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
  }

  .burger-btn span {
    width: 16px;
    height: 2px;
    background: #8aeaff;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(88, 207, 255, 0.24);
    background: #01073b;
  }

  .mobile-nav.open {
    max-height: 420px;
  }

  .mobile-nav ul {
    padding: 0.8rem 1.2rem 1rem;
    display: grid;
    gap: 0.6rem;
  }

  .mobile-nav a[aria-current="page"]:not(.btn) {
    color: #58dcff;
    font-weight: 700;
  }

  .mobile-nav a[aria-current="page"]:not(.btn):hover {
    color: #8aeaff;
  }

  .mobile-nav a.btn.mobile-cta[aria-current="page"] {
    box-shadow: 0 0 0 2px rgba(88, 220, 255, 0.9), 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }

  .cookie-category {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-modal-actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .problem-grid,
  .trust-showcase-grid,
  .contact-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: stretch;
    justify-items: center;
  }

  .hero-content {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
    text-align: center;
    max-width: 16ch;
  }

  .hero-pitch,
  .hero.section .hero-pitch {
    margin-inline: auto;
    text-align: center;
  }

  .hero-content .hero-contact-btn {
    display: inline-flex;
    width: max-content;
    margin-inline: auto;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .blob-scene {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .hero-person-card {
    right: 0;
    margin-inline: auto;
    max-width: min(320px, 88vw);
  }

  .hero-photo {
    margin-inline: auto;
    width: 100%;
    max-width: min(320px, 88vw);
  }

  .trust-showcase-content .trust-showcase-cta {
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .home-offer-teaser {
    margin-top: clamp(1.5rem, 5vw, 2.5rem);
    padding: 2rem 0 4rem;
  }

  .home-offer-teaser__wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-offer-teaser__card-shell {
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
  }

  .home-offer-teaser__intro {
    order: 1;
    align-self: start;
    text-align: center;
    max-width: 36rem;
    margin-inline: auto;
    justify-self: center;
  }

  .home-offer-teaser__card-shell {
    order: 2;
    justify-content: center;
  }

  .home-offer-teaser .home-offer-teaser__card-shell {
    max-width: min(370px, 90vw);
    margin-inline: auto;
  }

  .home-offer-teaser .home-offer-premium-card {
    max-width: min(370px, 90vw);
    margin-inline: auto;
  }

  .offer-devis-banner__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: clamp(248px, 48vmin, 360px);
  }

  .offer-devis-banner__heading {
    max-width: 36rem;
    margin-inline: auto;
    text-align: center;
  }

  .offer-devis-banner__subtitle {
    margin-inline: auto;
    max-width: 42ch;
  }

  .offer-devis-banner__title {
    max-width: none;
  }

  .offer-devis-banner {
    padding:
      calc(clamp(1.15rem, 4vw, 1.95rem) + var(--mobile-header-height))
      0
      clamp(0.15rem, 0.65vw, 0.32rem);
  }

  .offer-devis-banner .home-offer-teaser__card-shell {
    justify-self: center;
    max-width: min(390px, 92vw);
    margin-bottom: clamp(-6.25rem, -15vw, -4.25rem);
  }

  .offer-devis-banner .home-offer-premium-card {
    max-width: min(390px, 92vw);
  }

  .about-page-hero-band {
    --about-hero-pt: clamp(2.05rem, 5vw, 3.35rem);
    --about-hero-pb: clamp(1.75rem, 4.2vw, 2.85rem);
    padding: calc(var(--about-hero-pt) + var(--mobile-header-height)) 0 var(--about-hero-pb);
  }

  .offer-devis-intro {
    padding-top: clamp(5.9rem, 14.5vw, 8.1rem);
  }

  .offer-builder-section {
    padding-top: clamp(2.2rem, 5.2vw, 3rem);
  }

  .about-page-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-page-hero.about-page-hero-text {
    text-align: center;
  }

  .contact-page-section .contact-page-hero.about-page-hero-text .hero-pitch {
    margin-inline: auto;
    text-align: center;
  }

  .about-page-photo-wrap {
    justify-self: center;
    max-width: min(260px, 86vw);
  }

  .about-page-hero-band .about-page-photo-wrap {
    margin-top: 0;
    margin-bottom: calc(-1 * var(--about-hero-pb));
    height: auto;
    max-width: min(280px, 86vw);
    display: block;
  }

  .about-page-hero-band .about-page-photo {
    height: auto;
    max-height: min(200px, 46vw);
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
  }

  .trust-showcase-section {
    padding: 4.2rem 0 clamp(4.5rem, 10vw, 5.5rem);
    overflow-x: clip;
  }

  .trust-showcase-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(1.75rem, 5vw, 2.5rem);
  }

  .trust-showcase-content {
    margin-top: 0;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
    text-align: center;
    justify-self: center;
  }

  .trust-showcase-content h2 {
    text-align: center;
  }

  .trust-showcase-title-line1,
  .trust-showcase-title-line2 {
    text-align: center;
    white-space: normal;
  }

  .trust-showcase-text {
    margin: 1rem auto 0;
    text-align: justify;
    max-width: 40ch;
  }

  .trust-showcase-visual {
    width: 100%;
    max-width: min(320px, 92vw);
    min-height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .trust-showcase-glow {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(220px, 70%);
  }

  .trust-showcase-mockups {
    width: min(300px, 88vw);
    min-height: 300px;
    margin: 0 auto clamp(1.25rem, 4vw, 2rem);
  }

  .trust-mockup--primary {
    right: 6%;
    top: 10%;
  }

  .trust-mockup--secondary {
    right: 0;
    top: 0;
  }

  .trust-mockup--back {
    left: 0;
    top: 12%;
  }

  .contact-info-grid {
    justify-items: center;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .hero-content {
    margin-top: 0;
  }

  .process-scroll-wrap {
    width: 100%;
  }

  .process-scroll-section {
    padding: 5.35rem 0 4.9rem;
  }

  .process-scroll-section.process-page-timeline {
    padding: 2.25rem 0 3.25rem;
  }

  .realisations-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .blob-scene {
    min-height: 0;
    height: auto;
  }

  .hero-person-card {
    position: static;
    margin-inline: auto;
    width: 100%;
    max-width: min(300px, 86vw);
    border-radius: 18px;
  }

  .hero-photo {
    margin-inline: auto;
    max-width: min(300px, 86vw);
  }

  .blob-one {
    right: 50%;
    transform: translateX(50%);
  }

  .blob-two {
    right: 50%;
    transform: translateX(-50%);
  }

  .blob-three {
    right: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.8rem 0;
  }

  .hero.section {
    padding-top: calc(var(--mobile-header-height) + 2.6rem);
    padding-bottom: 0;
  }

  .trust-showcase-section {
    padding: 3.85rem 0 clamp(4.25rem, 11vw, 5.25rem);
  }

  .offer-hero {
    padding: 3.9rem 0 3rem;
  }

  .offer-estimator-section {
    padding: 2.5rem 0 3rem;
  }

  /* Accueil mobile: espace entre l’animation confiance et Mon offre */
  .home-offer-teaser {
    margin-top: clamp(1.25rem, 4.5vw, 2rem);
    padding-top: clamp(0.5rem, 2vw, 1rem);
    padding-bottom: 1.2rem;
  }

  .home-offer-teaser__intro {
    margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
  }

  .home-offer-teaser__card-shell {
    margin-top: 0.65rem;
  }

  .process-scroll-section:not(.process-page-timeline) {
    padding-top: 1.85rem;
  }

  .offer-card {
    padding: 1rem 0.92rem;
  }

  .offer-option {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .home-offer-premium-card {
    box-shadow: none;
  }

  .home-offer-premium-card:hover {
    box-shadow: none;
    transform: none;
  }

  .offer-option-control {
    justify-items: start;
  }

  .trust-showcase-title-line1,
  .home-offer-teaser__headline-line1,
  .process-title-line1 {
    white-space: normal;
  }

  .trust-showcase-visual {
    max-width: min(280px, 90vw);
    min-height: 270px;
  }

  .trust-showcase-mockups {
    width: min(280px, 90vw);
    min-height: 270px;
  }

  .trust-mockup {
    border-radius: 20px;
  }

  .trust-mockup--primary {
    width: 72%;
  }

  .trust-mockup--secondary,
  .trust-mockup--back {
    width: 56%;
  }

  .service-grid,
  .project-grid,
  .benefits-grid,
  .pricing-grid,
  .timeline,
  .footer-grid,
  .contact-form,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-hero h1 {
    white-space: normal;
  }

  .brand-logo {
    height: 53px;
  }

  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .process-scroll-section {
    padding: 4.35rem 0 4.6rem;
  }

  .process-scroll-section:not(.process-page-timeline) {
    padding-bottom: 1.35rem;
  }

  .realisations-section {
    padding-top: 2.35rem;
  }

  .process-scroll-section.process-page-timeline {
    padding: 1.85rem 0 2.75rem;
  }

  .process-intro {
    padding-inline: 0.35rem;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 0.85rem 0.85rem;
  }

  .process-progress-rail {
    left: 21px;
  }

  .process-item-number {
    width: 44px;
    height: 44px;
    font-size: 0.94rem;
  }

  .process-item-card {
    padding: 0.82rem 1rem 0.95rem;
  }

  .process-item-card p {
    font-size: 0.93rem;
  }

  .process-mobile-cta {
    margin-top: clamp(1.35rem, 4.5vw, 2rem);
  }

  .process-premium-visual {
    height: 300px;
    transform: scale(0.9);
    transform-origin: top center;
    margin-bottom: -0.85rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .trust-showcase-mockups {
    transition: none;
  }

  .trust-mockup {
    animation: none;
    transform: rotate(var(--trust-rot, 0deg));
  }

  .trust-mockup:hover {
    transform: rotate(var(--trust-rot, 0deg));
  }

  .trust-showcase-glow {
    filter: none;
  }

  .trust-showcase-highlight {
    animation: none;
    background-position: 50% 50%;
  }

  .process-premium-visual__glow,
  .process-premium-browser,
  .process-premium-float,
  .process-premium-badge,
  .process-premium-cursor {
    animation: none;
  }

  .process-premium-visual__glow {
    opacity: 0.85;
    transform: none;
  }
}

@media (max-width: 900px) {
  .offer-builder-layout {
    grid-template-columns: 1fr;
  }

  .offer-builder-main {
    order: 1;
  }

  .offer-builder-side {
    position: static;
    order: 2;
  }
}

@media (max-width: 640px) {
  .offer-card-grid {
    grid-template-columns: 1fr;
  }

  .offer-devis-intro__inner {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .offer-builder-main {
    padding: 0.9rem;
  }

  .offer-step-actions {
    flex-direction: column;
  }
}
