:root {
    --navy: #0a1628;
    --navy-2: #0f1e35;
    --navy-3: #16263f;
    --navy-line: #1c2e4a;
    --blue: #1a5bcf;
    --blue-bright: #2870e8;
    --orange: #ed5a1f;
    --orange-bright: #ff6a2c;
    --light: #e8edf4;
    --white: #ffffff;
    --mute: rgba(255,255,255,0.65);
    --mute-2: rgba(255,255,255,0.78);
    --line: rgba(255,255,255,0.08);
    --line-strong: rgba(255,255,255,0.16);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  ::selection { background: var(--orange); color: var(--white); }
  body {
    font-family: 'Archivo', -apple-system, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  /* ── Background grid (subtle blueprint feel) ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
  }

  /* ════════ NAV ════════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--line);
    height: 64px;
    display: flex; align-items: center;
  }
  .nav-inner { width: 100%; padding: 0 48px; display: flex; justify-content: space-between; align-items: center; }
  .nav-brand { display: flex; align-items: center; gap: 14px; }
  .nav-mark {
    width: 32px; height: 32px;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem; color: var(--white);
    letter-spacing: -0.05em;
    position: relative;
  }
  .nav-mark::after {
    content: ''; position: absolute;
    bottom: -3px; right: -3px;
    width: 8px; height: 8px;
    background: var(--blue-bright);
  }
  .nav-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: var(--white);
  }
  .nav-name span { color: var(--mute); font-weight: 400; font-family: 'Archivo', sans-serif; }
  .nav-links { display: flex; gap: 40px; }
  .nav-links a {
    color: var(--mute);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
    padding: 8px 0;
  }
  .nav-links a::before {
    content: attr(data-num);
    color: var(--orange);
    margin-right: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-right { display: flex; align-items: center; gap: 24px; }
  .lang-toggle { display: flex; border: 1px solid var(--line-strong); }
  .lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
  }
  .lang-btn.active { background: var(--orange); color: var(--white); }
  .nav-cta {
    background: var(--white);
    color: var(--navy);
    padding: 10px 18px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--orange); color: var(--white); }

  /* ════════ HERO ════════ */
  .hero {
    min-height: 100vh;
    padding: 64px 0 0 0;
    position: relative;
    display: flex;
    align-items: stretch;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100%;
    min-height: calc(100vh - 64px);
  }

  /* Left side — content */
  .hero-left {
    padding: 80px 6% 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid var(--line-strong);
  }
  .hero-meta {
    display: flex; align-items: center; gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    font-weight: 500;
  }
  .hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: #1ed98b; box-shadow: 0 0 12px rgba(30,217,139,0.6); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
  .hero-meta-divider { color: rgba(255,255,255,0.4); }

  .hero-display {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.5rem, 8.5vw, 9rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  .hero-display .word-1 { display: block; }
  .hero-display .word-2 { display: block; color: var(--orange); }
  .hero-display .word-3 { display: block; }
  .hero-display .accent {
    display: inline-block;
    position: relative;
  }
  .hero-display .accent::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 0.8s 1.2s ease forwards;
  }
  @keyframes scaleIn { to { transform: scaleX(1); } }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--mute-2);
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 300;
  }
  .hero-sub strong { color: var(--white); font-weight: 600; }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 18px 32px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
    border: 1px solid var(--orange);
  }
  .btn-primary:hover { background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(237,90,31,0.35); }
  .btn-primary svg { transition: transform 0.25s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 28px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--line-strong);
    transition: all 0.25s;
  }
  .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }

  .hero-foot {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .hero-foot-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--mute);
    letter-spacing: 0.1em;
  }
  .hero-foot-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-top: 6px; letter-spacing: 0.05em; }

  /* Right side — visual */
  .hero-right {
    background:
      radial-gradient(circle at 30% 20%, rgba(26,91,207,0.2) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(237,90,31,0.12) 0%, transparent 50%),
      var(--navy-2);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .hero-right-top {
    position: relative; z-index: 2;
    display: flex; justify-content: space-between; align-items: flex-start;
  }
  .hero-tag-block {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--mute);
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
  .hero-tag-block .tag-num { color: var(--orange); }

  .compass {
    width: 56px; height: 56px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    color: var(--mute);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
  }
  .compass::before {
    content: 'N'; position: absolute; top: -16px; color: var(--orange); font-weight: 700;
  }

  /* Van container */
  .van-stage {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
  }
  .van-stage svg { width: 100%; max-width: 540px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); animation: float 5s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

  .van-stage::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.5;
  }

  .hero-right-bottom {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 24px;
    margin-top: 24px;
  }
  .stat-mini { padding: 0 16px; border-right: 1px solid var(--line); }
  .stat-mini:last-child { border-right: none; }
  .stat-mini-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-mini-num span { color: var(--orange); font-size: 1rem; }
  .stat-mini-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ════════ TICKER ════════ */
  .ticker {
    background: var(--orange);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
  }
  .ticker-track {
    display: flex;
    gap: 64px;
    animation: scroll 40s linear infinite;
    width: max-content;
  }
  .ticker-item {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 64px;
    white-space: nowrap;
  }
  .ticker-item::after {
    content: '✦';
    color: rgba(255,255,255,0.5);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ════════ SECTION SHELL ════════ */
  .section { padding: 140px 48px; position: relative; z-index: 2; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 96px;
    align-items: end;
  }
  .section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-num::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
  }
  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
  }
  .section-title .em { color: var(--orange); }
  .section-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mute-2);
    font-weight: 300;
    max-width: 520px;
  }

  /* ════════ ABOUT ════════ */
  #about {
    background: var(--navy-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .about-block {
    padding: 32px 0 0 32px;
    border-left: 1px solid var(--line-strong);
    position: relative;
  }
  .about-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 56px;
    background: var(--orange);
  }
  .about-block-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
  }
  .about-block-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .about-block-text {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--mute-2);
    font-weight: 300;
  }
  .about-block-text strong { color: var(--white); font-weight: 600; }

  /* ════════ TEAM ════════ */
  #team { background: var(--navy); }
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line-strong);
  }
  .team-card {
    padding: 56px 48px;
    background: var(--navy-2);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
  }
  .team-card:first-child { border-right: 1px solid var(--line-strong); }
  .team-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: var(--orange);
    transition: width 0.4s ease;
  }
  .team-card:hover::after { width: 100%; }
  .team-card:hover { background: var(--navy-3); }

  .team-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
  }
  .team-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.15em;
  }
  .team-id span { color: var(--orange); }
  .team-avatar {
    width: 56px; height: 56px;
    background: var(--navy-3);
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    color: var(--orange);
    letter-spacing: -0.02em;
  }
  .team-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .team-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .team-bio {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--mute-2);
    font-weight: 300;
    flex: 1;
  }
  .team-tags {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .team-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    padding: 6px 12px;
    background: rgba(237,90,31,0.08);
    color: var(--orange);
    border: 1px solid rgba(237,90,31,0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ════════ SERVICES ════════ */
  #services {
    background: var(--navy-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line-strong);
  }
  .service {
    padding: 56px 40px;
    background: var(--navy);
    position: relative;
    border-right: 1px solid var(--line-strong);
    transition: all 0.4s ease;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    cursor: default;
  }
  .service:last-child { border-right: none; }
  .service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .service:hover::before { opacity: 0.06; }
  .service:hover { background: var(--navy-3); }

  .service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
  }
  .service-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4.5rem;
    color: var(--navy-line);
    line-height: 0.85;
    letter-spacing: -0.05em;
    transition: color 0.4s;
  }
  .service:hover .service-num { color: var(--orange); }

  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
  }
  .service-icon svg { width: 22px; height: 22px; }

  .service-body { position: relative; z-index: 2; }
  .service-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .service-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--mute-2);
    font-weight: 300;
    margin-bottom: 28px;
  }
  .service-features { display: flex; flex-direction: column; gap: 8px; }
  .service-feature {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.1em;
    display: flex; align-items: center; gap: 10px;
  }
  .service-feature::before {
    content: '+'; color: var(--orange); font-weight: 700;
  }

  /* ════════ FIELD OPS / FLOTTE EN ACTION ════════ */
  .fieldops {
    background: var(--navy-2);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .fieldops-head {
    padding: 120px 48px 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: end;
    border-bottom: 1px solid var(--line);
  }
  .fieldops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-strong);
  }
  .fieldops-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a1628;
    border-right: 1px solid var(--line-strong);
  }
  .fieldops-frame:last-child { border-right: none; }
  .fieldops-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: grayscale(15%) contrast(1.05) brightness(0.92);
  }
  .fieldops-frame:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.05) brightness(1);
  }
  .fieldops-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0) 40%, rgba(10,22,40,0.85) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .fieldops-corner {
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--orange);
    z-index: 3;
    pointer-events: none;
  }
  .fieldops-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
  .fieldops-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
  .fieldops-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
  .fieldops-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }
  .fieldops-tag {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--white);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(237,90,31,0.95);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .fieldops-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 8px var(--white);
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .fieldops-caption {
    position: absolute;
    left: 24px; right: 24px; bottom: 24px;
    z-index: 4;
  }
  .fieldops-caption-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }
  .fieldops-caption-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .fieldops-caption-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .fieldops-meta-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-strong);
    background: var(--navy);
  }
  .fieldops-meta {
    padding: 32px 24px;
    border-right: 1px solid var(--line);
  }
  .fieldops-meta:last-child { border-right: none; }
  .fieldops-meta-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .fieldops-meta-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .fieldops-meta-value .em { color: var(--orange); }

  /* ════════ COVERAGE / CTA STRIP ════════ */
  .coverage {
    background: var(--navy);
    padding: 100px 48px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--line);
  }
  .coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .coverage-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .coverage-title .em { color: var(--orange); }
  .coverage-text {
    color: var(--mute-2);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
  }
  .coverage-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .coverage-meta-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.1em;
  }
  .coverage-meta-item strong {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    color: var(--white);
    font-size: 1.4rem;
    margin-top: 8px;
    letter-spacing: -0.01em;
  }

  /* Map visual */
  .map-visual {
    position: relative;
    aspect-ratio: 1.1 / 1;
    background: var(--navy-2);
    border: 1px solid var(--line-strong);
    overflow: hidden;
  }
  .map-visual svg { width: 100%; height: 100%; display: block; }
  .map-corner {
    position: absolute;
    width: 12px; height: 12px;
    border: 2px solid var(--orange);
  }
  .map-corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
  .map-corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
  .map-corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
  .map-corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }
  .map-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .map-label-r {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.15em;
  }

  @keyframes ping {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
  }

  /* ════════ REVIEWS / TÉMOIGNAGES ════════ */
  #reviews {
    background: var(--navy-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line-strong);
  }
  .review {
    padding: 48px 36px;
    background: var(--navy);
    position: relative;
    border-right: 1px solid var(--line-strong);
    transition: all 0.4s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .review:last-child { border-right: none; }
  .review::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
  }
  .review:hover::before { transform: scaleY(1); }
  .review:hover { background: var(--navy-3); }

  .review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .review-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
  }
  .review-stars {
    display: flex;
    gap: 3px;
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .review-quote {
    font-family: 'Archivo', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 32px;
    flex: 1;
    position: relative;
    z-index: 2;
  }
  .review-quote::before {
    content: '"';
    font-family: 'Archivo Black', sans-serif;
    position: absolute;
    top: -32px;
    left: -8px;
    font-size: 5rem;
    color: rgba(237,90,31,0.12);
    line-height: 1;
    pointer-events: none;
  }
  .review-author {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .review-author-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .review-author-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
  }
  .review-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-align: right;
  }

  /* ════════ CONTACT ════════ */
  #contact { background: var(--navy-2); }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }
  .contact-info { display: flex; flex-direction: column; }
  .contact-row {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 24px;
    transition: padding-left 0.3s;
  }
  .contact-row:hover { padding-left: 16px; }
  .contact-row:first-child { border-top: 1px solid var(--line); }
  .contact-row-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
  }
  .contact-row-content { display: flex; flex-direction: column; }
  .contact-row-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .contact-row-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .contact-row-value:hover { color: var(--orange); }
  .contact-row-arrow {
    color: var(--mute);
    transition: all 0.3s;
  }
  .contact-row:hover .contact-row-arrow { color: var(--orange); transform: translateX(8px); }

  /* Form */
  .contact-form {
    background: var(--navy);
    border: 1px solid var(--line-strong);
    padding: 48px;
    position: relative;
  }
  .contact-form::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 48px; height: 48px;
    border-top: 3px solid var(--orange);
    border-left: 3px solid var(--orange);
  }
  .form-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }
  .form-subtitle {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--orange); }
  .form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .form-submit:hover { background: var(--orange-bright); }
  .form-submit svg { transition: transform 0.25s; }
  .form-submit:hover svg { transform: translateX(4px); }
  .form-success {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(30,217,139,0.08);
    border-left: 3px solid #1ed98b;
    color: var(--mute-2);
    font-size: 0.9rem;
  }

  /* ════════ FOOTER ════════ */
  footer {
    background: #050d1a;
    padding: 80px 48px 32px;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
  }
  .footer-brand-block {}
  .footer-mark {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .footer-mark .nav-mark { width: 40px; height: 40px; font-size: 1.3rem; }
  .footer-mark-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .footer-tagline {
    color: var(--mute);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
    font-weight: 300;
  }
  .footer-col-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col a {
    display: block;
    color: var(--mute-2);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: color 0.2s, padding-left 0.2s;
  }
  .footer-col a:hover { color: var(--white); padding-left: 6px; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .footer-bottom-left {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.05em;
  }
  .footer-bottom-right {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--mute);
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 8px;
  }
  .footer-bottom-right .dot { width: 6px; height: 6px; border-radius: 50%; background: #1ed98b; box-shadow: 0 0 8px #1ed98b; }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* Hero entrance */
  .hero-meta, .hero-display, .hero-sub, .hero-actions, .hero-foot {
    opacity: 0;
    animation: heroIn 0.9s ease forwards;
  }
  .hero-meta { animation-delay: 0.1s; }
  .hero-display { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.5s; }
  .hero-actions { animation-delay: 0.7s; }
  .hero-foot { animation-delay: 0.85s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  /* ════════ MOBILE ════════ */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { padding: 60px 32px; border-right: none; border-bottom: 1px solid var(--line-strong); }
    .hero-right { padding: 48px 32px; }
    .section { padding: 100px 32px; }
    .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card:first-child { border-right: none; border-bottom: 1px solid var(--line-strong); }
    .services-grid { grid-template-columns: 1fr; }
    .service { border-right: none; border-bottom: 1px solid var(--line-strong); min-height: auto; }
    .service:last-child { border-bottom: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review { border-right: none; border-bottom: 1px solid var(--line-strong); min-height: auto; }
    .review:last-child { border-bottom: none; }
    .fieldops-head { padding: 80px 32px 48px; grid-template-columns: 1fr; gap: 32px; }
    .fieldops-grid { grid-template-columns: 1fr; }
    .fieldops-frame { border-right: none; border-bottom: 1px solid var(--line-strong); aspect-ratio: 16 / 11; }
    .fieldops-frame:last-child { border-bottom: none; }
    .fieldops-meta-strip { grid-template-columns: 1fr 1fr; }
    .fieldops-meta { border-bottom: 1px solid var(--line); }
    .fieldops-meta:nth-child(2) { border-right: none; }
    .fieldops-meta:nth-child(3), .fieldops-meta:nth-child(4) { border-bottom: none; }
    .coverage { padding: 80px 32px; }
    .coverage-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .nav-inner { padding: 0 24px; }
    footer { padding: 64px 32px 24px; }
  }
  @media (max-width: 600px) {
    .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
  }