@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

/* ===================== RESET & BASE ===================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Syne', sans-serif;
      color: #0D2340;
      background: #ffffff;
      font-size: 16px;
      line-height: 1.6;
    }
    .content-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ===================== VARIABLES ===================== */
    :root {
      --blue: #38B6FF;
      --navy: #0D2340;
      --navy-mid: #16355C;
      --off-white: #F4F8FC;
      --text: #0D2340;
      --text-muted: #4A6B8A;
      --border: #D0E4F2;
    }

    /* ===================== LAYOUT ===================== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

    /* ===================== NAVIGATION ===================== */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 32px;
      background: #0D2340;
      position: sticky;
      top: 0;
      z-index: 100;
      gap: 16px;
    }
    .nav-logo { display: flex; align-items: center; }
    .logo-img { height: 56px; width: auto; object-fit: contain; display: block; }
    .nav-links { display: flex; gap: 4px; align-items: center; }
    .nav-link { font-size: 13px; color: #ffffff; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all 0.2s; font-weight: 500; background: transparent; border: none; font-family: 'Syne', sans-serif; text-decoration: none; display: inline-block; }
    .nav-link:hover, .nav-link.current { color: #ffffff; background: rgba(56,182,255,0.22); }
    .nav-cta { font-size: 13px; background: #38B6FF; color: #0D2340; padding: 10px 22px; border-radius: 999px; cursor: pointer; font-weight: 700; border: none; font-family: 'Syne', sans-serif; transition: opacity 0.2s; white-space: nowrap; flex-shrink: 0; text-decoration: none; display: inline-block; }
    .nav-cta:hover { opacity: 0.85; }
    .nav-cta-mobile { display: none; }
    .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 110; }
    .burger span { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; transition: all 0.3s; }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ACCUEIL ===================== */
    .hero {
      background: #0D2340;
      padding: 72px 0;
      position: relative;
      overflow: hidden;
      min-height: 420px;
    }
    .hero-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .hero-content {
      padding: 0 0 64px;
      position: relative;
      z-index: 2;
    }
    .hero-title { margin-bottom: 24px; }
    .hero-t1 {
      display: block;
      font-family: 'Instrument Serif', serif;
      font-size: 38px;
      line-height: 1.1;
      font-weight: 400;
      color: #ffffff;
    }
    .hero-t2 {
      display: block;
      font-family: 'Instrument Serif', serif;
      font-size: 38px;
      line-height: 1.2;
      font-weight: 400;
      font-style: italic;
      color: #38B6FF;
    }

    .hs-num {
      font-family: 'Instrument Serif', serif;
      font-size: 38px;
      color: #ffffff;
      line-height: 1;
    }
    .hs-lbl { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 4px; font-weight: 400; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(56,182,255,0.15);
      border: 0.5px solid rgba(56,182,255,0.35);
      border-radius: 999px;
      padding: 6px 16px;
      font-size: 12px;
      color: #38B6FF;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      max-width: 480px;
      line-height: 1.75;
      margin-bottom: 44px;
      font-weight: 400;
    }
    .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(56,182,255,0.15);
      border: 0.5px solid rgba(56,182,255,0.35);
      border-radius: 999px;
      padding: 6px 16px;
      font-size: 12px;
      color: #38B6FF;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .btn-primary {
      background: #38B6FF;
      color: #0D2340;
      padding: 15px 34px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Syne', sans-serif;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,182,255,0.38); }
    .btn-secondary {
      background: transparent;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,0.28);
      font-family: 'Syne', sans-serif;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: #38B6FF; color: #ffffff; }
    .hs-num {
      font-family: 'Instrument Serif', serif;
      font-size: 38px;
      color: #ffffff;
      line-height: 1;
    }
    .hs-num span { color: #38B6FF; }
    .hs-lbl { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 4px; font-weight: 400; }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 48px;
      padding-top: 36px;
      padding-bottom: 48px;
      border-top: 0.5px solid rgba(255,255,255,0.15);
      flex-wrap: wrap;
    }

    .hero-logo-img {
      position: absolute;
      right: calc((100vw - 1100px) / 2 + 20px);
      top: 50%;
      transform: translateY(-50%);
      width: 380px;
      opacity: 0.95;
    }

/* ===================== WELCOME ===================== */
    .welcome { padding: 60px 0; background: #F4F8FC; border-bottom: 1px solid #D0E4F2; }
    .welcome-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; }
    .welcome-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #38B6FF; font-weight: 600; margin-bottom: 16px; }
    .welcome-title { font-family: 'Instrument Serif', serif; font-size: 38px; font-weight: 400; line-height: 1.15; margin-bottom: 20px; color: #0D2340; }
    .welcome-title em { font-style: italic; }
    .welcome-text { font-size: 15px; color: #4A6B8A; line-height: 1.8; margin-bottom: 28px; }
    .welcome-right { display: flex; flex-direction: column; gap: 16px; }
    .wcard {
      background: #ffffff;
      border: 0.5px solid #D0E4F2;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .wcard-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: rgba(56,182,255,0.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .wcard-icon svg { width: 20px; height: 20px; stroke: #38B6FF; fill: none; stroke-width: 1.8; }
    .wcard-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: #0D2340; }
    .wcard-text { font-size: 13px; color: #4A6B8A; line-height: 1.55; }

    /* ===================== SERVICES SECTION ===================== */
    .services-section { padding: 60px 0; background: #ffffff; }
    .sec-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #38B6FF; font-weight: 600; margin-bottom: 12px; text-align: center; }
    .sec-title { font-family: 'Instrument Serif', serif; font-size: 38px; font-weight: 400; text-align: center; margin-bottom: 10px; color: #0D2340; }
    .sec-sub { font-size: 15px; color: #4A6B8A; text-align: center; margin-bottom: 52px; }
    .services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
    .svc-card {
      background: #F4F8FC;
      border: 0.5px solid #D0E4F2;
      border-radius: 16px;
      padding: 36px;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      min-width: 0;
    }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: #38B6FF;
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .svc-card:hover::before { transform: scaleX(1); }
    .svc-card:hover {
      border-color: rgba(56,182,255,0.4);
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(13,35,64,0.09);
    }
    .svc-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      background: rgba(56,182,255,0.12);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .svc-icon svg { width: 26px; height: 26px; stroke: #38B6FF; fill: none; stroke-width: 1.7; }
    .svc-name { font-size: 21px; font-weight: 600; margin-bottom: 12px; color: #0D2340; }
    .svc-desc { font-size: 14px; color: #4A6B8A; line-height: 1.7; margin-bottom: 26px; }
    .svc-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: #38B6FF;
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Syne', sans-serif;
      padding: 0;
      transition: gap 0.2s;
    }
    .svc-cta:hover { gap: 14px; }
    .svc-cta-arr {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(56,182,255,0.15);
      font-size: 15px;
      transition: all 0.2s;
      color: #38B6FF;
    }
    .svc-card:hover .svc-cta-arr { background: #38B6FF; color: #0D2340; }

    /* ===================== CTA BLOCK ===================== */
    .cta-block {
      background: #0D2340;
      border-radius: 18px;
      padding: 52px 56px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      margin: 0 32px 60px;
    }
    .cta-block-title {
      font-family: 'Instrument Serif', serif;
      font-size: 30px;
      color: #ffffff;
      max-width: 420px;
      font-weight: 400;
      line-height: 1.25;
    }
    .cta-block-title em { font-style: italic; color: #38B6FF; }
    .cta-block-btn {
      background: #38B6FF;
      color: #0D2340;
      padding: 15px 32px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Syne', sans-serif;
      white-space: nowrap;
      flex-shrink: 0;
      transition: opacity 0.2s;
      text-decoration: none;
    }
    .cta-block-btn:hover { opacity: 0.85; }

    /* ===================== INNER HERO ===================== */
    .inner-hero {
      background: #0D2340;
      padding: 68px 32px 56px;
      position: relative;
      overflow: hidden;
    }
    .inner-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 340px; height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(56,182,255,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 22px; cursor: pointer; }
    .breadcrumb span { color: #38B6FF; }
    .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
    .breadcrumb a:hover { color: #38B6FF; }
    .inner-title { font-family: 'Instrument Serif', serif; font-size: 48px; color: #ffffff; font-weight: 400; margin-bottom: 16px; }
    .inner-title em { font-style: italic; color: #38B6FF; }
    .inner-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 540px; line-height: 1.75; }

    /* ===================== INNER BODY ===================== */
    .inner-body { padding: 52px 0; }
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 52px; }
    .feat-card { background: #F4F8FC; border: 0.5px solid #D0E4F2; border-radius: 14px; padding: 26px; }
    .feat-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: rgba(56,182,255,0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .feat-icon svg { width: 22px; height: 22px; stroke: #38B6FF; fill: none; stroke-width: 1.8; }
    .feat-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #0D2340; }
    .feat-text { font-size: 13px; color: #4A6B8A; line-height: 1.65; }

    /* ===================== STEPS ===================== */
    .steps { margin-bottom: 52px; }
    .steps-title { font-family: 'Instrument Serif', serif; font-size: 30px; margin-bottom: 32px; color: #0D2340; }
    .steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 1fr; gap: 2px; background: #D0E4F2; border-radius: 20px; overflow: hidden; }
    .step { background: #fff; padding: 36px 32px; position: relative; overflow: hidden; transition: background .25s; display: flex; flex-direction: column; }
    .step-text { flex: 1; }
    .step:hover { background: #F4F8FC; }
    .step:nth-child(1) { border-radius: 18px 0 0 0; }
    .step:nth-child(2) { border-radius: 0 18px 0 0; }
    .step:nth-child(3) { border-radius: 0 0 0 18px; }
    .step:nth-child(4) { border-radius: 0 0 18px 0; }
    .step-num {
      font-family: 'Instrument Serif', serif;
      font-size: 100px;
      font-weight: 400;
      color: #38B6FF;
      opacity: .07;
      position: absolute;
      top: -16px; right: 16px;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .step-icon { width: 48px; height: 48px; border-radius: 14px; background: #EEF7FF; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .step-icon svg { width: 22px; height: 22px; stroke: #38B6FF; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #0D2340; line-height: 1.25; }
    .step-text { font-size: 13px; color: #4A6B8A; line-height: 1.75; margin-bottom: 16px; }
    .step-conclusion { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: #F4F8FC; border-radius: 10px; border-left: 3px solid #38B6FF; border-top-left-radius: 0; border-bottom-left-radius: 0; }
    .step-conclusion-text { font-size: 12px; font-weight: 600; color: #0D2340; line-height: 1.5; }

    /* ===================== FOOTER ===================== */
    footer {
      background: #0D2340;
      padding: 40px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-logo-img { height: 44px; width: auto; object-fit: contain; }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: #38B6FF; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

    /* ===================== RESPONSIVE ===================== */
    /* ===================== PARTNER SCROLL ===================== */
    #partnerTrack:hover { animation-play-state: paused; }

    /* ===================== PAGE CONTACT ===================== */
    .contact-hero { background: #0D2340; padding: 80px 40px 70px; position: relative; overflow: hidden; text-align: center; }
    .contact-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(56,182,255,0.12) 0%, transparent 70%); pointer-events: none; }
    .contact-hero::after  { content: ''; position: absolute; bottom: -60px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(56,182,255,0.07) 0%, transparent 70%); pointer-events: none; }
    .contact-body { padding: 64px 40px 72px; background: #F4F8FC; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; max-width: 1000px; margin: 0 auto; align-items: start; }
    .ci-label2 { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: #38B6FF; font-weight: 600; margin-bottom: 16px; }
    .ci-title2 { font-family: 'Instrument Serif', serif; font-size: 30px; font-weight: 400; color: #0D2340; margin-bottom: 28px; line-height: 1.2; }
    .ci-title2 em { font-style: italic; }
    .ci-card2 { background: #fff; border: 0.5px solid #D0E4F2; border-radius: 14px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; transition: all .2s; }
    .ci-card2:hover { border-color: rgba(56,182,255,.45); transform: translateX(3px); }
    .ci-icon2 { width: 40px; height: 40px; border-radius: 10px; background: rgba(56,182,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ci-icon2 svg { width: 18px; height: 18px; stroke: #38B6FF; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .ci-info-lbl { font-size: 11px; letter-spacing: .8px; text-transform: uppercase; color: #8AAEC4; font-weight: 600; margin-bottom: 4px; }
    .ci-info-v { font-size: 14px; font-weight: 600; color: #0D2340; line-height: 1.5; }
    .ci-info-v a { color: #0D2340; text-decoration: none; }
    .ci-info-v a:hover { color: #38B6FF; }
    .ci-divider2 { width: 40px; height: 2px; background: #38B6FF; border-radius: 2px; margin: 24px 0; }
    .ci-hours2 { background: #fff; border: 0.5px solid #D0E4F2; border-radius: 14px; padding: 20px; }
    .ci-hours-t { font-size: 13px; font-weight: 700; color: #0D2340; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .ci-hours-t::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #38B6FF; }
    .ci-hr { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 0.5px solid #EEF4FB; }
    .ci-hr:last-child { border-bottom: none; }
    .ci-hr-day { color: #4A6B8A; }
    .ci-hr-time { font-weight: 600; color: #0D2340; }
    .ci-hr-time.closed { color: #8AAEC4; font-weight: 400; }
    .cf-box { background: #fff; border: 0.5px solid #D0E4F2; border-radius: 18px; padding: 36px 34px; }
    .cf-box-title { font-family: 'Instrument Serif', serif; font-size: 26px; font-weight: 400; color: #0D2340; margin-bottom: 6px; }
    .cf-box-sub { font-size: 13px; color: #4A6B8A; margin-bottom: 28px; line-height: 1.6; }
    .cf-sep2 { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
    .cf-sep2::before, .cf-sep2::after { content: ''; flex: 1; height: 0.5px; background: #D0E4F2; }
    .cf-sep2 span { font-size: 11px; color: #8AAEC4; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
    .cf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .cf-grp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .cf-lbl { font-size: 12px; font-weight: 600; color: #0D2340; letter-spacing: .3px; }
    .cf-lbl span { color: #38B6FF; }
    .cf-inp { width: 100%; padding: 11px 14px; border: 1px solid #D0E4F2; border-radius: 10px; font-size: 14px; font-family: 'Syne', sans-serif; color: #0D2340; background: #F9FBFE; outline: none; transition: all .2s; }
    .cf-inp:focus { border-color: #38B6FF; background: #fff; box-shadow: 0 0 0 3px rgba(56,182,255,.1); }
    .cf-inp::placeholder { color: #A8C4D8; }
    .cf-sel { width: 100%; padding: 11px 14px; border: 1px solid #D0E4F2; border-radius: 10px; font-size: 14px; font-family: 'Syne', sans-serif; color: #0D2340; background: #F9FBFE; outline: none; appearance: none; cursor: pointer; }
    .cf-sel:focus { border-color: #38B6FF; box-shadow: 0 0 0 3px rgba(56,182,255,.1); }
    .cf-ta { width: 100%; padding: 12px 14px; border: 1px solid #D0E4F2; border-radius: 10px; font-size: 14px; font-family: 'Syne', sans-serif; color: #0D2340; background: #F9FBFE; outline: none; resize: vertical; min-height: 110px; transition: all .2s; }
    .cf-ta:focus { border-color: #38B6FF; background: #fff; box-shadow: 0 0 0 3px rgba(56,182,255,.1); }
    .cf-ta::placeholder { color: #A8C4D8; }
    .cf-chk { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
    .cf-chk input { margin-top: 2px; accent-color: #38B6FF; width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
    .cf-chk label { font-size: 12px; color: #4A6B8A; line-height: 1.55; cursor: pointer; }
    .cf-chk label a { color: #38B6FF; text-decoration: none; }
    .cf-send { width: 100%; background: #38B6FF; color: #0D2340; padding: 15px 32px; border-radius: 999px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; font-family: 'Syne', sans-serif; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
    .cf-send:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,182,255,.38); }
    .cf-send svg { width: 18px; height: 18px; stroke: #0D2340; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .cf-success { display: none; margin-top: 20px; background: #EAF3DE; border: 0.5px solid #C0DD97; border-radius: 12px; padding: 18px 20px; align-items: center; gap: 12px; }
    .cf-error { display: none; margin-top: 20px; background: #FCEBEB; border: 0.5px solid #F09595; border-radius: 12px; padding: 18px 20px; align-items: center; gap: 12px; }
    .contact-map { background: #fff; padding: 56px 40px 64px; }
    .contact-map-inner { max-width: 1000px; margin: 0 auto; }

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

    /* ===================== CAROUSEL ===================== */
    #partnerWrapper {
      overflow: hidden;
      position: relative;
      padding: 32px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }
    #partnerTrack {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 32px;
      width: max-content;
      animation: scrollLogos 22s linear infinite;
    }
    #partnerTrack:hover { animation-play-state: paused; }
    @keyframes scrollLogos {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .p-item {
      flex-shrink: 0;
      width: 160px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 10px;
      border: 0.5px solid #E8EFF6;
      padding: 10px 12px;
      box-sizing: border-box;
    }
    .p-item img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

/* ===================== RESPONSIVE MOBILE ===================== */
@media (max-width: 768px) {

  /* NAV MOBILE */
  nav { padding: 12px 16px; position: relative; }
  .logo-img { height: 44px; }
  .nav-cta-desktop { display: none !important; }
  .burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #0D2340;
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 15px; padding: 12px 16px; border-radius: 8px; }
  .nav-cta-mobile { display: block !important; margin-top: 8px; text-align: center; background: #38B6FF; color: #0D2340; font-weight: 700; padding: 10px 20px; border-radius: 999px; font-size: 13px; text-decoration: none; width: fit-content; margin-left: auto; margin-right: auto; }

  /* HERO */
  .hero { padding: 0; min-height: auto; }
  .hero-wrap { flex-direction: column; padding: 0; }
  .hero-content { flex: none; max-width: 100%; order: 2; padding: 20px 20px 0; }
  .hero-t1 { font-size: 24px; }
  .hero-t2 { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .hero-stats { padding-bottom: 32px; }

  /* CONTENT  .hero-logo-img { display: none; }
  /* CONTENT WRAP */
  .content-wrap { padding: 0 20px; }

  /* WELCOME */
  .welcome-inner { grid-template-columns: 1fr !important; gap: 24px; }

  /* SERVICES GRID */
  .services-grid { grid-template-columns: 1fr !important; }
  .svc-card { padding: 24px; }

  /* STEPS GRID — passe en 1 colonne */
  .steps-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  .step:nth-child(1),
  .step:nth-child(2),
  .step:nth-child(3),
  .step:nth-child(4) { border-radius: 0 !important; }
  .step:first-child { border-radius: 18px 18px 0 0 !important; }
  .step:last-child  { border-radius: 0 0 18px 18px !important; }

  /* FEATURE GRID */
  .feature-grid { grid-template-columns: 1fr !important; }

  /* CTA BLOCK */
  .cta-block { flex-direction: column; text-align: center; padding: 32px 20px; margin: 0 0 40px; }
  .cta-block-title { font-size: 22px; }

  /* INNER PAGES */
  .inner-hero { padding: 40px 20px 32px; }
  .inner-title { font-size: 32px; }
  .inner-body { padding: 32px 20px; }

  /* AMBASSADEURS — 1 colonne */
  div[style*="grid-template-columns:repeat(3"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* CONTACT */
  .contact-body { padding: 32px 20px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .cf-box { padding: 24px 20px; }
  .cf-row2 { grid-template-columns: 1fr !important; }
  .contact-map { padding: 32px 20px; }

  /* FOOTER */
  footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  /* SECTION PADDINGS */
  .welcome { padding: 40px 0; }
  .services-section { padding: 40px 0; }
  .sec-title { font-size: 28px; }
  .steps-title { font-size: 24px; }
  .inner-body .steps { margin-bottom: 32px; }

  /* AMBASSADEURS TEAM GRID */
  .team-grid { grid-template-columns: 1fr !important; }

  /* PARTNER CAROUSEL */
  #partnerWrapper { margin: 0 20px; }
}

@media (max-width: 480px) {
  .hero-t1 { font-size: 22px; }
  .hero-t2 { font-size: 22px; }
  nav { padding: 10px 12px; }
  .nav-link { font-size: 11px; padding: 5px 8px; }
}

/* ===================== ALIGNMENT FIX ===================== */
.inner-hero,
.inner-body,
.welcome,
.services-section,
.contact-body,
.contact-map {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  /* Uniform padding on all sections */
  .inner-hero { padding: 32px 20px 24px !important; }
  .inner-body,
  .inner-body .content-wrap { padding: 24px 20px !important; }
  .welcome { padding: 32px 20px !important; }
  .services-section { padding: 32px 20px !important; }
  .contact-body { padding: 24px 20px !important; }
  .contact-map { padding: 24px 20px !important; }
  .sec-label, .sec-title, .sec-sub { text-align: left !important; }
  /* Hero content-wrap already has 20px padding */
  .hero-stats-outer .hero-stats,
  .hero-stats-inner { padding: 0 20px !important; }
  /* Reorder hero : photo first, text below */
  .hero { display: flex; flex-direction: column; }
  .hero-content { order: 2; }
  .hero-stats-outer { order: 3; }
}
