  :root {
    --navy: #0A2540;
    --navy-dark: #061830;
    --navy-mid: #0F2F50;
    --water: #2EB1FF;
    --water-soft: #b8e3ff;
    --water-bright: #5cc4ff;
    --light-bg: #F5F7FA;
    --white: #ffffff;
    --dark-text: #1A1A1A;
    --soft-grey: #667788;
    --green: #22B573;
    --gold: #F4C430;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
  }

  /* ============ NAV ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 37, 64, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid rgba(46,177,255,0.2);
    transition: all 0.3s;
  }
  nav.scrolled { background: rgba(10, 37, 64, 0.95); padding: 12px 40px; }
  nav .logo {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
  nav .logo-main {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--white);
  }
  nav .logo-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  nav .logo-line {
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--water), transparent);
  }
  nav .logo-mtl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--water);
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
  nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
  nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
  }
  nav a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--water);
    transition: width 0.3s ease;
  }
  nav a:not(.cta-btn):hover::after { width: 100%; }
  nav .cta-btn {
    background: var(--water);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0 25px rgba(46,177,255,0.4);
  }
  nav .cta-btn:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(46,177,255,0.7);
  }

  /* ============ HERO ============ */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 160px 40px 130px;
    position: relative;
    overflow: hidden;
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at top right, rgba(46,177,255,0.25) 0%, transparent 50%),
      radial-gradient(ellipse at bottom left, rgba(46,177,255,0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    z-index: 0;
  }
  @keyframes gradientShift {
    0%, 100% { transform: translate(0,0); opacity: 1; }
    50% { transform: translate(-30px, 30px); opacity: 0.7; }
  }
  .particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
  .particle {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,177,255,0.3));
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.4), 0 0 15px rgba(46,177,255,0.3);
    animation: floatUp linear infinite;
  }
  @keyframes floatUp {
    0% { transform: translateY(110vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(50vh) translateX(20px) scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(-20px) scale(0.5); opacity: 0; }
  }
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
  }
  .hero-eyebrow {
    display: inline-block;
    background: rgba(46,177,255,0.15);
    color: var(--water);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(46,177,255,0.3);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
  }
  .hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }
  .hero h1 .accent {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { to { opacity: 1; } }
  .hero p.lead {
    font-size: 21px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 580px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    box-shadow: 0 10px 40px rgba(46,177,255,0.5);
  }
  .btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
  }
  .btn-primary:hover::before, .btn-secondary:hover::before { left: 100%; }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(46,177,255,0.7);
  }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
  }
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
  }
  .stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
  }
  .stat-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(-4px);
    border-color: rgba(46,177,255,0.4);
  }
  .stat-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(46,177,255,0.4);
  }
  .stat-text strong {
    display: block;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 2px;
  }
  .stat-text span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
  }

  /* ============ SECTION COMMON ============ */
  section { padding: 110px 40px; position: relative; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-header .eyebrow {
    display: inline-block;
    color: var(--water);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    border: 1px solid rgba(46,177,255,0.3);
    border-radius: 30px;
    background: rgba(46,177,255,0.05);
  }
  .section-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
  }
  .section-header p {
    color: var(--soft-grey);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
  }

  /* ============ REVEAL ON SCROLL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }
  .reveal.delay-4 { transition-delay: 0.4s; }

  /* ============ FORFAITS ============ */
  .forfaits-section { background: var(--light-bg); }
  .forfaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .forfait-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
    border: 2px solid rgba(10,37,64,0.06);
    overflow: hidden;
  }
  .forfait-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -100%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg, transparent, rgba(46,177,255,0.18), transparent);
    transform: rotate(15deg);
    transition: left 0.8s ease;
    z-index: 0;
    pointer-events: none;
  }
  .forfait-card:hover::before { left: 150%; }
  .forfait-card > * { position: relative; z-index: 1; }
  .forfait-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(10,37,64,0.18);
    border-color: rgba(46,177,255,0.3);
  }
  .forfait-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border-color: var(--water);
    transform: scale(1.04);
    box-shadow: 0 25px 80px rgba(10,37,64,0.3), 0 0 0 1px rgba(46,177,255,0.4);
  }
  .forfait-card.featured:hover { transform: scale(1.04) translateY(-10px); }
  .forfait-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(46,177,255,0.5);
    animation: badgeBob 2.2s ease-in-out infinite;
    z-index: 2;
  }
  @keyframes badgeBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
  }
  .forfait-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--navy);
    letter-spacing: 1px;
  }
  .forfait-card.featured h3 { color: var(--white); }
  .forfait-card .duration {
    color: var(--soft-grey);
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }
  .forfait-card.featured .duration { color: var(--water-soft); }
  .forfait-card .price {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -2px;
    line-height: 1;
  }
  .forfait-card.featured .price {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .forfait-card .price-suffix {
    color: var(--soft-grey);
    font-size: 14px;
    margin-bottom: 28px;
  }
  .forfait-card.featured .price-suffix { color: rgba(255,255,255,0.6); }
  .forfait-card ul {
    list-style: none;
    margin-bottom: 32px;
  }
  .forfait-card li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-text);
  }
  .forfait-card.featured li { color: rgba(255,255,255,0.9); }
  .forfait-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 16px;
  }
  .forfait-card.featured li::before { color: var(--water); }
  .forfait-card .btn-book {
    display: block;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 0.5px;
  }
  .forfait-card.featured .btn-book {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
  }
  .forfait-card .btn-book:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(10,37,64,0.25);
  }

  /* ============ ABONNEMENTS ============ */
  .abos-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .abos-section::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,177,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .abos-section .section-header h2 { color: var(--white); }
  .abos-section .section-header p { color: rgba(255,255,255,0.75); }
  .abos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .abo-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
  }
  .abo-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(46,177,255,0.4);
  }
  .abo-card.featured {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    border-color: var(--water);
    animation: featuredGlow 4s ease-in-out infinite;
  }
  @keyframes featuredGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,177,255,0); }
    50% { box-shadow: 0 0 40px rgba(46,177,255,0.5); }
  }
  .abo-card.featured:hover { transform: translateY(-12px) scale(1.02); }
  .abo-card h4 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .abo-card .price {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .abo-card .plan-includes {
    margin-bottom: 16px;
    font-size: 14px;
    opacity: 0.85;
  }
  .abo-card .perks {
    list-style: none;
    text-align: left;
    margin-top: 16px;
  }
  .abo-card .perks li {
    padding: 6px 0;
    font-size: 14px;
  }
  .abo-card .perks li::before { content: "★ "; }
  .launch-offer {
    text-align: center;
    margin-top: 40px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 28px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(244,196,48,0.3);
  }
  .launch-container { text-align: center; position: relative; z-index: 1; }

  /* ============ ADD-ONS ============ */
  .addons-section { background: var(--light-bg); }
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .addon-item {
    background: var(--white);
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e6ee;
    transition: all 0.25s;
  }
  .addon-item:hover {
    border-color: var(--water);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46,177,255,0.12);
  }
  .addon-name { font-size: 15px; color: var(--dark-text); }
  .addon-price {
    color: var(--water);
    font-weight: 800;
    font-size: 18px;
  }

  /* ============ B2B ============ */
  .b2b-section {
    background: var(--white);
  }
  .b2b-container {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10,37,64,0.2);
  }
  .b2b-container::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(46,177,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .b2b-text { position: relative; z-index: 1; }
  .b2b-text h3 {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .b2b-text h3 .accent {
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .b2b-text p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-size: 17px;
  }
  .b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .b2b-card {
    background: rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
  }
  .b2b-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(46,177,255,0.4);
    transform: translateY(-3px);
  }
  .b2b-card h5 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--water);
    font-weight: 700;
    letter-spacing: 1px;
  }
  .b2b-card .price-tag {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
    letter-spacing: 0.5px;
  }
  .b2b-card .note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
  }

  /* ============ POURQUOI ============ */
  .why-section { background: var(--light-bg); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .why-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.1);
    border-color: rgba(46,177,255,0.2);
  }
  .why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(46,177,255,0.35);
    transition: all 0.4s;
  }
  .why-card:hover .why-icon { transform: rotate(-8deg) scale(1.05); }
  .why-card h4 {
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 8px;
  }
  .why-card p {
    color: var(--soft-grey);
    font-size: 15px;
  }

  /* ============ STEPS — Comment ça marche ============ */
  .steps-section { background: #fff; padding: 100px 0; }
  .steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 60px; position: relative; }
  .steps-grid::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--water-bright), var(--water)); opacity: 0.3; z-index: 0; }
  .step-card { text-align: center; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--water-bright), var(--water));
    color: var(--navy);
    font-size: 28px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; box-shadow: 0 12px 30px rgba(46,177,255,0.3);
    border: 4px solid #fff;
  }
  .step-card h4 { color: var(--navy); font-size: 17px; margin-bottom: 8px; }
  .step-card p { color: #5a6878; font-size: 14px; line-height: 1.6; }

  /* ============ GALLERY — Avant/Après ============ */
  .gallery-section { background: var(--light-bg); padding: 100px 0; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10,37,64,0.12);
    transition: transform 0.3s;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px;
  }
  .gallery-item:hover { transform: translateY(-4px) scale(1.02); }
  .gallery-item .placeholder-icon { font-size: 48px; opacity: 0.5; margin-bottom: 8px; display: block; }

  /* ============ TESTIMONIALS ============ */
  .testimonials-section { background: #fff; padding: 100px 0; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
  .testimonial-card {
    background: linear-gradient(135deg, #f8fafc, #fff);
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    position: relative;
  }
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -8px; left: 18px;
    font-size: 80px;
    color: var(--water-bright);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
  }
  .testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
  .testimonial-text { color: #334155; font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--water));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 18px;
  }
  .testimonial-author-info strong { display: block; color: var(--navy); font-size: 15px; }
  .testimonial-author-info small { color: #64748b; }

  /* ============ ZONES ============ */
  .zones-section { background: linear-gradient(135deg, #f0f9ff, #fff); padding: 100px 0; }
  .zones-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px;
  }
  .zone-chip {
    background: #fff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
  }
  .zone-chip:hover { border-color: var(--water-bright); background: #f0f9ff; transform: translateY(-2px); }
  .zones-note { text-align: center; color: #64748b; margin-top: 24px; font-size: 14px; }

  /* ============ FAQ ============ */
  .faq-section { background: #fff; padding: 100px 0; }
  .faq-list { max-width: 820px; margin: 50px auto 0; }
  .faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item[open] { border-color: var(--water-bright); }
  .faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; font-size: 24px; color: var(--water-bright); font-weight: 300; }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item .faq-answer {
    padding: 0 24px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
  }

  /* ============ MOBILE BAR FIXE ============ */
  .mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    padding: 12px;
    z-index: 100;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.15);
    gap: 10px;
  }
  .mobile-cta-bar a, .mobile-cta-bar button {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
  }
  .mobile-cta-bar .call-btn { background: rgba(255,255,255,0.15); color: #fff; }
  .mobile-cta-bar .book-btn { background: linear-gradient(135deg, var(--water-bright), var(--water)); color: var(--navy); }

  /* ============ CONTACT ============ */
  .contact-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,177,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .contact-section .section-header h2 { color: var(--white); }
  .contact-section .section-header p { color: rgba(255,255,255,0.75); }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    color: var(--water-soft);
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--water);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(46,177,255,0.15);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(46,177,255,0.4);
  }
  .submit-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46,177,255,0.6);
  }

  /* ============ FLOATING RESERVE CTA ============ */
  .floating-cta {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 96;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(46,177,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    animation: ctaPulse 2.5s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(46,177,255,0.5), 0 0 0 0 rgba(46,177,255,0.4); }
    50% { box-shadow: 0 15px 40px rgba(46,177,255,0.5), 0 0 0 14px rgba(46,177,255,0); }
  }
  .floating-cta:hover {
    transform: translateY(-3px) scale(1.04);
    background: var(--white);
  }
  .floating-cta .spark { font-size: 18px; }

  /* ============ FLOATING SOCIAL ============ */
  .floating-social {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 96;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .floating-social a {
    width: 46px; height: 46px;
    background: rgba(10,37,64,0.92);
    border: 1px solid rgba(46,177,255,0.35);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--water);
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  .floating-social a:hover {
    background: var(--water);
    color: var(--navy);
    transform: translateX(4px) scale(1.08);
  }
  .floating-social a svg { width: 22px; height: 22px; }

  /* ============ QUICK MODAL ============ */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(6, 24, 48, 0.75);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: auto; }
  .modal-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border: 1px solid rgba(46,177,255,0.3);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  }
  .modal-card .form-row { display: flex; gap: 10px; }
  .modal-card .form-row .form-group { flex: 1; }
  .modal-overlay.open .modal-card { transform: scale(1) translateY(0); }
  .modal-card .close-modal {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,0.1);
    border: none; color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
  }
  .modal-card .close-modal:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }
  .modal-card .modal-eyebrow {
    display: inline-block;
    background: rgba(46,177,255,0.15);
    color: var(--water);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    border: 1px solid rgba(46,177,255,0.3);
  }
  .modal-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  .modal-card .modal-sub {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 24px;
  }
  .modal-card .form-group { margin-bottom: 14px; }
  .modal-card label {
    display: block;
    color: var(--water-soft);
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .modal-card input, .modal-card select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.25s;
  }
  .modal-card input:focus, .modal-card select:focus {
    outline: none;
    border-color: var(--water);
    background: rgba(255,255,255,0.12);
  }
  .modal-card .modal-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    color: var(--navy);
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(46,177,255,0.4);
  }
  .modal-card .modal-submit:hover { transform: translateY(-2px); background: var(--white); }
  .modal-card .modal-submit:disabled { opacity: 0.6; cursor: wait; }
  .modal-card .full-form-link {
    display: block;
    text-align: center;
    color: var(--water-soft);
    font-size: 13px;
    margin-top: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .modal-card .full-form-link:hover { color: var(--water); }
  .form-msg {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 12px;
    display: none;
  }
  .form-msg.success { background: rgba(34,181,115,0.15); color: #7be0a8; border: 1px solid rgba(34,181,115,0.4); display: block; }
  .form-msg.error { background: rgba(255,77,79,0.15); color: #ffb3b4; border: 1px solid rgba(255,77,79,0.4); display: block; }

  /* ============ CONTACT BLOCK (footer area) ============ */
  .contact-block {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(46,177,255,0.2);
  }
  .contact-block::before {
    content: '';
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(46,177,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-block .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
  }
  .contact-block-header { text-align: center; margin-bottom: 50px; }
  .contact-block-header .eyebrow {
    display: inline-block;
    color: var(--water);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(46,177,255,0.3);
    border-radius: 30px;
    background: rgba(46,177,255,0.05);
  }
  .contact-block-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
  }
  .contact-info { display: flex; flex-direction: column; gap: 18px; }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
  }
  .contact-item:hover {
    background: rgba(46,177,255,0.08);
    border-color: rgba(46,177,255,0.35);
    transform: translateX(4px);
  }
  .contact-item-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--water) 0%, var(--water-bright) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(46,177,255,0.3);
  }
  .contact-item-icon svg { width: 22px; height: 22px; }
  .contact-item-text small {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .contact-item-text strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
  }
  .socials-block h4 {
    color: var(--water);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .socials-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .social-tile {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .social-tile svg { width: 28px; height: 28px; }
  .social-tile:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(46,177,255,0.35);
  }
  .social-tile.instagram:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-color: transparent;
  }
  .social-tile.facebook:hover {
    background: #1877F2;
    border-color: transparent;
  }
  .social-tile.tiktok:hover {
    background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%);
    border-color: transparent;
  }
  .socials-note {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin-top: 18px;
    line-height: 1.5;
  }

  /* ============ POPUP OFFER ============ */
  .popup-offer {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 340px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 26px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--water);
    z-index: 95;
    transform: translateX(420px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .popup-offer.show { transform: translateX(0); }
  .popup-offer.hidden { display: none; }
  .popup-offer .close-x {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.1);
    border: none; color: var(--white);
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
  }
  .popup-offer .close-x:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }
  .popup-offer .gift {
    font-size: 32px;
    display: inline-block;
    animation: giftBounce 1.5s ease-in-out infinite;
  }
  @keyframes giftBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
  }
  .popup-offer h4 {
    font-size: 19px;
    margin: 10px 0 8px;
    color: var(--water);
  }
  .popup-offer p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .popup-offer p strong { color: var(--water); }
  .popup-offer .promo-code {
    background: rgba(46,177,255,0.12);
    border: 2px dashed var(--water);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 14px;
  }
  .popup-offer .promo-code small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .popup-offer .promo-code strong {
    font-size: 22px;
    color: var(--water);
    letter-spacing: 3px;
  }
  .popup-offer .timer {
    font-size: 12px;
    color: var(--gold);
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 40px;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid var(--water);
  }
  footer .social {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  footer a {
    color: var(--water);
    text-decoration: none;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--water-bright); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    nav { padding: 12px 20px; }
    nav ul { gap: 14px; }
    nav ul li:nth-child(-n+3) { display: none; }
    .hero { padding: 120px 20px 80px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 40px; }
    section { padding: 70px 20px; }
    .section-header h2 { font-size: 32px; }
    .forfaits-grid, .abos-grid, .why-grid, .addons-grid { grid-template-columns: 1fr; }
    .forfait-card.featured { transform: none; }
    .forfait-card.featured:hover { transform: translateY(-10px); }
    .b2b-container { grid-template-columns: 1fr; padding: 30px; }
    .b2b-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .popup-offer { width: calc(100% - 32px); right: 16px; bottom: 90px; }
    .floating-cta { padding: 14px 22px; font-size: 14px; bottom: 16px; right: 16px; }
    .floating-social { bottom: 16px; left: 16px; flex-direction: row; }
    .floating-social a { width: 42px; height: 42px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-block { padding: 60px 20px 30px; }
    .contact-block-header h2 { font-size: 28px; }
    .modal-card { padding: 28px 22px; }
    .modal-card h3 { font-size: 22px; }
    /* Nouvelles sections — responsive */
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
    /* Bandeau mobile fixe visible */
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 80px; } /* éviter que le bandeau cache du contenu */
    .floating-cta { bottom: 90px; }
    .popup-offer { bottom: 160px; }
  }

  /* ============ NAV CARDS — Grille de pages sur l'accueil ============ */
  .nav-pages-section { background: linear-gradient(135deg, #f0f9ff, #fff); padding: 90px 0; }
  .nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 50px;
  }
  .nav-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 24px rgba(10,37,64,0.07);
    border: 1.5px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .nav-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--water-bright), var(--water));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-card:hover {
    transform: translateY(-6px);
    border-color: var(--water-bright);
    box-shadow: 0 14px 36px rgba(14,165,233,0.18);
  }
  .nav-card:hover::before { transform: scaleX(1); }
  .nav-card .nav-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
  }
  .nav-card h4 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 700;
  }
  .nav-card p {
    color: #5a6878;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }
  .nav-card .nav-card-arrow {
    margin-top: 14px;
    color: var(--water);
    font-weight: 700;
    font-size: 14px;
  }
  @media (max-width: 900px) {
    .nav-cards-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ NAV CARDS — Grille de pages sur l'accueil ============ */
  .nav-pages-section { background: linear-gradient(135deg, #f0f9ff, #fff); padding: 90px 0; }
  .nav-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 50px; }
  .nav-card {
    background: #fff; border-radius: 18px; padding: 28px 22px;
    text-align: center; text-decoration: none; color: inherit;
    box-shadow: 0 6px 24px rgba(10,37,64,0.07);
    border: 1.5px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
  }
  .nav-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--water-bright), var(--water));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .nav-card:hover { transform: translateY(-6px); border-color: var(--water-bright); box-shadow: 0 14px 36px rgba(14,165,233,0.18); }
  .nav-card:hover::before { transform: scaleX(1); }
  .nav-card .nav-card-icon { font-size: 36px; margin-bottom: 12px; display: block; }
  .nav-card h4 { color: var(--navy); font-size: 17px; margin-bottom: 6px; font-weight: 700; }
  .nav-card p { color: #5a6878; font-size: 13px; line-height: 1.5; margin: 0; }
  .nav-card .nav-card-arrow { margin-top: 14px; color: var(--water); font-weight: 700; font-size: 14px; }
  @media (max-width: 900px) { .nav-cards-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ============ BOUTONS 3D — effet bouton poussoir ============ */

  /* --- Bouton "Réserver" sur les cartes forfaits (btn-book) --- */
  .btn-book {
    box-shadow:
      0 6px 0 -1px rgba(10, 37, 64, 0.85),
      0 10px 18px -4px rgba(10, 37, 64, 0.45);
    transform: translateY(0);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .btn-book:hover {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -1px rgba(10, 37, 64, 0.85),
      0 16px 26px -4px rgba(10, 37, 64, 0.55);
  }
  .btn-book:active {
    transform: translateY(4px);
    box-shadow:
      0 2px 0 -1px rgba(10, 37, 64, 0.85),
      0 4px 8px -2px rgba(10, 37, 64, 0.35);
  }

  /* --- Bouton primaire navy "Voir les forfaits / S'abonner / Devis flotte" --- */
  .btn-primary {
    box-shadow:
      0 6px 0 -1px #061830,
      0 10px 20px -4px rgba(10, 37, 64, 0.45);
    transform: translateY(0);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -1px #061830,
      0 16px 28px -4px rgba(10, 37, 64, 0.55);
  }
  .btn-primary:active {
    transform: translateY(4px);
    box-shadow:
      0 2px 0 -1px #061830,
      0 4px 10px -2px rgba(10, 37, 64, 0.35);
  }

  /* --- Bouton secondaire bleu eau "Réserver maintenant" --- */
  .btn-secondary {
    box-shadow:
      0 6px 0 -1px #0769a3,
      0 10px 20px -4px rgba(14, 165, 233, 0.5);
    transform: translateY(0);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -1px #0769a3,
      0 16px 28px -4px rgba(14, 165, 233, 0.6);
  }
  .btn-secondary:active {
    transform: translateY(4px);
    box-shadow:
      0 2px 0 -1px #0769a3,
      0 4px 10px -2px rgba(14, 165, 233, 0.4);
  }

  /* --- Bouton CTA nav (top droite) "Réserver" --- */
  .cta-btn {
    box-shadow:
      0 4px 0 -1px #0769a3,
      0 7px 14px -3px rgba(14, 165, 233, 0.5);
    transform: translateY(0);
    transition: all 0.16s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 6px 0 -1px #0769a3,
      0 10px 18px -3px rgba(14, 165, 233, 0.6);
  }
  .cta-btn:active {
    transform: translateY(3px);
    box-shadow:
      0 1px 0 -1px #0769a3,
      0 3px 6px -2px rgba(14, 165, 233, 0.4);
  }

  /* --- Bouton modal "Envoyer ma demande" --- */
  .modal-submit {
    box-shadow:
      0 6px 0 -1px #0769a3,
      0 10px 20px -4px rgba(14, 165, 233, 0.55);
    transform: translateY(0);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .modal-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -1px #0769a3,
      0 16px 28px -4px rgba(14, 165, 233, 0.65);
  }
  .modal-submit:active:not(:disabled) {
    transform: translateY(4px);
    box-shadow:
      0 2px 0 -1px #0769a3,
      0 4px 10px -2px rgba(14, 165, 233, 0.45);
  }

  /* --- Bouton flottant 3D (Réserver en 30 sec) --- */
  .floating-cta {
    box-shadow:
      0 8px 0 -2px #0769a3,
      0 14px 30px -6px rgba(14, 165, 233, 0.5);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .floating-cta:hover {
    transform: translateY(-4px);
    box-shadow:
      0 12px 0 -2px #0769a3,
      0 22px 40px -6px rgba(14, 165, 233, 0.65);
  }
  .floating-cta:active { transform: translateY(4px); box-shadow: 0 4px 0 -2px #0769a3, 0 8px 14px -4px rgba(14, 165, 233, 0.4); }

  /* --- Bouton "Publier mon avis →" --- */
  #avisSubmit {
    box-shadow:
      0 6px 0 -1px #0769a3,
      0 10px 20px -4px rgba(14, 165, 233, 0.5);
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  #avisSubmit:hover {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -1px #0769a3,
      0 16px 28px -4px rgba(14, 165, 233, 0.6);
  }
  #avisSubmit:active {
    transform: translateY(4px);
    box-shadow:
      0 2px 0 -1px #0769a3,
      0 4px 10px -2px rgba(14, 165, 233, 0.4);
  }

  /* --- Bandeau mobile fixe boutons 3D --- */
  .mobile-cta-bar a, .mobile-cta-bar button {
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .mobile-cta-bar .call-btn { box-shadow: 0 3px 0 -1px rgba(255,255,255,0.35); }
  .mobile-cta-bar .book-btn { box-shadow: 0 4px 0 -1px #0769a3, 0 6px 14px -2px rgba(14,165,233,0.4); }
  .mobile-cta-bar .book-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 -1px #0769a3, 0 2px 6px -2px rgba(14,165,233,0.3); }

  /* --- Cartes nav-card avec léger effet 3D au hover (déjà existant — boost) --- */
  .nav-card {
    box-shadow:
      0 4px 0 -1px rgba(10, 37, 64, 0.08),
      0 6px 24px rgba(10,37,64,0.07);
  }
  .nav-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 8px 0 -1px rgba(46, 177, 255, 0.25),
      0 14px 36px rgba(14,165,233,0.18);
  }

  /* --- Cartes forfait avec subtle 3D push --- */
  .forfait-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  }
  .forfait-card:hover {
    transform: translateY(-10px);
  }
  .forfait-card.featured:hover { transform: translateY(-14px) scale(1.03); }

  /* --- Cards abonnement même style --- */
  .abo-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  }
  .abo-card:hover { transform: translateY(-8px); }
  .abo-card.featured:hover { transform: translateY(-12px) scale(1.03); }

  /* ============ NAV CARD ICONS 3D — Badges circulaires premium ============ */
  .nav-card-icon-3d {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--water-bright) 0%, var(--water) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.5),
      inset 0 -3px 6px rgba(10,37,64,0.25),
      0 10px 20px rgba(14,165,233,0.35),
      0 5px 0 -1px #0769a3;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-card-icon-3d::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 65%; height: 18%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
    pointer-events: none;
  }
  .nav-card-icon-3d svg {
    width: 36px;
    height: 36px;
    fill: #fff;
    stroke: #fff;
    filter: drop-shadow(0 2px 3px rgba(10,37,64,0.4));
    position: relative;
    z-index: 1;
  }
  .nav-card:hover .nav-card-icon-3d {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.6),
      inset 0 -3px 6px rgba(10,37,64,0.3),
      0 16px 28px rgba(14,165,233,0.55),
      0 8px 0 -1px #0769a3;
  }

  /* Variations de couleur par card pour un look "ensemble premium" */
  .nav-card[data-color="emerald"] .nav-card-icon-3d {
    background: linear-gradient(145deg, #34d399 0%, #059669 100%);
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.5),
      inset 0 -3px 6px rgba(6,78,59,0.25),
      0 10px 20px rgba(16,185,129,0.35),
      0 5px 0 -1px #047857;
  }
  .nav-card[data-color="emerald"]:hover .nav-card-icon-3d {
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.6),
      inset 0 -3px 6px rgba(6,78,59,0.3),
      0 16px 28px rgba(16,185,129,0.55),
      0 8px 0 -1px #047857;
  }
  .nav-card[data-color="amber"] .nav-card-icon-3d {
    background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.5),
      inset 0 -3px 6px rgba(120,53,15,0.25),
      0 10px 20px rgba(245,158,11,0.35),
      0 5px 0 -1px #b45309;
  }
  .nav-card[data-color="amber"]:hover .nav-card-icon-3d {
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.6),
      inset 0 -3px 6px rgba(120,53,15,0.3),
      0 16px 28px rgba(245,158,11,0.55),
      0 8px 0 -1px #b45309;
  }
  .nav-card[data-color="violet"] .nav-card-icon-3d {
    background: linear-gradient(145deg, #a78bfa 0%, #7c3aed 100%);
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.5),
      inset 0 -3px 6px rgba(76,29,149,0.25),
      0 10px 20px rgba(124,58,237,0.35),
      0 5px 0 -1px #5b21b6;
  }
  .nav-card[data-color="violet"]:hover .nav-card-icon-3d {
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.6),
      inset 0 -3px 6px rgba(76,29,149,0.3),
      0 16px 28px rgba(124,58,237,0.55),
      0 8px 0 -1px #5b21b6;
  }
  .nav-card[data-color="rose"] .nav-card-icon-3d {
    background: linear-gradient(145deg, #fb7185 0%, #e11d48 100%);
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.5),
      inset 0 -3px 6px rgba(136,19,55,0.25),
      0 10px 20px rgba(225,29,72,0.35),
      0 5px 0 -1px #9f1239;
  }
  .nav-card[data-color="rose"]:hover .nav-card-icon-3d {
    box-shadow:
      inset 0 2px 5px rgba(255,255,255,0.6),
      inset 0 -3px 6px rgba(136,19,55,0.3),
      0 16px 28px rgba(225,29,72,0.55),
      0 8px 0 -1px #9f1239;
  }

  /* Texte plus chic sur les cards */
  .nav-card h4 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .nav-card p { font-size: 13.5px; color: #5a6878; min-height: 36px; }
  .nav-card .nav-card-arrow {
    margin-top: 16px;
    color: var(--water);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  .nav-card:hover .nav-card-arrow { letter-spacing: 1.2px; transition: letter-spacing 0.3s; }

  /* Hide the old emoji icon */
  .nav-card .nav-card-icon { display: none; }

  /* ============ MOBILE NAV — Hamburger + drawer ============ */
  .nav-hamburger {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }
  #mainNav.scrolled .nav-hamburger span { background: var(--navy); }
  body.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 360px;
    height: 100vh;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    z-index: 1100;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 28px 32px;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  body.menu-open .nav-mobile-menu { right: 0; }
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    backdrop-filter: blur(4px);
  }
  .nav-mobile-close {
    position: absolute;
    top: 18px; right: 18px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .nav-mobile-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }
  .nav-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
  .nav-mobile-menu li { margin-bottom: 6px; }
  .nav-mobile-menu li a {
    display: block;
    padding: 16px 18px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
  }
  .nav-mobile-menu li a:hover, .nav-mobile-menu li a.active {
    background: rgba(46,177,255,0.12);
    color: #fff;
    border-left-color: var(--water-bright);
  }
  .cta-btn-mobile {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 16px;
    background: linear-gradient(135deg, var(--water-bright), var(--water));
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(14,165,233,0.35);
  }

  /* ============ FIXES MOBILE — breakpoint 900px et 480px ============ */
  @media (max-width: 900px) {
    /* Cancel: ne plus cacher les items, on les met dans le drawer */
    nav ul.nav-links li:nth-child(-n+3) { display: list-item; }
    nav .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    nav { padding: 14px 18px; }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 32px; line-height: 1.15; }
    .hero .lead { font-size: 15px; }
    .hero-eyebrow { font-size: 12px; }
    .section-header h2 { font-size: 26px; line-height: 1.2; }
    .section-header p { font-size: 14px; }
    section { padding: 56px 16px; }
    .container { padding: 0 4px; }
    .forfait-card { padding: 28px 20px; }
    .forfait-card h3 { font-size: 24px; }
    .forfait-card .price { font-size: 38px; }
    .abo-card { padding: 28px 22px; }
    .modal-card { padding: 22px 16px; max-height: 92vh; }
    .modal-card h3 { font-size: 19px; }
    .modal-card .modal-sub { font-size: 13px; }
    #q-slots-list { grid-template-columns: repeat(3,1fr) !important; }
    .form-row { gap: 8px; }
    .zones-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .zone-chip { padding: 12px 14px; font-size: 13px; }
    .faq-item summary { padding: 16px 18px; font-size: 14px; }
    .faq-item .faq-answer { padding: 0 18px 18px; font-size: 14px; }
    .nav-cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .nav-card { padding: 24px 18px; }
    .contact-item-text strong { font-size: 14px; word-break: break-word; }
    .logo-main { font-size: 14px; letter-spacing: 1.5px; }
    .logo-mtl { font-size: 11px; }
    footer { padding: 24px 16px; font-size: 12px; }
    footer .social { gap: 14px; flex-wrap: wrap; justify-content: center; }
    .floating-cta { padding: 12px 16px; font-size: 13px; }
  }

  @media (max-width: 380px) {
    .hero h1 { font-size: 28px; }
    .section-header h2 { font-size: 22px; }
    .nav-mobile-menu { width: 92%; }
    #q-slots-list { grid-template-columns: repeat(2,1fr) !important; }
  }
