﻿/* ================= ACCUEIL ================= */
:root {
    color-scheme: dark;
    --bg: #0f1b2d;
    --bg2: #142338;
    --bg3: #1a2d45;
    --bg4: #1f3450;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --text: #e8eef5;
    --text2: #8faabf;
    --text3: #4d6a82;
    --red: #e8193c;
    --red-dim: rgba(232, 25, 60, 0.12);
    --red-bdr: rgba(232, 25, 60, 0.3);
    --blue: #1e5fa8;
    --blue-light: #4a90d4;
    --blue-dim: rgba(30, 95, 168, 0.15);
    --blue-bdr: rgba(74, 144, 212, 0.3);
    --green: #1d9e75;
    --green-dim: rgba(29, 158, 117, 0.12);
    --green-bdr: rgba(29, 158, 117, 0.3);
    --amber: #d97706;
    --amber-dim: rgba(217, 119, 6, 0.12);
    --amber-bdr: rgba(217, 119, 6, 0.3);
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg: #f6f8fb;
    --bg2: #ffffff;
    --bg3: #eef2f7;
    --bg4: #dde5ef;
    --border: rgba(15, 23, 42, 0.08);
    --border2: rgba(15, 23, 42, 0.16);
    --text: #112033;
    --text2: #526277;
    --text3: #7f8ea3;
    --red-dim: rgba(232, 25, 60, 0.08);
    --red-bdr: rgba(232, 25, 60, 0.18);
    --blue-dim: rgba(30, 95, 168, 0.08);
    --blue-bdr: rgba(74, 144, 212, 0.18);
    --green-dim: rgba(29, 158, 117, 0.08);
    --green-bdr: rgba(29, 158, 117, 0.18);
    --amber-dim: rgba(217, 119, 6, 0.08);
    --amber-bdr: rgba(217, 119, 6, 0.18);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    font-family: "Open Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 76px;
    background: rgba(15, 27, 45, 0.93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 56px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links > a {
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-links > a:hover {
    color: var(--text);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-phone:hover {
    color: var(--red);
}
.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition:
        background 0.15s,
        border-color 0.15s,
        color 0.15s,
        transform 0.15s;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border2);
    transform: translateY(-1px);
}
.theme-toggle-icon {
    font-size: 0.95rem;
    line-height: 1;
}
.theme-toggle-label {
    white-space: nowrap;
}
:root[data-theme="dark"] .theme-toggle-moon,
:root[data-theme="light"] .theme-toggle-sun {
    display: none;
}
/* DROPDOWN */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    font-size: 14px;
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: "Open Sans", sans-serif;
    padding: 0;
    transition: color 0.15s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
    color: var(--text);
}
.nav-dropdown-trigger svg {
    transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 8px;
    min-width: 260px;
    z-index: 200;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition:
        opacity 0.18s,
        transform 0.18s,
        visibility 0.18s;
}
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 9px;
    height: 9px;
    background: var(--bg2);
    border-left: 1px solid var(--border2);
    border-top: 1px solid var(--border2);
    transform: translateX(-50%) rotate(45deg);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text2);
    transition:
        background 0.15s,
        color 0.15s;
    cursor: pointer;
}
.dropdown-item:hover {
    background: var(--bg3);
    color: var(--text);
}

.ddi {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ddi-red {
    background: var(--red-dim);
}
.ddi-blue {
    background: var(--blue-dim);
}
.ddi-green {
    background: var(--green-dim);
}
.ddi-amber {
    background: var(--amber-dim);
}
.dil {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}
.dis {
    font-size: 11px;
    color: var(--text3);
    margin-top: 2px;
}
.ddiv {
    height: 1px;
    background: var(--border);
    margin: 6px 4px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    overflow: hidden;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 3rem 3rem;
    display: grid;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text2);
    border: 1px solid var(--border2);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    width: 52%;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}
.hero-h1 {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero-h1 span {
    color: var(--red);
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-red:hover {
    background: #c8112e;
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border2);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    min-height: auto;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8.5rem 3rem 2.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}
.page-hero > h1,
.page-hero > .sub,
.page-hero > .cta-row {
    grid-column: auto;
}
.page-hero > .stats {
    grid-column: auto;
    grid-row: auto;
}
.page-hero h1 {
    font-family: "Open Sans", sans-serif;
    max-width: 780px;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}
.sub {
    margin: 1.5rem 0 0;
    max-width: 760px;
    color: var(--text2);
    font-size: 1.08rem;
    line-height: 1.75;
}
.cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.9rem;
}
.cta-row-centered {
    justify-content: center;
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 16px 30px rgba(6, 12, 24, 0.22);
}
.stats.stats-telephonie {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.stats.stats-telephonie .stat {
    background: transparent;
}
.stats-3{
    display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 16px 30px rgba(6, 12, 24, 0.22);
}
.stat {
    min-height: 84px;
    padding: 1.35rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.015);
}
.stat + .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.stn {
    font-size: clamp(1.8rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 0.35rem;
}
.stl {
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}

.sec,
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 3rem 1rem;
}
.page-hero + .sec {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}
.sec-title {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: #fff;
}
.sec-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.sec-header h2 {
    margin: 0.2rem 0 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: #fff;
}
.sico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.sico-red {
    background: var(--red-dim);
    border-color: var(--red-bdr);
}
.sico-green {
    background: var(--green-dim);
    border-color: var(--green-bdr);
}
.sico-amber {
    background: var(--amber-dim);
    border-color: var(--amber-bdr);
}
.lbl {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text2);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero > .lbl {
    justify-self: start;
    width: fit-content;
    max-width: 100%;
}

.rse-page .page-hero > .lbl {
    letter-spacing: 0.14em;
}
.lbl-red {
    color: #ff9aaa;
    background: rgba(232, 25, 60, 0.1);
    border-color: rgba(232, 25, 60, 0.24);
}
.lbl-green {
    color: #8fe3c2;
    background: rgba(29, 158, 117, 0.1);
    border-color: rgba(29, 158, 117, 0.24);
}
.lbl-amber {
    color: #fbbf24;
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.24);
}
.intro {
    margin: 1.5rem 0 0;
    max-width: 760px;
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.75;
}

.grid3 {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.grid4 {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
}
.card,
.wc,
.contact-info-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: 0 16px 35px rgba(6, 12, 24, 0.22);
}
.card {
    min-height: 100%;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 42px rgba(6, 12, 24, 0.3);
}
.feat {
    background: var(--bg2);
    border-color: rgba(74, 144, 212, 0.35);
    box-shadow: 0 18px 40px rgba(11, 25, 43, 0.24);
}
.cbadge {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9dcbff;
    background: rgba(74, 144, 212, 0.14);
    border: 1px solid rgba(74, 144, 212, 0.24);
    margin-bottom: 1rem;
}
.ct {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}
.cx {
    margin: 0.85rem 0 0;
    color: var(--text2);
    line-height: 1.7;
}
.fl {
    list-style: none;
    margin: 1.35rem 0 0;
    display: grid;
    gap: 0.8rem;
}
.fl li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    color: var(--text2);
    line-height: 1.55;
}
.fl li + li {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ck-blue,
.ck-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.ck-blue {
    color: #9dcbff;
    background: rgba(74, 144, 212, 0.16);
    border: 1px solid rgba(74, 144, 212, 0.25);
}
.ck-green {
    color: #90e7c6;
    background: rgba(29, 158, 117, 0.16);
    border: 1px solid rgba(29, 158, 117, 0.25);
}

.ci {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.ci-b { background: rgba(74, 144, 212, 0.12); border: 1px solid rgba(74, 144, 212, 0.25); }
.ci-a { background: rgba(217, 119, 6, 0.12); border: 1px solid rgba(217, 119, 6, 0.25); }
.ci-g { background: rgba(29, 158, 117, 0.12); border: 1px solid rgba(29, 158, 117, 0.25); }
.ci-r { background: rgba(232, 25, 60, 0.12); border: 1px solid rgba(232, 25, 60, 0.25); }

.wc {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.wt {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.wx {
    margin: 0;
    color: var(--text2);
    line-height: 1.7;
}

.cta-block {
    position: relative;
    max-width: 1100px;
    margin: 3.5rem auto 5rem;
    padding: 3rem 3.25rem;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg2);
    box-shadow: 0 30px 60px rgba(7, 13, 24, 0.28);
}
.lg {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
}
.cta-sub {
    margin: 1rem 0 0;
    max-width: 700px;
    color: var(--text2);
    line-height: 1.7;
}


#accueil-hero{
    width:36%;
}

/* ================= INTERNET ================= */

.cmp {
    width: 100%;
    margin-top: 2.5rem;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 22px;
    border-style: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 40px rgba(6, 12, 24, 0.24);
    background: rgba(255, 255, 255, 0.02);
}
.cmp thead {
    background: rgba(255, 255, 255, 0.04);
}
.cmp th,
.cmp td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text2);
}
.cmp td {
    color: #fff;
}
.cmp tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}
.cmp tbody tr:last-child td {
    border-bottom: 0;
}
.muted {
    color: var(--text2) !important;
}
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.tag-b {
    color: #9dcbff;
    background: rgba(74, 144, 212, 0.14);
    border-color: rgba(74, 144, 212, 0.2);
}
.tag-g {
    color: #90e7c6;
    background: rgba(29, 158, 117, 0.14);
    border-color: rgba(29, 158, 117, 0.2);
}
.tag-a {
    color: #ffc788;
    background: rgba(217, 119, 6, 0.14);
    border-color: rgba(217, 119, 6, 0.2);
}
.tag-c {
    color: #ff9aaa;
    background: rgba(232, 25, 60, 0.1);
    border-color: rgba(232, 25, 60, 0.2);
}
.btn-s {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-s:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.contact-shell {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 26px;
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 50px rgba(7, 13, 24, 0.26);
}
.contact-title {
    text-align: center;
    margin: 0 0 2rem;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.15;
    color: #fff;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.contact-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}
.contact-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.contact-input::placeholder {
    color: var(--text3);
}
.contact-input:focus {
    outline: none;
    border-color: rgba(74, 144, 212, 0.55);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(74, 144, 212, 0.14);
}
.contact-select option {
    background: var(--bg2);
    color: var(--text);
}
.contact-textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-submit {
    align-self: flex-start;
}
.contact-legal {
    font-size: 0.78rem;
    color: var(--text3);
    margin: 0.4rem 0 0;
}
.contact-link,
.contact-info-link {
    color: var(--blue-light);
    text-decoration: none;
}
.contact-link:hover,
.contact-info-link:hover {
    color: #fff;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.contact-info-card {
    min-height: 100%;
}
.contact-info-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.9rem;
    color: #fff;
}
.contact-info-text {
    margin: 0;
    color: var(--text2);
    line-height: 1.7;
}
.contact-info-link {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--red);
    font-weight: 500;
    font-size: 1rem;
}
.contact-info-note {
    margin: 0.6rem 0 0;
    font-size: 0.8rem;
    color: var(--text3);
}
.contact-input-error {
    border-color: rgba(232, 25, 60, 0.6) !important;
    background: rgba(232, 25, 60, 0.04) !important;
}
.contact-input-error:focus {
    box-shadow: 0 0 0 4px rgba(232, 25, 60, 0.14) !important;
}
.hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #ff8099;
}
.contact-flash {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.contact-flash-success {
    background: rgba(29, 158, 117, 0.12);
    border: 1px solid rgba(29, 158, 117, 0.3);
    color: #8fe3c2;
}
.contact-flash-error {
    background: rgba(232, 25, 60, 0.12);
    border: 1px solid rgba(232, 25, 60, 0.32);
    color: #ff9bb0;
}

.stats-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 3rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.sbi {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}
.sbn {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 700;
    color: #fff;
}
.sbl {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--text2);
    text-transform: lowercase;
}
.section-tag {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 1rem;
}
.section-h2 {
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-sub {
    max-width: 640px;
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.6;
}

/* ================= HÃ‰BERGEMENT ================= */

.services-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.sc {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.sc::after {
    content: none;
}
.sc:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}
.sc:hover::after {
    opacity: 0;
}
.si {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.si svg {
    width: 24px;
    height: 24px;
}
.sn {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.sd {
    color: var(--text2);
    font-size: 0.95rem;
    line-height: 1.6;
}
.stags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}
.stag {
    font-size: 0.75rem;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text2);
    letter-spacing: 0.02em;
}

.certif-band {
    margin: 3rem auto 0;
    max-width: 1100px;
    padding: 3.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg2);
    box-shadow: 0 30px 60px rgba(7, 13, 24, 0.8);
}
.certif-intro {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 1.5rem;
}
.certif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.cc {
    background: var(--bg3);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.cb {
    width: 50%;
    height: 25%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}
.cb-b {
    border: 1px solid rgba(74, 144, 212, 0.3);
}
.cb-g {
    border: 1px solid rgba(29, 158, 117, 0.4);
}
.cb-r {
    border: 1px solid rgba(232, 25, 60, 0.4);
}
.cn {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.3rem;
}
.cd {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.5;
    margin: 0;
}

/* ================= RSE ================= */

.rse-page {
    background: var(--bg);
    color: var(--text);
}

.rse-page .hero,
.rse-page .sec,
.rse-page .cta-block {
    max-width: 1100px;
}

.rse-page .stats-3,
.rse-page .card,
.rse-page .wc,
.rse-page .cta-block,
.rse-page .cmp {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

:root[data-theme="light"] .rse-page {
    background: var(--bg);
    color: var(--text);
}

:root[data-theme="light"] .rse-page .stats-3,
:root[data-theme="light"] .rse-page .card,
:root[data-theme="light"] .rse-page .wc,
:root[data-theme="light"] .rse-page .cmp,
:root[data-theme="light"] .rse-page .cta-block {
    background: #ffffff;
    border-color: var(--border);
}

:root[data-theme="light"] .rse-page .card,
:root[data-theme="light"] .rse-page .wc,
:root[data-theme="light"] .rse-page .cta-block {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

:root[data-theme="dark"] .rse-page .card,
:root[data-theme="dark"] .rse-page .wc,
:root[data-theme="dark"] .rse-page .cta-block {
    box-shadow: 0 16px 35px rgba(6, 12, 24, 0.2);
}

.why-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
}
.why-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.why-grid > div {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.why-line {
    width: 48px;
    height: 2px;
    background: var(--border);
}
.why-num {
    margin: 0;
    letter-spacing: 0.08em;
    color: var(--text2);
    font-size: 0.9rem;
}
.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.why-text {
    margin: 0;
    color: var(--text2);
    line-height: 1.7;
}

/* ================= QUI SOMMES-NOUS ================= */

.qsn-page {
    --bg: #0f1b2d;
    --bg2: #142338;
    --bg3: #1a2d45;
    --bg4: #1f3450;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.14);
    --text: #e8eef5;
    --text2: #8faabf;
    --text3: #4d6a82;
    --red: #e8193c;
    --red-dim: rgba(232, 25, 60, 0.12);
    --red-bdr: rgba(232, 25, 60, 0.3);
    --blue: #1e5fa8;
    --blue-light: #4a90d4;
    --blue-dim: rgba(30, 95, 168, 0.15);
    --blue-bdr: rgba(74, 144, 212, 0.3);
    --green: #1d9e75;
    --green-dim: rgba(29, 158, 117, 0.12);
    --green-bdr: rgba(29, 158, 117, 0.3);
    --amber: #d97706;
    --amber-dim: rgba(217, 119, 6, 0.12);
    --amber-bdr: rgba(217, 119, 6, 0.3);
    background: var(--bg);
    color: var(--text);
}

.qsn-page .hero,
.qsn-page .sec,
.qsn-page .cta-block {
    max-width: 1000px;
}

.qsn-page .hero {
    border-bottom: 1px solid var(--border);
    padding-top: 8.5rem;
}

.qsn-page .page-hero .lbl,
.qsn-page .page-hero .sub,
.qsn-page .page-hero h1,
.qsn-page .page-hero .btn-ghost {
    color: var(--text);
}

.qsn-page .page-hero .lbl {
    background: var(--blue-dim);
    border-color: var(--blue-bdr);
    color: var(--blue-light);
}

.qsn-page .page-hero .sub,
.qsn-page .intro,
.qsn-page .tl-text,
.qsn-page .team-bio,
.qsn-page .cta-sub {
    color: var(--text2);
}

.qsn-page .page-hero h1,
.qsn-page .sec-title,
.qsn-page .sec h2,
.qsn-page .lg,
.qsn-page .team-name,
.qsn-page .tl-title {
    color: var(--text);
}

.qsn-page .btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border2);
}

.qsn-page .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qsn-page .cta-block {
    margin-bottom: 0;
}

.qsn-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qsn-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid var(--green-bdr);
    background: linear-gradient(180deg, rgba(13, 122, 85, 0.08), rgba(13, 122, 85, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.qsn-mark span {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
}

.qsn-mark span::before,
.qsn-mark span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--green);
    border-radius: 999px;
}

.qsn-mark span::before {
    width: 15px;
    height: 2px;
}

.qsn-mark span::after {
    width: 2px;
    height: 15px;
}

.qsn-head h2 {
    margin: 0.15rem 0 0;
    font-family: "Open Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--text);
}

.timeline {
    position: relative;
    margin-top: 1.5rem;
    padding-left: 2.75rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border2);
}

.tl-item {
    position: relative;
    margin-bottom: 2.15rem;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -2.95rem;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 2px var(--red-bdr);
}

.tl-year {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
}

.tl-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.tl-text {
    margin: 0;
    color: var(--text2);
    font-size: 0.95rem;
    line-height: 1.65;
}

.team-grid {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.team-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.35rem;
    text-align: center;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.team-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.team-avatar-red {
    background: linear-gradient(135deg, #e8193c, #a0112a);
}

.team-avatar-blue {
    background: linear-gradient(135deg, #4a90d4, #1a5fa0);
}

.team-avatar-green {
    background: linear-gradient(135deg, #1d9e75, #126b4f);
}

.team-avatar-amber {
    background: linear-gradient(135deg, #d97706, #a05a04);
}

.team-avatar-gray {
    background: linear-gradient(135deg, #475569, #334155);
}

.team-avatar-yellow {
    background: linear-gradient(135deg, #b45309, #7a3605);
}

.team-name {
    margin: 0 0 0.25rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.team-role {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.6;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(12px);
}

.reveal-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

:root[data-theme="light"] .qsn-page {
    --bg: #f6f7fb;
    --bg2: #ffffff;
    --bg3: #eef1f6;
    --bg4: #e6ebf2;
    --border: rgba(15, 23, 42, 0.08);
    --border2: rgba(15, 23, 42, 0.16);
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --red-dim: rgba(232, 25, 60, 0.08);
    --red-bdr: rgba(232, 25, 60, 0.2);
    --blue: #1a56db;
    --blue-light: #1a56db;
    --blue-dim: rgba(26, 86, 219, 0.08);
    --blue-bdr: rgba(26, 86, 219, 0.2);
    --green: #0d7a55;
    --green-dim: rgba(13, 122, 85, 0.08);
    --green-bdr: rgba(13, 122, 85, 0.2);
    --amber: #b45309;
    --amber-dim: rgba(180, 83, 9, 0.08);
    --amber-bdr: rgba(180, 83, 9, 0.2);
    background: var(--bg);
}

:root[data-theme="light"] .qsn-page .btn-ghost {
    background: rgba(15, 23, 42, 0.02);
}

:root[data-theme="light"] .qsn-page .btn-ghost:hover {
    background: rgba(15, 23, 42, 0.06);
}


/* ================= INFOGERENCE ================= */

/* Forfait block */
.forfait {
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}
.fh {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ft {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.fs {
    font-size: 13px;
    color: var(--text3);
    margin: 4px 0 0;
}
.fp {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: right;
    margin: 0;
}
.fp span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text3);
    font-family: 'Open Sans', sans-serif;
}
.fp-note {
    font-size: 12px;
    color: var(--text3);
    margin: 3px 0 0;
    text-align: right;
}
.fb {
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.6rem;
    background: var(--bg);
}
.fi {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text2);
}

/* Modes d'intervention */
.modes {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.mc {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
}
.md {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.md-b { background: #4a90d4; }
.md-g { background: #1d9e75; }
.md-a { background: #d97706; }
.mt {
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 5px;
    color: #fff;
}
.mx {
    font-size: 13px;
    color: var(--text2);
    margin: 0;
    line-height: 1.55;
}

/* Processus de dÃ©marrage */
.process {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.pc {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}
.pn {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    margin: 0 0 10px;
}
.pt {
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 6px;
    color: #fff;
}
.px {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.55;
    margin: 0;
}

#infogerance{
    width: 12%;
}

/* ================= HÃ‰BERGEMENT (GARENTIES) ================= */

.trust-grid {
    margin: 1.8rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 1.4rem 1.8rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1bc298;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.trust-text {
    margin: 0;
    color: var(--text2);
    line-height: 1.55;
    font-size: 1.03rem;
}

@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

.cta-band {
    position: relative;
    max-width: 1100px;
    margin: 3.5rem auto 5rem;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg2);
    box-shadow: 0 30px 60px rgba(7, 13, 24, 0.3);
}
.cta-band-bg {
    display: none;
}
.cta-band-content {
    position: relative;
    padding: 3.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 760px;
}
.cta-kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text2);
}
.cta-band-content h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
}
.cta-band-content p {
    margin: 0;
    color: var(--text2);
    max-width: 600px;
    line-height: 1.7;
}
.cta-row-center {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}
.cta-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.cta-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

footer {
    margin: 0 3rem 3rem;
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.footer-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-copy {
    color: var(--text3);
    font-size: 0.85rem;
    margin: 0;
}

/* FOOTER DROPDOWNS */
.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.footer-dropdown {
    position: relative;
}
.footer-dropdown-trigger {
    background: none;
    border: none;
    color: var(--text2);
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s ease;
}
.footer-dropdown-trigger:hover,
.footer-dropdown.open .footer-dropdown-trigger {
    color: #fff;
}
.footer-dropdown-trigger svg {
    transition: transform 0.2s ease;
}
.footer-dropdown.open .footer-dropdown-trigger svg {
    transform: rotate(180deg);
}
.footer-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    background: rgba(15, 27, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 -20px 42px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
}
.footer-dropdown.open .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.footer-dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 9px;
    height: 9px;
    background: rgba(15, 27, 45, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}
.footer-dropdown-item {
    display: flex;
    align-items: center;
    color: var(--text2);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 12px;
    transition: color 0.15s ease, background 0.15s ease;
}
.footer-dropdown-item-button {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
}
.footer-dropdown-item:hover {
    color: var(--text);
    background: rgba(15, 27, 45, 0.08);
}

:root[data-theme="light"] .footer-dropdown-trigger:hover,
:root[data-theme="light"] .footer-dropdown.open .footer-dropdown-trigger {
    color: #1a2332;
}

:root[data-theme="light"] .footer-dropdown-item:hover {
    background: #e6eef6;
    color: #1a2332;
}

:root[data-theme="light"] nav {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}
:root[data-theme="light"] .dropdown-menu {
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
:root[data-theme="light"] .dropdown-menu::before {
    background: var(--bg2);
}
:root[data-theme="light"] .footer-dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--border);
}
:root[data-theme="light"] .footer-dropdown-menu::before {
    background: rgba(255, 255, 255, 0.98);
    border-right-color: var(--border);
    border-bottom-color: var(--border);
}
:root[data-theme="light"] .theme-toggle {
    background: rgba(15, 23, 42, 0.04);
}
:root[data-theme="light"] .theme-toggle:hover,
:root[data-theme="light"] .btn-ghost:hover,
:root[data-theme="light"] .btn-s:hover,
:root[data-theme="light"] .cta-ghost:hover {
    background: rgba(15, 23, 42, 0.08);
}
:root[data-theme="light"] .hero {
    background: var(--bg);
}
:root[data-theme="light"] .hero-badge,
:root[data-theme="light"] .btn-ghost,
:root[data-theme="light"] .lbl,
:root[data-theme="light"] .tag,
:root[data-theme="light"] .btn-s,
:root[data-theme="light"] .stag,
:root[data-theme="light"] .contact-input,
:root[data-theme="light"] .sico,
:root[data-theme="light"] .si,
:root[data-theme="light"] .cb,
:root[data-theme="light"] .fh,
:root[data-theme="light"] .stat,
:root[data-theme="light"] .sbi,
:root[data-theme="light"] .cc,
:root[data-theme="light"] .mc,
:root[data-theme="light"] .pc {
    background: rgba(15, 23, 42, 0.03);
    border-color: var(--border);
    box-shadow: none;
}
:root[data-theme="light"] .btn-ghost,
:root[data-theme="light"] .btn-s {
    color: var(--text);
}
:root[data-theme="light"] .stats,
:root[data-theme="light"] .stats-3,
:root[data-theme="light"] .card,
:root[data-theme="light"] .wc,
:root[data-theme="light"] .contact-info-card,
:root[data-theme="light"] .cmp,
:root[data-theme="light"] .sc,
:root[data-theme="light"] .why-grid > div,
:root[data-theme="light"] .forfait,
:root[data-theme="light"] .certif-band {
    background: #ffffff;
    border-color: var(--border);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}
:root[data-theme="light"] .stats.stats-telephonie {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
:root[data-theme="light"] .feat,
:root[data-theme="light"] .contact-shell,
:root[data-theme="light"] .cta-block,
:root[data-theme="light"] .cta-band {
    background: var(--bg2);
    border-color: var(--border);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}
:root[data-theme="light"] .cta-band-bg {
    display: none;
}
:root[data-theme="light"] .hero-h1,
:root[data-theme="light"] .page-hero h1,
:root[data-theme="light"] .stn,
:root[data-theme="light"] .sec-title,
:root[data-theme="light"] .sec-header h2,
:root[data-theme="light"] .ct,
:root[data-theme="light"] .wt,
:root[data-theme="light"] .lg,
:root[data-theme="light"] .cmp td,
:root[data-theme="light"] .contact-title,
:root[data-theme="light"] .contact-info-title,
:root[data-theme="light"] .sbn,
:root[data-theme="light"] .sn,
:root[data-theme="light"] .cn,
:root[data-theme="light"] .why-title,
:root[data-theme="light"] .ft,
:root[data-theme="light"] .fp,
:root[data-theme="light"] .mt,
:root[data-theme="light"] .pt,
:root[data-theme="light"] .cta-band-content h2,
:root[data-theme="light"] .footer-logo {
    color: var(--text);
}
:root[data-theme="light"] .page-hero + .sec,
:root[data-theme="light"] .stat + .stat,
:root[data-theme="light"] .fl li + li,
:root[data-theme="light"] .cmp th,
:root[data-theme="light"] .cmp td,
:root[data-theme="light"] footer,
:root[data-theme="light"] .fh {
    border-color: var(--border);
}
:root[data-theme="light"] .card:hover,
:root[data-theme="light"] .sc:hover {
    border-color: var(--border2);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
:root[data-theme="light"] .contact-input:focus {
    background: #ffffff;
}
:root[data-theme="light"] .contact-link:hover,
:root[data-theme="light"] .contact-info-link:hover,
:root[data-theme="light"] .footer-links a:hover {
    color: var(--text);
}
:root[data-theme="light"] .why-line {
    background: rgba(232, 25, 60, 0.3);
}
:root[data-theme="light"] .pn {
    color: rgba(15, 23, 42, 0.12);
}

:root[data-theme="light"] .timeline::before,
:root[data-theme="light"] .team-card {
    border-color: var(--border);
}

:root[data-theme="light"] .team-card {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .tl-dot {
    border-color: var(--bg2);
}

:root[data-theme="light"] .tl-title,
:root[data-theme="light"] .team-name {
    color: var(--text);
}

/* Footer and misc smaller rules omitted for brevity */

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }
    .nav-links,
    .nav-phone {
        display: none;
    }
    .theme-toggle {
        padding: 0.55rem 0.7rem;
    }
    .theme-toggle-label {
        display: none;
    }
    .hero {
        padding: 0 1.5rem;
    }
    .page-hero {
        padding: 7.5rem 1.5rem 2rem;
        grid-template-columns: 1fr;
    }
    .page-hero > .stats {
        grid-column: auto;
        grid-row: auto;
    }
    .section,
    .sec,
    .why-section,
    .cta-band,
    .certif-band {
        padding: 4rem 1.5rem;
    }

    .sec-header {
        flex-direction: column;
    }

    .contact-shell,
    .cta-block {
        padding: 2rem 1.5rem;
    }

    .cmp {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

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

    .stat {
        min-height: 78px;
        padding: 1rem 0.75rem;
    }

    .stat + .stat {
        border-left: 0;
    }

    .stat:nth-child(2n) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stats-bar {
        padding: 2rem 1.5rem 2rem;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-band {
        margin: 3rem 1.5rem 4rem;
    }

    .cta-band-content {
        padding: 2.5rem 1.5rem;
        max-width: none;
    }

    footer {
        margin: 0 1.5rem 3rem;
        padding: 2rem 0 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-dropdown-menu {
        min-width: 150px;
    }
}

