/* ─── VARIABLES ─── */
    :root {
      --red:       #E02125;
      --black:     #1A1C1E;
      --white:     #FFFFFF;
      --green-cta: #3DB340;
      --green-dk:  #2a8a2d;
    }

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

    body {
      font-family: 'Poppins', Arial, sans-serif;
      color: var(--white);
      background: #0e0808;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    /* Background image – layer 0 */
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url('Desktop-BG.png') center center / cover no-repeat;
    }
    /* Subtle dark vignette so text stays readable */
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(10,4,4,0.55) 0%,
        rgba(10,4,4,0.18) 55%,
        rgba(10,4,4,0.05) 100%
      );
    }

    /* ─── INNER GRID ─── */
    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      /* left content col | phone col */
      grid-template-columns: 1fr minmax(260px, 380px);
      grid-template-rows: auto 1fr;
      min-height: 100vh;
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(20px, 4vh, 40px) clamp(20px, 5vw, 60px);
      column-gap: clamp(24px, 3vw, 56px);
    }

    /* ─── LOGO (top-left, independent) ─── */
    .logo {
      grid-column: 1;
      grid-row: 1;
      align-self: start;
      display: block;
      width: clamp(120px, 14vw, 200px);
      margin-bottom: clamp(20px, 4vh, 44px);
      /* knock out the black bg of the PNG */
      mix-blend-mode: screen;
      animation: fadeUp .5s ease both;
    }
    .logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ─── CONTENT (left column, row 2) ─── */
    .content {
      grid-column: 1;
      grid-row: 2;
      align-self: center;
      animation: fadeUp .6s .08s ease both;
    }

    .content__headline {
      font-weight: 900;
      font-size: clamp(2.75rem, 5vw, 3.5rem);
      line-height: 1.05;
      margin-bottom: .3em;
    }

    .content__sub {
      font-weight: 400;
      font-size: clamp(2rem, 3.75vw, 2.5rem);
      line-height: 1.1;
      color: rgba(255,255,255,1);
      margin-bottom: 1.1em;
    }

    .content__legal {
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,1);
      margin-bottom: .45em;
    }
.content__legal2 {
      font-size: clamp(0.75rem, 1.5vw, 1.2rem);
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255,255,255,1);
      margin-bottom: .45em;
    }

    /* Feature grid */
    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(8px, 1.5vw, 22px);
      margin: clamp(18px, 3vh, 36px) 0;
    }

    .feat__title {
      font-weight: 700;
      font-size: clamp(0.9rem, 1.5vw, 1.1rem);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 7px;
    }

    .feat__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .feat__list li {
      font-size: clamp(0.875rem, 1.2vw, 1.125rem);
      font-weight: 400;
      color: rgba(255,255,255,.82);
      padding-left: 14px;
      position: relative;
    }
    .feat__list li::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green-cta);
    }

    .content__tagline {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 700;
      margin-bottom: clamp(14px, 2.5vh, 26px);
    }
    .content__tagline span { font-weight: 400; }

    /* CTA Button */
    .cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--green-cta);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: clamp(12px, 1.5vh, 18px) clamp(20px, 2.8vw, 38px);
      border-radius: 100px;
      border: none;
      cursor: pointer;
    }

    /* ─── PHONE (right column, both rows, independent) ─── */
    .phone-wrap {
      grid-column: 2;
      grid-row: 1 / 3;
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeUp .65s .16s ease both;
    }

    .phone-wrap img {
      width: clamp(200px, 24vw, 360px);
      height: auto;
      display: block;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

.FooterLegalImagesContainer{display:flex;
    min-width: 240px;
    flex: 1 1 0px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px 16px;
    flex-flow: wrap;
    gap: 24px;
    align-self: stretch;
    justify-content: space-around;
    flex-basis: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
    margin: 1em auto;}

/* ─── RESPONSIVE – Tablet ─── */
@media (max-width: 860px) {
      .hero__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 28px 24px 48px;
        row-gap: 0;
        align-items: start;
      }

      /* Logo stays top-left, row 1 */
      .logo {
        grid-column: 1; grid-row: 1;
        width: clamp(100px, 30vw, 160px);
        margin-bottom: 18px;
      }

      /* Content & phone re-ordered via flex inside a wrapper approach:
         we use grid-row ordering directly */
      .content {
        grid-column: 1; grid-row: 2;
      }

      .phone-wrap {
        grid-column: 1; grid-row: 3;
        margin-top: 36px;
      }

      .phone-wrap img { width: clamp(160px, 55vw, 300px); }

      .features {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
      }
}

/* ─── RESPONSIVE – Mobile ─── */
@media (max-width: 600px) {
	
    .hero__bg {
    background-image: url('Mobile-BG.png');
    background-position: top center;
    background-size: cover;
  }
    
    .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(8,3,3,0.30) 0%,      /* haut : bokeh visible */
      rgba(8,3,3,0.15) 45%,     /* milieu : surface lumineuse préservée */
      rgba(8,3,3,0.55) 100%     /* bas : formes géométriques lisibles */
    );
  }

      .hero {
        min-height: auto;
      }

      .hero__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0 36px;
        text-align: center;
        gap: 0;
        min-height: 100vh;
      }
        

      /* ── LOGO : caché sur mobile (le logo est dans l'encart) ── */
      .logo {
        display: none;
      }

      /* ── HEADLINE + SUB : en haut, pleine largeur, uppercase bold ── */
      .content {
        order: 1;
        width: 100%;
        padding: 20px 20px 0;
      }

      .content__headline {
        font-size: clamp(26px, 8.5vw, 38px);
        font-weight: 900;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 0.15em;
        line-height: 1.05;
      }

      .content__sub {
        font-size: clamp(11px, 3.8vw, 15px);
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        color: rgba(255,255,255,.88);
        margin-bottom: 0;
        line-height: 1.3;
      }

      /* Masquer tout le reste du contenu texte */
      .content__legal,
    .content__legal2,
      .content__tagline,
      .content .features {
        display: none;
      }

      /* Masquer le CTA desktop (on en a un mobile dédié) */
      .content .cta {
        display: none;
      }

      /* ── ENCART (remplace le téléphone sur mobile) ── */
      .phone-wrap {
        order: 2;
        margin-top: 16px;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 16px;
      }

      /* Cacher l'image téléphone desktop */
      .phone-wrap .phone-desktop {
        display: none;
      }

      /* Afficher l'encart mobile */
      .phone-wrap .phone-mobile {
        display: block !important;
        width: 100%;
        max-width: 420px;
        height: auto;
      }

      /* ── CTA mobile – sous l'encart ── */
      .mobile-cta-wrap {
        order: 3;
        width: 100%;
        display: flex !important;
        justify-content: center;
        padding: 0 20px;
        margin-top: 18px;
      }

      .mobile-cta-wrap .cta {
        display: inline-flex !important;
        font-size: 13px;
        padding: 14px 28px;
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      /* ── FEATURES MOBILE : grandes lignes uppercase centrées ── */
      .mobile-features {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        order: 4;
        margin-top: 22px;
        width: 100%;
        padding: 0 16px;
      }

      .mobile-features__item {
        font-weight: 900;
        font-size: clamp(17px, 5.8vw, 24px);
        text-transform: uppercase;
        letter-spacing: 0.03em;
        text-align: center;
        color: var(--white);
        line-height: 1.2;
      }

    }

    /* ── Éléments mobiles masqués par défaut (desktop/tablet) ── */
    .mobile-features   { display: none; }
    .mobile-cta-wrap   { display: none; }
    .phone-wrap .phone-mobile { display: none; }
