/* ═══════════════════════════════════════════════
   SPICY.AGENCY — Design System & Global Styles
   ═══════════════════════════════════════════════ */

:root {
  --deep-onyx: #07060A;
  --spicy-coral: #FF6B4A;
  --spicy-coral-light: #FF8268;
  --pearl: #C8C4BE;
  --white: #FFFFFF;
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);

  /* Typography scale — H2 sections */
  --h2-size: clamp(42px, 6vw, 84px);
  /* Body text opacity — raised for readability */
  --text-secondary: rgba(255, 255, 255, .65);
  --text-tertiary: rgba(255, 255, 255, .35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep-onyx);
  color: var(--white);
  font-family: 'Epilogue', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Global subtle animations --- */

::selection {
  background: rgba(255, 107, 74, .3);
  color: var(--white);
}

/* Smooth glow pulse on all section separators */
@keyframes subtlePulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

/* Gentle float for CTAs */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Surtitle dots pulse */
@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0); }
  50% { box-shadow: 0 0 8px 2px rgba(255, 107, 74, .4); }
}

/* Smooth scale reveal for scroll elements */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Coral text highlight utility */
.coral { color: var(--spicy-coral); }

/* --- Emphasis styles for key phrases --- */

/* Style 1: Coral underline highlight that draws in on scroll */
.highlight-draw {
  position: relative;
  color: var(--white);
  font-weight: 500;
}

.highlight-draw::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--spicy-coral);
  transition: width .8s cubic-bezier(.16, 1, .3, 1);
}

.highlight-draw.is-visible::after {
  width: 100%;
}

/* Style 2: Soft coral background highlight that fades in */
.highlight-fill {
  color: var(--white);
  font-weight: 500;
  background: linear-gradient(120deg, rgba(255, 107, 74, 0) 0%, rgba(255, 107, 74, 0) 100%);
  background-size: 100% .35em;
  background-position: 0 88%;
  background-repeat: no-repeat;
  transition: background .8s cubic-bezier(.16, 1, .3, 1);
}

.highlight-fill.is-visible {
  background: linear-gradient(120deg, rgba(255, 107, 74, .25) 0%, rgba(255, 107, 74, .25) 100%);
  background-size: 100% .35em;
  background-position: 0 88%;
  background-repeat: no-repeat;
}

/* Style 3: White bold pop (for grey text that should stand out) */
.highlight-bold {
  color: var(--white);
  font-weight: 500;
}

/* Smooth cursor on all interactive */
a, button, input, label, [role="button"] {
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease;
}

.navbar.is-scrolled {
  background: rgba(7, 6, 10, .95);
  backdrop-filter: blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.navbar__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: opacity .3s ease;
}

.navbar__logo:hover {
  opacity: .8;
}

.navbar__logo-top {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--spicy-coral);
}

.navbar__logo-sep {
  display: none;
}

.navbar__logo-bot {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--white);
  margin-top: 0;
}

.navbar__links {
  display: flex;
  gap: 40px;
}

.navbar__link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pearl);
  text-decoration: none;
  opacity: .65;
  transition: opacity .25s ease, color .25s ease;
}

.navbar__link:hover {
  opacity: 1;
  color: var(--white);
}

.navbar__link::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--spicy-coral);
  margin-top: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease-out-expo);
}

.navbar__link:hover::after {
  transform: scaleX(1);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 12px 26px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.navbar__cta:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 74, .25);
}

.navbar__cta-arrow {
  font-size: 14px;
}

.navbar__separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .06);
}

/* --- Hamburger burger --- */

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}

.navbar__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Mobile menu --- */

.navbar__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 24px;
  background: rgba(7, 6, 10, .98);
  backdrop-filter: blur(16px);
}

.navbar__mobile.is-open {
  display: flex;
}

.navbar__mobile-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pearl);
  text-decoration: none;
  transition: color .25s ease;
}

.navbar__mobile-link:hover {
  color: var(--white);
}

.navbar__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 14px 28px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep-onyx);
  overflow: hidden;
  padding-bottom: 160px;
}

/* --- Background email grid with real screenshots --- */

.hero__grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  opacity: .15;
  overflow: hidden;
}

.hero__grid-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: scrollUp 70s linear infinite;
}

.hero__grid-col:nth-child(even) {
  animation-direction: reverse;
  animation-duration: 84s;
}

.hero__grid-col:nth-child(3n) {
  animation-duration: 45s;
}

.hero__grid-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* --- Radial overlay --- */

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 6, 10, 1) 0%, rgba(7, 6, 10, .95) 35%, rgba(7, 6, 10, .4) 65%, rgba(7, 6, 10, .15) 100%),
    radial-gradient(ellipse 60% 70% at 75% 50%, transparent 0%, rgba(7, 6, 10, .6) 100%);
  pointer-events: none;
}

/* --- SVG flow lines --- */

.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__line {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 4s ease forwards;
}

.hero__line--coral {
  stroke: rgba(255, 107, 74, .16);
  animation-delay: .5s;
}

.hero__line--coral-2 {
  stroke: rgba(255, 107, 74, .12);
  animation-delay: 1s;
}

.hero__line--pearl {
  stroke: rgba(200, 196, 190, .05);
  animation-delay: 1.5s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* --- Intersection dots --- */

.hero__dot {
  fill: var(--spicy-coral);
  opacity: 0;
  animation: dotPulse 3s ease-in-out infinite;
}

.hero__dot:nth-child(4) { animation-delay: 1.5s; }
.hero__dot:nth-child(5) { animation-delay: 2s; }
.hero__dot:nth-child(6) { animation-delay: 2.5s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0; r: 2; }
  50% { opacity: .8; r: 4; }
}

/* --- Hero content --- */

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  padding-top: 76px;
  max-width: 1200px;
}

.hero__surtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 28px;
}

.hero__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotGlow 3s ease-in-out infinite;
}

.hero__h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9.5vw, 150px);
  font-weight: 400;
  line-height: .92;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 1050px;
}

.hero__h1 em {
  font-style: normal;
  color: var(--spicy-coral);
}

.hero__h1-line em,
.simulator__title em,
.probleme__title em,
.resultats__title em,
.tarifs__title em,
.garantie__title em,
.galerie__title em,
.ctafinal__title em,
.faq__title em {
  font-style: normal;
  color: var(--spicy-coral);
}

.hero__subtitle {
  border-left: 1px solid rgba(255, 107, 74, .4);
  padding-left: 20px;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__subtitle p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.hero__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 36px;
}

.hero__guarantee-dot {
  color: var(--spicy-coral);
  font-size: 10px;
}

/* --- Hero CTA --- */

.hero__cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 18px 36px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.hero__cta-main:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, .25);
}

.hero__cta-arrow {
  font-size: 16px;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 14px 24px;
  transition: border-color .25s ease, background .25s ease;
}

.hero__cta-secondary:hover {
  border-color: var(--spicy-coral);
  background: rgba(255, 107, 74, .08);
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* --- Hero VSL --- */

.hero__vsl {
  margin-top: 32px;
  margin-bottom: 36px;
  max-width: 720px;
  width: 100%;
}

.hero__vsl-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

.hero__vsl-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hero__vsl-unmute {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 74, .9);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--white);
  cursor: pointer;
  animation: subtlePulse 2s ease-in-out infinite;
  transition: background .3s ease, transform .3s ease;
}

.hero__vsl-unmute:hover {
  background: var(--spicy-coral);
  transform: scale(1.05);
}

.hero__vsl-unmute svg {
  flex-shrink: 0;
}

.hero__vsl-unmute.is-hidden {
  display: none;
}

/* --- Stats bar --- */

.hero__stats {
  position: absolute;
  bottom: 60px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 2;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--spicy-coral);
  line-height: 1;
}

.hero__stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pearl);
  opacity: .85;
}

.hero__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .07);
}

/* ═══════════════════════════════════════════════
   LOGOS — Scrolling bands
   ═══════════════════════════════════════════════ */

.logos {
  position: relative;
  background: var(--deep-onyx);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.logos__sep-top,
.logos__sep-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
}

.logos__sep-top { top: 0; }
.logos__sep-bottom { bottom: 0; }

.logos__band {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos__band + .logos__band {
  margin-top: 8px;
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.logos__track--left {
  animation: scrollLeft 34s linear infinite;
}

.logos__track--right {
  animation: scrollRight 30s linear infinite;
}

.logos__img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  margin: 0 -12px;
  opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease;
  user-select: none;
  pointer-events: auto;
}

.logos__img:hover {
  opacity: .9;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

@keyframes scrollRight {
  0% { transform: translateX(calc(-100% / 3)); }
  100% { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════
   SECTION — Le probl&egrave;me
   ═══════════════════════════════════════════════ */

.probleme {
  position: relative;
  background: var(--deep-onyx);
  padding: 90px 0;
  overflow: hidden;
}

.probleme__line-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.probleme__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

/* --- Surtitle --- */

.probleme__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 28px;
}

.probleme__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Title --- */

.probleme__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto 44px;
}

/* --- Body text --- */

.probleme__body {
  max-width: 740px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.probleme__body p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* --- Comparison table --- */

.probleme__table {
  display: flex;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.probleme__col {
  flex: 1;
}

.probleme__col-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.probleme__col--sans .probleme__col-label {
  color: var(--pearl);
  opacity: .4;
}

.probleme__col--avec .probleme__col-label {
  color: var(--spicy-coral);
}

.probleme__col-sep {
  width: 1px;
  background: rgba(255, 107, 74, .25);
  margin: 0 40px;
  flex-shrink: 0;
}

.probleme__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.probleme__col--sans .probleme__row {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, .2);
}

.probleme__col--avec .probleme__row {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  padding-left: 16px;
  border-left: 2px solid var(--spicy-coral);
}

/* --- Transition quote --- */

.probleme__transition {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 100px;
  padding: 0 60px;
}

.probleme__transition-line {
  width: 36px;
  height: 1px;
  background: var(--spicy-coral);
  margin: 0 auto 32px;
}

.probleme__transition-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.8;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto;
}

.probleme__cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.probleme__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  text-decoration: none;
  transition: opacity .3s ease;
}

.probleme__cta:hover {
  opacity: .7;
}

.probleme__cta-arrow {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════
   SECTION — Simulateur ROI
   ═══════════════════════════════════════════════ */

.simulator {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0;
  overflow: hidden;
}

.simulator__line-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.simulator__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
}

/* --- Top — Title --- */

.simulator__left {
  text-align: center;
  margin-bottom: 44px;
}

.simulator__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 28px;
}

.simulator__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.simulator__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.simulator__subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Calculator --- */

.simulator__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.simulator__inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.simulator__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simulator__label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pearl);
  opacity: .85;
}

/* --- Quick amount buttons --- */

.simulator__quick-amounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.simulator__quick-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 8px 16px;
  cursor: pointer;
  transition: all .25s ease;
}

.simulator__quick-btn:hover {
  border-color: rgba(255, 107, 74, .4);
  color: var(--white);
  background: rgba(255, 107, 74, .06);
}

.simulator__quick-btn.is-active {
  border-color: var(--spicy-coral);
  color: var(--spicy-coral);
  background: rgba(255, 107, 74, .1);
}

/* --- Visual bar --- */

.simulator__bar-wrap {
  margin-top: 12px;
}

.simulator__bar {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.simulator__bar-current {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  width: 16.6%;
  transition: width .5s var(--ease-out-expo);
}

.simulator__bar-target {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--spicy-coral);
  border-radius: 3px;
  width: 100%;
  opacity: .3;
}

.simulator__bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.simulator__bar-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .05em;
  color: var(--text-tertiary);
}

.simulator__bar-label strong {
  color: var(--white);
  font-weight: 500;
}

.simulator__bar-label--coral {
  color: var(--spicy-coral);
  opacity: .7;
}

.simulator__bar-label--coral strong {
  color: var(--spicy-coral);
}

/* --- Input CA --- */

.simulator__input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2px;
  padding: 0 20px;
  height: 56px;
  transition: border-color .25s ease;
}

.simulator__input-wrap:focus-within {
  border-color: rgba(255, 107, 74, .5);
  box-shadow: 0 0 16px rgba(255, 107, 74, .08);
}

.simulator__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--spicy-coral);
  letter-spacing: .04em;
}

.simulator__input::placeholder {
  color: rgba(255, 255, 255, .15);
  font-size: 22px;
}

.simulator__input-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text-tertiary);
  margin-left: 8px;
}

/* --- Slider --- */

.simulator__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.simulator__slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  outline: none;
  cursor: pointer;
}

.simulator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--spicy-coral);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease;
}

.simulator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.simulator__slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--spicy-coral);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.simulator__slider-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--spicy-coral);
  min-width: 48px;
  text-align: right;
}

/* --- Checkboxes --- */

.simulator__checkboxes {
  display: flex;
  gap: 24px;
}

.simulator__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pearl);
  cursor: pointer;
  user-select: none;
}

.simulator__check input {
  display: none;
}

.simulator__check-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
  flex-shrink: 0;
}

.simulator__check:hover .simulator__check-box {
  border-color: rgba(255, 107, 74, .4);
}

.simulator__check input:checked + .simulator__check-box {
  background: var(--spicy-coral);
  border-color: var(--spicy-coral);
}

.simulator__check input:checked + .simulator__check-box::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--deep-onyx);
  border-bottom: 2px solid var(--deep-onyx);
  transform: rotate(-45deg) translateY(-1px);
}

/* --- Output --- */

.simulator__output {
  background: rgba(255, 61, 43, .04);
  border: 1px solid rgba(255, 61, 43, .18);
  border-radius: 2px;
  padding: 36px;
  align-self: start;
  transition: border-color .4s ease, box-shadow .4s ease;
}

.simulator__output:hover {
  border-color: rgba(255, 61, 43, .35);
  box-shadow: 0 0 30px rgba(255, 61, 43, .06);
}

.simulator__output-title {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 28px;
  opacity: .8;
}

/* --- Annual hero number --- */

.simulator__output-hero {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 107, 74, .15);
}

.simulator__output-hero .simulator__output-value--annual {
  font-size: 52px;
  display: block;
  margin-bottom: 4px;
}

.simulator__output-hero .simulator__output-label {
  font-size: 10px;
  opacity: .8;
}

.simulator__output-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.simulator__output-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.simulator__output-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pearl);
  opacity: .6;
}

.simulator__output-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--spicy-coral);
  letter-spacing: .02em;
  transition: transform .3s ease;
}

.simulator__output-total {
  border-top: 1px solid rgba(255, 107, 74, .3);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simulator__output-value--total {
  font-size: 42px;
}

.simulator__output-value--annual {
  font-size: 36px;
}

/* --- ROI & Investment --- */

.simulator__output-roi {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 74, .15);
}

.simulator__roi-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.simulator__roi-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pearl);
  opacity: .6;
}

.simulator__roi-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
}

.simulator__roi-value--highlight {
  color: var(--spicy-coral);
  font-size: 28px;
}

/* --- Guarantee badge --- */

.simulator__guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 74, .06);
  border: 1px solid rgba(255, 107, 74, .2);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 16px;
}

.simulator__guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--spicy-coral);
  border-radius: 50%;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
}

.simulator__guarantee-text {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.simulator__guarantee-text a {
  color: var(--spicy-coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Disclaimer --- */

.simulator__warning {
  grid-column: 1 / -1;
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  color: #FFA64D;
  background: rgba(255, 166, 77, .08);
  border: 1px solid rgba(255, 166, 77, .2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

.simulator__warning a {
  color: var(--spicy-coral);
  text-decoration: underline;
}

.simulator__disclaimer {
  grid-column: 1 / -1;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-style: italic;
  letter-spacing: .05em;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 24px;
  text-align: center;
}

/* --- CTA --- */

.simulator__cta-wrap {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.simulator__cta-intro {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
}

.simulator__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.simulator__cta:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, .25);
}

.simulator__cta-arrow {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════
   SECTION — Resultats Clients
   ═══════════════════════════════════════════════ */

.resultats {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0 64px;
  overflow: hidden;
}

.resultats__header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 60px;
}

.resultats__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 20px;
}

.resultats__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.resultats__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
}

/* --- Scrolling bands --- */

.resultats__band {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.resultats__band + .resultats__band {
  margin-top: 20px;
}

.resultats__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.resultats__track--left {
  animation: scrollLeft 38s linear infinite;
}

.resultats__track--right {
  animation: scrollRight 35s linear infinite;
}

.resultats__band:hover .resultats__track {
  animation-play-state: paused;
}

.resultats__img {
  height: 230px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  opacity: .85;
  border: 2px solid rgba(255, 107, 74, .35);
  box-shadow: 0 0 0 0 rgba(255, 107, 74, 0);
  transition: opacity .3s ease, border-color .3s ease, box-shadow .3s ease;
  user-select: none;
  pointer-events: auto;
}

.resultats__img:hover {
  opacity: 1;
  border-color: #FF3D2B;
  box-shadow: 0 0 24px rgba(255, 61, 43, .3), 0 0 60px rgba(255, 61, 43, .1);
}

/* --- CTA --- */

.resultats__cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.resultats__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.resultats__cta:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, .25);
}

.resultats__cta-arrow {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════
   SECTION — Process
   ═══════════════════════════════════════════════ */

.process {
  position: relative;
  background: var(--deep-onyx);
  padding: 100px 0;
  overflow: hidden;
}

.process__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
}

.process__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 20px;
}

.process__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotGlow 3s ease-in-out infinite;
}

.process__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
}

.process__title em {
  font-style: normal;
  color: var(--spicy-coral);
}

.process__subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* --- Timeline zigzag --- */

.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--spicy-coral) 10%, var(--spicy-coral) 90%, transparent 100%);
  opacity: .2;
  transform: translateX(-50%);
}

.process__step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  position: relative;
  min-height: 180px;
}

/* Dot in center column */

.process__step-dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--deep-onyx);
  border: 2px solid var(--spicy-coral);
  position: relative;
  z-index: 2;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  margin-top: 32px;
}

.process__step:hover .process__step-dot {
  background: var(--spicy-coral);
  box-shadow: 0 0 20px rgba(255, 107, 74, .5);
  transform: scale(1.3);
}

/* Card */

.process__step-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(8px);
  transition: border-color .4s ease, background .4s ease, transform .4s ease;
}

.process__step:hover .process__step-card {
  border-color: rgba(255, 107, 74, .2);
  background: rgba(255, 107, 74, .03);
  transform: translateY(-4px);
}

/* Big number */

.process__step-number {
  position: absolute;
  top: -24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 107, 74, .06);
  pointer-events: none;
  transition: color .4s ease;
}

.process__step:hover .process__step-number {
  color: rgba(255, 107, 74, .12);
}

/* Left card: card | dot | empty */

.process__step--left .process__step-card {
  grid-column: 1;
  grid-row: 1;
  margin-right: 32px;
  text-align: right;
}

.process__step--left .process__step-number {
  right: 32px;
}

.process__step--left .process__step-dot {
  grid-column: 2;
  grid-row: 1;
}

/* Right card: empty | dot | card */

.process__step--right .process__step-card {
  grid-column: 3;
  grid-row: 1;
  margin-left: 32px;
}

.process__step--right .process__step-number {
  left: 32px;
}

.process__step--right .process__step-dot {
  grid-column: 2;
  grid-row: 1;
}

/* Content inside card */

.process__step-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 10px;
}

.process__step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.process__step-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Process Responsive --- */

@media (max-width: 1024px) {
  .process__step-number {
    font-size: 80px;
  }

  .process__step-card {
    padding: 24px;
  }

  .process__step--left .process__step-card {
    margin-right: 24px;
  }

  .process__step--right .process__step-card {
    margin-left: 24px;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 64px 0;
  }

  .process__inner {
    padding: 0 24px;
  }

  .process__header {
    margin-bottom: 48px;
  }

  /* Stack vertically on mobile — single column, dot left + card right */
  .process__timeline-line {
    left: 20px;
    transform: none;
  }

  .process__timeline {
    gap: 24px;
  }

  .process__step {
    display: flex;
    gap: 16px;
    min-height: auto;
  }

  /* Force dot first, card second for ALL steps */
  .process__step-dot {
    flex-shrink: 0;
    order: 0;
    margin-top: 32px;
    width: 12px;
    height: 12px;
  }

  .process__step-card {
    order: 1;
    flex: 1;
    padding: 20px 20px 24px;
    margin: 0 !important;
    text-align: left !important;
    border-radius: 12px;
  }

  .process__step-tag {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .process__step-number {
    font-size: 48px;
    top: -12px;
    left: 20px !important;
    right: auto !important;
  }

  .process__step-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .process__step-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ═══════════════════════════════════════════════
   SECTION — Offres & Tarifs
   ═══════════════════════════════════════════════ */

.tarifs {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0;
  overflow: hidden;
}

.tarifs__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.tarifs__header {
  text-align: center;
  margin-bottom: 72px;
}

.tarifs__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 24px;
}

.tarifs__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.tarifs__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.tarifs__subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* --- Grid --- */

.tarifs__grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.tarifs__sep {
  width: 1px;
  background: rgba(255, 255, 255, .06);
  flex-shrink: 0;
}

.tarifs__offer {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.tarifs__offer:first-child {
  padding-left: 32px;
}

.tarifs__offer:last-child {
  padding-right: 32px;
}

.tarifs__offer:hover {
  border-color: rgba(255, 107, 74, .2);
  background: rgba(255, 107, 74, .03);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 61, 43, .08);
}

.tarifs__offer:hover .tarifs__offer-price {
  color: var(--spicy-coral);
}

.tarifs__offer:hover .tarifs__features li {
  color: rgba(255, 255, 255, .55);
}

/* --- Featured offer (middle) --- */

.tarifs__offer--featured {
  border-top: 2px solid var(--spicy-coral);
  background: rgba(255, 107, 74, .02);
}

.tarifs__offer--featured:hover {
  background: rgba(255, 107, 74, .05);
  border-color: rgba(255, 107, 74, .35);
  border-top-color: var(--spicy-coral);
  box-shadow: 0 20px 60px rgba(255, 61, 43, .12);
}

.tarifs__offer-col--featured {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tarifs__offer-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  text-align: center;
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
}

.tarifs__offer-col--featured .tarifs__offer {
  flex: 1;
}

/* --- Offer content --- */

.tarifs__offer-name {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 16px;
}

.tarifs__offer-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: color .4s ease;
}

.tarifs__offer-per {
  font-size: 20px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.tarifs__offer-range {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 107, 74, .4);
}

.tarifs__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tarifs__features li {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
  transition: color .4s ease, transform .3s ease;
}

.tarifs__offer:hover .tarifs__features li {
  transform: translateX(4px);
}

.tarifs__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: rgba(255, 107, 74, .4);
  transition: width .3s ease, background .3s ease;
}

.tarifs__offer:hover .tarifs__features li::before {
  width: 8px;
  background: var(--spicy-coral);
}

/* --- Note --- */

.tarifs__note {
  margin-top: 56px;
  text-align: center;
  padding: 28px 32px;
  background: rgba(255, 107, 74, .03);
  border: 1px solid rgba(255, 107, 74, .15);
  border-radius: 2px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tarifs__note-main {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.tarifs__note-sub {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- CTA --- */

.tarifs__scarcity {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-secondary);
  margin-top: 32px;
}

.tarifs__scarcity-dot {
  color: var(--spicy-coral);
  margin-right: 4px;
}

.tarifs__cta-wrap {
  text-align: center;
  margin-top: 24px;
}

.tarifs__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.tarifs__cta:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, .25);
}

.tarifs__cta-arrow {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════
   SECTION — La Garantie
   ═══════════════════════════════════════════════ */

.garantie {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0;
  overflow: hidden;
}

.garantie__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.garantie__header {
  margin-bottom: 48px;
}

.garantie__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 24px;
}

.garantie__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.garantie__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 650px;
  margin: 0 auto 20px;
}

.garantie__subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* --- Body --- */

.garantie__body {
  text-align: left;
  max-width: 620px;
  margin: 0 auto 48px;
}

.garantie__intro {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.garantie__quote {
  background: rgba(255, 61, 43, .03);
  border-top: 1px solid rgba(255, 107, 74, .2);
  border-bottom: 1px solid rgba(255, 107, 74, .2);
  padding: 28px 32px;
  margin: 0 0 28px;
  position: relative;
  overflow: hidden;
}

.garantie__quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 74, .04), transparent);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.garantie__quote p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
}

.garantie__text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* --- CTA --- */

.garantie__cta-wrap {
  text-align: center;
}

.garantie__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.garantie__cta:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, .25);
}

.garantie__cta-arrow {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════
   SECTION — Galerie Design
   ═══════════════════════════════════════════════ */

.galerie {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0 64px;
  overflow: hidden;
}

.galerie__line-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.galerie__header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 60px;
}

.galerie__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 20px;
}

.galerie__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.galerie__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
}

/* --- Vertical columns grid --- */

.galerie__columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  height: 700px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
}

.galerie__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

.galerie__col--up {
  animation: galerieUp 112s linear infinite;
}

.galerie__col--down {
  animation: galerieDown 112s linear infinite;
}

.galerie__col--slow {
  animation-duration: 140s;
}

@keyframes galerieUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes galerieDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.galerie__columns:hover .galerie__col {
  animation-play-state: paused;
}

.galerie__img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 6px;
  opacity: .75;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: opacity .4s ease, transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  user-select: none;
  pointer-events: auto;
}

.galerie__img:hover {
  opacity: 1;
  transform: scale(1.04);
  border-color: rgba(255, 107, 74, .3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 0 20px rgba(255, 107, 74, .08);
  z-index: 2;
  position: relative;
}

/* --- Types list --- */

.galerie__types {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 48px;
  padding: 0 60px;
}

/* ═══════════════════════════════════════════════
   SECTION — FAQ
   ═══════════════════════════════════════════════ */

.faq {
  position: relative;
  background: var(--deep-onyx);
  padding: 80px 0;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 20px;
}

.faq__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotGlow 3s ease-in-out infinite;
}

.faq__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease;
  gap: 20px;
}

.faq__question:hover {
  color: var(--spicy-coral);
}

.faq__icon {
  font-family: 'Epilogue', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--spicy-coral);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out-expo);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out-expo), padding .4s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .faq__inner {
    padding: 0 24px;
  }

  .faq__question {
    font-size: 15px;
    padding: 20px 0;
  }
}

/* ═══════════════════════════════════════════════
   SECTION — CTA Final
   ═══════════════════════════════════════════════ */

.ctafinal {
  position: relative;
  background: var(--deep-onyx);
  padding: 100px 0 120px;
  overflow: hidden;
}

.ctafinal__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.ctafinal__inner::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--spicy-coral);
  margin: 0 auto 48px;
  opacity: .5;
}

.ctafinal__surtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 32px;
}

.ctafinal__surtitle-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--spicy-coral);
  border-radius: 50%;
  flex-shrink: 0;
}

.ctafinal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
}

.ctafinal__subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 48px;
}

.ctafinal__btn-wrap {
  margin-bottom: 32px;
}

.ctafinal__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  animation: gentleFloat 4s ease-in-out infinite;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-onyx);
  background: var(--spicy-coral);
  padding: 20px 48px;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ctafinal__btn:hover {
  background: var(--spicy-coral-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 61, 43, .3);
  animation: none;
}

.ctafinal__btn-arrow {
  font-size: 20px;
}

.ctafinal__note {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 64px;
}

.ctafinal__closing {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
  background: var(--deep-onyx);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 64px 0 32px;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 56px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-top {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--spicy-coral);
}

.footer__logo-sep {
  display: none;
}

.footer__logo-bot {
  font-family: 'Unbounded', sans-serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--white);
  margin-top: 0;
}

.footer__tagline {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.footer__nav {
  display: flex;
  gap: 72px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  margin-bottom: 4px;
}

.footer__link {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .25s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__legal {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color .25s ease;
}

.footer__legal:hover {
  color: var(--white);
}

.footer__copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-tertiary);
}

/* --- Footer responsive --- */
@media (max-width: 768px) {
  .footer__inner {
    padding: 0 24px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__nav {
    gap: 40px;
  }
}

/* ═══════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════ */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(7, 6, 10, .92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 107, 74, .2);
    transform: translateY(100%);
    transition: transform .4s var(--ease-out-expo);
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-onyx);
    background: var(--spicy-coral);
    padding: 14px;
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
  }

  .sticky-cta__arrow {
    font-size: 16px;
  }

  /* Add bottom padding to footer so sticky doesn't cover content */
  .footer {
    padding-bottom: 80px;
  }
}

/* --- CTA Final contact form --- */

.ctafinal__or {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  text-align: center;
  margin: 24px 0;
}

.ctafinal__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctafinal__form-row {
  display: flex;
  gap: 12px;
}

.ctafinal__form-input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 14px 18px;
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  color: #fff;
  border-radius: 2px;
  outline: none;
  transition: border-color .25s ease;
}

.ctafinal__form-input:focus {
  border-color: rgba(255, 107, 74, .4);
}

.ctafinal__form-input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.ctafinal__form-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #FF6B4A;
  color: #07060A;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  width: 100%;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ctafinal__form-btn:hover {
  background: #ff8a70;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 61, 43, .3);
}

@media (max-width: 768px) {
  .ctafinal__form-row {
    flex-direction: column;
  }
}

/* --- Scroll fadeUp (triggered by IntersectionObserver) --- */

.scroll-fadeup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.scroll-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS — fadeUp
   ═══════════════════════════════════════════════ */

.anim-fadeup {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.anim-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }
.anim-delay-5 { transition-delay: .75s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet (max 1024px)
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .navbar__inner {
    padding: 0 32px;
  }

  .navbar__links {
    gap: 28px;
  }

  .hero__content {
    padding: 0 40px;
    padding-top: 76px;
  }

  .hero__h1 {
    font-size: clamp(56px, 8vw, 120px);
  }

  .hero__stats {
    left: 40px;
    bottom: 48px;
    gap: 24px;
  }

  .hero__stat-number {
    font-size: 34px;
  }

  .hero__grid {
    left: 35%;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__grid-col:nth-child(4) {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile (max 768px)
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .probleme {
    padding: 80px 0;
  }

  .simulator {
    padding: 80px 0;
  }

  .simulator__inner {
    padding: 0 24px;
  }

  .simulator__left {
    margin-bottom: 40px;
  }

  .simulator__right {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .simulator__title {
    max-width: 100%;
  }

  .simulator__checkboxes {
    flex-wrap: wrap;
    gap: 16px;
  }

  .simulator__output-row {
    flex-direction: column;
    gap: 4px;
  }

  .simulator__output-value {
    font-size: 24px;
  }

  .simulator__output-value--total {
    font-size: 34px;
  }

  .simulator__output-value--annual {
    font-size: 36px;
  }

  .simulator__output {
    padding: 24px 20px;
  }

  .simulator__output-hero .simulator__output-value--annual {
    font-size: 40px;
  }

  .simulator__output-roi {
    flex-direction: column;
    gap: 16px;
  }

  .simulator__quick-amounts {
    gap: 6px;
  }

  .simulator__quick-btn {
    padding: 6px 12px;
    font-size: 10px;
  }

  .simulator__bar-wrap {
    margin-top: 8px;
  }

  /* Logos */
  .logos {
    padding: 20px 0;
  }

  .logos__img {
    height: 40px;
  }

  /* Resultats */
  .resultats__img {
    height: 160px;
  }

  .resultats__band + .resultats__band {
    margin-top: 12px;
  }

  /* Tarifs badge fix */
  .tarifs__offer-badge {
    position: static;
    margin-bottom: 12px;
  }

  .tarifs {
    padding: 80px 0;
  }

  .tarifs__inner {
    padding: 0 24px;
  }

  .tarifs__header {
    margin-bottom: 48px;
  }

  .tarifs__grid {
    flex-direction: column;
    gap: 48px;
  }

  .tarifs__sep {
    width: 100%;
    height: 1px;
  }

  .tarifs__offer {
    padding: 24px 20px;
  }

  .tarifs__offer--featured {
    border-top: 2px solid var(--spicy-coral);
    padding-top: 24px;
  }

  .tarifs__sep {
    margin: 0 20px;
  }

  .tarifs__offer-price {
    font-size: 42px;
  }

  .resultats {
    padding: 64px 0 56px;
  }

  .resultats__header {
    padding: 0 24px;
    margin-bottom: 36px;
  }

  .garantie {
    padding: 80px 0;
  }

  .garantie__inner {
    padding: 0 24px;
  }

  .garantie__quote {
    padding: 20px 20px;
  }

  .galerie {
    padding: 80px 0 60px;
  }

  .galerie__header {
    padding: 0 24px;
    margin-bottom: 36px;
  }

  .galerie__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: 500px;
  }

  .galerie__col:nth-child(4),
  .galerie__col:nth-child(5) {
    display: none;
  }

  .galerie__types {
    padding: 0 24px;
    margin-top: 32px;
  }

  .ctafinal {
    padding: 100px 0 120px;
  }

  .ctafinal__inner {
    padding: 0 24px;
  }

  .ctafinal__title {
    font-size: clamp(36px, 8vw, 56px);
  }

  .ctafinal__btn {
    font-size: 14px;
    padding: 18px 36px;
  }

  .probleme__inner {
    padding: 0 24px;
  }

  .probleme__title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .probleme__body {
    margin-bottom: 56px;
  }

  .probleme__table {
    flex-direction: column;
    gap: 40px;
  }

  .probleme__col-sep {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .probleme__transition {
    margin-top: 64px;
    padding: 0 24px;
  }

  .navbar__inner {
    padding: 0 20px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 140px;
  }

  .hero__content {
    padding: 0 24px;
    padding-top: 100px;
    max-width: 100%;
  }

  .hero__h1 {
    font-size: clamp(40px, 11vw, 72px);
    margin-bottom: 24px;
  }

  .hero__surtitle {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero__subtitle p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero__guarantee {
    font-size: 10px;
    margin-bottom: 28px;
  }

  .hero__cta-main {
    font-size: 11px;
    padding: 14px 28px;
  }

  /* Stats: switch to horizontal bar at bottom */
  .hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    background: rgba(7, 6, 10, .6);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .hero__stat-sep {
    height: 32px;
  }

  .hero__stat-number {
    font-size: 28px;
  }

  .hero__stat-label {
    font-size: 8px;
    letter-spacing: .15em;
  }

  .hero__stat {
    align-items: center;
    text-align: center;
  }

  /* Grid: full width behind on mobile, fewer cols */
  .hero__grid {
    left: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .hero__grid-col:nth-child(4) {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Small Mobile (max 480px)
   ═══════════════════════════════════════════════ */

@media (max-width: 480px) {
  .hero__h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero__content {
    padding: 0 18px;
    padding-top: 90px;
  }

  .hero__stats {
    gap: 12px;
    padding: 20px 12px;
  }

  .hero__stat-number {
    font-size: 24px;
  }

  .hero__stat-label {
    font-size: 7px;
  }

  .hero__stat-sep {
    height: 24px;
  }

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

  .hero__grid-col:nth-child(3),
  .hero__grid-col:nth-child(4) {
    display: none;
  }

  .galerie__columns {
    grid-template-columns: repeat(2, 1fr);
    height: 420px;
  }

  .galerie__col:nth-child(3),
  .galerie__col:nth-child(4),
  .galerie__col:nth-child(5) {
    display: none;
  }

  .ctafinal {
    padding: 80px 0 100px;
  }

  .ctafinal__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .ctafinal__btn {
    font-size: 13px;
    padding: 16px 32px;
  }

  .probleme__table {
    flex-direction: column;
    gap: 32px;
  }

  .probleme__col-sep {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .probleme__transition {
    padding: 0 18px;
  }

  /* Simulator */
  .simulator__inner {
    padding: 0 16px;
  }

  .simulator__output {
    padding: 20px 16px;
  }

  .simulator__output-hero .simulator__output-value--annual {
    font-size: 34px;
  }

  .simulator__quick-btn {
    padding: 6px 10px;
    font-size: 9px;
  }

  /* Logos */
  .logos__img {
    height: 32px;
  }

  /* Resultats */
  .resultats__header {
    padding: 0 18px;
  }

  .resultats__img {
    height: 130px;
  }

  /* Tarifs */
  .tarifs__inner {
    padding: 0 16px;
  }

  .tarifs__offer {
    padding: 20px 16px;
  }

  .tarifs__offer-price {
    font-size: 36px;
  }

  /* Garantie */
  .garantie__inner {
    padding: 0 18px;
  }

  .garantie__quote {
    padding: 16px;
  }

  /* Galerie */
  .galerie__header {
    padding: 0 18px;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq__inner {
    padding: 0 18px;
  }

  .faq__question {
    font-size: 14px;
    gap: 12px;
  }

  .faq__answer p {
    font-size: 13px;
  }

  /* CTA Final */
  .ctafinal__inner {
    padding: 0 18px;
  }

  /* Footer */
  .footer__inner {
    padding: 0 18px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Hero secondary CTA stacks */
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__cta-secondary {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════
   Cookie Consent Banner
   ═══════════════════════════════════════════════ */

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(7, 6, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.cookie-banner__btn:hover {
  opacity: 0.8;
}

.cookie-banner__btn--accept {
  background: var(--coral, #FF6B4A);
  color: #0a0a0f;
  border: none;
  font-weight: 700;
}

.cookie-banner__btn--refuse {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 20px;
  }
}

/* ═══════════════════════════════════════════════
   WhatsApp Floating Button
   ═══════════════════════════════════════════════ */

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  text-decoration: none;
  animation: whatsappPulse 2.5s ease-in-out infinite;
  transition: transform .25s var(--ease-out-expo);
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 84px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .cursor {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════
   CTA Final — Scarcity line
   ═══════════════════════════════════════════════ */

@keyframes scarcityDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.ctafinal__scarcity {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--spicy-coral);
  text-align: center;
  margin-bottom: 16px;
}

.ctafinal__scarcity-dot {
  display: inline-block;
  animation: scarcityDotPulse 1.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   Hero — Klaviyo Partner Badge
   ═══════════════════════════════════════════════ */

.hero__klaviyo-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════
   Custom Cursor
   ═══════════════════════════════════════════════ */

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 107, 74, .3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease;
  opacity: .5;
}

.cursor.is-hover {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 107, 74, .45);
  background: rgba(255, 107, 74, .04);
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   Section Dividers
   ═══════════════════════════════════════════════ */

.section-divider {
  width: 100%;
  height: 60px;
  background: var(--deep-onyx);
  margin: -30px 0;
  position: relative;
  z-index: 1;
}

.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════
   RESULTATS — Subtitle link & Modal
   ═══════════════════════════════════════════════ */

.resultats__subtitle {
  margin-top: 12px;
}

.resultats__link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--spicy-coral);
  text-decoration: none;
  transition: opacity .25s ease;
}

.resultats__link:hover {
  opacity: .7;
}

.resultats__hint {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-tertiary);
  margin-top: 8px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
  animation: modalFadeIn .35s var(--ease-out-expo);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 10, .92);
  backdrop-filter: blur(16px);
}

.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  margin: 0 24px;
  padding: 40px;
  overflow-y: auto;
  z-index: 1;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 107, 74, .15);
  animation: modalSlideUp .4s var(--ease-out-expo);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  opacity: .7;
  transition: all .25s ease;
}

.modal__close:hover {
  opacity: 1;
  border-color: var(--spicy-coral);
  background: rgba(255, 107, 74, .1);
}

.modal__img-wrap {
  width: 100%;
}

.modal__img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid rgba(255, 107, 74, .25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.modal__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.05;
}

.modal__text .modal__tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--spicy-coral);
  display: block;
  margin-bottom: 12px;
}

.modal__text .modal__metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 107, 74, .12);
}

.modal__text .modal__metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255, 107, 74, .04);
  border: 1px solid rgba(255, 107, 74, .1);
}

.modal__text .modal__metric-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--spicy-coral);
  line-height: 1;
}

.modal__text .modal__metric-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.modal__text p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.modal__text .modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--spicy-coral);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255, 107, 74, .25);
  transition: all .25s ease;
}

.modal__text .modal__cta:hover {
  border-color: var(--spicy-coral);
  background: rgba(255, 107, 74, .08);
}

@media (max-width: 768px) {
  .modal__content {
    padding: 24px;
    gap: 20px;
    margin: 0 12px;
  }
}
