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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0f14;
    color: #e8eef5;
}

.header {
    min-height: 72px;
    height: auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    border-bottom: 1px solid #1f2937;
    background: #0d1218;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo:hover,
.logo:visited,
.logo:focus,
.logo:active {
    color: #ffffff;
    text-decoration: none;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

.nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.nav a:hover {
    color: #ffffff;
}

.hero {
    padding: 80px 40px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.20), transparent 32%),
        linear-gradient(180deg, #0d1218, #0b0f14);
}

.eyebrow {
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1 {
    max-width: 850px;
    font-size: 54px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.heroText {
    max-width: 700px;
    color: #aeb8c5;
    font-size: 18px;
    line-height: 1.6;
}

.heroButton {
    margin-top: 32px;
    padding: 14px 22px;
    border: none;
    border-radius: 10px;
    background: #38bdf8;
    color: #041018;
    font-weight: 700;
    cursor: pointer;
}

.sectors,
.mapSection,
.companies {
    padding: 48px 40px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.sectorGrid,
.companyGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sectorCard,
.companyCard {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 18px;
    padding: 22px;
}

.sectorCard.active {
    border-color: #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.12);
}

.sectorCard h3,
.companyCard h3 {
    margin-bottom: 10px;
}

.sectorCard p,
.companyCard p {
    color: #9ca3af;
    line-height: 1.5;
}

.companyCard {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}

.companyCard:hover {
    transform: translateY(-3px);
    border-color: #38bdf8;
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.12);
}

.sectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.sectionHeader p {
    color: #9ca3af;
}

#map {
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.companyTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #38bdf8;
    font-size: 13px;
    margin-bottom: 18px;
}

.dot {
    color: #38bdf8;
}

.companyMeta {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #1f2937;
    color: #cbd5e1;
    font-size: 14px;
}

@media (max-width: 900px) {
    .sectorGrid,
    .companyGrid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .header {
        padding: 14px 20px;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        gap: 8px 14px;
    }

    .nav a {
        font-size: 13px;
    }
}

.mapFilters {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mapFilters label {
    color: #9ca3af;
    font-size: 14px;
}

.mapFilters select {
    background: #111827;
    color: #e8eef5;
    border: 1px solid #1f2937;
    border-radius: 10px;
    padding: 10px 14px;
}

.heroStats{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.statCard{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:20px 28px;
    min-width:160px;

    display:flex;
    flex-direction:column;
}

.statNumber{
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.statLabel{
    margin-top:6px;
    font-size:14px;
    color:#6b7280;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.14), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(14, 165, 233, 0.10), transparent 30%),
        #070b12;
    color: #eef5ff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 76px;
    height: auto;
    padding: 14px clamp(20px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(7, 11, 18, 0.78);
    backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.logoMark {
    color: #38bdf8;
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.75));
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

.nav a {
    color: #94a3b8;
    font-weight: 600;
    white-space: nowrap;
}

.nav a[aria-current="page"] {
    color: #f8fafc;
}

.hero {
    padding: 86px clamp(20px, 5vw, 72px) 64px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.20), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(7, 11, 18, 0.72));
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.heroContent {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 40px;
    align-items: center;
}

.heroCopy {
    max-width: 800px;
}

.eyebrow,
.sectionEyebrow,
.infoLabel {
    color: #67e8f9;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
}

.hero h1 {
    max-width: 820px;
    margin: 18px 0 24px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.heroText {
    max-width: 690px;
    color: #b6c3d4;
    font-size: clamp(17px, 2vw, 20px);
}

.heroActions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.heroButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8 52%, #0ea5e9);
    color: #02111d;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.28);
}

.heroNote {
    color: #8ea0b7;
    font-size: 14px;
}

.heroPanel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(8, 13, 22, 0.96)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 45%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.heroPanel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%);
}

.panelHeader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #dbeafe;
    font-weight: 700;
}

.livePill,
.cardBadge {
    border: 1px solid rgba(103, 232, 249, 0.26);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(8, 145, 178, 0.12);
    color: #a5f3fc;
    font-size: 12px;
    font-weight: 800;
}

.heroStats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.statCard {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.statKicker {
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.statNumber {
    margin-top: 8px;
    color: #f8fafc;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.statLabel {
    color: #94a3b8;
    font-weight: 700;
}

.dataRows {
    position: relative;
    margin-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.dataRows div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.dataRows span {
    color: #8ea0b7;
}

.dataRows strong {
    color: #e2e8f0;
    text-align: right;
}

.insightSection,
.sectors,
.mapSection,
.companies {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px clamp(20px, 5vw, 72px);
}

.insightSection {
    padding-bottom: 18px;
}

.infoBox {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 24px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.62), rgba(15, 23, 42, 0.88)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 34%);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.infoBox h3 {
    margin: 10px 0 12px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.infoBox p {
    max-width: 880px;
    color: #b6c3d4;
    line-height: 1.7;
}

.infoBox p + p {
    margin-top: 10px;
}

h2 {
    margin-bottom: 8px;
    color: #f8fafc;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.05em;
}

.sectionHeader {
    margin-bottom: 24px;
}

.sectionHeader p {
    color: #94a3b8;
    line-height: 1.6;
}

.mapCredibility {
    margin-top: 10px;
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.sectorsCompact {
    padding-top: 28px;
    padding-bottom: 28px;
}

.sectorsCompact h2 {
    margin-bottom: 14px;
    font-size: clamp(22px, 3vw, 30px);
}

.v1SectorCard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 20px 40px;
    padding: 24px 32px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.38), rgba(15, 23, 42, 0.94)),
        radial-gradient(circle at 0% 50%, rgba(56, 189, 248, 0.10), transparent 52%);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.06) inset,
        0 16px 48px rgba(0, 0, 0, 0.22);
}

.v1SectorCardHead {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.v1SectorCardIcon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
    opacity: 0.32;
}

.v1SectorCardTitle {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.v1SectorCardText {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align: right;
}

@media (max-width: 900px) {
    .v1SectorCard {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 24px;
    }

    .v1SectorCardText {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .v1SectorCardTitle {
        font-size: 24px;
    }

    .v1SectorCardText {
        font-size: 14px;
        line-height: 1.55;
    }
}

.futureCoverage {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px clamp(20px, 5vw, 72px) 56px;
    border-top: 1px solid rgba(148, 163, 184, 0.10);
}

.futureCoverage h2 {
    margin-bottom: 6px;
    font-size: clamp(20px, 3vw, 28px);
    color: #94a3b8;
    letter-spacing: -0.03em;
}

.futureCoverage > p {
    max-width: 640px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.futureCoverageList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    list-style: none;
}

.futureCoverageList li {
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.deploymentCard {
    min-height: 168px;
    padding: 24px;
    gap: 0;
}

.deploymentCardHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.deploymentCardHeader h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.deploymentCardCountry {
    flex-shrink: 0;
    margin-top: 4px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.deploymentCardCompany {
    margin: 0;
    color: #e2e8f0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.deploymentCard .deploymentCardStatus {
    margin-top: auto;
    padding-top: 18px;
}

.companies:has(.deploymentCard) .companyGrid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.sectorGrid,
.companyGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sectorCard,
.companyCard {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(12, 18, 29, 0.92));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.sectorCard.active {
    border-color: rgba(56, 189, 248, 0.50);
    background:
        linear-gradient(180deg, rgba(14, 116, 144, 0.18), rgba(15, 23, 42, 0.94));
}

.sectorCard.futureSector {
    opacity: 0.34;
    border-style: dashed;
    border-color: rgba(148, 163, 184, 0.10);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.50), rgba(12, 18, 29, 0.50));
    box-shadow: none;
}

.sectorCard.futureSector h3 {
    font-size: 0.9em;
    color: #64748b;
}

.sectorCard.futureSector p {
    font-size: 0.8rem;
    color: #475569;
}

.sectorCard.futureSector:hover {
    opacity: 0.48;
}

.companyCard {
    min-height: 210px;
    display: flex;
    flex-direction: column;
}

.companyCard h3 {
    color: #f8fafc;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.cardDescription,
.sectorCard p,
.companyCard p {
    color: #a7b4c6;
}

.companyTop {
    gap: 10px;
    color: #67e8f9;
}

.dot {
    text-shadow: 0 0 18px rgba(56, 189, 248, 0.85);
}

.companyMeta {
    margin-top: auto;
    border-top-color: rgba(148, 163, 184, 0.13);
    color: #dbeafe;
}

.statusText {
    color: #86efac;
    font-weight: 800;
}

.statusOperational {
    color: #38bdf8;
    font-weight: 800;
}

.statusTesting {
    color: #fb923c;
    font-weight: 800;
}

.dotOperational {
    color: #38bdf8;
    text-shadow: 0 0 18px rgba(56, 189, 248, 0.85);
}

.dotTesting {
    color: #fb923c;
    text-shadow: 0 0 18px rgba(251, 146, 60, 0.85);
}

.mapLegend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-left: auto;
}

.mapLegendItem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.mapLegendItemMixed {
    color: #94a3b8;
}

.mapLegendSwatch {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.mapLegendSwatchOperational {
    background: #38bdf8;
    border-color: #bae6fd;
}

.mapLegendSwatchTesting {
    background: #fb923c;
    border-color: #fdba74;
}

.mapLegendSwatchMixed {
    background: #38bdf8;
    border-color: #fb923c;
}

.deploymentCardStatus {
    margin-top: 14px;
}

.deploymentCardStatus span {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.deploymentCardStatus .statusOperational {
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.12);
}

.deploymentCardStatus .statusTesting {
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: rgba(251, 146, 60, 0.12);
}

.deploymentCardMeta {
    margin-top: 12px;
}

.deploymentDate {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

.mapPopupStatus {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 800;
}

.companyCard:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.48);
    box-shadow: 0 24px 70px rgba(8, 145, 178, 0.16);
}

.companyHero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 78px clamp(20px, 5vw, 72px) 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 38px;
    align-items: end;
}

.companyHero h1 {
    margin: 18px 0 22px;
    color: #f8fafc;
    font-size: clamp(52px, 8vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.08em;
}

.companyHeroMeta,
.companyHeroLinks {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.companyHeroMeta {
    margin-top: 24px;
}

.companyHeroMeta span,
.companyHeroLinks a,
.cardSources summary {
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(8, 145, 178, 0.10);
    color: #a5f3fc;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.companyHeroLinks {
    margin-top: 16px;
}

.companyHeroLinks a:hover {
    color: #f8fafc;
    border-color: rgba(125, 211, 252, 0.42);
}

.companyStatsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.companyStatCard {
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(12, 18, 29, 0.92));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.companyStatCard strong {
    display: block;
    margin-top: 12px;
    color: #f8fafc;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.companyStatCard span:last-child {
    display: block;
    margin-top: 10px;
    color: #94a3b8;
    line-height: 1.45;
}

.company-updates {
    max-width: 1180px;
    margin: 8px auto 40px auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.company-updates .sectionHeader p {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 14px;
}

.company-updates-empty {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
}

.updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.update-item {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.55);
}

.update-title a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.45;
}

.update-title a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

.update-meta {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.company-map-section {
    max-width: 1180px;
    margin: 32px auto 48px auto;
    padding: 0 clamp(16px, 4vw, 24px);
}

.company-map-header {
    margin-bottom: 16px;
}

.company-map-header h2 {
    font-size: clamp(24px, 3vw, 32px);
}

.company-map-header p {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 14px;
}

.company-map-card {
    display: flex;
    flex-direction: column;
    height: 450px;
    min-height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.company-map-card .company-map-legendRow {
    flex-shrink: 0;
}

#company-map {
    flex: 1;
    width: 100%;
    min-height: 0;
    height: auto;
    border-radius: 0 0 18px 18px;
}

#company-map.leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0 0 18px 18px;
}

/* Company map: neutraliser tout style global qui masquerait tuiles / panes Leaflet */
#company-map .leaflet-tile {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    max-width: none !important;
    max-height: none !important;
}

#company-map img {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    max-width: none !important;
}

#company-map .leaflet-pane,
#company-map .leaflet-map-pane,
#company-map .leaflet-tile-pane,
#company-map .leaflet-overlay-pane,
#company-map .leaflet-marker-pane,
#company-map .leaflet-popup-pane,
#company-map .leaflet-shadow-pane {
    opacity: 1 !important;
    visibility: visible !important;
}

#company-map .leaflet-overlay-pane svg,
#company-map .leaflet-overlay-pane path:not(.dw-hq-marker) {
    opacity: 1 !important;
    visibility: visible !important;
}

#company-map .leaflet-marker-icon {
    opacity: 1 !important;
    visibility: visible !important;
}

/* HQ marker: violet + pulsation légère (path.circleMarker) */
#company-map path.dw-hq-marker {
    animation: dwHqPulse 2.4s ease-in-out infinite;
}

@keyframes dwHqPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

.company-map-section .leaflet-popup-pane {
    z-index: 700;
}

.company-map-section .leaflet-popup-content-wrapper {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.company-map-section .mapPopup {
    min-width: 170px;
    padding: 12px;
}

.company-map-section .mapPopupHq .mapPopupLabel {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.company-map-section .mapPopupHq .mapPopupTitle {
    margin-top: 4px;
}

.company-map-section .mapPopupHq .mapPopupMeta {
    margin-top: 8px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.35;
}

.company-deployments-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px) 56px;
}

.deploymentCard {
    cursor: pointer;
}

.companyCard.deploymentCard.active {
    border-color: rgba(56, 189, 248, 0.55);
    background:
        linear-gradient(180deg, rgba(14, 116, 144, 0.14), rgba(15, 23, 42, 0.96));
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.12) inset,
        0 12px 32px rgba(56, 189, 248, 0.10);
}

.cardSources {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.cardSources summary {
    width: fit-content;
    cursor: pointer;
    list-style: none;
    padding: 6px 10px;
    font-size: 12px;
}

.cardSources summary::-webkit-details-marker {
    display: none;
}

.cardSources div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.cardSources a {
    color: #8ea0b7;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.cardSources a:hover {
    color: #67e8f9;
}

.mapSection {
    max-width: 1440px;
}

.mapShell {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.30);
}

.mapFilters {
    margin: 0;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.13);
    background: rgba(7, 11, 18, 0.70);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
}

.mapFilters select {
    min-width: 220px;
    border-color: rgba(125, 211, 252, 0.24);
    background: rgba(15, 23, 42, 0.92);
}

#map {
    height: min(70vh, 680px);
    min-height: 540px;
    border: 0;
    border-radius: 0;
}

.leaflet-container {
    background: #08111f;
    font-family: Arial, Helvetica, sans-serif;
}

.leaflet-popup-content-wrapper {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background: rgba(7, 11, 18, 0.94);
    color: #e5eefb;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.leaflet-popup-tip {
    background: rgba(7, 11, 18, 0.94);
}

.leaflet-popup-content {
    margin: 0;
}

.leaflet-popup-close-button {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 8px;
    color: #94a3b8 !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.leaflet-popup-close-button:hover {
    color: #f8fafc !important;
    background: rgba(148, 163, 184, 0.12);
}

.dwHqMarker {
    background: transparent;
    border: none;
}

.dwHqMarkerDot {
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid #f8fafc;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow:
        0 0 0 4px rgba(167, 139, 250, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

.mapPopupHq .mapPopupTitle {
    font-size: 17px;
}

.mapPopup {
    min-width: 190px;
    padding: 14px;
}

.mapPopupLabel {
    color: #67e8f9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mapPopupTitle {
    margin-top: 6px;
    color: #f8fafc;
    font-size: 18px;
    font-weight: 800;
}

.mapPopupMeta {
    margin-top: 10px;
    color: #b6c3d4;
    line-height: 1.55;
}

.mapPopupList {
    display: grid;
    gap: 8px;
    list-style: none;
}

.mapPopupList li {
    padding-left: 12px;
    border-left: 2px solid rgba(56, 189, 248, 0.65);
}

.mapPopupSources {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mapPopupSources summary {
    width: fit-content;
    cursor: pointer;
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(8, 145, 178, 0.10);
    color: #a5f3fc;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
}

.mapPopupSources summary::-webkit-details-marker {
    display: none;
}

.mapPopupSources ul {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    list-style: none;
}

.mapPopupSources a {
    display: inline-flex;
    color: #8ea0b7;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mapPopupSources a:hover {
    color: #67e8f9;
}

.mapPopupDate {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #dbeafe;
    font-weight: 700;
}

.deploymentPopup {
    min-width: 220px;
    padding: 14px;
}

.deploymentPopupTitle {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 800;
}

.deploymentPopupMeta {
    margin-top: 6px;
    color: #67e8f9;
    font-weight: 800;
}

.deploymentPopupDescription {
    margin-top: 10px;
    color: #b6c3d4;
    line-height: 1.55;
}

.deploymentPopupDate {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    color: #dbeafe;
    font-weight: 700;
}

.deploymentPopupSource {
    margin-top: 10px;
}

.deploymentPopupSource a {
    color: #67e8f9;
    font-weight: 800;
    text-decoration: none;
}

.deploymentPopupSource a:hover {
    color: #f8fafc;
}

@media (max-width: 1100px) {
    .heroContent {
        grid-template-columns: 1fr;
    }

    .companyHero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .sectorGrid,
    .companyGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 58px;
    }

    .heroStats {
        grid-template-columns: 1fr;
    }

    .heroPanel {
        padding: 18px;
    }

    .companyStatsGrid {
        grid-template-columns: 1fr;
    }

    .dataRows div,
    .sectionHeader {
        display: block;
    }

    .dataRows strong {
        display: block;
        margin-top: 4px;
        text-align: left;
    }

    .sectorGrid,
    .companyGrid {
        grid-template-columns: 1fr;
    }

    #map {
        height: 520px;
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .company-map-section {
        margin: 24px auto 36px auto;
        padding: 0 16px;
    }

    .company-map-card {
        display: flex;
        flex-direction: column;
        height: 320px;
        min-height: 320px;
    }

    #company-map {
        flex: 1;
        min-height: 0;
        height: auto;
    }

    #company-map.leaflet-container {
        min-height: 0;
    }

    .company-deployments-section {
        padding: 0 16px 48px;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: 42px;
    }

    .panelHeader,
    .heroActions,
    .mapFilters {
        align-items: flex-start;
        flex-direction: column;
    }

    .mapFilters select {
        width: 100%;
        min-width: 0;
    }

    .companyHero {
        padding-top: 58px;
    }

    .companyHero h1 {
        font-size: 42px;
    }

    .infoBox,
    .sectorCard,
    .companyCard,
    .companyStatCard {
        border-radius: 18px;
    }
}

.incidentsPage {
    padding-bottom: 48px;
}

.incidentsHero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px clamp(12px, 3vw, 48px) 20px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.5), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.incidentsHero h1 {
    margin: 12px 0 16px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: #f8fafc;
}

.incidentsHero .heroText {
    margin: 0 0 10px;
    max-width: 72ch;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.65;
}

.incidentsListSection {
    max-width: 1320px;
    margin: 0 auto;
    padding: 8px clamp(12px, 3vw, 48px) 28px;
}

.incidentsFeedHeading {
    margin: 0 0 14px;
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.incidentsVideoFeed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

.incidentVideoCard {
    position: relative;
    z-index: 0;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(12, 18, 29, 0.96));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.tiktokEmbedWrap {
    position: relative;
    width: 100%;
    height: 420px;
    flex-shrink: 0;
    background: rgba(2, 6, 23, 0.7);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    cursor: pointer;
    border: 0;
    padding: 0;
    text-align: inherit;
}

.tiktokEmbedWrap:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.tiktokEmbedPoster {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tiktokEmbedPosterImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktokPlayBtn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.tiktokPlayBtn:hover {
    transform: scale(1.06);
    background: rgba(15, 23, 42, 0.88);
}

.tiktokPlayBtnIcon {
    display: block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #f8fafc;
}

.tiktokPlayLabel {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tiktokModal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tiktokModal.is-open {
    display: flex;
}

body.tiktokModalOpen {
    overflow: hidden;
}

.tiktokModalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    cursor: pointer;
}

.tiktokModalDialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    max-height: 92vh;
    padding: 20px 20px 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(12, 18, 29, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.tiktokModalClose {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.9);
    color: #f8fafc;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.tiktokModalTitle {
    margin: 0 40px 8px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #f8fafc;
}

.tiktokModalMeta {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #67e8f9;
}

.tiktokModalPreview {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 52vh;
    border-radius: 12px;
    overflow: hidden;
    background: #020617;
}

.tiktokModalImg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktokModalDescription {
    margin: 14px 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.tiktokModalWatchBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.tiktokModalWatchBtn:hover {
    filter: brightness(1.08);
    color: #020617;
}

.incidentVideoCardBody {
    padding: 12px 14px 14px;
}

.incidentVideoCardTitle {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.35;
    color: #f8fafc;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.incidentVideoCardMeta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #67e8f9;
}

.incidentVideoCardDate {
    color: #94a3b8;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.incidentVideoCardDate::before {
    content: "·";
    margin-right: 10px;
    color: rgba(148, 163, 184, 0.5);
}

.incidentVideoCardDescription {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #94a3b8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.incidentVideoCardTags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.incidentTag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(30, 41, 59, 0.65);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.incidentTiktokLink {
    display: inline-flex;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #7dd3fc;
    text-decoration: none;
}

.incidentTiktokLink:hover {
    color: #bae6fd;
    text-decoration: underline;
}

.incidentsEmpty {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

.incidentsEmpty code {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(30, 41, 59, 0.8);
    color: #e2e8f0;
    font-size: 13px;
}

.incidentsCorrectionSection {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}

@media (min-width: 700px) {
    .incidentsVideoFeed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .incidentsVideoFeed {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

.siteFooter {
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 32px clamp(20px, 5vw, 72px) 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    color: #94a3b8;
}

.footerBrand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f8fafc;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.siteFooter p {
    margin-top: 8px;
    line-height: 1.6;
}

.footerLinks {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.footerLinks a {
    color: #67e8f9;
    font-weight: 800;
    text-decoration: none;
}

.footerLinks a:hover {
    color: #f8fafc;
}

.robotaxiMapHero {
    padding-bottom: 28px;
}

.robotaxiMapStats {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px) 12px;
}

.robotaxiMapStats .heroStats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.exploreCountries {
    max-width: 1320px;
    margin: 0 auto;
    padding: 8px clamp(20px, 5vw, 72px) 24px;
}

.exploreCountriesHeading {
    margin: 8px 0 16px;
    font-size: clamp(22px, 3vw, 28px);
    color: #f8fafc;
}

.exploreCountriesLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exploreCountriesLinks a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(56, 189, 248, 0.08);
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.exploreCountriesLinks a:hover {
    background: rgba(56, 189, 248, 0.16);
    border-color: rgba(56, 189, 248, 0.45);
}

.exploreCountriesLinks a[aria-current="page"] {
    color: #f8fafc;
    background: rgba(56, 189, 248, 0.22);
    border-color: rgba(56, 189, 248, 0.5);
}

.countryPageDefinitions {
    margin: 0 0 24px;
    max-width: 72ch;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.65;
}

.countryPageDefinitions strong {
    color: #e2e8f0;
    font-weight: 700;
}

.usaPage .exploreCountries {
    padding-top: 0;
    padding-bottom: 8px;
}

/* Country deployment pages (USA, China, UAE, UK) */
.usaPageMain {
    padding-bottom: 24px;
}

.usaPageHero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px clamp(20px, 5vw, 72px) 28px;
}

.usaBreadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.usaBreadcrumb a {
    color: #7dd3fc;
    text-decoration: none;
}

.usaBreadcrumb a:hover {
    text-decoration: underline;
}

.usaPageHero h1 {
    margin: 0 0 16px;
    color: #f8fafc;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.usaPageIntro {
    max-width: 720px;
    margin: 0 0 28px;
    color: #b6c3d4;
    font-size: 17px;
    line-height: 1.65;
}

.usaPageStats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.usaPageStats .statCard {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.usaPageStats .statKicker {
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.usaPageStats .statNumber {
    margin-top: 8px;
    color: #f8fafc;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.usaPageStats .statLabel {
    margin-top: 6px;
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
}

.usaPageMap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 8px clamp(20px, 5vw, 72px) 32px;
}

.usaPageMap .mapShell {
    border-radius: 24px;
}

.usaPageMap .mapFilters {
    align-items: flex-start;
}

.usaPageMap .mapLegend {
    margin-left: 0;
    width: 100%;
}

.usaPageMap #map {
    height: min(48vh, 480px);
    min-height: 320px;
}

.usaDeploymentsSection {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px) 32px;
}

.usaTableWrap {
    overflow-x: auto;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(12, 18, 29, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.usaDeploymentsTable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 15px;
}

.usaDeploymentsTable th:nth-child(1),
.usaDeploymentsTable td:nth-child(1) {
    width: 28%;
}

.usaDeploymentsTable th:nth-child(2),
.usaDeploymentsTable td:nth-child(2) {
    width: 22%;
}

.usaDeploymentsTable th:nth-child(3),
.usaDeploymentsTable td:nth-child(3) {
    width: 20%;
}

.usaDeploymentsTable th:nth-child(4),
.usaDeploymentsTable td:nth-child(4) {
    width: 30%;
}

.usaDeploymentsTable thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(10, 16, 28, 0.98);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.14);
}

.usaDeploymentsTable th,
.usaDeploymentsTable td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    vertical-align: middle;
}

.usaDeploymentsTable th {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.usaDeployRow {
    cursor: pointer;
    transition: background 0.15s ease;
}

.usaDeployRow:hover,
.usaDeployRow:focus-visible {
    background: rgba(56, 189, 248, 0.08);
    outline: none;
}

.usaDeployRow:nth-child(even) {
    background: rgba(148, 163, 184, 0.03);
}

.usaDeployRow:nth-child(even):hover {
    background: rgba(56, 189, 248, 0.08);
}

.usaTableCompany a {
    color: #e2e8f0;
    font-weight: 700;
    text-decoration: none;
}

.usaTableCompany a:hover {
    color: #7dd3fc;
}

.usaStatusPill {
    display: inline-block;
    white-space: nowrap;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.usaStatusPillOperational {
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.12);
}

.usaStatusPillTesting {
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: rgba(251, 146, 60, 0.12);
}

.usaSourceLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.usaSourceLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 4px 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.6);
}

.usaSourceLinks a:hover {
    border-color: rgba(125, 211, 252, 0.45);
    background: rgba(56, 189, 248, 0.1);
}

.usaTableMuted {
    color: #64748b;
}

.usaPageCorrection {
    padding-bottom: 56px;
}

@media (max-width: 900px) {
    .usaPage .header {
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 20px;
        gap: 12px;
    }

    .usaPage .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        width: 100%;
    }

    .usaPage .nav a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .usaTableWrap {
        max-height: none;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .usaDeploymentsTable,
    .usaDeploymentsTable thead,
    .usaDeploymentsTable tbody,
    .usaDeploymentsTable th,
    .usaDeploymentsTable td,
    .usaDeploymentsTable tr {
        display: block;
    }

    .usaDeploymentsTable thead {
        display: none;
    }

    .usaDeployRow {
        margin-bottom: 12px;
        padding: 4px 0;
        border: 1px solid rgba(148, 163, 184, 0.14);
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.76);
    }

    .usaDeploymentsTable td {
        display: grid;
        grid-template-columns: 88px 1fr;
        gap: 6px 12px;
        padding: 10px 16px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    }

    .usaDeploymentsTable td:last-child {
        border-bottom: none;
    }

    .usaDeploymentsTable td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .usaDeploymentsTable td.usaTableCompany::before {
        content: attr(data-label);
    }
}

.robotaxiMapSeo {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px clamp(20px, 5vw, 72px) 72px;
}

.methodologyHero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 86px clamp(20px, 5vw, 72px) 36px;
}

.methodologyHero h1 {
    margin: 18px 0 22px;
    color: #f8fafc;
    font-size: clamp(48px, 8vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.methodologyContent {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px clamp(20px, 5vw, 72px) 64px;
}

.methodologyGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.methodologyCard {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(12, 18, 29, 0.92));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.methodologyCard.primary {
    border-color: rgba(125, 211, 252, 0.24);
    background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.56), rgba(15, 23, 42, 0.90)),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 34%);
}

.methodologyCard h2 {
    margin: 10px 0 12px;
    font-size: clamp(26px, 4vw, 34px);
}

.methodologyCard p,
.methodologyList {
    color: #b6c3d4;
    font-size: 16px;
    line-height: 1.7;
}

.methodologyList {
    list-style: none;
}

.methodologyList li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.methodologyList li::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.7);
}

.methodologyStatusList li strong {
    display: inline-block;
    margin-right: 4px;
}

.methodologyContent > .methodologyCard:not(.primary) {
    margin-top: 18px;
}

@media (max-width: 700px) {
    .siteFooter,
    .footerLinks {
        align-items: flex-start;
        flex-direction: column;
    }

    .methodologyGrid {
        grid-template-columns: 1fr;
    }

    .methodologyHero {
        padding-top: 58px;
    }

    .robotaxiMapStats .heroStats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usaPageStats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usaPageMap #map {
        min-height: 280px;
    }

    .usaPageMap .mapFilters {
        flex-direction: column;
        align-items: stretch;
    }
}

.correctionSection {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px) 24px;
}

.companyCorrectionSection,
.methodologyCorrectionSection {
    padding-top: 8px;
    padding-bottom: 48px;
}

.correction-box {
    margin-top: 24px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.correction-box p {
    margin: 0;
    color: #b6c3d4;
    font-size: 0.95rem;
}

.submit-correction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 12px;
    border: 1px solid rgba(79, 209, 197, 0.45);
    border-radius: 999px;
    color: #9ff5ed;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    background: rgba(79, 209, 197, 0.08);
}

button.submit-correction-btn {
    appearance: none;
}

.submit-correction-btn:hover {
    background: rgba(79, 209, 197, 0.16);
    border-color: rgba(79, 209, 197, 0.75);
}

@media (max-width: 700px) {
    .correction-box {
        flex-direction: column;
        align-items: flex-start;
    }
}