﻿    /* ========================================
       VARIABLES
       ======================================== */
    @font-face {
      font-family: 'Arial Narrow';
      src: local('Arial Narrow'), local('ArialNarrow');
      font-weight: 700;
      font-style: normal;
    }

    :root {
      --cobalt: #004d87;
      --cobalt-dark: #003a66;
      --cobalt-light: #0066b3;
      --jaune: #F4EAB3;
      --sage: #BAD8CC;
      --white: #FFFFFF;
      --black: #0A0A0A;
      --grey: #8899AA;
      --grey-light: rgba(255,255,255,0.15);
      --green-wa: #25D366;
      --green-wa-dark: #1DA851;
      --font-title: 'Arial Narrow', Arial, sans-serif;
      --font-subtitle: 'Xanh Mono', monospace;
      --font-body: 'Xanh Mono', monospace;
      --font-display: 'Xanh Mono', monospace;
    }

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

    html {
      font-size: 16px;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: var(--font-body);
      color: var(--white);
      background: var(--cobalt);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* WHATSAPP FLOATING CTA */
    .wa-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: wa-entrance 0.6s ease 1.5s both;
    }

    @keyframes wa-entrance {
      from { opacity: 0; transform: translateY(30px) scale(0.8); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .wa-float__bubble {
      background: var(--jaune);
      color: var(--white);
      padding: 10px 18px;
      border-radius: 20px 20px 4px 20px;
      font-size: 0.82rem;
      font-weight: 500;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      opacity: 0;
      transform: translateX(10px);
      animation: bubble-in 0.5s ease 2.5s both;
    }

    @keyframes bubble-in {
      to { opacity: 1; transform: translateX(0); }
    }

    .wa-float__btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--green-wa);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .wa-float__btn:hover {
      background: var(--green-wa-dark);
      transform: scale(1.08);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    .wa-float__btn svg {
      width: 30px;
      height: 30px;
      fill: white;
    }

    /* Pulse ring */
    .wa-float__btn::before {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--green-wa);
      animation: wa-pulse 2s ease infinite;
      z-index: -1;
    }

    @keyframes wa-pulse {
      0% { transform: scale(1); opacity: 0.4; }
      100% { transform: scale(1.8); opacity: 0; }
    }

    /* HEADER */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--cobalt-dark);
      height: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
    }

    .header__logo { height: 20px; }

    .header__wa {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--green-wa);
      color: var(--white);
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s;
    }

    .header__wa:hover {
      background: var(--green-wa-dark);
      transform: scale(1.03);
    }

    .header__wa svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    /* HERO */
    .hero {
      margin-top: 56px;
      min-height: calc(100vh - 56px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: 
        radial-gradient(ellipse at 80% 20%, rgba(0,102,179,0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0,38,66,0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--cobalt) 0%, var(--cobalt-dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 150px;
      background: linear-gradient(to bottom, transparent, var(--cobalt));
      z-index: 4;
      pointer-events: none;
    }

    .hero__content {
      padding: 100px 50px 60px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 3;
    }

    .hero__eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 20px;
    }

    .hero__title {
      font-family: var(--font-title);
      font-size: 4rem;
      text-transform: uppercase;
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 28px;
      letter-spacing: -1px;
      animation: clipReveal 1s ease 0.2s both;
    }

    .hero__title em {
      font-style: italic;
    }

    .hero__text {
      font-size: 1rem;
      line-height: 1.7;
      font-weight: 300;
      max-width: 440px;
      margin-bottom: 40px;
      color: rgba(255,255,255,0.85);
    }

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

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green-wa);
      color: var(--white);
      padding: 16px 32px;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-wa:hover {
      background: var(--green-wa-dark);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    .btn-wa svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .btn-wa::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s ease;
    }

    .btn-wa:hover::before {
      transform: translateX(100%);
    }

    .btn-secondary {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--jaune);
      border-bottom: 1px solid var(--jaune);
      padding-bottom: 2px;
      transition: opacity 0.3s;
      position: relative;
    }

    .btn-secondary:hover { opacity: 0.5; }

    .btn-secondary::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: currentColor;
      transition: width 0.3s ease;
    }

    .btn-secondary:hover::after {
      width: 100%;
    }

    .hero__visual {
      position: relative;
      overflow: hidden;
    }

    /* Slide container — fills the visual half */
    .hero-slide {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center top;
      display: block;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    .hero-slide[data-slide="0"] img {
      object-position: center bottom;
      height: 88%;
      margin-top: 4%;
      filter: none;
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 98%);
              mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 98%);
    }


    .hero__image {
      position: relative;
      z-index: 2;
      height: 85%;
      width: auto;
      max-width: 90%;
      object-fit: contain;
      object-position: bottom center;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    /* Hero nav (arrows + dots) */
    .hero-nav {
      position: absolute;
      bottom: 40px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 4px;
      z-index: 15;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 100px;
      padding: 8px 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .hero-nav__arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: transparent;
      color: #1a1a1a;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .hero-nav__arrow:hover {
      background: rgba(0,0,0,0.06);
    }

    .hero-nav__dots {
      display: none;
    }

    .hero-nav__dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.3s;
    }

    .hero-nav__dot.active {
      background: var(--jaune);
      transform: scale(1.2);
    }

    /* SOCIAL PROOF BAR */
    .proof {
      padding: 40px 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background: var(--cobalt-dark);
    }

    .proof__item {
      text-align: center;
    }

    .proof__number {
      font-family: var(--font-title);
      text-transform: uppercase;
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 4px;
    }

    .proof__label {
      font-size: 0.75rem;
      color: var(--sage);
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    /* BRAND MARQUEE */
    .marquee {
      overflow: hidden;
      padding: 32px 0;
      background: var(--jaune);
      white-space: nowrap;
    }


    .marquee__track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }

    .marquee__content {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    .brand {
      padding: 0 24px;
      font-size: 1.05rem;
      color: var(--cobalt);
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .brand:hover {
      opacity: 1;
    }

    .brand--serif {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-weight: 400;
      font-style: normal;
      letter-spacing: 1px;
    }

    .brand--italic {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    .brand--bold {
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 900;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-size: 0.95rem;
    }

    .brand--caps {
      font-family: 'Arial Narrow', Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .brand--script {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 1.15rem;
      letter-spacing: 0;
    }

    .brand--elegant {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-weight: 400;
      letter-spacing: 2px;
      font-size: 0.95rem;
    }

    .marquee__sep {
      color: var(--cobalt);
      opacity: 0.25;
      font-size: 0.6rem;
      padding: 0 8px;
    }

    @keyframes marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* HOW IT WORKS */
    .how {
      padding: 100px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-title);
      font-size: 2.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 60px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
    }

    .step__number {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 400;
      color: var(--jaune);
      line-height: 1;
      margin-bottom: 16px;
    }

    .step__title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step__text {
      font-size: 0.88rem;
      line-height: 1.7;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
    }

    /* SERVICES / POUR QUI */
    .services {
      background: var(--cobalt-dark);
      padding: 100px 80px;
    }

    .services__inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }

    .service-card {
      background: rgba(255,255,255,0.06);
      padding: 36px 28px;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .service-card__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .service-card__bg--multi {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .service-card__bg-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    .service-card__bg-img.active {
      opacity: 0.25;
    }

    .service-card:hover .service-card__bg-img.active {
      opacity: 0.4;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
      border-color: var(--jaune);
      background: rgba(255,255,255,0.1);
    }

    .service-card__icon,
    .service-card__title,
    .service-card__text {
      position: relative;
      z-index: 1;
    }

    .service-card__icon {
      width: 40px;
      height: 40px;
      margin-bottom: 20px;
    }

    .service-card__icon svg {
      width: 100%;
      height: 100%;
    }

    .service-card__title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-card__text {
      font-size: 0.82rem;
      line-height: 1.6;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
    }

    .services__cta {
      text-align: center;
    }

    /* TESTIMONIAL */
    .testimonial {
      padding: 100px 80px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .testimonial__quote {
      font-family: var(--font-subtitle);
      font-size: 1.8rem;
      font-style: italic;
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .testimonial__author {
      font-size: 0.85rem;
      font-weight: 500;
    }

    .testimonial__role {
      font-size: 0.78rem;
      color: var(--sage);
      font-weight: 300;
    }

    /* Testimonial Slider */
    .testimonial-slider {
      position: relative;
      padding: 0 60px;
    }

    .testimonial-slider__track {
      position: relative;
      min-height: 220px;
    }

    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity .55s ease, transform .55s ease, visibility .55s;
    }

    .testimonial-slide.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .testimonial-slider__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid currentColor;
      background: transparent;
      color: inherit;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .25s ease, color .25s ease;
      padding: 0;
    }

    .testimonial-slider__arrow:hover {
      background: currentColor;
    }

    .testimonial-slider__arrow:hover::before {
      color: var(--white);
    }

    .testimonial-slider__arrow--prev { left: 0; }
    .testimonial-slider__arrow--next { right: 0; }

    .testimonial-slider__dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 32px;
    }

    .testimonial-slider__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: currentColor;
      opacity: .3;
      cursor: pointer;
      padding: 0;
      transition: opacity .25s ease, transform .25s ease;
    }

    .testimonial-slider__dot.active {
      opacity: 1;
      transform: scale(1.3);
    }

    /* CTA BANNER */
    .cta-banner {
      background: var(--jaune);
      color: var(--white);
      padding: 80px;
      text-align: center;
    }

    .cta-banner__title {
      font-family: var(--font-title);
      text-transform: uppercase;
      font-size: 2.8rem;
      font-weight: 400;
      margin-bottom: 16px;
    }

    .cta-banner__text {
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(0,77,135,0.65);
      margin: 0 auto 36px;
      max-width: 500px;
      line-height: 1.6;
    }

    .btn-wa--large {
      padding: 18px 40px;
      font-size: 1rem;
    }

    /* FAQ */
    .faq {
      padding: 100px 80px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq__list { list-style: none; }

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

    .faq__question {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 400;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--white);
      transition: opacity 0.3s;
      position: relative;
      overflow: hidden;
    }

    .faq__question:hover { opacity: 0.6; }

    .faq__icon {
      font-size: 1.4rem;
      font-weight: 300;
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 20px;
    }

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

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

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

    .faq__answer p {
      font-size: 0.88rem;
      line-height: 1.7;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
    }

    /* FOOTER */
    .footer {
      padding: 60px 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer__top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .footer__brand-text {
      font-size: 0.82rem;
      line-height: 1.6;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      max-width: 300px;
      margin-top: 12px;
    }

    .footer__col-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer__links {
      list-style: none;
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 2.2;
    }

    .footer__links a:hover { text-decoration: underline; }

    .footer__bottom {
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
    }

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

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

    /* MANIFESTO */
    .manifesto {
      padding: 100px 80px;
      background: var(--sage);
      position: relative;
      overflow: hidden;
    }

    .manifesto__inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .manifesto__mono {
      margin-bottom: 40px;
    }

    .manifesto__logo {
      height: 64px;
      width: auto;
      display: block;
      margin: 0 auto;
    }

    .manifesto__text {
      font-family: var(--font-body);
      font-size: 1.15rem;
      line-height: 1.9;
      color: var(--black);
      font-weight: 400;
      letter-spacing: 0.3px;
    }

    @media (max-width: 768px) {
        .marquee__track {
          animation-duration: 28s;
        }
      .manifesto { padding: 60px 24px; }
      .manifesto__text { font-size: 1rem; line-height: 1.8; }
    }

    /* HOTSPOTS */
    .hotspot {
      position: absolute;
      z-index: 10;
      cursor: pointer;
    }

    .hotspot__dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(244, 234, 179, 0.85);
      border: 2px solid rgba(244, 234, 179, 0.95);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .hotspot__dot::after {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1.5px solid #004d87;
      background: transparent;
    }

    .hotspot:hover .hotspot__dot,
    .hotspot.active .hotspot__dot {
      background: #F4EAB3;
      transform: scale(1.15);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hotspot__dot::before {
      content: '';
      position: absolute;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(244, 234, 179, 0.5);
      animation: hotspot-pulse 2.5s ease-out infinite;
    }

    @keyframes hotspot-pulse {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(2.2); opacity: 0; }
    }

    /* Brand label — appears to the right of the dot */
    .hotspot__brand {
      position: absolute;
      left: 50px;
      top: -30px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      white-space: nowrap;
    }

    .hotspot:hover .hotspot__brand,
    .hotspot.active .hotspot__brand {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .hotspot__brand-name {
      display: block;
      font-family: 'Arial Narrow', Arial, sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #FFFFFF;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    }

    .hotspot__brand-designer {
      display: block;
      font-family: 'Xanh Mono', monospace;
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
      text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    }

    /* Description card — appears to the left of the dot */
    .hotspot__desc {
      position: absolute;
      right: 50px;
      top: -10px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      padding: 16px 18px;
      font-size: 0.8rem;
      line-height: 1.55;
      color: #1a1a1a;
      width: 200px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateX(-10px);
      transition: all 0.3s ease;
      pointer-events: none;
      font-family: 'Xanh Mono', monospace;
      font-weight: 400;
    }

    .hotspot:hover .hotspot__desc,
    .hotspot.active .hotspot__desc {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      pointer-events: auto;
    }

    .hotspot__close {
      position: absolute;
      top: 8px;
      right: 10px;
      background: none;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      color: #999;
      line-height: 1;
      padding: 2px;
    }

    .hotspot__close:hover {
      color: #333;
    }

    .hotspot__close:hover {
      opacity: 1;
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-in {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .fade-in--d1 { animation-delay: 0.1s; }
    .fade-in--d2 { animation-delay: 0.2s; }
    .fade-in--d3 { animation-delay: 0.3s; }
    .fade-in--d4 { animation-delay: 0.4s; }
    .fade-in--d5 { animation-delay: 0.5s; }

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

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

    /* HERO MICRO URGENCY */
    .hero__micro {
      width: 100%;
      font-size: 0.75rem;
      color: var(--sage);
      margin-top: 10px;
      font-weight: 300;
    }

    /* HEADER NAV */
    .header__nav {
      display: flex;
      gap: 32px;
      font-size: 0.78rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .header__nav a {
      opacity: 0.7;
      transition: opacity 0.3s;
    }

    .header__nav a:hover { opacity: 1; }
    .header__burger { display: none; }

    body.no-scroll {
      overflow: hidden;
    }

    .insta-sheet {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .insta-sheet.is-open {
      display: flex;
    }

    .insta-sheet__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(2, 18, 35, 0.72);
      backdrop-filter: blur(4px);
    }

    .insta-sheet__panel {
      position: relative;
      width: min(520px, 100%);
      background: linear-gradient(155deg, rgba(0, 58, 102, 0.95), rgba(0, 77, 135, 0.95));
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .insta-sheet__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.1rem;
      line-height: 1;
      cursor: pointer;
    }

    .insta-sheet__kicker {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 8px;
    }

    .insta-sheet__title {
      font-family: var(--font-title);
      text-transform: uppercase;
      font-size: 1.9rem;
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .insta-sheet__text {
      color: rgba(255, 255, 255, 0.86);
      line-height: 1.6;
      margin-bottom: 18px;
      font-size: 0.92rem;
    }

    .insta-sheet__actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .insta-sheet__stay,
    .insta-sheet__open {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid transparent;
    }

    .insta-sheet__stay {
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .insta-sheet__open {
      background: var(--jaune);
      color: var(--cobalt-dark);
    }

    /* ACCESSIBILITY */
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .fade-in { opacity: 1; animation: none; }
      .wa-float { animation: none; opacity: 1; transform: none; }
      .wa-float__bubble { animation: none; opacity: 1; transform: none; }
      .marquee__track { animation: none; }
      .hotspot__dot::before { animation: none; }
      .wa-float__btn::before { animation: none; }
    }

    /* Marquee pause on hover */
    .marquee:hover .marquee__track {
      animation-play-state: paused;
    }

    /* FROM THE ROOM */
    .from-the-room {
      padding: 100px 80px;
      background: var(--cobalt-dark);
      overflow: hidden;
    }

    .from-the-room__header {
      margin-bottom: 60px;
    }

    .from-the-room__title {
      font-family: var(--font-title);
      font-size: 4.5rem;
      color: var(--white);
      letter-spacing: 12px;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 12px;
    }

    .from-the-room__subtitle {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--jaune);
      opacity: 0.5;
      font-style: italic;
      letter-spacing: 0.5px;
    }

    .from-the-room__track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 40px;
    }

    .from-the-room__track::-webkit-scrollbar {
      display: none;
    }

    .from-the-room__slide {
      flex: 0 0 380px;
      scroll-snap-align: start;
    }

    /* Hide CABINE REROOM door overlays on desktop (mobile-only feature) */
    /* IMPORTANT: keep .from-the-room__door-frame visible — it wraps the image */
    @media (min-width: 769px) {
      .from-the-room__door-plate,
      .from-the-room__door,
      .from-the-room__door-monogram,
      .from-the-room__door-seam,
      .from-the-room__door-handle,
      .from-the-room__door-handle-knob {
        display: none !important;
      }
    }

    .from-the-room__img-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
    }

    .from-the-room__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
      display: block;
    }

    .from-the-room__slide:hover .from-the-room__img {
      transform: scale(1.04);
    }

    .from-the-room__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 20px 20px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    }

    .from-the-room__handle {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      color: var(--white);
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .from-the-room__piece {
      display: block;
      margin-top: 12px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: var(--jaune);
      opacity: 0.5;
      font-style: italic;
      letter-spacing: 0.5px;
    }

    /* Multi-image slide (auto-crossfade) */
    .from-the-room__multi-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .from-the-room__multi-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .from-the-room__multi-img.active {
      opacity: 1;
    }

    .from-the-room__pips {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }

    .from-the-room__pip {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transition: background 0.3s;
    }

    .from-the-room__pip.active {
      background: var(--jaune);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .services__grid { grid-template-columns: repeat(2, 1fr); }
      .hero__title { font-size: 3rem; }
      .section-title { font-size: 2.2rem; }
    }

    @media (max-width: 768px) {
      .from-the-room {
        padding: 60px 24px;
      }

      .from-the-room__title {
        font-size: 2.2rem;
        letter-spacing: 6px;
      }

      .from-the-room__subtitle {
        font-size: 0.8rem;
      }

      .from-the-room__slide {
        flex: 0 0 265px;
      }

      .from-the-room__track {
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
      }

      /* ============ POUR QUI — 2x2 grid + tap-to-reveal (mobile only) ============ */
      .manifesto__logo {
        height: 30px;
      }
      .hero__ctas .btn-secondary {
        display: none;
      }
      .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .service-card {
        padding: 20px 16px;
      }

      .service-card__title {
        font-size: 1rem;
      }

      .service-card__text {
        font-size: 0.8rem;
        line-height: 1.5;
      }

      .service-card__icon {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
      }

      /* Hide background images by default on mobile */
      .service-card__bg-img {
        opacity: 0 !important;
      }

      /* Show background image only when card is tapped/active */
      .service-card.is-tapped .service-card__bg-img.active {
        opacity: 0.35 !important;
      }

      /* ============ CABINE REROOM — Parisian Haute Couture Door (mobile only) ============ */

      .from-the-room__door-frame {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        perspective: 2000px;
        perspective-origin: 50% 50%;
        background: #0a0a0a;
        border: 1px solid rgba(244, 234, 179, 0.2);
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.3),
          0 8px 24px rgba(0, 0, 0, 0.3);
      }

      .from-the-room__door-frame .from-the-room__img-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scale(1.1);
        transition: transform 1.6s cubic-bezier(0.83, 0, 0.17, 1);
        z-index: 1;
      }

      /* Brass plate with Roman numeral */
      .from-the-room__door-plate {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 6;
        min-width: 52px;
        padding: 6px 14px;
        background: linear-gradient(180deg, #F4EAB3 0%, #D4C183 50%, #F4EAB3 100%);
        color: #4a3a10;
        font-family: var(--font-subtitle);
        font-size: 0.75rem;
        letter-spacing: 4px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        border-radius: 2px;
        box-shadow:
          0 1px 0 rgba(255, 255, 255, 0.3) inset,
          0 -1px 0 rgba(0, 0, 0, 0.15) inset,
          0 2px 6px rgba(0, 0, 0, 0.4);
        transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
        pointer-events: none;
      }

      /* Door panels */
      .from-the-room__door {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 3;
        transition: transform 1.6s cubic-bezier(0.83, 0, 0.17, 1),
                    box-shadow 1.6s cubic-bezier(0.83, 0, 0.17, 1);
        pointer-events: none;
        transform-style: preserve-3d;
        backface-visibility: hidden;
        background:
          radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
          radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.06) 0%, transparent 40%),
          repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.015) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.015) 3px),
          linear-gradient(180deg, #CDE0D6 0%, #BAD8CC 30%, #AFCEC1 65%, #9FBEB1 100%);
        background-blend-mode: normal, normal, overlay, normal;
      }

      .from-the-room__door--left {
        left: 0;
        transform-origin: left center;
        box-shadow:
          inset -3px 0 12px rgba(0, 0, 0, 0.2),
          inset 0 0 60px rgba(0, 0, 0, 0.06),
          inset 1px 1px 0 rgba(255, 255, 255, 0.15);
      }

      .from-the-room__door--right {
        right: 0;
        transform-origin: right center;
        box-shadow:
          inset 3px 0 12px rgba(0, 0, 0, 0.2),
          inset 0 0 60px rgba(0, 0, 0, 0.06),
          inset -1px 1px 0 rgba(255, 255, 255, 0.15);
      }

      /* Inner Art Deco molding */
      .from-the-room__door-inner {
        position: absolute;
        top: 8%;
        bottom: 8%;
        left: 10%;
        right: 10%;
        border: 1px solid rgba(244, 234, 179, 0.35);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.2),
          inset 0 -1px 0 rgba(0, 0, 0, 0.12),
          0 0 0 6px transparent,
          0 0 0 7px rgba(244, 234, 179, 0.12);
        border-radius: 1px;
        pointer-events: none;
      }

      .from-the-room__door-inner::before {
        content: '';
        position: absolute;
        top: 8%;
        bottom: 8%;
        left: 10%;
        right: 10%;
        border: 1px solid rgba(244, 234, 179, 0.18);
        border-radius: 1px;
      }

      .from-the-room__door-inner::after {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background:
          linear-gradient(135deg, var(--jaune) 0%, transparent 3%) top left / 12px 12px no-repeat,
          linear-gradient(225deg, var(--jaune) 0%, transparent 3%) top right / 12px 12px no-repeat,
          linear-gradient(45deg, var(--jaune) 0%, transparent 3%) bottom left / 12px 12px no-repeat,
          linear-gradient(315deg, var(--jaune) 0%, transparent 3%) bottom right / 12px 12px no-repeat;
        opacity: 0.4;
        pointer-events: none;
      }

      /* Monogram (left door only) */
      .from-the-room__door-monogram {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 38%;
        opacity: 0.12;
        pointer-events: none;
      }

      .from-the-room__door-monogram img {
        width: 100%;
        height: auto;
        filter: brightness(0) invert(1);
        mix-blend-mode: soft-light;
      }

      /* Golden seam */
      .from-the-room__door-seam {
        position: absolute;
        top: 4%;
        left: 50%;
        transform: translateX(-50%);
        width: 1.5px;
        height: 92%;
        background: linear-gradient(180deg,
          transparent 0%,
          rgba(244, 234, 179, 0.2) 8%,
          #D4C183 30%,
          var(--jaune) 50%,
          #D4C183 70%,
          rgba(244, 234, 179, 0.2) 92%,
          transparent 100%);
        z-index: 4;
        opacity: 0.85;
        transition: opacity 0.5s ease;
        pointer-events: none;
        box-shadow:
          0 0 4px rgba(244, 234, 179, 0.6),
          0 0 12px rgba(244, 234, 179, 0.3);
      }

      /* Brass knob handle */
      .from-the-room__door-handle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        width: 6px;
        height: 64px;
        background: linear-gradient(90deg,
          #8a7a3a 0%,
          #D4C183 15%,
          #F4EAB3 40%,
          #FFF4BE 50%,
          #F4EAB3 60%,
          #D4C183 85%,
          #8a7a3a 100%);
        border-radius: 3px;
        transition: opacity 0.5s ease, transform 0.8s ease;
        pointer-events: none;
        box-shadow:
          0 0 8px rgba(244, 234, 179, 0.4),
          0 2px 6px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }

      .from-the-room__door-handle-knob {
        display: block;
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #FFF4BE 0%, #F4EAB3 30%, #D4C183 70%, #8a7a3a 100%);
        box-shadow:
          0 0 6px rgba(244, 234, 179, 0.6),
          0 2px 4px rgba(0, 0, 0, 0.4),
          inset 0 1px 2px rgba(255, 255, 255, 0.4);
      }

      .from-the-room__door-handle-knob::after {
        content: '';
        position: absolute;
        bottom: -68px;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #FFF4BE 0%, #F4EAB3 30%, #D4C183 70%, #8a7a3a 100%);
        box-shadow:
          0 0 6px rgba(244, 234, 179, 0.6),
          0 -2px 4px rgba(0, 0, 0, 0.4),
          inset 0 -1px 2px rgba(255, 255, 255, 0.4);
      }

      /* Open state */
      .from-the-room__slide.is-active .from-the-room__door--left {
        transform: rotateY(-118deg);
        box-shadow:
          inset -3px 0 12px rgba(0, 0, 0, 0.2),
          inset 0 0 60px rgba(0, 0, 0, 0.06),
          20px 0 60px rgba(0, 0, 0, 0.5);
      }

      .from-the-room__slide.is-active .from-the-room__door--right {
        transform: rotateY(118deg);
        box-shadow:
          inset 3px 0 12px rgba(0, 0, 0, 0.2),
          inset 0 0 60px rgba(0, 0, 0, 0.06),
          -20px 0 60px rgba(0, 0, 0, 0.5);
      }

      .from-the-room__slide.is-active .from-the-room__img-wrapper {
        transform: scale(1);
      }

      .from-the-room__slide.is-active .from-the-room__door-seam {
        opacity: 0;
      }

      .from-the-room__slide.is-active .from-the-room__door-handle {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6);
      }

      .from-the-room__slide.is-active .from-the-room__door-plate {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
      }

      .header { padding: 0 20px; }
      .header__nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--cobalt-dark);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 99;
      }
      .header__nav.open { display: flex; }
      .header__burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
      }
      .header__burger span {
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 1px;
        transition: all 0.3s;
      }
      .hero::after {
        display: none;
      }
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: visible;
      }
      .hero__content {
        padding: 80px 24px 30px;
        text-align: center;
        align-items: center;
        order: 1;
        position: relative;
        z-index: 5;
      }
      .hero__text { text-align: left; }
      .hero__ctas { justify-content: center; flex-wrap: wrap; }
      .hero__visual {
        height: 60vh;
        min-height: 300px;
        order: 2;
        position: relative;
        overflow: hidden;
      }
      .hero-slide img {
        border-radius: 0 !important;
      }
      .hero__title { font-size: 2.2rem; }
      .proof {
        padding: 30px 24px;
        flex-wrap: wrap;
        gap: 24px;
      }
      .proof__item { flex: 1 1 40%; }
      .how, .services, .faq, .testimonial, .cta-banner { padding: 60px 24px; }
      .steps {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .testimonial__quote { font-size: 1.3rem; }
      .testimonial-slider { padding: 0 36px; }
      .testimonial-slider__arrow { width: 34px; height: 34px; font-size: 1.3rem; }
      .cta-banner__title { font-size: 2rem; }
      .section-title { font-size: 1.8rem; }
      .footer { padding: 40px 24px 24px; }
      .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
      .hotspot__brand {
        display: block;
        position: absolute;
        left: auto;
        right: calc(100% + 15px);
        top: -5px;
        bottom: auto;
        transform: none;
        text-align: right;
        white-space: normal;
        max-width: 100px;
      }
      .hotspot:hover .hotspot__brand,
      .hotspot.active .hotspot__brand {
        transform: none;
      }
      .hotspot__brand-name {
        font-size: 1rem;
        text-shadow: 0 2px 15px rgba(0,0,0,0.6);
      }
      .hotspot__brand-designer {
        font-size: 0.7rem;
      }
      .hotspot__desc {
        position: absolute;
        right: auto;
        left: calc(100% + 15px);
        top: -5px;
        bottom: auto;
        width: 140px;
        max-width: min(140px, calc(100vw - 60px));
        transform: none;
        font-size: 0.72rem;
        padding: 12px 14px;
      }
      .hotspot:hover .hotspot__desc,
      .hotspot.active .hotspot__desc {
        transform: none;
      }
      .hotspot__close {
        display: none;
      }
      .hero-nav {
        position: absolute;
        bottom: auto;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 12px;
        gap: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
      }

      .hero-nav button {
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0;
        box-shadow: none;
      }

      .hero-nav button:active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
      }

      .hero-nav__dot {
        display: none;
      }
      .wa-float { bottom: 20px; right: 20px; }
      .wa-float__bubble { display: none; }
    }

    @media (max-width: 480px) {
      .hero__title { font-size: 1.9rem; }
      .btn-wa { padding: 14px 24px; font-size: 0.85rem; }
      .proof { gap: 16px; }
      .proof__number { font-size: 1.6rem; }
      .header__wa span:not(svg) { display: none; }
      .insta-sheet__panel { padding: 22px 18px; }
      .insta-sheet__title { font-size: 1.45rem; }
      .insta-sheet__actions {
        flex-direction: column;
      }
      .insta-sheet__stay,
      .insta-sheet__open {
        width: 100%;
      }
    }

    /* GRAIN TEXTURE OVERLAY */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px 200px;
    }

    /* STAGGERED REVEAL */
    .service-card:nth-child(1) { transition-delay: 0s; }
    .service-card:nth-child(2) { transition-delay: 0.1s; }
    .service-card:nth-child(3) { transition-delay: 0.2s; }
    .service-card:nth-child(4) { transition-delay: 0.3s; }

    .step:nth-child(1) .step__number { transition-delay: 0s; }
    .step:nth-child(2) .step__number { transition-delay: 0.15s; }
    .step:nth-child(3) .step__number { transition-delay: 0.3s; }

    /* SECTION DIVIDERS */
    .how::before,
    .testimonial::before {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: rgba(255,255,255,0.15);
      margin: 0 auto 60px;
    }

    /* CUSTOM CURSOR — cursor:none applied via JS after custom cursor is created */
    body.custom-cursor,
    body.custom-cursor a,
    body.custom-cursor button,
    body.custom-cursor .hotspot,
    body.custom-cursor .faq__question,
    body.custom-cursor .service-card {
      cursor: none;
    }

    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--jaune);
      pointer-events: none;
      z-index: 99999;
      transition: transform 0.15s ease;
      transform: translate(-50%, -50%);
    }

    .cursor--hover {
      transform: translate(-50%, -50%) scale(4);
      opacity: 0.5;
    }

    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--jaune);
      opacity: 0.5;
      pointer-events: none;
      z-index: 99998;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform: translate(-50%, -50%);
    }

    .cursor-ring--hover {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0.1;
    }

    /* ADVANCED ANIMATIONS */
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes clipReveal {
      from { clip-path: inset(0 0 100% 0); }
      to { clip-path: inset(0 0 0 0); }
    }

    /* Staggered card reveals */
    .reveal.visible .service-card {
      opacity: 0;
      animation: scaleIn 0.6s ease forwards;
    }
    .reveal.visible .service-card:nth-child(1) { animation-delay: 0.05s; }
    .reveal.visible .service-card:nth-child(2) { animation-delay: 0.15s; }
    .reveal.visible .service-card:nth-child(3) { animation-delay: 0.25s; }
    .reveal.visible .service-card:nth-child(4) { animation-delay: 0.35s; }

    /* Staggered step reveals */
    .reveal.visible .step {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    .reveal.visible .step:nth-child(1) { animation-delay: 0.1s; }
    .reveal.visible .step:nth-child(2) { animation-delay: 0.25s; }
    .reveal.visible .step:nth-child(3) { animation-delay: 0.4s; }

    /* Proof items stagger */
    .reveal.visible .proof__item {
      opacity: 0;
      animation: fadeInUp 0.5s ease forwards;
    }
    .reveal.visible .proof__item:nth-child(1) { animation-delay: 0s; }
    .reveal.visible .proof__item:nth-child(2) { animation-delay: 0.1s; }
    .reveal.visible .proof__item:nth-child(3) { animation-delay: 0.2s; }
    .reveal.visible .proof__item:nth-child(4) { animation-delay: 0.3s; }

    /* ENHANCED FAQ INTERACTION */
    .faq__question::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--jaune);
      opacity: 0.05;
      transition: width 0.3s ease;
    }

    .faq__question:hover::before {
      width: 100%;
    }

    .faq__item.open .faq__question::before {
      width: 3px;
      opacity: 0.8;
    }

    /* SECTION NUMBERS */
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: currentColor;
      margin-right: 10px;
      vertical-align: middle;
    }
