  :root {
    --bg-deep: #050E1F;
    --bg-deeper: #020812;
    --bg-panel: #0A1A33;
    --bg-panel-hover: #0F2342;
    --navy-deep: #0A1F3D;
    --navy: #1E5BAA;
    --cyan: #00B8E6;
    --cyan-light: #4DD0FF;
    --cyan-glow: rgba(0, 184, 230, 0.15);
    --gold: #D4A84B;
    --gold-glow: rgba(212, 168, 75, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(77, 208, 255, 0.09), transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(30, 91, 170, 0.12), transparent 40%);
    pointer-events: none;
    z-index: -1;
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms ease, transform 800ms ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .parallax-layer {
    transition: transform 180ms linear;
    will-change: transform;
  }

  /* ============================================ */
  /* NAVIGATION */
  /* ============================================ */
  .nav {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 1320px;
    z-index: 50;
    background-color: rgba(5, 14, 31, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 300ms, border-color 300ms, box-shadow 300ms;
  }
  .nav.scrolled {
    background-color: rgba(5, 14, 31, 0.96);
    border-color: var(--border);
  }
  .nav-inner {
    padding: 0 28px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-primary);
  }
  .nav-links {
    display: none;
    align-items: center;
    gap: 36px;
  }
  @media (min-width: 1024px) { .nav-links { display: flex; } }
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 200ms;
  }
  .nav-link:hover { color: var(--text-primary); }
  .nav-link.highlight { color: var(--cyan); }

  /* ---- Dropdown ---- */
  .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 200ms;
  }
  .nav-dropdown-trigger svg {
    transition: transform 220ms ease;
  }
  .nav-dropdown.open .nav-dropdown-trigger {
    color: var(--text-primary);
  }
  .nav-dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 272px;
    background: rgba(8, 20, 44, 0.98);
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    padding: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 100;
  }
  /* small arrow */
  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: rgba(8, 20, 44, 0.98);
    border-left: 1px solid var(--border-strong);
    border-top: 1px solid var(--border-strong);
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 140ms;
  }
  .nav-dropdown-item:hover {
    background-color: rgba(255,255,255,0.05);
  }
  .nav-dropdown-item-num {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
  }
  .nav-dropdown-item-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1px;
  }
  .nav-dropdown-item-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ============================================ */
  /* BUTTONS */
  /* ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 300ms;
    border: 1px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background-color: var(--cyan);
    color: var(--bg-deep);
  }
  .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 184, 230, 0.4);
  }
  .btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-strong);
  }
  .btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
  }
  .btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .btn-ghost:hover {
    color: var(--gold);
  }

  /* ============================================ */
  /* HERO */
  /* ============================================ */
  .hero {
    position: relative;
    background-color: var(--bg-panel);
    padding: 180px 0 140px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-bg-cityscape {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 280px;
    opacity: 0.4;
  }
  .hero-bg-glow-1 {
    position: absolute;
    top: -100px; right: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.18;
    animation: drift 11s ease-in-out infinite;
  }
  .hero-bg-glow-2 {
    position: absolute;
    bottom: -200px; left: 10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.15;
    animation: drift 13s ease-in-out infinite reverse;
  }
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
      linear-gradient(var(--cyan) 1px, transparent 1px),
      linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-bg-radar {
    display: none;
  }

  @keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -16px, 0); }
  }

  @keyframes radarBeat {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.2; }
  }
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 13px;
    border-radius: 9999px;
    background-color: var(--cyan-glow);
    border: 1px solid rgba(0, 184, 230, 0.3);
    margin-bottom: 24px;
  }
  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }
  .badge-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }
  @media (min-width: 640px) {
    .badge { padding: 10px 18px; margin-bottom: 36px; gap: 10px; }
    .badge-dot { width: 8px; height: 8px; }
    .badge-text { font-size: 12px; letter-spacing: 0.18em; }
  }
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr 1fr; gap: 72px; }
  }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-visual-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 4px;
    filter: drop-shadow(0 32px 64px rgba(0, 184, 230, 0.18));
  }
  .hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(40px, 5.5vw, 82px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .hero-title-accent {
    color: var(--cyan);
    position: relative;
    display: inline-block;
  }
  .hero-title-accent svg {
    position: absolute;
    bottom: -8px; left: 0;
    width: 100%;
  }
  .hero-subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 48px;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
  }
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
  }
  .trust-badge-icon { color: var(--cyan); display: inline-flex; }

  /* ============================================ */
  /* APSAD HERO BLOCK — redesign premium gold */
  /* ============================================ */
  .apsad-hero {
    position: relative;
    padding: 100px 0;
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .apsad-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,184,230,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,184,230,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .apsad-glow-left {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,230,0.1) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
  }
  .apsad-glow-right {
    position: absolute;
    right: -100px; bottom: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,230,0.08) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
  }
  .apsad-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }
  @media (min-width: 1024px) {
    .apsad-layout { grid-template-columns: 340px 1fr; gap: 96px; }
  }

  /* Visual gauche */
  .apsad-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .apsad-tls-image {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(77, 208, 255, 0.2);
    border-radius: 8px;
  }
  .apsad-cert-logo {
    width: 106px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 12px auto 8px;
  }
  .apsad-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(0,184,230,0.1);
    border: 1px solid rgba(0,184,230,0.3);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .apsad-cert-body {
    text-align: center;
  }
  .apsad-cert-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }
  .apsad-cert-num span {
    display: block;
  }
  .apsad-cert-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
  }
  @media (max-width: 767px) {
    .apsad-visual { gap: 16px; }
    .apsad-tls-image { max-width: 100%; }
    .apsad-cert-logo { width: 92px; }
  }

  /* Contenu droite */
  .apsad-content { max-width: 720px; }
  .apsad-pill {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0,184,230,0.1);
    border: 1px solid rgba(0,184,230,0.25);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .apsad-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 24px;
  }
  .apsad-title-accent { color: var(--cyan); }
  .apsad-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 680px;
  }
  .apsad-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px 32px;
    margin-bottom: 36px;
  }
  @media (min-width: 1024px) {
    .apsad-features { grid-template-columns: 1fr 1fr; }
  }
  .apsad-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .apsad-feature strong { color: var(--text-primary); }
  .apsad-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,184,230,0.12);
    border: 1px solid rgba(0,184,230,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
  }
  .apsad-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ============================================ */
  /* STATS BAR */
  /* ============================================ */
  .stats {
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
  }
  @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
  .stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  /* ============================================ */
  /* SECTIONS */
  /* ============================================ */
  .section { padding: 96px 0; }
  @media (min-width: 1024px) { .section { padding: 120px 0; } }
  .section-panel {
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border);
  }
  .section-header {
    margin-bottom: 64px;
    max-width: 800px;
  }
  .section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
  .eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
  }

  /* ============================================ */
  /* OFFRES SOL TERRAIN — 3 offres seulement (APSAD à part) */
  /* ============================================ */
  .offers-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (min-width: 768px) { .offers-grid-3 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .offers-grid-3 { grid-template-columns: repeat(3, 1fr); } }

  .offer-card {
    position: relative;
    padding: 32px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 300ms;
    overflow: hidden;
  }
  @media (min-width: 768px) { .offer-card { padding: 40px; } }
  .offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 300ms;
  }
  .offer-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
  .offer-card:hover::before { opacity: 1; }
  .offer-card.recommended {
    border-color: var(--cyan);
    box-shadow: 0 0 40px var(--cyan-glow);
    overflow: visible;
    z-index: 2;
  }
  .offer-card.recommended::before { opacity: 1; }
  .recommended-badge {
    position: absolute;
    top: -12px; right: 32px;
    padding: 4px 14px;
    background-color: var(--cyan);
    color: var(--bg-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 10px 24px rgba(0, 184, 230, 0.35);
  }
  .offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .offer-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .offer-card.recommended .offer-icon { color: var(--cyan); }
  .offer-price { text-align: right; }
  .offer-price-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cyan);
  }
  .offer-price-unit { font-size: 12px; color: var(--text-muted); }
  .offer-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .offer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .offer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }
  .offer-features { list-style: none; margin-bottom: 28px; }
  .offer-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .offer-feature::before {
    content: "✓";
    color: var(--cyan);
    font-weight: 700;
    flex-shrink: 0;
  }
  .offer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 300ms;
  }
  .offer-link:hover { gap: 12px; }

  /* ============================================ */
  /* CONFIGURATIONS — avec illustrations tours */
  /* ============================================ */
  .configs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  @media (max-width: 767px) {
    .configs-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding-bottom: 16px;
      scrollbar-width: none;
      margin: 0 -32px;
      padding-left: 32px;
      padding-right: 32px;
    }
    .configs-grid::-webkit-scrollbar { display: none; }
    .configs-grid .config-card {
      flex: 0 0 80vw;
      max-width: 300px;
      scroll-snap-align: start;
    }
    .configs-grid .config-card:last-child { margin-right: 32px; }
  }
  @media (min-width: 768px) { .configs-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .configs-grid { grid-template-columns: repeat(4, 1fr); } }

  .config-card {
    padding: 28px 24px;
    background-color: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 300ms;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .config-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 230, 0.4);
  }
  .config-illustration {
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
  }
  .config-illustration img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
  }
  .config-illustration::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.4;
  }
  .config-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--cyan-glow);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .config-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .config-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 12px;
  }
  .config-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .config-use {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  /* ============================================ */
  /* SECTORS */
  /* ============================================ */
  .sectors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (max-width: 767px) {
    .sectors-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding-bottom: 16px;
      scrollbar-width: none;
      margin: 0 -32px;
      padding-left: 32px;
      padding-right: 32px;
    }
    .sectors-grid::-webkit-scrollbar { display: none; }
    .sectors-grid .sector-card {
      flex: 0 0 80vw;
      max-width: 300px;
      scroll-snap-align: start;
      height: auto;
      min-height: 260px;
    }
    .sectors-grid .sector-card:last-child { margin-right: 32px; }
  }
  @media (min-width: 768px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .sectors-grid { grid-template-columns: repeat(3, 1fr); } }

  .sector-card {
    padding: 32px;
    background-color: var(--bg-panel);
    background-image: linear-gradient(160deg, rgba(5, 14, 31, 0.68), rgba(5, 14, 31, 0.9)), var(--sector-bg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 300ms;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: left;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    display: flex;
    flex-direction: column;
  }
  .sector-card:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
  }
  .sector-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 230, 0.4);
    background-image: linear-gradient(160deg, rgba(5, 14, 31, 0.58), rgba(5, 14, 31, 0.82)), var(--sector-bg);
  }

  .sector-card > * {
    position: relative;
    z-index: 1;
  }

  .sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(77, 208, 255, 0.08), transparent 45%);
    opacity: 0;
    transition: opacity 300ms;
  }

  .sector-card:hover::before {
    opacity: 1;
  }

  .sector-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(0, 184, 230, 0.22), rgba(0, 184, 230, 0.04));
    border: 1px solid rgba(0, 184, 230, 0.3);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 20px;
  }
  .sector-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .sector-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .sector-cta {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cyan-light);
    opacity: 0.75;
    transition: opacity 250ms, transform 250ms;
  }
  .sector-card:hover .sector-cta {
    opacity: 1;
    transform: translateX(4px);
  }

  /* ============================================ */
  /* SECTOR MODAL */
  /* ============================================ */
  .sector-modal[hidden] { display: none; }
  .sector-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: sectorModalFade 200ms ease-out;
  }
  @keyframes sectorModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .sector-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .sector-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    background: linear-gradient(160deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    animation: sectorModalSlide 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes sectorModalSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .sector-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(2, 8, 18, 0.7);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms, transform 200ms;
  }
  .sector-modal-close:hover {
    background: var(--cyan);
    transform: rotate(90deg);
  }
  .sector-modal-media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  .sector-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .sector-modal-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 51, 0.85) 100%);
    pointer-events: none;
  }
  .sector-modal-tag {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 1;
    padding: 6px 14px;
    background: rgba(0, 184, 230, 0.18);
    border: 1px solid rgba(0, 184, 230, 0.4);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan-light);
  }
  .sector-modal-body {
    padding: 32px 28px 28px;
  }
  @media (min-width: 640px) {
    .sector-modal-body { padding: 40px 44px 36px; }
    .sector-modal-media { height: 320px; }
  }
  .sector-modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .sector-modal-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 22px;
  }
  .sector-modal-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
  }
  .sector-modal-list li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
  }
  .sector-modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 184, 230, 0.15);
    border: 1px solid var(--cyan);
  }
  .sector-modal-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
  }
  .sector-modal-footer {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  body.modal-open {
    overflow: hidden;
  }

  /* ============================================ */
  /* DIRIGEANTS */
  /* ============================================ */
  .leaders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .leaders-grid { grid-template-columns: repeat(2, 1fr); } }

  .leader-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 300ms;
  }
  .leader-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 230, 0.4);
  }
  .leader-portrait {
    height: 240px;
    background: linear-gradient(135deg, var(--bg-deeper) 0%, var(--bg-panel) 50%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .leader-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0.6;
  }
  .leader-content { padding: 32px; }
  .leader-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .leader-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .leader-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
  }
  .leader-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
  }
  .leader-meta-item { display: flex; align-items: center; gap: 6px; }

  /* ============================================ */
  /* CLIENT TESTIMONIALS */
  /* ============================================ */
  .testimonials-section {
    overflow: hidden;
  }
  .testimonials-carousel {
    --testimonial-gap: 24px;
    --testimonial-card-width: clamp(300px, 32vw, 430px);
    --testimonial-shift: calc(-3 * (var(--testimonial-card-width) + var(--testimonial-gap)));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    padding: 0;
  }
  .testimonials-track {
    display: flex;
    align-items: stretch;
    gap: var(--testimonial-gap);
    width: max-content;
    animation: testimonialMarquee 34s linear infinite;
    will-change: transform;
  }
  .testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
  }
  @keyframes testimonialMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(var(--testimonial-shift)); }
  }

  .testimonial-card {
    flex: 0 0 var(--testimonial-card-width);
    background-color: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: all 300ms;
    position: relative;
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 184, 230, 0.4);
  }
  .testimonial-quote-mark {
    font-family: 'Rajdhani', sans-serif;
    font-size: 80px;
    color: var(--cyan);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 16px;
  }
  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 24px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-deep);
    flex-shrink: 0;
  }
  .testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
  }
  @media (max-width: 767px) {
    .testimonials-carousel {
      --testimonial-gap: 16px;
      --testimonial-card-width: 86vw;
      --testimonial-shift: calc(-3 * (var(--testimonial-card-width) + var(--testimonial-gap)));
    }
    .testimonial-card {
      padding: 24px;
      min-height: 300px;
    }
  }

  /* ============================================ */
  /* CNAPS BLOCK */
  /* ============================================ */
  .cnaps-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deeper) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .cnaps-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--bg-panel);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .cnaps-card { grid-template-columns: auto 1fr; padding: 56px; }
  }
  .cnaps-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .cnaps-shield {
    width: 120px; height: 120px;
    flex-shrink: 0;
    position: relative;
  }
  .cnaps-content { position: relative; }
  .cnaps-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .cnaps-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .cnaps-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
  }
  .cnaps-number {
    display: inline-block;
    padding: 10px 16px;
    background-color: var(--bg-deep);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  /* ============================================ */
  /* WHY US */
  /* ============================================ */
  .reasons-grid {
    display: block;
    max-width: 940px;
    margin: 0 auto;
    padding-bottom: 20vh;
  }

  .reason {
    display: flex;
    gap: 24px;
    position: sticky;
    padding: 30px 28px;
    margin-bottom: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: linear-gradient(140deg, rgba(10, 31, 61, 0.95), rgba(4, 16, 38, 0.98));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    transition: border-color 250ms ease, transform 250ms ease;
  }

  .reason:hover {
    border-color: rgba(0, 184, 230, 0.35);
    transform: translateY(-2px);
  }

  .reason:last-child {
    margin-bottom: 0;
  }

  .reason:nth-child(1) { top: 110px; z-index: 1; }
  .reason:nth-child(2) { top: 130px; z-index: 2; }
  .reason:nth-child(3) { top: 150px; z-index: 3; }
  .reason:nth-child(4) { top: 170px; z-index: 4; }

  @media (max-width: 767px) {
    .reasons-grid { padding-bottom: 12vh; }
    .reason {
      padding: 24px 20px;
      gap: 16px;
      margin-bottom: 20px;
    }
    .reason:nth-child(1) { top: 90px; }
    .reason:nth-child(2) { top: 104px; }
    .reason:nth-child(3) { top: 118px; }
    .reason:nth-child(4) { top: 132px; }
  }
  .reason-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    flex-shrink: 0;
  }
  .reason-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .reason-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
  }

  /* ============================================ */
  /* CTA */
  /* ============================================ */
  .cta-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-deeper);
    overflow: hidden;
  }
  @media (min-width: 1024px) { .cta-section { padding: 140px 0; } }

  .cta-bg {
    position: absolute;
    inset: -10% -5%;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(0, 184, 230, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 60%, rgba(30, 91, 170, 0.22) 0%, transparent 55%);
    pointer-events: none;
  }
  .cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 184, 230, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 184, 230, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
  }

  .cta-card {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(15, 35, 66, 0.85) 0%, rgba(5, 14, 31, 0.92) 100%);
    border: 1px solid var(--border-strong);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
  }
  .cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.6;
  }
  .cta-card-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 65%);
    opacity: 0.12;
    pointer-events: none;
    filter: blur(20px);
  }
  .cta-card-inner {
    position: relative;
    padding: 56px 32px;
    text-align: center;
  }
  @media (min-width: 768px) { .cta-card-inner { padding: 80px 96px; } }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 184, 230, 0.3);
    background: rgba(0, 184, 230, 0.08);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan-light);
    margin-bottom: 28px;
  }
  .cta-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: ctaPulse 1.8s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
  }
  .cta-title-accent {
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .cta-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 auto 36px;
    max-width: 560px;
  }
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
  }

  .cta-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
  }
  @media (min-width: 640px) { .cta-meta { gap: 36px; } }
  .cta-meta-item {
    text-align: center;
  }
  .cta-meta-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
  }
  .cta-meta-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
  }
  .cta-meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border-strong);
  }
  @media (max-width: 539px) {
    .cta-meta-divider { display: none; }
  }

  /* ============================================ */
  /* FOOTER */
  /* ============================================ */
  .footer {
    background-color: var(--bg-deeper);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    padding-top: 56px;
  }
  .footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--navy) 20%, var(--cyan) 50%, var(--navy) 80%, transparent 100%);
    opacity: 0.7;
  }

  /* CTA strip */
  .footer-cta-strip {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 40px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
  }
  @media (min-width: 640px) {
    .footer-cta-strip {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  .footer-cta-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
  }
  .footer-cta-strip .btn {
    flex-shrink: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }
  @media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

  .footer-tagline {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 280px;
  }
  .footer-cnaps-mini {
    margin-top: 20px;
    padding: 10px 14px;
    background-color: rgba(212, 168, 75, 0.05);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 4px;
    display: inline-block;
  }
  .footer-cnaps-mini-label {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .footer-cnaps-mini-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
    opacity: 0.85;
  }
  .footer-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.2em;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .footer-list { list-style: none; }
  .footer-list li {
    margin-bottom: 11px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .footer-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 200ms;
  }
  .footer-list a:hover { color: var(--text-primary); }

  /* Contact list with icons */
  .footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .footer-contact-list svg {
    flex-shrink: 0;
    opacity: 0.5;
    color: var(--cyan);
  }

  .footer-bottom {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
  }
  @media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  }
  .footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 200ms;
  }
  .footer-links a:hover { color: var(--text-primary); }

  /* ============================================ */
  /* BURGER MENU MOBILE                           */
  /* ============================================ */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
    flex-shrink: 0;
  }
  @media (min-width: 1024px) { .nav-burger { display: none; } }
  .nav-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    transition: transform 280ms ease, opacity 200ms ease, width 200ms ease;
  }
  .nav-burger.open .nav-burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger.open .nav-burger-line:nth-child(2) { opacity: 0; width: 0; }
  .nav-burger.open .nav-burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 51;
  }
  .nav-mobile-drawer.open { display: block; }
  @media (min-width: 1024px) { .nav-mobile-drawer { display: none !important; } }
  .nav-mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,8,18,0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .nav-mobile-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--bg-panel);
    border-left: 1px solid var(--border-strong);
    padding: 0 0 48px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideInPanel 240ms ease forwards;
  }
  @keyframes slideInPanel {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  /* Header du panel (injecté via JS) */
  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 14px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--bg-panel);
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .nav-mobile-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-mobile-header .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-primary);
  }
  .nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 160ms, color 160ms;
    flex-shrink: 0;
  }
  .nav-mobile-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
  /* Contenu scrollable du panel */
  .nav-mobile-body {
    padding: 20px 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .nav-mobile-section {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 24px 0 8px;
  }
  .nav-mobile-body .nav-mobile-section:first-child { margin-top: 4px; }
  .nav-mobile-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 160ms;
    line-height: 1.4;
  }
  .nav-mobile-link:hover { color: rgba(255,255,255,0.95); }
  .nav-mobile-link.highlight { color: var(--cyan); }
  .nav-mobile-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 400;
  }
  .nav-mobile-cta { margin-top: 28px; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }

  /* ============================================ */
  /* CAROUSEL DOTS                                */
  /* ============================================ */
  .carousel-dots {
    display: none;
  }
  @media (max-width: 767px) {
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 18px;
    }
  }
  .carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-strong);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 200ms, transform 200ms;
    flex-shrink: 0;
  }
  .carousel-dot.active {
    background: var(--cyan);
    transform: scale(1.25);
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }
  }
