.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  outline: 3px solid var(--color-dark);
  outline-offset: -1px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-bg);
  z-index: 0;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-scene-fg {
  z-index: 3;
}

.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero-foreground {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 3;
}

.hero-mountains-small,
.hero-mountains-large,
.hero-foreground-small,
.hero-foreground-large  { display: none; }

.hero-mountains-default,
.hero-foreground-default { display: block; }

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: var(--nav-height);
  margin-top: 75px;
  margin-left: 15%;
  max-width: 1000px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 0.98rem);
  color: #6B6860;
  max-width: 600px;
  margin-bottom: 2.4rem;
  margin-top: 30px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #C8C4BA;
  border-radius: 50px;
  padding: 5px;
  gap: 0;
}

.btn-ghost {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-ghost:hover {
  color: color-mix(in srgb, var(--color-text-muted) 60%, #000 40%);
}

.btn-green {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--color-dark);
  background: var(--color-green-btn);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.btn-green:hover {
  background: color-mix(in srgb, var(--color-green-btn) 80%, #000 20%);
}

@media (max-width: 1024px) {
  .hero-content {
    margin-left: 120px;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  body { background-color: var(--color-dark); }
  .hero-bg { background-color: var(--color-bg); }

  .hero-content {
    position: absolute;
    left: 0; right: 0;
    margin-left: 0;
    margin-top: 0;
    padding: 0 5%;
    padding-top: 0;
    max-width: 100%;
    width: 100%;
    gap: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-subtitle { display: none; }

  .btn-ghost,
  .btn-green {
    font-size: 0.92rem;
    padding: 11px 20px;
  }

  .hero-foreground {
    left: 0;
    transform: none;
    width: 100%;
  }
}

@media (min-width: 2200px) {
  .hero-mountains-default,
  .hero-foreground-default,
  .hero-mountains-small,
  .hero-foreground-small  { display: none; }
  .hero-mountains-large,
  .hero-foreground-large  { display: block; }
}

@media (max-width: 768px) {
  .hero-mountains-default,
  .hero-foreground-default,
  .hero-mountains-large,
  .hero-foreground-large  { display: none; }
  .hero-mountains-small,
  .hero-foreground-small  { display: block; }
}

.section-services {
  background-color: var(--color-dark);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  padding-top: 1rem;
  margin-top: -2px;
}

.marquee-wrap {
  width: 100%;
  position: relative;
  height: 260px;
  margin: 60px 0 100px;
  overflow: visible;
}

.marquee-track {
  position: absolute;
  left: -20vw;
  right: -20vw;
  overflow: hidden;
  padding: 14px 0;
}

.marquee-dark {
  background: #294133;
  transform: rotate(4deg);
  top: 90px;
  z-index: 1;
}

.marquee-orange {
  background: #FF674C;
  transform: rotate(-5deg);
  top: 20px;
  z-index: 2;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-left 35s linear infinite;
  width: max-content;
}

.marquee-reverse {
  animation: marquee-right 35s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3rem, 3vw, 2.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
}

.marquee-dark .marquee-inner span { color: var(--color-dark); }
.marquee-orange .marquee-inner span { color: var(--color-bg); }

.marquee-inner .sep {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: inherit;
  flex-shrink: 0;
}

.marquee-inner .sep svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
}

.marquee-dark .marquee-inner .sep { color: var(--color-dark); }
.marquee-orange .marquee-inner .sep { color: var(--color-bg); }

@keyframes marquee-right {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-left {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

.label-star {
  color: #FF674C;
  font-size: 0.9rem;
}

.services-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #6f857b;
  max-width: 360px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.services-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
}

.rating-avatars {
  display: flex;
  gap: -8px;
}

.avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  object-fit: cover;
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar-img:first-child { margin-left: 0; }

.rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-score {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: #fff;
}

.rating-stars {
  color: #FFB800;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.service-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
}

.service-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #6f857b;
  letter-spacing: 0.02em;
}

.js .srv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.services-left .srv-reveal:nth-child(1) { transition-delay: 0s; }
.services-left .srv-reveal:nth-child(2) { transition-delay: 0.1s; }
.services-left .srv-reveal:nth-child(3) { transition-delay: 0.2s; }
.services-left .srv-reveal:nth-child(4) { transition-delay: 0.3s; }

.services-right .srv-reveal:nth-child(1) { transition-delay: 0.1s; }
.services-right .srv-reveal:nth-child(2) { transition-delay: 0.25s; }
.services-right .srv-reveal:nth-child(3) { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px 80px;
  }
}

@media (max-width: 768px) {
  .marquee-wrap { margin: 30px 0 50px; }
  .marquee-inner span { font-size: 2rem; }
  .marquee-orange { top: 25px; }

  .services-container {
    padding: 0 24px 60px;
    gap: 48px;
    text-align: center;
    margin-bottom: 50px;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    background-color: rgb(30 50 38);
    padding: 25px;
    border-radius: 15px;
    gap: 18px;
  }

  .service-text { color: #586b62; }
  .services-right { gap: 26px; }
  .services-desc { max-width: 100%; }
}

.s3-wrapper {
  height: calc(100vh * 3);
  position: relative;
}

.section3-herbe-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 6;
  background-color: var(--color-dark);
}
.section3-herbe-wrap img { width: 100%; height: auto; display: block; }

.section3 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: background-color 0.45s ease;
  box-sizing: border-box;
}

.section3.scene-1 { background-color: var(--color-green-dark); }
.section3.scene-2 { background-color: #0AA05F; }
.section3.scene-3 { background-color: #FF674C; }
.section3.scene-4 { background-color: #5C6DFF; }

.s3-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-top: 14rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: start;
}

.s3-col-stickers {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 34px;
  overflow: visible;
  max-width: 500px;
}

.s3-col-stickers svg { max-width: 150%; }

.s3-sticker {
  width: 170px;
  height: 170px;
  border: 2px dashed transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease;
  overflow: visible;
}

.scene-1 .s3-sticker { border-color: #304C3C; }
.scene-2 .s3-sticker { border-color: #41AF63; }
.scene-3 .s3-sticker { border-color: #FF8661; }
.scene-4 .s3-sticker { border-color: #6680FF; }

.js .s3-sticker svg {
  width: 230px; height: 230px;
  opacity: 0;
  transform: scale(0.6) rotate(-10deg);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  overflow: visible;
}

.s3-sticker.visible svg { opacity: 1; transform: scale(1) rotate(0deg); }
.s3-sticker img { transition: filter 0.4s ease; }

.s3-col-info {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  height: 100%;
}

.s3-title { align-self: end; }

.s3-title-line2 { transition: color 0.5s ease; }
.scene-1 .s3-title-line2 { color: #6f857b; }
.scene-2 .s3-title-line2 { color: #94E094; }
.scene-3 .s3-title-line2 { color: #FFCBA7; }
.scene-4 .s3-title-line2 { color: #ABC4FF; }

.s3-row-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
  min-height: 0;
  flex-wrap: wrap;
}

.s3-col-perso {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section3.scene-1 .s3-col-perso { display: none; }

.js .s3-char {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px) scale(0.88);
  transition: opacity 0.5s ease 0s, transform 0.5s cubic-bezier(0.34,1.3,0.64,1) 0s;
}

.s3-char.visible { opacity: 1; transform: translateY(0) scale(1); }

.s3-col-text {
  flex: 1;
  position: relative;
}

.s3-scene {
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

#s3-scene-detail {
  position: absolute;
  top: 0; left: 0; width: 100%;
}

.s3-scene.active  { pointer-events: auto; visibility: visible; }
.s3-scene.visible { opacity: 1; }

#s3-scene1 p {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: #6f857b;
  margin: 0;
  letter-spacing: 0.02em;
}

.js .s3-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: #fff; line-height: 1; margin: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.js .s3-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  margin: 0;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease 0.18s, transform 0.35s ease 0.18s;
}

.js .s3-desc {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw, 1rem);
  letter-spacing: 0.02em;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease 0.28s, transform 0.35s ease 0.28s;
}

.scene-2 .s3-desc { color: #94E094; }
.scene-3 .s3-desc { color: #FFCBA7; }
.scene-4 .s3-desc { color: #ABC4FF; }
.s3-desc p { margin: 0 0 8px; }
.s3-desc p:last-child { margin: 0; }
.s3-name.visible, .s3-tagline.visible, .s3-desc.visible { opacity: 1; transform: translateY(0); }

.js .s3-next-btn {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.82rem; color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 8px 20px; cursor: pointer;
  margin-top: 6px;
  opacity: 0; transform: translateY(8px);
  transition: background 0.2s, opacity 0.35s ease 0.38s, transform 0.35s ease 0.38s;
}

.s3-next-btn:hover { background: rgba(255,255,255,0.22); }
.s3-next-btn.visible { opacity: 1; transform: translateY(0); }

.scene-dots { display: none; }

.s3-progress {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  z-index: 10;
  overflow: hidden;
}

.s3-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  transition: background 0.4s ease;
}

.section3.scene-1 .s3-progress-bar { background: rgba(255,255,255,0.6); }
.section3.scene-2 .s3-progress-bar { background: var(--color-green-btn); }
.section3.scene-3 .s3-progress-bar { background: #FECF00; }
.section3.scene-4 .s3-progress-bar { background: #80C6FF; }

.s3-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.s3-scroll-hint.visible { opacity: 1; }

.s3-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.s3-scroll-hint svg {
  width: 24px; height: 24px;
  animation: s3-bounce 1.4s ease-in-out infinite;
}

@keyframes s3-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@media (max-width: 1100px) {
  .s3-layout { padding: calc(var(--nav-height) + 100px) 160px 32px; gap: 0; }
  .s3-sticker { width: 150px; height: 150px; }
}

@media (max-height: 700px) {
  .s3-title { display: none; }
  .s3-char { max-width: 125px; }
}

@media (max-width: 768px) {
  .s3-layout {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-height) + 10px) 20px 20px;
    gap: 16px;
    align-items: center;
  }
  .s3-row-content { margin-top: 0; }
  .s3-title { text-align: center; }
  .s3-desc p { font-size: 0.9rem; text-align: center; }
  .s3-col-stickers { flex-direction: row; height: auto; justify-content: center; padding: 0; max-width: 100%; }
  .s3-sticker { width: 90px; height: 90px; }
  .s3-sticker svg { width: 105px; height: 105px; }
  .s3-col-info { gap: 0; }
  .s3-row-content { flex-direction: column; gap: 16px; align-items: center; }
  .s3-col-perso { width: 100%; }
  .s3-char { max-height: 180px; }
  .s3-col-text { align-items: center; }
  .s3-scene { align-items: center; }
  #s3-scene1 p, .s3-name, .s3-tagline, .s3-desc { text-align: center; }
  .s3-next-btn { align-self: center; }
}

@media (max-width: 400px) {
  .s3-sticker { width: 75px; height: 75px; }
}

.s3-sticker[data-slot="1"] .st-dark   { fill: #0AA05F; }
.s3-sticker[data-slot="1"] .st-main   { fill: #94E094; }
.s3-sticker[data-slot="1"] .st-accent { fill: var(--color-green-btn); }
.s3-sticker[data-slot="2"] .st-dark   { fill: #FF674C; }
.s3-sticker[data-slot="2"] .st-main   { fill: #F2DFB3; }
.s3-sticker[data-slot="2"] .st-accent { fill: #FECF00; }
.s3-sticker[data-slot="3"] .st-dark   { fill: #5C6DFF; }
.s3-sticker[data-slot="3"] .st-main   { fill: #ABC4FF; }
.s3-sticker[data-slot="3"] .st-accent { fill: #80C6FF; }

.scene-2 .s3-sticker[data-slot="1"] .st-dark   { fill: var(--color-green-btn); }
.scene-2 .s3-sticker[data-slot="1"] .st-main   { fill: #0AA05F; }
.scene-2 .s3-sticker[data-slot="1"] .st-accent { fill: #0AA05F; }
.scene-3 .s3-sticker[data-slot="2"] .st-dark   { fill: #FECF00; }
.scene-3 .s3-sticker[data-slot="2"] .st-main   { fill: #FF674C; }
.scene-3 .s3-sticker[data-slot="2"] .st-accent { fill: #FF674C; }
.scene-4 .s3-sticker[data-slot="3"] .st-dark   { fill: #80C6FF; }
.scene-4 .s3-sticker[data-slot="3"] .st-main   { fill: #5C6DFF; }
.scene-4 .s3-sticker[data-slot="3"] .st-accent { fill: #5C6DFF; }

.s3-sticker .st-main,
.s3-sticker .st-accent,
.s3-sticker .st-dark { transition: fill 0.4s ease; }

.s4-wrapper {
  position: relative;
  height: calc(100vh * 3.2);
}

.section4 {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #5C6DFF;
  overflow: hidden;
  box-sizing: border-box;
}

.s4-header {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
  z-index: 3;
}

.s4-header-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.s4-header-label svg {
  width: 13px; height: 13px;
  fill: rgb(255, 255, 255);
  flex-shrink: 0;
}

.s4-header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.s4-header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.s4-header-nav a:hover,
.s4-header-nav a.active { color: #fff; }

.s4-header-sep { color: rgba(255,255,255,0.25); }

.s4-big-title {
  position: absolute;
  top: 52px; left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 3;
  overflow: visible;
  line-height: 1;
}

.s4-big-title h2 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 0.88;
  white-space: nowrap;
  display: inline-block;
  letter-spacing: -0.01em;
  font-size: 15vw;
}

.s4-content {
  position: absolute;
  left: 0; width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 28px 8% 0;
  box-sizing: border-box;
  z-index: 3;
}

.s4-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  color: #fff;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.s4-content-mid {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.s4-btn-voir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.s4-btn-voir:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.s4-desc-right {
  max-width: 350px;
  text-align: right;
  padding-top: 6px;
  flex-shrink: 0;
}

.s4-desc-right p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.s4-footer-text {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 14px 40px 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
  z-index: 3;
}

.s4-footer-text p {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.85vw, 0.9rem);
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0;
}

.s4-cards-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

.s4-card {
  position: absolute;
  border-radius: 16px;
  pointer-events: auto;
  will-change: transform;
  overflow: hidden;
  box-shadow:
    0 4px 16px  rgba(0,0,0,0.18),
    0 16px 40px rgba(0,0,0,0.22),
    0 40px 80px rgba(0,0,0,0.16);
  transform: translateY(85vh) scale(0.92);
}

.s4-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  pointer-events: none;
  z-index: 2;
}

.s4-card:nth-child(1) {
  --card-rotate: -5deg;
  width: clamp(260px, 30vw, 440px);
  height: clamp(200px, 24vw, 360px);
  left: 7%;
  top: 55%;
}

.s4-card:nth-child(2) {
  --card-rotate: 3deg;
  width: clamp(260px, 30vw, 440px);
  height: clamp(200px, 24vw, 360px);
  left: 55%;
  margin-left: -15vw;
  top: 45%;
}

.s4-card:nth-child(3) {
  --card-rotate: -2deg;
  width: clamp(260px, 30vw, 440px);
  height: clamp(200px, 24vw, 360px);
  right: 6%;
  top: 57%;
}

.s4-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

@media (max-width: 1100px) {
  .s4-card:nth-child(1) { left: 3%; }
  .s4-card:nth-child(2) { margin-left: -18vw; }
  .s4-card:nth-child(3) { right: 2%; }
}

@media (max-width: 768px) {
  .s4-header { padding: 0 20px; height: 44px; }
  .s4-header-nav { gap: 12px; }
  .s4-header-nav a { font-size: 0.7rem; }
  .s4-big-title { top: 44px; }
  .s4-wrapper { height: calc(100vh * 3); }

  .s4-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px 20px 0;
  }

  .s4-subtitle { white-space: normal; text-align: center; }
  .s4-content-mid { justify-content: center; padding-top: 0; }
  .s4-desc-right { text-align: center; max-width: 100%; }
  .s4-footer-text { padding: 12px 20px 16px; }

  .s4-card:nth-child(1),
  .s4-card:nth-child(2),
  .s4-card:nth-child(3) {
    width: 80vw;
    height: 60vw;
    left: 50%;
    margin-left: -40vw;
    right: auto;
    top: 45%;
    --card-rotate: -2deg;
  }

  .s4-card:nth-child(2) { --card-rotate: 2deg; }
  .s4-card:nth-child(3) { --card-rotate: -1deg; }
}

@media (max-width: 480px) {
  .s4-header-nav a:not(.active) { display: none; }
  .s4-header-sep { display: none; }
}

.s5-buisson-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 6;
  margin-bottom: -2px;
}

.s5-buisson-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.section5 {
  background-color: var(--color-dark);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.s5-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 80px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.s5-title { text-align: right; }

.s5-strip-wrap {
  width: 100%;
  overflow: hidden;
}

.s5-strip-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: s5-marquee 28s linear infinite;
}

@keyframes s5-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.s5-photo {
  width: 275px;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #2d4a3e;
}

.s5-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
}

.s5-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 60px 200px;
  box-sizing: border-box;
  align-items: start;
}

.s5-content-desc {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1vw, 1rem);
  color: #6f857b;
  margin: 0 0 36px;
  max-width: 500px;
  margin-top: 30px;
}

.s5-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.s5-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.s5-col-right p {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1vw, 1rem);
  color: #6f857b;
  margin: 0;
}

.js .s5-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.s5-reveal:nth-child(1) { transition-delay: 0s; }
.s5-reveal:nth-child(2) { transition-delay: 0.1s; }
.s5-reveal:nth-child(3) { transition-delay: 0.2s; }
.s5-reveal:nth-child(4) { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .s5-content { gap: 40px 60px; padding: 60px 40px 80px; }
  .s5-intro { padding: 60px 40px 40px; }
}

@media (max-width: 768px) {
  .s5-intro { padding: 50px 24px 30px; align-items: center; }
  .s5-title { text-align: center; }
  .s5-photo { width: 160px; height: 120px; }
  .s5-col-left { text-align: center; }
  .s5-content { grid-template-columns: 1fr; gap: 32px; padding: 50px 24px 70px; }
  .s5-content-desc { max-width: 100%; }
  .s5-col-right { gap: 18px; text-align: center; }
}

@media (max-width: 480px) {
  .s5-photo { width: 130px; height: 100px; }
  .s5-btns { flex-direction: column; }
}

.s6-buisson-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 6;
  background-color: var(--color-bg);
  margin-bottom: -2px;
}

.s6-buisson-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.section6 {
  background-color: var(--color-bg);
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}

.s6-header {
  text-align: center;
  padding: 80px 40px 60px;
}

.s6-header .site-title {
  color: var(--color-dark);
  margin-bottom: 0;
  display: inline;
}

.s6-header .site-title-italic {
  color: var(--color-text-muted);
  display: inline;
}

.s6-reviews-wrap {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 80px;
}

.s6-reviews-track {
  display: flex;
  gap: 50px;
  width: max-content;
  align-items: flex-start;
  animation: s6-scroll 35s linear infinite;
  padding: 8px 0 12px;
}

.s6-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes s6-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.s6-reviews-track:hover {
  animation-play-state: paused;
}

.s6-card {
  background: #F2F0E7;
  border-radius: 20px;
  padding: 28px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.s6-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s6-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}

.s6-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s6-card-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-dark);
  margin: 0;
}

.s6-card-company {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}

.s6-card-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a4640;
  margin: 0;
  flex: 1;
}

.s6-card-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.s6-card-score {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.s6-card-stars {
  color: #FFB800;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.s6-logos-wrap {
  background: var(--color-bg);
  padding: 0px 0 20px;
  overflow: hidden;

}

.s6-logos-track {
  display: flex;
  /*gap: 60px;*/
  width: max-content;
  align-items: center;
  padding: 10px 0;
}

.s6-logos-track-top {
  animation: s6-logos-right 30s linear infinite;
  margin-bottom: 16px;
}

.s6-logos-track-bottom {
  animation: s6-logos-left 30s linear infinite;
}

@keyframes s6-logos-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@keyframes s6-logos-right {
  0%   { transform: translateX(-33.333%); }
  100% { transform: translateX(0); }
}

.s6-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.2s ease;
  height: 40px;
}

.s6-logo-item:hover { opacity: 0.75; }

.s6-logo-item img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;

}

@media (max-width: 768px) {
  .s6-header { padding: 60px 24px 40px; }
  .s6-reviews-wrap { padding-bottom: 50px; overflow: visible; }
  .s6-logos-wrap { padding: 30px 0 50px; }

  .s6-card {
    width: 78vw !important;
    max-width: 340px;
    padding: 22px 20px;
    margin-top: 0 !important;
    gap: 14px;
  }

  .s6-card-name    { font-size: 1rem; }
  .s6-card-company { font-size: 0.85rem; }
  .s6-card-text    { font-size: 0.95rem; line-height: 1.7; }
  .s6-card-stars   { font-size: 1.25rem; }
  .s6-card-avatar  { width: 44px; height: 44px; }

  .s6-reviews-track {
    gap: 16px;
    align-items: center;
    padding: 12px 0 16px;
  }
}

.section7 {
  background-color: #F2F0E7;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}

.s7-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px 120px;
  box-sizing: border-box;
  align-items: center;
}

.s7-col-left {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s7-col-left img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

.s7-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.s7-title {
  margin: 0;
  line-height: 1.05;
}

.s7-title .site-title {
  color: var(--color-dark);
  margin-bottom: 0;
  display: block;
}

.s7-title .site-title-italic {
  color: var(--color-text-muted);
  display: block;
}

.s7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.s7-field {
  position: relative;
}

.s7-field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #8a8580;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, transform 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.s7-field--textarea label {
  top: 20px;
  transform: none;
}

.s7-field input:focus ~ label,
.s7-field input:not(:placeholder-shown) ~ label,
.s7-field textarea:focus ~ label,
.s7-field textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  transform: none;
  font-size: 0.72rem;
  color: var(--color-dark);
  background: #F2F0E7;
  border-radius: 4px;
}

.s7-field input,
.s7-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-dark);
  background: #fff;
  border: 1.5px solid #DDD9D0;
  border-radius: 12px;
  padding: 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.s7-field input::placeholder,
.s7-field textarea::placeholder { color: transparent; }

.s7-field input:focus,
.s7-field textarea:focus {
  border-color: var(--color-green-btn);
  box-shadow: 0 0 0 3px rgba(183,240,13,0.15);
}

.s7-field textarea {
  resize: none;
  height: 130px;
  line-height: 1.6;
}

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

.s7-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #2a7a4a;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.s7-success.visible {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.s7-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.s7-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #c0392b;
  padding: 10px 14px;
  background: rgba(192,57,43,0.08);
  border-radius: 8px;
  border: 1px solid rgba(192,57,43,0.15);
}

.s7-error.visible { display: block; }

.js .s7-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.s7-reveal:nth-child(1) { transition-delay: 0s; }
.s7-reveal:nth-child(2) { transition-delay: 0.08s; }
.s7-reveal:nth-child(3) { transition-delay: 0.14s; }
.s7-reveal:nth-child(4) { transition-delay: 0.2s; }
.s7-reveal:nth-child(5) { transition-delay: 0.26s; }
.s7-reveal:nth-child(6) { transition-delay: 0.32s; }

@media (max-width: 1024px) {
  .s7-inner { padding: 80px 40px 100px; gap: 40px; }
}

@media (max-width: 768px) {
  .s7-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 40px;
  }
  .s7-col-left { display: none; }
  .s7-row { grid-template-columns: 1fr; }
}

.hero-herbe { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; z-index: 2; }
.hero-herbe-large, .hero-herbe-default, .hero-herbe-small { display: none; }

@media (min-width: 2200px) {
  .hero-herbe-large  { display: block; }
  .section-services { padding-top: 75px; }
}
@media (min-width: 769px) and (max-width: 2199px) {
  .hero-herbe-default { display: block; }

}
@media (max-width: 768px) {
  .hero-herbe-small { display: block; }
  .nav-account-dis{display: none;}
  .hero-foreground {margin-bottom: 8%;}
}

html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }

@media (min-width: 1024px) and (max-width: 1199px) {
  .navbar { padding: 0 28px; }
  .btn-contact { padding: 7px 14px; font-size: 0.8rem; }
  .lang-btn { padding: 7px 12px; font-size: 0.78rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
}
@media (max-width: 380px) {
  .navbar { padding: 0 14px; }
  .nav-logo img { height: 32px; }
}
@media (min-width: 768px) and (max-width: 1023px) { .nav-fab { z-index: 300; } }
@media (max-width: 380px) {
  .nav-fab { height: 40px; padding: 0 14px; gap: 8px; }
  .nav-fab-logo { height: 16px; }
}
@media (min-width: 768px) and (max-width: 899px) {
  .nav-overlay-inner { padding: 32px 40px 40px; }
  .nav-ol-link { font-size: clamp(2.4rem, 7vw, 4.5rem); }
}
@media (min-width: 600px) and (max-width: 767px) {
  .nav-ol-link { font-size: clamp(2.6rem, 9vw, 4rem); }
}
@media (max-width: 380px) {
  .nav-overlay-inner { padding: 22px 18px 28px; }
  .nav-ol-link { font-size: clamp(2rem, 13vw, 3rem); line-height: 1.2; }
  .nav-overlay-logo img { height: 36px; }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .hero-content { margin-left: 80px; max-width: 480px; padding-top: calc(var(--nav-height) + 20px); }
}
@media (min-width: 900px) and (max-width: 1023px) {
  .hero-content { margin-left: 60px; max-width: 420px; }
}
@media (min-width: 768px) and (max-width: 899px) {
  .hero-subtitle { font-size: 0.82rem; max-width: 320px; }
  .hero-foreground { width: 120%; left: 50%; transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .hero { min-height: 100svh; }

  .hero-subtitle { display: none; }

  .hero-cta {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 0;
    padding: 4px;
    border-radius: 50px;
    border: 1.5px solid #C8C4BA;
    width: auto;
    max-width: 100%;
    margin-top: 0;
  }
  .btn-ghost {
    white-space: nowrap;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    padding: 10px clamp(10px, 2.8vw, 20px);
    flex-shrink: 1;
    min-width: 0;
  }
  .btn-green {
    white-space: nowrap;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    padding: 10px clamp(10px, 2.8vw, 20px);
    flex-shrink: 0;
  }
}
@media (max-height: 675px) {
  .hero-cta{display: none !important;}
}
@media (max-width: 380px) {
  .hero-content {
    padding-left: 4%;
    padding-right: 4%;
  }
  .btn-ghost, .btn-green {
    font-size: clamp(0.65rem, 3.5vw, 0.78rem);
    padding: 9px clamp(8px, 2.2vw, 14px);
  }
  .hero-cta { flex-direction: row !important; flex-wrap: nowrap !important; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-content { margin-top: 0; padding-top: calc(var(--nav-height) + 6px) !important; }
  .hero-subtitle { display: none; }
  .hero-cta { flex-direction: row !important; flex-wrap: nowrap !important; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .services-container { grid-template-columns: 1fr 1fr; gap: 48px 60px; padding: 0 40px 80px; max-width: 100%; }
  .services-desc { max-width: 300px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section-services { padding-top: 1.5rem; }
  .services-container { grid-template-columns: 1fr; gap: 48px; padding: 0 40px 70px; max-width: 680px; }
  .services-desc { max-width: 100%; }
}
@media (min-width: 600px) and (max-width: 767px) {
  .services-container { padding: 0 32px 60px; }
  .service-item { flex-direction: row; align-items: flex-start; background-color: transparent; border: none; padding: 0; text-align: left; }
  .service-title { text-align: left; }
}
@media (max-width: 479px) {
  .services-container { padding: 0 18px 50px; }
  .marquee-wrap { margin: 20px 0 40px; height: 160px; }
  .marquee-dark { top: 70px; }
  .marquee-orange { top: 15px; }
  .marquee-inner span { font-size: 1.6rem; padding: 0 22px; }
  .service-title { font-size: 1.4rem; }
}
@media (min-width: 1600px) {
  .marquee-wrap { height: 300px; }
  .marquee-inner span { font-size: clamp(3rem, 2.5vw, 4rem); }
}

.section3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s3-layout {
  padding-top: clamp(56px, 8vh, 100px) !important;
  padding-bottom: clamp(48px, 7vh, 80px) !important;
}

.s3-col-stickers { align-self: start; }

@media (min-width: 1024px) and (max-width: 1400px) {
  .s3-layout {
    padding-top: clamp(48px, 7vh, 88px) !important;
    padding-bottom: clamp(40px, 6vh, 70px) !important;
    gap: 48px;
    grid-template-columns: 160px 1fr;
  }
  .s3-sticker { width: clamp(100px, 11vw, 150px); height: clamp(100px, 11vw, 150px); }
  .s3-sticker svg { width: clamp(120px, 13vw, 190px); height: clamp(120px, 13vw, 190px); }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .s3-layout {
    padding-top: clamp(44px, 7vh, 80px) !important;
    padding-bottom: clamp(36px, 6vh, 64px) !important;
    padding-left: 60px !important;
    padding-right: 40px !important;
    gap: 36px;
    grid-template-columns: 140px 1fr;
  }
  .s3-sticker { width: 120px; height: 120px; }
  .s3-sticker svg { width: 140px; height: 140px; }
  .s3-char { max-height: clamp(120px, 20vh, 240px); }
  .s3-progress { width: calc(100% - 60px); }
}

@media (min-width: 768px) and (max-width: 899px) {
  .s3-layout {
    grid-template-columns: 1fr !important;
    padding: clamp(40px, 7vh, 72px) 32px clamp(36px, 6vh, 60px) !important;
    gap: 14px;
    align-items: center;
  }
  .s3-col-stickers { flex-direction: row; justify-content: center; max-width: 100%; gap: 16px; height: auto; }
  .s3-sticker { width: 110px; height: 110px; }
  .s3-sticker svg { width: 130px; height: 130px; }
  .s3-col-info { gap: 10px; }
  .s3-title { text-align: center; }
  .s3-row-content { flex-direction: column; align-items: center; gap: 14px; margin-top: 0; }
  .s3-col-perso { width: 100%; justify-content: center; }
  .s3-char { max-height: clamp(100px, 18vh, 200px); }
  .s3-col-text { text-align: center; }
  .s3-scene { align-items: center; }
  #s3-scene1 p, .s3-name, .s3-tagline, .s3-desc { text-align: center; }
  .s3-next-btn { align-self: center; }
  .s3-progress { width: calc(100% - 60px); }
}

@media (max-width: 767px) {
  .s3-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: clamp(36px, 6vh, 60px) 20px clamp(32px, 5vh, 52px) !important;
    gap: 10px !important;
    align-items: start !important;
  }


  .s3-col-stickers {
    flex-direction: row !important;
    justify-content: center !important;
    max-width: 100% !important;
    height: clamp(80px, 22vw, 110px) !important;
    min-height: clamp(80px, 22vw, 110px) !important;
    gap: 12px !important;
    padding: 0 !important;
    align-items: center;
    flex-shrink: 0;
  }

  .s3-sticker {
    width: clamp(72px, 20vw, 100px) !important;
    height: clamp(72px, 20vw, 100px) !important;
    flex-shrink: 0;
  }
  .s3-sticker svg {
    width: clamp(86px, 24vw, 120px) !important;
    height: clamp(86px, 24vw, 120px) !important;
  }

  .s3-col-info { gap: 8px !important; }
  .s3-title { text-align: center !important; }
  .s3-row-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 0 !important;
  }
  .s3-col-perso { width: 100%; }
  .s3-char { max-height: clamp(90px, 16vh, 180px) !important; }
  .s3-col-text { align-items: center; }
  .s3-scene { align-items: center; }
  #s3-scene1 p, .s3-name, .s3-tagline, .s3-desc p { text-align: center; }
  .s3-next-btn { align-self: center; }
  .s3-progress { width: calc(100% - 40px); bottom: 12px; }
  .s3-wrapper { height: calc(100svh * 3); }
}

@media (max-width: 380px) {
  .s3-layout {
    padding: clamp(28px, 5vh, 44px) 14px clamp(26px, 4.5vh, 44px) !important;
    gap: 8px !important;
  }
  .s3-col-stickers {
    height: clamp(66px, 19vw, 88px) !important;
    min-height: clamp(66px, 19vw, 88px) !important;
    gap: 8px !important;
  }
  .s3-sticker { width: clamp(58px, 17vw, 78px) !important; height: clamp(58px, 17vw, 78px) !important; }
  .s3-sticker svg { width: clamp(70px, 20vw, 94px) !important; height: clamp(70px, 20vw, 94px) !important; }
  .s3-char { max-height: clamp(75px, 14vh, 130px) !important; }
  .s3-name { font-size: clamp(1.3rem, 7vw, 1.8rem); }
  .s3-tagline { font-size: 0.86rem; }
  .s3-desc p { font-size: 0.78rem; }
}

@media (min-width: 1600px) {
  .s3-layout { max-width: 1400px; padding-top: clamp(80px, 11vh, 130px) !important; padding-bottom: clamp(70px, 9vh, 110px) !important; grid-template-columns: 240px 1fr; gap: 80px; }
  .s3-sticker { width: 190px; height: 190px; }
  .s3-sticker svg { width: 250px; height: 250px; }
  .s3-char { max-height: clamp(240px, 30vh, 380px); }
  .s3-name { font-size: clamp(2.4rem, 3.2vw, 4rem); }
}

@media (max-height: 650px) {
  .s3-layout { padding-top: clamp(28px, 5vh, 52px) !important; padding-bottom: clamp(28px, 5vh, 52px) !important; }
  .s3-title { display: none; }
  .s3-char { max-height: clamp(80px, 15vh, 150px) !important; }
  .s3-sticker { width: clamp(60px, 9vw, 110px) !important; height: clamp(60px, 9vw, 110px) !important; }
  .s3-sticker svg { width: clamp(72px, 11vw, 130px) !important; height: clamp(72px, 11vw, 130px) !important; }
  .s3-col-stickers { gap: 10px !important; }
}
@media (max-height: 500px) {
  .s3-col-stickers { display: none !important; }
  .s3-col-perso { display: none; }
  .s3-layout { grid-template-columns: 1fr !important; }
  .s3-col-info { width: 100%; text-align: center; }
  .s3-col-text { max-width: 600px; margin: 0 auto; }
  .s3-row-content { margin-top: 0; gap: 8px; }
  .s3-name { font-size: clamp(1.2rem, 4vw, 2rem); }
  .s3-desc p { font-size: 0.8rem; }
}

@supports (height: 100svh) { .section3 { height: 100svh; } }

@media (max-width: 767px) {

  .section3.scene-1 .s3-title {
    display: block !important;
    text-align: center;
    width: 100%;
  }

  .section3:not(.scene-1) .s3-title {
    display: none !important;
  }

  .section3.scene-1 .s3-col-stickers {
    display: none !important;
  }

  .section3:not(.scene-1) .s3-col-stickers {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .s4-header { padding: 0 16px; height: 44px; }
  .s4-header-nav { gap: 10px; }
  .s4-header-nav a { font-size: 0.68rem; letter-spacing: 0.05em; }
  .s4-big-title h2 { font-size: clamp(3.5rem, 18vw, 7rem); line-height: 0.88; }
  .s4-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 16px 0;
  }
  .s4-subtitle { white-space: normal; text-align: center; font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .s4-content-mid { justify-content: center; padding-top: 0; }
  .s4-desc-right { text-align: center; max-width: 92%; padding-bottom: 10px; }
  .s4-footer-text { padding: 12px 16px 18px; }
  .s4-footer-text p { font-size: 0.7rem; }
}

@media (max-width: 380px) {
  .s4-header { padding: 0 12px; }
  .s4-content { padding: 14px 12px 0; gap: 10px; }
  .s4-footer-text { padding: 10px 12px 14px; }
  .s4-footer-text p { font-size: 0.62rem; }
}

@media (max-width: 768px) {
  .s4-card:nth-child(1) {
    width: clamp(240px, 76vw, 400px);
    height: clamp(180px, 57vw, 300px);
    left: 50%;
    margin-left: calc(clamp(240px, 76vw, 400px) / -2);
    top: 42%;
    --card-rotate: -4deg;
  }
  .s4-card:nth-child(2) {
    width: clamp(240px, 76vw, 400px);
    height: clamp(180px, 57vw, 300px);
    left: 50%;
    margin-left: calc(clamp(240px, 76vw, 400px) / -2);
    top: 42%;
    --card-rotate: 3deg;
  }
  .s4-card:nth-child(3) {
    width: clamp(240px, 76vw, 400px);
    height: clamp(180px, 57vw, 300px);
    left: 50%;
    margin-left: calc(clamp(240px, 76vw, 400px) / -2);
    top: 42%;
    --card-rotate: -2deg;
  }
}

@media (max-height: 650px) and (min-width: 769px) {
  .s4-content { padding-top: 18px; }
  .s4-subtitle { font-size: clamp(1.4rem, 2.8vw, 2.8rem); }
}
@media (min-width: 1600px) {
  .s4-card:nth-child(1) { left: 9%; }
  .s4-card:nth-child(3) { right: 8%; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .s5-intro { padding: 60px 40px 40px; }
  .s5-content { padding: 80px 40px 120px; gap: 40px 60px; }
}
@media (min-width: 768px) and (max-width: 1023px) { .s5-photo { width: 200px; height: 260px; } }
@media (min-width: 768px) and (max-width: 899px) {
  .s5-intro { padding: 50px 32px 30px; align-items: center; }
  .s5-title { text-align: center; }
  .s5-content { grid-template-columns: 1fr; padding: 50px 32px 80px; gap: 32px; }
  .s5-col-left { text-align: center; }
  .s5-content-desc { max-width: 100%; }
  .s5-col-right { gap: 20px; text-align: center; }
  .s5-btns { justify-content: center; }
  .s5-photo { width: 180px; height: 140px; }
}
@media (max-width: 767px) {
  .s5-col-left { text-align: center; }
  .s5-btns { justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 600px) {
  .s5-strip-track { gap: 16px; }
  .s5-photo { width: 140px; height: 180px; border-radius: 10px; }
}
@media (max-width: 479px) {
  .s5-intro { padding: 40px 18px 24px; }
  .s5-content { padding: 40px 18px 60px; }
  .s5-btns { flex-direction: column; align-items: center; width: 100%; }
}

@media (min-width: 1024px) and (max-width: 1199px) { .s6-header { padding: 70px 40px 50px; } }
@media (min-width: 768px) and (max-width: 899px) { .s6-header { padding: 60px 32px 40px; } .s6-card { width: 270px; } }
@media (max-width: 479px) {
  .s6-header { padding: 50px 18px 32px; }
  .s6-card { width: 240px; padding: 18px; }
  .s6-reviews-wrap { padding-bottom: 40px; }
  .s6-logos-track { gap: 40px; }
  .s6-logo-item { height: 32px; }
  .s6-logo-item img { max-width: 100px; }
}

@media (min-width: 1024px) and (max-width: 1199px) { .s7-inner { padding: 80px 40px 100px; gap: 50px; } }
@media (min-width: 768px) and (max-width: 899px) {
  .s7-inner { grid-template-columns: 1fr; padding: 60px 32px 80px; gap: 32px; }
  .s7-col-left { display: none; }
}
@media (max-width: 767px) {
  .s7-col-left { display: none; }
  .s7-title { text-align: center; }
  .s7-title .site-title, .s7-title .site-title-italic { text-align: center; display: block; }
  .s7-actions { justify-content: center; }
  .s7-success { justify-content: center; }
}
@media (min-width: 600px) and (max-width: 767px) { .s7-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .s7-inner { padding: 50px 18px 70px; } .s7-row { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 380px) { .section7 { padding: 30px 0; } }

@supports (-webkit-touch-callout: none) {
  input[type="text"], input[type="email"], textarea { font-size: max(16px, 1em); }
}

.footer-email { overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 1024px) and (max-width: 1199px) {
  .footer-top { padding: 60px 50px 50px; gap: 40px; }
  .footer-bottom { padding: 16px 50px; }
  .footer-col-title { font-size: clamp(1.5rem, 2.2vw, 2.2rem); }
}
@media (min-width: 768px) and (max-width: 899px) {
  .footer-top { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; padding: 50px 32px 40px; gap: 40px 32px; }
  .footer-col-brand { grid-column: 1 / -1; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-logo-img { margin: 0 auto 20px; }
  .footer-col-title { font-size: clamp(1.4rem, 3vw, 2rem); }
  .footer-bottom { padding: 14px 32px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (min-width: 600px) and (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 36px 28px; padding: 50px 28px 40px; }
  .footer-col-brand { grid-column: 1 / -1; text-align: center; }
  .footer-logo-img { margin: 0 auto 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; padding: 14px 28px; }
}
@media (max-width: 479px) {
  .footer-top { padding: 40px 18px 32px; gap: 32px; }
  .footer-email { font-size: clamp(0.85rem, 4.5vw, 1.1rem); }
  .footer-bottom { padding: 12px 18px; flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom p { font-size: 0.75rem; }
  .footer-picto { height: clamp(40px, 9vw, 60px); }
}
@media (max-width: 380px) {
  .footer-top { padding: 36px 14px 28px; gap: 28px; }
  .footer-col-title { font-size: 1.5rem; }
  .footer-social-btn { width: 38px; height: 38px; }
}
@media (max-width: 767px) { .footer-hello { min-height: 80px; } }
@media (min-width: 2200px) {
  .footer-top { max-width: 1800px; padding: 80px 120px 70px; }
  .footer-bottom { padding: 20px 120px; font-size: 1rem; }
  .services-container { max-width: 1600px; padding: 0 80px 120px; }
  .s5-intro { max-width: 1600px; padding: 100px 80px 70px; }
  .s5-content { max-width: 1600px; padding: 120px 80px 200px; }
  .s7-inner { max-width: 1600px; padding: 120px 80px 140px; }
}

@media (max-width: 768px) {
  .btn-green:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--color-green-btn); outline-offset: 3px; }
  .hero-content .hero-title-black {
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  }
  .hero-content .hero-title-serif-black {
    font-size: clamp(2.9rem, 5vw, 5.1rem);
  }
}

@media (max-width: 768px) {

  .section4 { overflow: hidden !important; }


  .s4-card {
    width: 82vw !important;
    height: 58vw !important;
    left: 50vw !important;
    right: auto !important;
    top: auto !important;
    bottom: 20% !important;
    margin-top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .srv-reveal,
  .js .s5-reveal,
  .js .s7-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .s3-name,
  .js .s3-tagline,
  .js .s3-desc,
  .js .s3-next-btn {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .s3-sticker svg {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .s3-char {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .s3-scroll-hint {
    opacity: 1;
    transition: none;
  }

  .marquee-inner,
  .s5-strip-track,
  .s6-reviews-track,
  .s6-logos-track-top,
  .s6-logos-track-bottom {
    animation: none;
  }
}

/* ================================================
   CORRECTIONS MOBILE VALIDÉES
================================================ */

/* Hero — dvh + safe area + transition douce */
.hero {
  height: 100dvh;
  transition: height 0.35s ease;
  margin-top: calc(env(safe-area-inset-top, 0px) * -1);
  padding-top: env(safe-area-inset-top, 0px);
}

/* Section 3 — dvh + safe area + transition douce */
.s3-wrapper {
  height: calc(100dvh * 3);
  transition: height 0.35s ease;
}

.section3 {
  height: 100dvh;
  transition: background-color 0.45s ease, height 0.35s ease;
  margin-top: calc(env(safe-area-inset-top, 0px) * -1);
  padding-top: env(safe-area-inset-top, 0px);
  margin-bottom: calc(env(safe-area-inset-bottom, 0px) * -1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Section 4 — dvh + safe area + transition douce */
.s4-wrapper {
  height: calc(100dvh * 3.2);
  transition: height 0.35s ease;
}

.section4 {
  height: 100dvh;
  transition: height 0.35s ease;
  margin-top: calc(env(safe-area-inset-top, 0px) * -1);
  padding-top: env(safe-area-inset-top, 0px);
  margin-bottom: calc(env(safe-area-inset-bottom, 0px) * -1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Portfolio mobile — cards stack */
@media (max-width: 768px) {
  .s4-wrapper { height: calc(100dvh * 2.4); }

  .s4-card:nth-child(1) {
    width: clamp(240px, 78vw, 380px);
    height: clamp(180px, 58vw, 290px);
    left: 50%;
    margin-left: calc(clamp(240px, 78vw, 380px) / -2);
    top: 38%;
    --card-rotate: -3deg;
  }
  .s4-card:nth-child(2) {
    width: clamp(240px, 78vw, 380px);
    height: clamp(180px, 58vw, 290px);
    left: 50%;
    margin-left: calc(clamp(240px, 78vw, 380px) / -2);
    top: 38%;
    --card-rotate: 2.5deg;
  }
  .s4-card:nth-child(3) {
    width: clamp(240px, 78vw, 380px);
    height: clamp(180px, 58vw, 290px);
    left: 50%;
    margin-left: calc(clamp(240px, 78vw, 380px) / -2);
    top: 38%;
    --card-rotate: -1.5deg;
  }

  .section4 { overflow: hidden !important; }
  .s4-card {
    width: 78vw !important;
    height: 58vw !important;
    left: 50vw !important;
    right: auto !important;
    top: auto !important;
    bottom: 22% !important;
    margin-top: 0 !important;
  }
}

/* Mobile svh/dvh overrides */
@media (max-width: 767px) {
  .hero { min-height: 100dvh; }
  .s3-wrapper { height: calc(100dvh * 3); }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: 100dvh; }
}
