:root {
      --red:         #E52420;
      --red-dark:    #C41E1A;
      --red-alpha:   rgba(229, 36, 32, 0.12);
      --black:       #111111;
      --white:       #FFFFFF;
      --bg:          #F3F4F7;
      --text-muted:  #555E6D;
      --border:      rgba(0, 0, 0, 0.07);

      --radius-sm:   10px;
      --radius-md:   18px;
      --radius-lg:   26px;
      --radius-xl:   36px;
      --radius-pill: 9999px;

      --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
      --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
      --shadow-md:   0 10px 40px rgba(0,0,0,0.10);
      --shadow-lg:   0 24px 64px rgba(0,0,0,0.12);
      --shadow-red:  0 8px 28px rgba(229,36,32,0.35);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
      background:
        linear-gradient(145deg, rgba(250,251,252,0.55) 0%, rgba(241,242,246,0.50) 40%, rgba(235,236,241,0.55) 100%),
        url('../images/background.png') center center / cover fixed;
      color: var(--black);
      overflow-x: hidden;
      min-height: 100vh;
    }

    
    .bg-blob {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .bg-blob--top-right {
      top: -220px; right: -180px;
      width: 640px; height: 640px;
      background: radial-gradient(circle, rgba(229,36,32,0.07) 0%, transparent 68%);
    }
    .bg-blob--bottom-left {
      bottom: -200px; left: -160px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(229,36,32,0.045) 0%, transparent 68%);
    }

    
    .page {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      padding: 134px 28px 0;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1340px;
      margin-left: auto;
      margin-right: auto;
    }

    
    .navbar {
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(24px) saturate(1.6);
      -webkit-backdrop-filter: blur(24px) saturate(1.6);
      border: 1px solid rgba(255,255,255,0.92);
      border-radius: var(--radius-xl);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.05);
      padding: 14px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 22px;
      left: 28px;
      right: 28px;
      z-index: 200;
      transition: box-shadow 0.3s ease;
    }

    .navbar:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.09), 0 24px 56px rgba(0,0,0,0.07);
    }

    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo__icon {
      width: 74px;
      height: 74px;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(229,36,32,0.25));
      transition: filter 0.2s ease;
    }

    .logo:hover .logo__icon {
      filter: drop-shadow(0 4px 10px rgba(229,36,32,0.4));
    }

    .logo__wordmark {
      height: 28px;
      object-fit: contain;
    }

    
    .nav-right {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    
    .flags {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .flag {
      width: 34px;
      height: 23px;
      border: none;
      padding: 0;
      border-radius: 5px;
      overflow: hidden;
      cursor: pointer;
      background: none;
      box-shadow: 0 1px 5px rgba(0,0,0,0.18);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      flex-shrink: 0;
    }

    .flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .flag:hover {
      transform: scale(1.12);
      box-shadow: 0 3px 12px rgba(0,0,0,0.22);
    }

    .flag.is-active {
      box-shadow: 0 0 0 2.5px var(--red), 0 3px 10px rgba(229,36,32,0.3);
    }

    
    .nav-divider {
      width: 1px;
      height: 24px;
      background: rgba(0,0,0,0.1);
    }

    
    .btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--black);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 12px 26px;
      font-size: 14px;
      font-weight: 650;
      font-family: inherit;
      cursor: pointer;
      letter-spacing: 0.01em;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(0,0,0,0.22);
      transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    }

    .btn-nav:hover {
      background: #232323;
      box-shadow: 0 6px 22px rgba(0,0,0,0.3);
      transform: translateY(-1px);
    }

    .btn-nav:active {
      transform: translateY(0);
      background: #1a1a1a;
    }

    .btn-secondary:active {
      background: rgba(229,36,32,0.08);
      transform: translateY(0);
    }

    
    .hero {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      align-items: center;
      gap: 48px;
      padding: 56px 0 48px;
      min-height: calc(100vh - 110px);
    }

    
    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      animation: fadeUp 0.75s cubic-bezier(0.22,1,0.36,1) both;
    }

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

    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(229,36,32,0.09);
      border: 1px solid rgba(229,36,32,0.18);
      color: var(--red);
      border-radius: var(--radius-pill);
      padding: 6px 14px 6px 10px;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      animation: blink 2.4s ease infinite;
    }

    @keyframes blink {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(1.35); }
    }

    
    .hero-title {
      font-size: clamp(48px, 5.2vw, 76px);
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 26px;
      animation: fadeUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both;
    }

    
    .hero-sub {
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 400;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 490px;
      margin-bottom: 44px;
      animation: fadeUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.2s both;
    }

    
    .cta-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 36px;
      flex-wrap: wrap;
      animation: fadeUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.28s both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 16px 34px;
      font-size: 16px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.01em;
      box-shadow: var(--shadow-red);
      transition: all 0.22s ease;
    }

    .btn-primary:hover {
      background: var(--red-dark);
      box-shadow: 0 12px 36px rgba(229,36,32,0.45);
      transform: translateY(-2px);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 4px 14px rgba(229,36,32,0.3);
    }

    .btn-primary svg { flex-shrink: 0; }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(14px) saturate(1.4);
      -webkit-backdrop-filter: blur(14px) saturate(1.4);
      color: var(--red);
      border: 1.5px solid rgba(255, 255, 255, 0.75);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
      border-radius: 10px;
      padding: 14px 28px;
      font-size: 15.5px;
      font-weight: 650;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: all 0.22s ease;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.65);
      border-color: rgba(255,255,255,0.9);
      box-shadow: 0 4px 20px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
      transform: translateY(-1px);
    }

    .btn-secondary .arrow {
      transition: transform 0.2s ease;
    }

    .btn-secondary:hover .arrow {
      transform: translateX(3px);
    }

    
    .stores {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.75s cubic-bezier(0.22,1,0.36,1) 0.38s both;
    }

    
    .badge-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .badge-wrap:hover {
      transform: translateY(-2px) scale(1.03);
      filter: brightness(1.08);
    }

    .store-badge {
      height: 52px;
      object-fit: contain;
      display: block;
      border-radius: 11px;
    }

    .store-badge--play {
      height: 76px;
    }

    
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeRight 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s both;
    }

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

    .mockup-wrap {
      position: relative;
      width: 100%;
      isolation: isolate;
      max-width: 620px;
      animation: floatY 7s ease-in-out infinite;
    }

    @keyframes floatY {
      0%,100% { transform: translateY(0px)   rotate(0deg); }
      33%      { transform: translateY(-14px) rotate(0.4deg); }
      66%      { transform: translateY(-6px)  rotate(-0.3deg); }
    }

    .mockup-wrap::before {
      content: '';
      position: absolute;
      inset: 8% 12%;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.13) 0%, transparent 70%);
      filter: blur(28px);
      z-index: -1;
      border-radius: 50%;
    }

    .mockup-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 32px 64px rgba(0,0,0,0.18))
              drop-shadow(0 8px 20px rgba(0,0,0,0.10));
    }

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

    
    @media (max-width: 1060px) {
      .page { padding: 120px 20px 0; }

      .navbar { padding: 12px 28px; left: 20px; right: 20px; top: 18px; }

      .hero {
        gap: 32px;
        padding: 44px 0 40px;
        grid-template-columns: 1fr 1fr;
      }

      .hero-title { font-size: clamp(40px, 4.8vw, 62px); }
    }

    
    @media (max-width: 768px) {
      .page {
        padding: 84px 14px 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
      }

      
      .navbar {
        padding: 8px 14px;
        border-radius: 20px;
        top: 12px;
        left: 14px;
        right: 14px;
      }

      .logo { gap: 4px; }
      .logo__icon     { width: 44px; height: 44px; }
      .logo__wordmark { display: none; }        

      .nav-divider { display: none; }
      .nav-right   { gap: 8px; }

      
      .flags { gap: 4px; }
      .flag {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        box-shadow: none;
        background: transparent;
      }
      .flag img {
        width: 26px;
        height: 17px;
        border-radius: 3px;
        display: block;
        box-shadow: 0 1px 4px rgba(0,0,0,0.18);
      }
      .flag.is-active img {
        box-shadow: 0 0 0 2px var(--red), 0 1px 4px rgba(229,36,32,0.25);
      }

      .btn-nav {
        padding: 9px 14px;
        font-size: 13px;
        letter-spacing: 0;
        white-space: nowrap;
      }
      .btn-nav svg { display: none; }

      
      .mockup-img {
        filter: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }
      .mockup-wrap::before {
        inset: 12% 18%;
        background: radial-gradient(ellipse at center, rgba(0,0,0,0.09) 0%, transparent 70%);
        filter: blur(20px);
      }

      
      .hero {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 40px;
        min-height: auto;
        text-align: left;
      }

      
      .hero-right {
        order: 1;
        padding-top: 24px;
        padding-bottom: 8px;
      }

      .hero-left {
        order: 2;
        align-items: flex-start;
      }

      .mockup-wrap {
        max-width: 270px;
        margin: 0 auto;
        animation-name: floatYMobile;
        animation-duration: 5s;
      }

      
      .hero-title {
        font-size: clamp(32px, 8vw, 46px);
        line-height: 1.06;
        margin-bottom: 10px;
        letter-spacing: -0.025em;
      }

      
      .hero-sub {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 20px;
      }

      
      .cta-row {
        flex-direction: column;
        gap: 9px;
        margin-bottom: 18px;
        width: 100%;
      }

      .btn-primary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 14px 24px;
        font-size: 15.5px;
      }

      .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 13px 24px;
        font-size: 15px;
      }

      
      .stores {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
      }

      .badge-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .store-badge {
        height: 46px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
      }

      .store-badge--play {
        height: 70px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
      }
    }

    
    @media (max-width: 480px) {
      .page { padding: 78px 12px 0; }

      .navbar { padding: 8px 12px; border-radius: 18px; top: 10px; left: 12px; right: 12px; }
      .logo__icon { width: 40px; height: 40px; }
      .btn-nav    { padding: 8px 13px; font-size: 12.5px; }

      .flags { gap: 3px; }
      .flag  { width: 32px; height: 32px; }
      .flag img { width: 24px; height: 16px; }

      .hero { padding: 0 0 32px; }
      .hero-right { padding-top: 18px; padding-bottom: 6px; }
      .mockup-wrap { max-width: 240px; }

      .hero-title { font-size: clamp(28px, 8.5vw, 40px); margin-bottom: 8px; }
      .hero-sub   { font-size: 14.5px; margin-bottom: 16px; }

      .cta-row { gap: 8px; margin-bottom: 16px; }
      .btn-primary  { min-height: 50px; font-size: 15px; }
      .btn-secondary{ min-height: 48px; font-size: 14.5px; }

      .store-badge      { height: 42px; }
      .store-badge--play{ height: 64px; }
    }

    
    @media (max-width: 360px) {
      .page  { padding-top: 72px; }
      .navbar { padding: 7px 10px; left: 10px; right: 10px; }
      .logo__icon { width: 36px; height: 36px; }
      .btn-nav    { padding: 8px 11px; font-size: 12px; }

      .flags { gap: 2px; }
      .flag  { width: 30px; height: 30px; }
      .flag img { width: 22px; height: 15px; }

      .mockup-wrap { max-width: 220px; }
      .hero-title  { font-size: clamp(27px, 9vw, 34px); }
      .hero-sub    { font-size: 14px; }

      .stores       { flex-direction: column; gap: 8px; }
      .badge-wrap   { flex: none; width: 100%; justify-content: flex-start; }
      .store-badge      { height: 44px; }
      .store-badge--play{ height: 66px; }
    }

    
    
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.is-revealed {
      opacity: 1;
      transform: none;
    }

    @media (hover: none) and (pointer: coarse) {
      .btn-primary:hover  { transform: none; box-shadow: var(--shadow-red); }
      .btn-secondary:hover{ transform: none; }
      .btn-nav:hover      { transform: none; box-shadow: 0 4px 16px rgba(0,0,0,0.22); }
      .store-badge:hover  { transform: none; filter: none; }
      .flag:hover         { transform: none; }
      .logo:hover .logo__icon { filter: drop-shadow(0 2px 6px rgba(229,36,32,0.25)); }
    }

    
    .section-vehicules {
      padding: 80px 28px 96px;
      position: relative;
      z-index: 1;
      background: rgba(246,247,250,0.92);
      backdrop-filter: blur(16px) saturate(1.2);
      -webkit-backdrop-filter: blur(16px) saturate(1.2);
    }

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

    .vehicules__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--red);
      margin-bottom: 14px;
    }

    .vehicules__title {
      font-size: clamp(30px, 3.4vw, 50px);
      font-weight: 900;
      color: var(--black);
      letter-spacing: -0.028em;
      line-height: 1.08;
      margin-bottom: 18px;
    }

    .vehicules__desc {
      font-size: 15.5px;
      line-height: 1.72;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto;
    }

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

.vehicules__cars {
      flex: 1;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .car-card-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .car-card-label {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
    }

    .car-card {
      flex: 1;
      background: transparent;
      border-radius: 26px;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: none;
      transition: transform 0.24s cubic-bezier(0.22,1,0.36,1);
    }

    .car-card:hover {
      transform: translateY(-5px) scale(1.015);
    }

    .car-card img {
      width: 88%;
      height: 88%;
      object-fit: contain;
      display: block;
    }

    
    @media (max-width: 1060px) {
      .section-vehicules { padding: 64px 20px 80px; }
      .vehicules__title  { font-size: clamp(28px, 3.8vw, 44px); }
      .vehicules__cars   { gap: 12px; }
      .car-card          { border-radius: 22px; }
    }

    @media (max-width: 768px) {
      .section-vehicules { padding: 56px 14px 68px; }

      .vehicules__header { margin-bottom: 32px; }
      .vehicules__title  { font-size: clamp(24px, 6.5vw, 36px); }
      .vehicules__desc   { font-size: 14.5px; }

      .vehicules__row  { flex-direction: column; }
      .vehicules__cars { flex-wrap: wrap; gap: 12px; }
      .car-card-wrap   { flex: 1 1 calc(50% - 6px); min-width: 120px; }
      .car-card        { border-radius: 18px; width: 100%; }
    }

    @media (max-width: 480px) {
      .section-vehicules { padding: 44px 12px 56px; }
      .vehicules__title  { font-size: clamp(22px, 7vw, 32px); }
    }

    @media (max-width: 360px) {
      .section-vehicules { padding: 36px 10px 48px; }
      .car-card-wrap     { flex: 1 1 100%; }
      .car-card          { border-radius: 14px; }
    }

    @media (hover: none) and (pointer: coarse) {
      .car-card:hover { transform: none; }
    }

    
    .section-fonctions {
      padding: 108px 28px 128px;
      position: relative;
      z-index: 1;
      background: rgba(247,248,250,0.97);
      overflow: hidden;
    }

    
    .section-fonctions::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/background.png') center / cover;
      opacity: 0.05;
      pointer-events: none;
    }

    .section-fonctions .container { position: relative; z-index: 1; }

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

    .fonctions__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 22px;
    }

    .fonctions__label-icon {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

    .fonctions__title {
      font-size: clamp(34px, 3.8vw, 54px);
      font-weight: 900;
      color: var(--black);
      letter-spacing: -0.03em;
      line-height: 1.06;
      margin-bottom: 18px;
    }

    .fonctions__sub {
      font-size: 15.5px;
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.65;
    }

    
    .fonctions__body {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 52px;
      align-items: center;
    }

    
    .fonctions__visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fonctions__visual-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      border-radius: 16px;
    }

    
    .fonctions__features {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    
    .fonctions__features::before {
      content: '';
      position: absolute;
      right: 0;
      top: 20px;
      bottom: 20px;
      width: 1px;
      background: linear-gradient(180deg,
        transparent 0%,
        rgba(229,36,32,0.25) 8%,
        rgba(229,36,32,0.25) 92%,
        transparent 100%
      );
      transform-origin: top center;
      transform: scaleY(0);
      transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .fonctions__features.is-animated::before {
      transform: scaleY(1);
    }

    .fonctions__feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 24px 18px 0;
      border-bottom: 1px solid rgba(0,0,0,0.055);
      position: relative;
    }

    .fonctions__feature:first-child { padding-top: 0; }
    .fonctions__feature:last-child  { border-bottom: none; }

    
    .fonctions__feat-dot {
      position: absolute;
      right: -3px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 8px rgba(229,36,32,0.55);
      opacity: 0;
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    
    .fonctions__features.is-animated .fonctions__feature:nth-child(1) .fonctions__feat-dot { opacity: 1; transform: translateY(-50%) scale(1); transition-delay: 0.30s; }
    .fonctions__features.is-animated .fonctions__feature:nth-child(2) .fonctions__feat-dot { opacity: 1; transform: translateY(-50%) scale(1); transition-delay: 0.62s; }
    .fonctions__features.is-animated .fonctions__feature:nth-child(3) .fonctions__feat-dot { opacity: 1; transform: translateY(-50%) scale(1); transition-delay: 0.94s; }
    .fonctions__features.is-animated .fonctions__feature:nth-child(4) .fonctions__feat-dot { opacity: 1; transform: translateY(-50%) scale(1); transition-delay: 1.26s; }
    .fonctions__features.is-animated .fonctions__feature:nth-child(5) .fonctions__feat-dot { opacity: 1; transform: translateY(-50%) scale(1); transition-delay: 1.60s; }

    .fonctions__feat-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1.5px solid rgba(229,36,32,0.18);
      background: rgba(229,36,32,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .fonctions__feat-icon svg {
      width: 19px;
      height: 19px;
      color: var(--red);
    }

    .fonctions__feat-title {
      font-size: 14.5px;
      font-weight: 800;
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .fonctions__feat-text {
      font-size: 12.5px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    .fonctions__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      padding: 13px 28px;
      border: 1.5px solid var(--red);
      border-radius: 10px;
      color: var(--red);
      font-size: 14.5px;
      font-weight: 700;
      font-family: inherit;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: all 0.22s ease;
      align-self: flex-start;
      cursor: pointer;
    }

    .fonctions__cta:hover {
      background: var(--red);
      color: #fff;
      box-shadow: var(--shadow-red);
      transform: translateY(-1px);
    }

    
    @media (max-width: 1060px) {
      .section-fonctions { padding: 80px 20px 96px; }
      .fonctions__body   { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 768px) {
      .section-fonctions { padding: 60px 14px 72px; }
      .fonctions__header { margin-bottom: 44px; }
      .fonctions__title  { font-size: clamp(26px, 7vw, 42px); }
      .fonctions__body   { grid-template-columns: 1fr; gap: 36px; }
      .fonctions__feat-dot       { display: none; }
      .fonctions__features::before { display: none; }
    }

    @media (max-width: 480px) {
      .section-fonctions { padding: 48px 12px 60px; }
      .fonctions__title  { font-size: clamp(22px, 7.5vw, 34px); }
    }

    @media (hover: none) and (pointer: coarse) {
      .fonctions__cta:hover { background: transparent; color: var(--red); box-shadow: none; transform: none; }
    }

    
    .section-finale {
      padding: 80px 28px 100px;
      position: relative;
      z-index: 1;
    }

    .finale__card {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
      min-height: 600px;
    }

    
    .finale__left {
      background: #ffffff;
      padding: 64px 52px 0;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .finale__left-content { position: relative; z-index: 1; }

    .finale__dl-title {
      font-size: clamp(28px, 3.6vw, 48px);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.08;
      color: var(--black);
      margin-bottom: 20px;
    }

    .finale__dl-sub {
      font-size: 16px;
      line-height: 1.65;
      color: #6F6F6F;
      max-width: 340px;
    }

    .finale__phone-wrap {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-top: 32px;
      margin-bottom: -4px;
    }

    .finale__phone {
      width: 100%;
      max-width: 380px;
      height: auto;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 32px 48px rgba(0,0,0,0.18)) drop-shadow(0 8px 16px rgba(0,0,0,0.10));
      transform: rotate(-8deg) translateX(12px);
      transform-origin: bottom center;
    }

    .finale__dl-actions {
      padding: 16px 0 36px;
      display: flex;
      justify-content: center;
    }

    .finale__dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 15px 30px;
      background: var(--black);
      color: #ffffff;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
    }

    .finale__dl-btn:hover {
      background: #2a2a2a;
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.24);
    }

    .finale__dl-btn:active { transform: translateY(0); }

    
    .finale__right {
      background: #161616;
      padding: 52px 48px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .finale__contact-title {
      font-size: clamp(26px, 2.8vw, 40px);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .finale__contact-sub {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255,255,255,0.45);
      margin-bottom: 40px;
    }

    .finale__form { display: flex; flex-direction: column; gap: 0; }

    .finale__field {
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid rgba(255,255,255,0.14);
      padding-bottom: 18px;
      margin-bottom: 18px;
    }

    .finale__field:last-of-type { margin-bottom: 32px; }

    .finale__input,
    .finale__textarea {
      background: none;
      border: none;
      outline: none;
      font-family: inherit;
      font-size: 15px;
      color: #ffffff;
      padding: 8px 0 0;
      width: 100%;
      caret-color: var(--red);
    }

    .finale__input::placeholder,
    .finale__textarea::placeholder {
      color: rgba(255,255,255,0.35);
    }

    .finale__textarea {
      resize: none;
      min-height: 80px;
      line-height: 1.6;
    }

    .finale__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 18px 28px;
      background: var(--red);
      border: none;
      border-radius: 10px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      cursor: pointer;
      letter-spacing: -0.01em;
      transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
      box-shadow: 0 8px 28px rgba(229,36,32,0.35);
    }

    .finale__btn:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(229,36,32,0.45);
    }

    .finale__btn:active { transform: translateY(0); }

    .finale__btn svg { flex-shrink: 0; }

    
    @media (max-width: 960px) {
      .finale__card { grid-template-columns: 1fr; min-height: auto; }
      .finale__left { padding: 52px 40px 0; min-height: 420px; }
      .finale__phone { max-width: 280px; transform: rotate(-6deg) translateX(8px); }
      .finale__right { padding: 48px 40px; }
    }

    @media (max-width: 640px) {
      .section-finale { padding: 56px 14px 72px; }
      .finale__card { border-radius: 22px; }
      .finale__left { padding: 40px 28px 0; min-height: 340px; }
      .finale__phone { max-width: 220px; }
      .finale__right { padding: 36px 28px; }
      .finale__contact-sub { margin-bottom: 28px; }
    }

    
    .footer {
      background: var(--black);
      padding: 64px 40px 40px;
      position: relative;
      z-index: 1;
    }

    .footer__inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .footer__top {
      display: flex;
      align-items: flex-start;
      gap: 32px;
      flex-direction: column;
      padding-bottom: 48px;
    }

    .footer__logo { display: flex; align-items: center; }

    .footer__logo-img {
      height: 48px;
      width: auto;
      display: block;
      filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(2800%) hue-rotate(349deg) brightness(95%);
    }

    .footer__tagline {
      font-size: 16px;
      line-height: 1.65;
      color: rgba(255,255,255,0.38);
      font-weight: 400;
    }

    .footer__divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 36px;
    }

    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer__copy {
      font-size: 13px;
      color: rgba(255,255,255,0.25);
      white-space: nowrap;
    }

    .footer__links {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .footer__link {
      font-size: 13.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.18s ease;
    }

    .footer__link:hover { color: #ffffff; }

    @media (max-width: 900px) {
      .footer__links { gap: 20px; }
    }

    @media (max-width: 768px) {
      .footer { padding: 48px 24px 32px; }
      .footer__top { padding-bottom: 36px; }
      .footer__bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
      .footer__links { gap: 16px; }
      .footer__link { font-size: 13px; }
    }

    @media (max-width: 480px) {
      .footer { padding: 40px 16px 28px; }
      .footer__links { flex-direction: column; align-items: flex-start; gap: 14px; }
    }

    
    .social-bar {
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 150;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 14px 10px;
      background: rgba(255,255,255,0.30);
      backdrop-filter: blur(20px) saturate(1.6);
      -webkit-backdrop-filter: blur(20px) saturate(1.6);
      border: 1px solid rgba(255,255,255,0.50);
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
    }

    .social-bar__link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: var(--black);
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }

    .social-bar__link:hover {
      color: var(--red);
      background: rgba(229,36,32,0.08);
      transform: scale(1.18);
    }

    .social-bar__divider {
      width: 1px;
      height: 18px;
      background: rgba(0,0,0,0.12);
      border-radius: 1px;
      margin: 2px 0;
    }

    @media (max-width: 768px) {
      .social-bar { right: 10px; padding: 10px 7px; }
      .social-bar__link { width: 32px; height: 32px; }
      .social-bar__link svg { width: 17px; height: 17px; }
    }

    @media (max-width: 480px) {
      .social-bar { display: none; }
    }

    
    .section-faq {
      padding: 100px 28px 120px;
      position: relative;
      z-index: 1;
    }

    .faq__container {
      max-width: 820px;
      margin: 0 auto;
    }

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

    .faq__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--red);
      margin-bottom: 18px;
    }

    .faq__eyebrow-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    .faq__eyebrow-icon svg { display: block; }

    .faq__title {
      font-size: clamp(36px, 5.5vw, 64px);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--black);
      line-height: 1.05;
      margin-bottom: 22px;
    }

    .faq__intro {
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
    }

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

    .faq__item {
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(18px) saturate(1.4);
      border-radius: 20px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
      overflow: hidden;
      transition: box-shadow 0.25s ease;
    }

    .faq__item:hover {
      box-shadow: 0 6px 28px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    }

    .faq__item.is-open {
      box-shadow: 0 8px 36px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.06);
    }

    .faq__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 22px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      -webkit-tap-highlight-color: transparent;
    }

    .faq__trigger-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(229,36,32,0.09);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq__trigger-icon svg { display: block; flex-shrink: 0; }

    .faq__question {
      flex: 1;
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.35;
    }

    .faq__plus {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .faq__plus svg {
      display: block;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

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

    .faq__answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq__item.is-open .faq__answer-wrap {
      grid-template-rows: 1fr;
    }

    .faq__answer-inner {
      overflow: hidden;
    }

    .faq__answer {
      padding: 0 24px 24px 82px;
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .section-faq { padding: 72px 16px 88px; }
      .faq__header  { margin-bottom: 40px; }
      .faq__intro   { font-size: 15.5px; }
      .faq__trigger { padding: 18px 18px; gap: 14px; }
      .faq__answer  { padding: 0 18px 20px 72px; font-size: 14.5px; }
      .faq__trigger-icon { width: 36px; height: 36px; }
      .faq__question { font-size: 15px; }
    }

    @media (max-width: 480px) {
      .section-faq { padding: 56px 12px 72px; }
      .faq__trigger { padding: 16px 14px; gap: 12px; }
      .faq__answer  { padding: 0 14px 18px 62px; }
      .faq__trigger-icon { width: 32px; height: 32px; }
      .faq__question { font-size: 14px; }
      .faq__plus { width: 30px; height: 30px; }
    }

    
    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 900;
      background: rgba(10, 10, 15, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .drawer-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .driver-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 901;
      width: 100%;
      max-width: 500px;
      background: #ffffff;
      box-shadow: -24px 0 80px rgba(0,0,0,0.18);
      transform: translateX(100%);
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .driver-drawer.is-open {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px 18px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      flex-shrink: 0;
    }
    .drawer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .drawer-logo-img {
      height: 28px;
      width: auto;
      filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(2800%) hue-rotate(349deg) brightness(95%);
    }
    .drawer-logo-name {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--red);
    }
    .drawer-close {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.10);
      background: rgba(0,0,0,0.04);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s, border-color 0.18s;
      color: #555;
    }
    .drawer-close:hover { background: rgba(229,36,32,0.08); border-color: rgba(229,36,32,0.3); color: var(--red); }

    .drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 28px 28px 40px;
      scrollbar-width: thin;
      scrollbar-color: rgba(0,0,0,0.15) transparent;
    }

    .drawer-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--red);
      margin-bottom: 14px;
    }
    .drawer-eyebrow-logo {
      height: 16px;
      width: auto;
      filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(2800%) hue-rotate(349deg) brightness(95%);
    }
    .drawer-title {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: -0.8px;
      color: var(--black);
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .drawer-sub {
      font-size: 14.5px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.55;
    }

    .drawer-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .drawer-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .drawer-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .drawer-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--black);
      letter-spacing: 0.01em;
    }
    .drawer-input,
    .drawer-select {
      width: 100%;
      height: 48px;
      padding: 0 16px;
      border: 1.5px solid rgba(0,0,0,0.12);
      border-radius: var(--radius-sm);
      font-family: inherit;
      font-size: 14.5px;
      color: var(--black);
      background: #f8f9fb;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }
    .drawer-input::placeholder { color: #aab0ba; }
    .drawer-input:focus,
    .drawer-select:focus {
      border-color: var(--red);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(229,36,32,0.10);
    }
    .drawer-select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555E6D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
    }

    .drawer-vtc-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 4px;
    }
    .drawer-radio-group {
      display: flex;
      gap: 12px;
    }
    .drawer-radio-opt {
      flex: 1;
      position: relative;
    }
    .drawer-radio-opt input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }
    .drawer-radio-opt label {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      border: 1.5px solid rgba(0,0,0,0.12);
      border-radius: var(--radius-sm);
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-muted);
      background: #f8f9fb;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      gap: 8px;
    }
    .drawer-radio-opt input[type="radio"]:checked + label {
      border-color: var(--red);
      background: var(--red-alpha);
      color: var(--red);
    }
    .drawer-radio-opt label:hover { border-color: rgba(229,36,32,0.4); }

    .drawer-divider {
      height: 1px;
      background: rgba(0,0,0,0.07);
      margin: 4px 0;
    }

    .drawer-submit {
      height: 52px;
      border-radius: 10px;
      border: none;
      background: var(--red);
      color: #fff;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: var(--shadow-red);
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      margin-top: 6px;
    }
    .drawer-submit:hover {
      background: var(--red-dark);
      box-shadow: 0 12px 36px rgba(229,36,32,0.45);
      transform: translateY(-1px);
    }
    .drawer-submit:active { transform: translateY(0); }

    .drawer-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 16px;
      padding: 40px 20px;
    }
    .drawer-success.is-visible { display: flex; }
    .drawer-success__icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--red-alpha);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
    }
    .drawer-success__title {
      font-size: 22px;
      font-weight: 800;
      color: var(--black);
      letter-spacing: -0.4px;
    }
    .drawer-success__sub {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    @media (max-width: 560px) {
      .driver-drawer { max-width: 100%; border-radius: 0; }
      .drawer-row { grid-template-columns: 1fr; }
      .drawer-body { padding: 20px 18px 36px; }
      .drawer-header { padding: 18px 18px 14px; }
      .drawer-title { font-size: 26px; }
    }
