
  :root {
    --navy: #071E2A;
    --navy2: #0C2D3D;
    --blue: #D4A820;
    --blue2: #F0C030;
    --accent: #D4A820;
    --steel: #2A6878;
    --light: #0E2D3A;
    --white: #F0EDD8;
    --text: #C8DCE4;
    --muted: #6A9AAA;
    --border: #0E2A38;
    --card: #091C28;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: #071E2A;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(5,20,30,0.98);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid rgba(212,168,32,0.2);
  }
  .nav-logo {
    font-family: 'Anton', sans-serif;
    font-weight: 400; font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 3px;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--accent); color: #000000 !important;
    padding: 0.5rem 1.2rem; border-radius: 6px;
    font-weight: 700 !important; font-size: 0.85rem !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85; color: #000000 !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual-wrap { display: none; }
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(26,85,104,0.4) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,168,32,0.07) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(26,85,104,0.4) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,85,104,0.4) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 760px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,32,0.08);
    border: 1px solid rgba(212,168,32,0.42);
    color: var(--accent);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before { content: '⚙'; font-size: 0.9rem; }
  .hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400; color: var(--white);
    line-height: 1.12; letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-sub {
    font-size: 1.15rem; color: rgba(245,240,232,0.6);
    line-height: 1.7; max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-sub strong { color: var(--accent); font-weight: 600; }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    background: var(--accent); color: #000000;
    padding: 0.9rem 2rem; border-radius: 8px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 28px rgba(212,168,32,0.38);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(212,168,32,0.55); }
  .btn-secondary {
    background: rgba(212,168,32,0.06);
    border: 1px solid rgba(212,168,32,0.38);
    color: var(--accent);
    padding: 0.9rem 2rem; border-radius: 8px;
    font-weight: 500; font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-secondary:hover { background: rgba(212,168,32,0.13); }
  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212,168,32,0.15);
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .stat-val {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem; font-weight: 400; color: var(--white);
    letter-spacing: 2px;
  }
  .stat-val span { color: var(--accent); }
  .stat-label { font-size: 0.82rem; color: rgba(212,168,32,0.42); margin-top: 0.2rem; }

  /* ── SECTION BASE ── */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
    color: var(--blue); text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 400; color: var(--white);
    letter-spacing: 3px; line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-sub { font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.7; }
  .section-header { margin-bottom: 3.5rem; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  .diff-section { background: #071E2A; }
  .offers-section { background: #071E2A; }
  .carte-section { background: #071E2A; }
  .compare-section { background: #071E2A; overflow-x: auto; }
  .faq-section { background: #071E2A; }
  .diff-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .diff-card {
    background: #050505;
    border: 1px solid #1E1A10;
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .diff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,168,32,0.1), 0 0 0 1px rgba(26,85,104,0.2); }
  .diff-icon {
    width: 48px; height: 48px;
    background: rgba(212,168,32,0.07);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
    border: 1px solid rgba(212,168,32,0.38);
  }
  .diff-card h3 { font-family: 'Anton', sans-serif; font-size: 1.3rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--white); }
  .diff-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

  /* ── OFFRES ── */
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; } }

  .offer-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1E1A10;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    background: #050505;
  }
  .offer-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(212,168,32,0.11); }
  .offer-card.featured {
    border-color: var(--accent);
    box-shadow: 0 4px 40px rgba(212,168,32,0.28);
  }
  .offer-badge-top {
    background: var(--accent); color: #000000;
    text-align: center; font-size: 0.78rem; font-weight: 700;
    padding: 0.4rem; letter-spacing: 0.05em;
  }
  .offer-header {
    padding: 2rem 2rem 1.5rem;
    background: #0E3040;
  }
  .offer-tag {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
    color: rgba(212,168,32,0.5); text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .offer-name {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem; font-weight: 400; color: var(--white);
    letter-spacing: 3px; margin-bottom: 0.4rem;
  }
  .offer-subtitle { font-size: 0.88rem; color: rgba(242,237,216,0.4); line-height: 1.5; }

  .offer-price-block { padding: 1.5rem 2rem; background: #091C28; border-bottom: 1px solid #0E2A38; }
  .offer-price {
    font-family: 'Anton', sans-serif;
    font-size: 3rem; font-weight: 400; color: var(--accent);
    letter-spacing: 2px;
  }
  .offer-price span { font-size: 1.2rem; font-weight: 600; color: var(--muted); }
  .offer-price-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
  .offer-accroche {
    margin-top: 0.8rem;
    font-size: 0.9rem; color: var(--accent); font-style: italic; font-weight: 500; opacity: 0.7;
  }
  .offer-body { padding: 1.5rem 2rem; }
  .offer-includes { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
  .offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .offer-list li { font-size: 0.9rem; color: var(--text); line-height: 1.5; padding-left: 1.4rem; position: relative; }
  .offer-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
  .offer-bonus {
    margin: 1.2rem 2rem;
    background: rgba(212,168,32,0.05);
    border: 1px solid rgba(212,168,32,0.13);
    border-left: 3px solid var(--accent);
    border-radius: 8px; padding: 0.8rem 1rem;
    font-size: 0.85rem; color: var(--text);
  }
  .offer-bonus strong { color: var(--accent); }

  .offer-footer { padding: 1.2rem 2rem 2rem; }
  .btn-offer {
    display: block; text-align: center;
    padding: 0.85rem; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-offer-primary { background: #0E3040; color: var(--accent); border: 1px solid rgba(212,168,32,0.38); }
  .btn-offer-primary:hover { background: #163545; border-color: var(--accent); }
  .btn-offer-featured { background: var(--accent); color: #000000; }
  .btn-offer-featured:hover { background: #F0C030; }
  .btn-offer-dark { background: var(--accent); color: #000000; }
  .btn-offer-dark:hover { background: #F0C030; }

  /* ── A LA CARTE ── */
  .carte-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem; margin-top: 2.5rem;
  }
  .carte-item {
    background: #050505;
    border: 1px solid #1E1A10;
    border-radius: 12px; padding: 1.4rem 1.6rem;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem; transition: box-shadow 0.2s;
  }
  .carte-item:hover { box-shadow: 0 6px 24px rgba(212,168,32,0.09); border-color: rgba(212,168,32,0.3); }
  .carte-info h4 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; line-height: 1.4; }
  .carte-info span { font-size: 0.78rem; color: var(--muted); }
  .carte-price { font-family: 'Anton', sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--accent); letter-spacing: 1px; white-space: nowrap; }

  /* ── COMPARATIF ── */
  .compare-table {
    width: 100%; border-collapse: collapse; min-width: 700px;
    font-size: 0.88rem;
  }
  .compare-table th {
    padding: 1rem 1.2rem; text-align: center;
    font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.1rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--white); background: #0C2D3D;
  }
  .compare-table th:first-child { text-align: left; background: #071E2A; border-radius: 12px 0 0 0; }
  .compare-table th:last-child { border-radius: 0 12px 0 0; }
  .compare-table td { padding: 0.85rem 1.2rem; border-bottom: 1px solid #0E2A38; text-align: center; color: var(--text); }
  .compare-table td:first-child { text-align: left; font-weight: 500; color: var(--white); background: #071E2A; }
  .compare-table tr:nth-child(even) td { background: #0C2D3D; }
  .compare-table tr:nth-child(even) td:first-child { background: #030303; }
  .compare-table tr:last-child td { font-weight: 800; color: var(--accent); font-size: 1rem; background: #071E2A; border-bottom: none; }
  .compare-table .no { color: #0E2A38; }
  .compare-table .yes { color: var(--accent); font-weight: 600; }

  /* ── GARANTIE ── */
  .garantie-section { background: #071E2A; }
  .garantie-section .section-title { color: var(--white); }
  .garantie-section .section-label { color: var(--accent); }
  .garantie-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .garantie-item {
    background: rgba(26,85,104,0.15);
    border: 1px solid rgba(26,85,104,0.3);
    border-radius: 12px; padding: 1.6rem;
  }
  .garantie-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .garantie-item h4 { font-family: 'Anton', sans-serif; font-size: 1.2rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
  .garantie-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  /* ── FAQ ── */
  .faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 780px; margin: 0 auto; }
  .faq-item { background: #050505; border: 1px solid #1E1A10; border-radius: 12px; overflow: hidden; }
  .faq-q { padding: 1.2rem 1.5rem; font-weight: 600; font-size: 0.98rem; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
  .faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); font-weight: 300; transition: transform 0.2s; }
  .faq-item.open .faq-q::after { content: '–'; }
  .faq-a { display: none; padding: 0 1.5rem 1.2rem; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* ── CTA FINAL ── */
  .cta-section { background: linear-gradient(135deg, #071E2A 0%, #0C2D3D 100%); text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,168,32,0.07) 0%, transparent 70%); }
  .cta-section .section-title { color: var(--white); position: relative; }
  .cta-section .section-label { color: var(--accent); position: relative; }
  .cta-section p { color: rgba(242,237,216,0.58); font-size: 1.05rem; max-width: 560px; margin: 1rem auto 2.5rem; line-height: 1.7; position: relative; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
  .cta-note { font-size: 0.82rem; color: rgba(212,168,32,0.38); margin-top: 1.2rem; position: relative; }

  /* ── FOOTER ── */
  footer {
    background: #050F15; color: rgba(200,220,228,0.45);
    text-align: center; padding: 2rem 5%;
    font-size: 0.85rem;
    border-top: 1px solid rgba(212,168,32,0.15);
  }
  footer a { color: rgba(212,168,32,0.6); text-decoration: none; }
  footer a:hover { color: rgba(212,168,32,0.9); text-decoration: underline; }
  footer strong { color: rgba(242,237,216,0.8); font-weight: 600; }
  .footer-legal {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(212,168,32,0.07);
    font-size: 0.78rem; color: rgba(242,237,216,0.22);
  }
  .footer-legal a { color: rgba(212,168,32,0.42); font-size: 0.78rem; }
  .footer-legal a:hover { color: rgba(212,168,32,0.82); }

  /* ── ANIMATIONS ── */
  /* ── CURSOR ── */
  body { cursor: none; }
  .cursor {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(212,168,32,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: all 0.3s ease;
  }

  /* ── GEAR ANIMATION ── */
  .hero-visual-wrap {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .gear-container {
    position: relative; width: 380px; height: 380px;
  }
  .gear-ring {
    position: absolute; border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: rotateSlow linear infinite;
  }
  .gear-ring:nth-child(1) {
    width: 100%; height: 100%;
    border: 1px solid rgba(212,168,32,0.22);
    animation-duration: 28s;
  }
  .gear-ring:nth-child(2) {
    width: 72%; height: 72%;
    border: 1px solid rgba(212,168,32,0.12);
    animation-duration: 18s; animation-direction: reverse;
  }
  .gear-ring:nth-child(3) {
    width: 46%; height: 46%;
    border: 1px solid rgba(212,168,32,0.38);
    animation-duration: 12s;
  }
  .gear-ring::before {
    content: '';
    position: absolute; top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
  }
  .gear-ring:nth-child(2)::before { background: #A07820; }
  .gear-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 110px; height: 110px;
    background: #0C2D3D;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; z-index: 2;
    box-shadow: 0 0 50px rgba(212,168,32,0.22);
  }
  .gear-center-icon { font-size: 32px; }
  .gear-center-text {
    font-size: 9px; color: var(--accent);
    letter-spacing: 1.5px; font-weight: 700;
    margin-top: 4px; text-transform: uppercase;
  }
  .floating-badge {
    position: absolute;
    background: rgba(5,20,30,0.98);
    border: 1px solid rgba(212,168,32,0.2);
    backdrop-filter: blur(8px);
    padding: 10px 16px; border-radius: 10px; font-size: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    animation: floatBadge 4s ease-in-out infinite;
  }
  .fb1 { top: 8%; right: -5%; animation-delay: 0s; }
  .fb2 { bottom: 18%; left: -8%; animation-delay: 1.5s; }
  .fb3 { top: 52%; right: -12%; animation-delay: 0.9s; }
  .fb-label { color: rgba(212,168,32,0.42); font-size: 10px; display: block; margin-bottom: 3px; letter-spacing: 1px; text-transform: uppercase; }
  .fb-value { color: var(--accent); font-weight: 700; font-size: 15px; }
  .fb3 .fb-value { color: #B08830; }

  @keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  @keyframes rotateSlow {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .offers-grid { grid-template-columns: 1fr; }
  }
