/* =========================================================
   KOLYORA NODES — FEUILLE DE STYLE
   Palette : Noir #101112 · Jaune #F5C542 · Blanc #F4F4EF
========================================================= */

:root {
    /* Fond */
    --black: #101112;
    --black-2: #15171a;
    --black-3: #1a1c1f;
    --black-4: #212427;

    /* Marque */
    --yellow: #f5c542;
    --yellow-light: #ffd861;
    --yellow-dark: #b88d1b;

    /* Texte */
    --white: #f4f4ef;
    --white-2: #e7e7e1;
    --gray-1: #b4b6b9;
    --gray-2: #8d9094;
    --gray-3: #696d71;
    --gray-4: #3c3f42;

    /* Statut */
    --green: #69d391;

    /* Bordures */
    --border: rgba(255,255,255,.09);
    --border-strong: rgba(255,255,255,.16);
    --border-light: rgba(16,17,18,.10);
    --border-light-strong: rgba(16,17,18,.18);

    /* Mise en page */
    --container: 1240px;
    --header-h: 84px;
    --header-h-scrolled: 68px;

    --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --ease: cubic-bezier(.2,.75,.2,1);
}

/* =========================================================
   RESET
========================================================= */

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

html { scroll-behavior: smooth; background: var(--black); }

body {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--black); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; background: none; border: none; }
ul { list-style: none; }

:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

/* =========================================================
   TYPOGRAPHIE
========================================================= */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 600;
    letter-spacing: -.02em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--yellow);
}

.heading-description {
    max-width: 480px;
    margin-top: 18px;
    color: var(--gray-1);
    font-size: 15.5px;
    line-height: 1.65;
}

/* =========================================================
   BOUTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.button span { transition: transform .3s var(--ease); font-size: 15px; }
.button:hover span { transform: translateX(3px); }

.button-yellow {
    background: var(--yellow);
    color: var(--black);
}
.button-yellow:hover { background: var(--yellow-light); transform: translateY(-2px); }

.button-outline {
    border: 1px solid var(--border-strong);
    color: var(--white);
    background: rgba(255,255,255,.02);
}
.button-outline:hover { border-color: var(--gray-1); background: rgba(255,255,255,.05); transform: translateY(-2px); }

/* =========================================================
   EN-TÊTE
========================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;

    height: var(--header-h);

    display: flex;
    align-items: center;

    background: rgba(16,17,18,.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition: transform .45s var(--ease), height .35s var(--ease), background .35s var(--ease);
}

/* la barre remonte hors champ quand on descend la page, et redescend dès qu'on remonte */
.site-header.is-hidden { transform: translateY(-100%); }

.site-header.is-scrolled {
    height: var(--header-h-scrolled);
    background: rgba(16,17,18,.96);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

body { padding-top: var(--header-h); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: height .35s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 48px; }

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-inline: auto;
}

.desktop-navigation a {
    position: relative;
    color: var(--gray-1);
    font-size: 13px;
    font-weight: 500;
    transition: color .2s var(--ease);
}

.desktop-navigation a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 1px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.desktop-navigation a:hover { color: var(--white); }
.desktop-navigation a:hover::after { transform: scaleX(1); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--gray-2);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .09em;
}

.company-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(105,211,145,.6);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    overflow: hidden;
    opacity: .45;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.language-switcher a svg { width: 100%; height: 100%; object-fit: cover; }
.language-switcher a:hover { opacity: .8; }
.language-switcher a.active { opacity: 1; transform: scale(1.08); }

.header-button {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--yellow);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.header-button:hover { background: var(--yellow-light); transform: translateY(-2px); }

.nav-toggle {
    display: none;
    width: 38px; height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.nav-toggle span {
    position: relative;
    width: 16px; height: 1px;
    background: var(--white);
}
.nav-toggle span::before, .nav-toggle span::after {
    content: "";
    position: absolute; left: 0;
    width: 16px; height: 1px;
    background: var(--white);
    transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-navigation {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 999;
    padding: 10px 24px 26px;
    background: var(--black-2);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);

    flex-direction: column;
    gap: 2px;

    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mobile-navigation.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-navigation a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--white-2);
    font-size: 15px;
    font-weight: 500;
}
.mobile-navigation a:last-child { border-bottom: none; }

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero-glow {
    position: absolute;
    width: 900px; height: 900px;
    right: -380px; top: -420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,66,.08), transparent 68%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 108px;
    padding-bottom: 76px;
}

.hero-main { max-width: 800px; }

.hero-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--yellow);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
}

.signal {
    width: 6px; height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(245,197,66,.08), 0 0 14px rgba(245,197,66,.5);
    animation: signalPulse 2.4s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero h1 {
    margin-top: 24px;
    max-width: 900px;
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 600;
}

.hero h1 span { color: var(--gray-3); }

.hero-description {
    max-width: 580px;
    margin-top: 26px;
    color: var(--gray-1);
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}

/* barre de télémétrie — remplace l'ancien module carré */
.hero-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.015);
}

.hero-strip-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding-block: 20px;
}

.strip-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-inline: 26px;
    border-right: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--gray-2);
    letter-spacing: .03em;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }

.strip-item strong {
    color: var(--white-2);
    font-weight: 500;
}

.strip-item.is-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-weight: 500;
}
.strip-item.is-live i {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(105,211,145,.7);
    animation: signalPulse 2.4s ease-in-out infinite;
}

/* =========================================================
   SECTIONS — TRAME GÉNÉRALE
========================================================= */

.section {
    padding-block: 128px;
    border-bottom: 1px solid var(--border);
}

.dark-section { background: var(--black-2); }

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 64px;
}

.section-number {
    padding-top: 3px;
    color: var(--gray-4);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
}

.section-heading h2 {
    margin-top: 14px;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
}

.section-heading h2 span { color: var(--gray-3); }

.dark-heading .section-number { color: var(--gray-3); }

/* =========================================================
   À PROPOS
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 70px;
}

.about-lead p {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.38;
    color: var(--white-2);
    font-weight: 500;
    letter-spacing: -.01em;
}

.about-text p {
    color: var(--gray-1);
    font-size: 15.5px;
    line-height: 1.75;
}
.about-text p + p { margin-top: 18px; }

.france-card {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.015);
}

.france-card-flag {
    display: flex;
    flex-shrink: 0;
    width: 34px; height: 24px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
}
.france-card-flag span { flex: 1; }
.france-card-flag span:nth-child(1) { background: #1c3f94; }
.france-card-flag span:nth-child(2) { background: #f4f4ef; }
.france-card-flag span:nth-child(3) { background: #ed2939; }

.france-card strong { display: block; font-size: 14.5px; color: var(--white); }
.france-card p { margin-top: 4px; font-size: 13.5px; color: var(--gray-2); line-height: 1.55; }

/* =========================================================
   TECHNOLOGIE
========================================================= */

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.technology-card {
    padding: 34px 28px;
    background: var(--black-2);
    transition: background .3s var(--ease);
}
.technology-card:hover { background: var(--black-3); }

.technology-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.technology-number {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--yellow);
}

.technology-line {
    flex: 1;
    height: 1px;
    background: var(--border-strong);
}

.technology-card h3 { font-size: 18px; margin-bottom: 10px; }
.technology-card p { color: var(--gray-2); font-size: 14px; line-height: 1.6; }

/* =========================================================
   RÉSEAU
========================================================= */

.network-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
}

.network-map {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--black-2);
}

.map-top, .map-bottom {
    display: flex;
    justify-content: space-between;
    padding: 16px 22px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--gray-3);
}
.map-top { border-bottom: 1px solid var(--border); }
.map-bottom { border-top: 1px solid var(--border); color: var(--gray-2); }

.map-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 320px;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 30px 30px;
}

.france-map-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 260px;
}

.map-center-label {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--yellow);
}

.node-panel {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--black-2);
    overflow: hidden;
}

.node-panel-heading {
    display: flex;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--gray-3);
}

.node-list { padding: 8px 22px; }

.node-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.node-name { display: flex; align-items: center; gap: 12px; }

.node-status-dot {
    width: 7px; height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(105,211,145,.6);
}

.node-name strong { display: block; font-size: 14px; color: var(--white); }
.node-name small { font-size: 12px; color: var(--gray-2); }

.node-state {
    padding: 5px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--gray-1);
}

.node-panel-footer {
    margin-top: auto;
    padding: 20px 22px;
    border-top: 1px solid var(--border);
    color: var(--gray-2);
    font-size: 13.5px;
    line-height: 1.6;
}

/* =========================================================
   DONNÉES
========================================================= */

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.metric-card {
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--black-3);
}

.metric-index { font-family: var(--mono); font-size: 11px; color: var(--gray-4); margin-bottom: 20px; }

.metric-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}
.metric-title-row h3 { font-size: 16.5px; }
.metric-title-row span { font-family: var(--mono); font-size: 11px; color: var(--yellow); }

.metric-card p { color: var(--gray-2); font-size: 13px; line-height: 1.55; margin-bottom: 18px; }

.metric-line { height: 1px; background: var(--border); position: relative; overflow: hidden; }
.metric-line span {
    position: absolute; inset: 0;
    width: 40%;
    background: var(--yellow-dark);
}

.data-code {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--black-4);
}

.code-top {
    display: flex;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--gray-3);
}

.data-code pre {
    padding: 22px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.7;
    color: var(--white-2);
    overflow-x: auto;
}

.demo-note {
    margin-top: 16px;
    color: var(--gray-4);
    font-size: 12px;
    font-style: italic;
}

/* =========================================================
   ÉTAT DU PROJET
========================================================= */

.status-layout {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
}

.status-copy p { margin-top: 20px; color: var(--gray-1); font-size: 15px; line-height: 1.7; }

.status-list {
    display: flex;
    flex-direction: column;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.status-item:first-child { padding-top: 0; }
.status-item:last-child { border-bottom: none; }

.status-item span { color: var(--gray-2); font-size: 14.5px; }
.status-item strong { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--white-2); }

/* =========================================================
   CONTACT
========================================================= */

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(245,197,66,.06), rgba(255,255,255,.01));
    overflow: hidden;
}

.contact-accent {
    position: absolute;
    width: 520px; height: 520px;
    right: -220px; top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,66,.1), transparent 70%);
    pointer-events: none;
}

.contact-copy { position: relative; z-index: 1; max-width: 560px; }
.contact-copy h2 { margin-top: 14px; font-size: clamp(26px, 2.9vw, 38px); line-height: 1.15; }
.contact-copy p { margin-top: 16px; color: var(--gray-1); font-size: 15px; line-height: 1.7; }

.contact-mail {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 26px;
    border-radius: var(--radius-sm);
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
    font-size: 14.5px;
    transition: transform .3s var(--ease), background .25s var(--ease);
}
.contact-mail:hover { background: var(--yellow-light); transform: translateY(-2px); }
.contact-mail strong { font-size: 17px; }

/* =========================================================
   PIED DE PAGE
========================================================= */

.site-footer { background: var(--black-2); }

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 54px;
    border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo img { height: 30px; width: auto; }
.footer-brand p { color: var(--gray-2); font-size: 13.5px; }

.footer-country { display: flex; align-items: center; gap: 14px; }

.footer-france-flag {
    display: flex;
    width: 30px; height: 21px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    flex-shrink: 0;
}
.footer-france-flag span { flex: 1; }
.footer-france-flag span:nth-child(1) { background: #1c3f94; }
.footer-france-flag span:nth-child(2) { background: #f4f4ef; }
.footer-france-flag span:nth-child(3) { background: #ed2939; }

.footer-country strong { display: block; font-size: 13px; color: var(--white-2); }
.footer-country span { font-size: 12px; color: var(--gray-3); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 26px;
    color: var(--gray-4);
    font-size: 12.5px;
    font-family: var(--mono);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; gap: 34px; }
    .technology-grid { grid-template-columns: repeat(2, 1fr); }
    .network-layout { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: repeat(2, 1fr); }
    .status-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
    :root { --header-h: 68px; --header-h-scrolled: 60px; }

    .desktop-navigation, .header-button, .company-badge { display: none; }
    .nav-toggle { display: flex; }
    .header-inner { gap: 14px; }

    .section { padding-block: 84px; }
    .section-heading { margin-bottom: 42px; }

    .hero-inner { padding-top: 64px; padding-bottom: 48px; }
    .hero h1 { font-size: clamp(36px, 10vw, 54px); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding-block: 18px; }
    .strip-item { border-right: none; padding-inline: 0; }

    .technology-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: 1fr; }

    .contact-card { flex-direction: column; align-items: flex-start; padding: 34px; }
    .contact-mail { width: 100%; justify-content: space-between; }

    .footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .container { width: min(var(--container), calc(100% - 32px)); }
    .france-card { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
