* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;      /* bleu moderne */
    --primary-dark: #1e40af;
    --accent: #06b6d4;       /* cyan moderne */
    --bg: #0f172a;           /* fond sombre stylé */
    --card: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
    --gradient: linear-gradient(135deg, #2563eb, #06b6d4);
    --primary-blue: #0047AB;
    --dark-blue: #002B5C;
    --light-blue: #4A90E2;
    --accent-blue: #00A3E0;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #1A1A1A;
    /* Hauteur approximative du header fixe (logo + padding) — pages secondaires via pages.css */
    --nav-offset: 144px;
    --logo-size: 150px;
    --logo-size-mobile: 80px;
}

@media (max-width: 768px) {
    :root {
        --nav-offset: 64px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2.25rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.logo-mark {
    height: var(--logo-size);
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    max-height: var(--logo-size);
    max-width: min(260px, 36vw);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}

.logo-text-ide {
    color: #8d939f;
}

.logo-text-cyb {
    color: #0b63cc;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    background-size: 200% 200%;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
}

/* Hover = mouvement du dégradé */
.cta-button:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* CLICK (effet pression + glow) */
.cta-button:active {
    transform: scale(0.96);
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) inset;
}

/* Zone liens + CTA (desktop : une ligne ; mobile : menu déroulant) */
.nav-collapse {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

#navbar.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#navbar.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

#navbar.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section avec Parallaxe */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--nav-offset);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(37, 100, 235, 0.589), transparent 40%),
                radial-gradient(circle at 80% 70%, #3a61bd, transparent 40%),
                linear-gradient(135deg, #3a61bd, #020617),
url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-50px) translateX(50px); }
    50% { transform: translateY(-100px) translateX(0); }
    75% { transform: translateY(-50px) translateX(-50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="20" y="20" fill="rgba(255,255,255,0.03)"/><rect width="1" height="1" x="60" y="60" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
    z-index: 3;
    opacity: 0.5;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37,99,235,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
}

.floating-card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Section avec parallaxe */
.stats {
    background: linear-gradient(135deg, #89919e 0%, #ffffff 50%, #6c747f 100%);
    padding: 6rem 2rem;
    position: relative;
}

.stats::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(1000px 380px at 15% 0%, rgba(185, 185, 185, 0.22), transparent 62%),
        radial-gradient(900px 300px at 85% 10%, rgba(0,163,224,0.10), transparent 60%),
        radial-gradient(700px 240px at 50% 100%, rgba(0,71,171,0.10), transparent 60%),
        linear-gradient(180deg, rgba(146, 144, 144, 0.342), rgba(255,255,255,0) 60%),
        repeating-linear-gradient(
            120deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 14px
        );
    pointer-events:none;
    opacity: 1;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,71,171,0.12);
    border-radius: 18px;
    padding: 2.2rem 1.5rem;
    box-shadow: 0 12px 35px rgba(16,24,40,0.06);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon{
    width: 62px;
    height: 62px;
    margin: 0 auto 1rem auto;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,71,171,0.16), rgba(0,163,224,0.12));
    border: 1px solid rgba(0,71,171,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.stat-icon i{
    font-size: 1.6rem;
}

.stat-number-wrap{
    display:flex;
    justify-content:center;
    align-items:baseline;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-prefix{
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-suffix{
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Feature Section avec image et parallaxe */
.feature-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--light-gray);
    overflow: hidden;
}

.feature-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* Baie serveur : illustration complète + texte en overlay (responsive, pas de <text> SVG) */
.feature-image--rack {
    height: auto;
    overflow: visible;
}

.feature-image--rack .feature-image-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    max-height: min(560px, 88vh);
}

.feature-image--rack .feature-image-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.feature-image--rack:hover .feature-image-visual img {
    transform: scale(1.05);
}

.feature-rack-text-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    padding: 14% 5% 14% 50%;
    pointer-events: none;
}

.feature-rack-line {
    display: block;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    font-size: clamp(0.62rem, 1.35vw + 0.35rem, 1.05rem);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(0, 30, 80, 0.45);
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
}

@media (max-width: 768px) {
    .feature-rack-text-layer {
        grid-template-rows: auto;
        align-content: end;
        align-items: end;
        gap: 0.35rem;
        padding: 38% 0.75rem 0.75rem;
        background: linear-gradient(
            180deg,
            rgba(0, 25, 60, 0) 0%,
            rgba(0, 35, 85, 0.5) 35%,
            rgba(0, 28, 70, 0.9) 100%
        );
    }

    .feature-rack-line {
        font-size: clamp(0.7rem, 3.2vw, 0.92rem);
        padding: 0.4rem 0.55rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.16);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,71,171,0.8), rgba(74,144,226,0.6));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.feature-image:hover .feature-overlay {
    opacity: 1;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li:before {
    content: '✓';
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Solutions Section */
.solutions {
    background: var(--white);
    padding: 6rem 2rem;
    position: relative;
}

/* Donner un fond "hero-like" uniquement à la section Audits */
.solutions#audits{
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,43,92,0.75), rgba(0,71,171,0.75)),
        url('https://images.unsplash.com/photo-1510511459019-5dda7724fd87?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* option parallax "comme le hero" */
@media (min-width: 1025px){
    .solutions#audits{
        background-attachment: fixed;
    }
}

.solutions#audits::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(900px 360px at 15% 0%, rgba(0,163,224,0.22), transparent 60%),
        radial-gradient(900px 360px at 85% 0%, rgba(0,71,171,0.26), transparent 60%),
        linear-gradient(180deg, rgba(0,43,92,0.45), rgba(0,43,92,0) 55%);
    z-index: 0;
}

.solutions#audits .solutions-container{
    position: relative;
    z-index: 1;
}

.solutions#audits .section-title,
.solutions#audits .section-subtitle{
    color: #fff;
}

.solutions#audits .section-subtitle{
    opacity: 0.92;
}

.solutions#audits .solution-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.55);
}

.cas-client-section{
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
}

.cas-client-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, #073878 0%, #073878 38%, #ffffff 100%),
        radial-gradient(900px 420px at 12% 0%, rgba(0,163,224,0.22), transparent 60%),
        radial-gradient(900px 420px at 88% 0%, rgba(0, 71, 171, 0), transparent 60%);
}

.cas-client{
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 4.25rem 3rem;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 26px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.cas-client > *{
    position: relative;
    z-index: 1;
}

.cas-client .section-title{
    color: #0f2542;
    text-shadow: 0 8px 30px rgba(16,24,40,0.10);
}

.cas-client .section-subtitle{
    color: rgba(31,56,88,0.85);
    margin-bottom: 2.5rem;
}

.cas-client-content{
    align-items: stretch;
    gap: 3rem;
}

.cas-client-cards{
    display: grid;
    gap: 1rem;
}

.cas-client-card{
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(0,71,171,0.12);
    border-radius: 18px;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 10px 30px rgba(16,24,40,0.08);
}

.cas-client-kpi{
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
}

.cas-client-kpi-suffix{
    font-size: 1.1rem;
    font-weight: 900;
    margin-left: 0.2rem;
}

.cas-client-kpi-label{
    color: rgba(31,56,88,0.85);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 1024px){
    .cas-client{
        padding: 3.5rem 1.5rem;
    }
    .cas-client-content{
        gap: 1.5rem;
    }
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,71,171,0.2);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0,71,171,0.3);
    transition: all 0.3s;
}

.solution-card:hover .solution-icon {
    transform: rotateY(360deg);
}

.solution-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.7;
}

/* Banner Parallaxe */
.parallax-banner {
    position: relative;
    height: 500px;
    background-image: url('data:image/svg+xml,<svg width="1920" height="500" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230047AB;stop-opacity:1" /><stop offset="100%" style="stop-color:%2300A3E0;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="500" fill="url(%23bg)"/><circle cx="200" cy="100" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="800" cy="200" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="1400" cy="150" r="4" fill="rgba(255,255,255,0.3)"/><circle cx="600" cy="350" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="1200" cy="400" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    position: relative;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.parallax-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Trust Section */
.trust {
    background: var(--light-gray);
    padding: 6rem 2rem;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.trust-logo {
    height: 100px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    font-size: 1.1rem;
}

.trust-logo-link {
    text-decoration: none;
}

.trust-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,71,171,0.15);
}

.live-map-section {
    position: relative;
    padding: 4.25rem 3rem;
    background: radial-gradient(circle at top, #020617, #000);
    color: white;
    backdrop-filter: blur(10px);
    z-index: 2;
    overflow: hidden;
}

.live-map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.4) 8%,
        rgba(255,255,255,0.0) 18%,
        rgba(255,255,255,0.0) 82%,
        rgba(255,255,255,0.4) 92%,
        rgba(255,255,255,0.95) 100%
    );
    pointer-events: none;
}

/* CONTAINER */
.live-map-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.live-map-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-map-head h2 {
    font-size: 2.3rem;
    font-weight: 700;
}

.live-map-head p {
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* BADGE LIVE */
.live-badge {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4d4d;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    position: relative;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

/* BOUTON */
.live-map-link {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.live-map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* CARD */
.live-map-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* glow effet */
.live-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.2), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(6,182,212,0.2), transparent 40%);
    pointer-events: none;
}

/* IFRAME */
.live-map-frame {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.live-map-frame iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: contrast(1.1) saturate(1.2);
}

/* FOOT */
.live-map-foot {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-map-note {
    font-size: 0.85rem;
    color: #94a3b8;
}

.cta-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at center, #074aa1 38%, #282829 100%);
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.cta-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* glow subtil */
.cta-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,0.2), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,0,0,0.15), transparent 40%);
    pointer-events: none;
}

/* BADGE */
.cta-badge {
    display: inline-block;
    background: rgba(255,0,0,0.15);
    color: #ff4d4d;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

/* TITRE */
.cta-content h2 {
    color: #ffffff;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* TEXTE */
.cta-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ACTIONS */
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* TEXTE TRUST */
.cta-trust {
    font-size: 0.9rem;
    color: #22c55e;
}

/* bouton déjà stylé */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 1rem 2rem;
    border-radius: 999px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37,99,235,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.5);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-about {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-contact {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.92;
    font-size: 0.95rem;
}

.footer-contact i {
    width: 18px;
    color: var(--accent-blue);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    padding-left: 0;
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* Pricing Section (import index1) */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.pricing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-table-wrap {
    background: var(--white);
    border: 1px solid rgba(0, 71, 171, 0.14);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 71, 171, 0.12);
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

/* Grille tarifaire alignée sur la plaquette (4 colonnes, thème du site) */
.pricing-table.pricing-table--reference {
    min-width: 640px;
}

.pricing-table.pricing-table--reference thead tr {
    background: linear-gradient(120deg, var(--primary-blue), var(--accent-blue));
}

.pricing-table.pricing-table--reference thead th {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    vertical-align: middle;
}

.pricing-table.pricing-table--reference thead th:first-child {
    text-align: left;
}

.pricing-th-sub {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.35rem;
    line-height: 1.25;
}

.pricing-table.pricing-table--reference th,
.pricing-table.pricing-table--reference td {
    border: 1px solid rgba(0, 71, 171, 0.14);
}

.pricing-table.pricing-table--reference td:nth-child(n + 2) {
    text-align: center;
}

.pricing-table thead tr {
    background: linear-gradient(120deg, var(--primary-blue), var(--accent-blue));
}

.pricing-table th,
.pricing-table td {
    text-align: left;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.pricing-table th {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.pricing-table td {
    color: #2a3b52;
    font-size: 0.95rem;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(74, 144, 226, 0.06);
}

.pricing-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.12);
}

.pricing-table td:first-child {
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-note {
    margin-top: 1rem;
    color: #5a6f8f;
    font-size: 0.9rem;
}

.pricing-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-search {
    width: 100%;
    border: 1px solid rgba(0, 71, 171, 0.25);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    color: #1f3858;
    background: #fff;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-search:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.16);
}

.pricing-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-chip {
    border: 1px solid rgba(0, 71, 171, 0.25);
    background: #fff;
    color: #1f436f;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-chip:hover {
    border-color: var(--accent-blue);
    color: var(--primary-blue);
}

.pricing-chip.active {
    background: linear-gradient(120deg, var(--primary-blue), var(--accent-blue));
    color: #fff;
    border-color: transparent;
}

.pricing-table tbody tr {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Ligne mise en avant — Audit 360 (recommandé) */
.pricing-table tbody tr.pricing-row-featured {
    background: linear-gradient(
        105deg,
        rgba(255, 193, 7, 0.22) 0%,
        rgba(0, 71, 171, 0.09) 42%,
        rgba(0, 163, 224, 0.14) 100%
    );
    box-shadow: inset 4px 0 0 var(--accent-blue), 0 4px 18px rgba(0, 71, 171, 0.12);
    outline: 1px solid rgba(0, 71, 171, 0.2);
}

.pricing-table tbody tr.pricing-row-featured:nth-child(even) {
    background: linear-gradient(
        105deg,
        rgba(255, 193, 7, 0.24) 0%,
        rgba(0, 71, 171, 0.1) 42%,
        rgba(0, 163, 224, 0.16) 100%
    );
}

.pricing-table tbody tr.pricing-row-featured:hover {
    background: linear-gradient(
        105deg,
        rgba(255, 193, 7, 0.3) 0%,
        rgba(0, 71, 171, 0.12) 42%,
        rgba(0, 163, 224, 0.2) 100%
    );
    box-shadow: inset 4px 0 0 var(--primary-blue), 0 6px 22px rgba(0, 71, 171, 0.18);
}

.pricing-table tbody tr.pricing-row-featured td {
    font-weight: 600;
    color: #132238;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 71, 171, 0.2);
}

.pricing-table tbody tr.pricing-row-featured td:first-child {
    color: var(--dark-blue);
}

.pricing-table tbody tr.pricing-row-featured td[data-tier] {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-blue);
}

.pricing-featured-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(120deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.35);
}

.pricing-featured-title strong {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.pricing-featured-desc {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 36rem;
}

.pricing-featured-lead {
    font-weight: 700;
    color: #1a2d45;
    line-height: 1.35;
}

.pricing-featured-tagline {
    font-size: 0.88rem;
    font-weight: 500;
    color: #3d5a7a;
    line-height: 1.45;
}

.mobile-reveal-btn {
    display: none;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.45rem 0.85rem;
        gap: 0.35rem;
    }

    .logo {
        gap: 0.35rem;
        max-width: calc(100% - 3.25rem);
    }

    .logo-mark {
        height: var(--logo-size-mobile);
    }

    .logo-mark {
        max-width: min(128px, 30vw);
    }

    .logo-text {
        font-size: 1.08rem;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-collapse {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        order: 3;
        padding: 0.75rem 0 0.25rem;
        border-top: 1px solid rgba(0, 71, 171, 0.12);
    }

    #navbar.nav-open .nav-collapse {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 71, 171, 0.08);
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0.25rem;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-collapse .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 0.35rem;
        padding: 0.85rem 1rem;
    }

    body.nav-menu-open {
        overflow: hidden;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        display: flex;
        justify-content: center;
        gap: 0.55rem;
        flex-wrap: nowrap;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero {
        height: auto;
        min-height: 72vh;
        padding: 1rem 0 2rem;
    }

    .hero-visual {
        margin-top: 0.25rem;
    }

    .hero-image-container {
        height: 200px;
        perspective: none;
    }

    .floating-card {
        display: none;
    }

    .stats {
        padding: 2rem 1rem;
    }

    .feature-section {
        padding: 2.4rem 1rem;
    }

    .feature-image:not(.feature-image--rack) {
        height: 260px;
    }

    .feature-image--rack .feature-image-visual {
        min-height: 200px;
        max-height: none;
        aspect-ratio: 10 / 11;
    }

    .cta-section {
        padding: 2.4rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.85rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .feature-content h2,
    .section-title {
        font-size: 1.55rem;
    }

    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.25rem;
    }

    .pricing-section {
        padding: 2.2rem 1rem;
    }

    .pricing-toolbar {
        grid-template-columns: 1fr;
    }

    .mobile-reveal-btn {
        display: block;
        width: auto;
        min-width: 140px;
        margin: 0.35rem auto 0.9rem;
        border: 1px solid rgba(0, 71, 171, 0.18);
        background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
        color: var(--primary-blue);
        border-radius: 999px;
        padding: 0.62rem 0.95rem;
        font-weight: 700;
        font-size: 0.88rem;
        box-shadow: 0 4px 10px rgba(0, 71, 171, 0.08);
    }

    .mobile-reveal-btn[aria-expanded="true"] {
        background: linear-gradient(180deg, #eef5ff 0%, #e4eeff 100%);
    }

    .mobile-collapsible#auditsGrid .solution-card:nth-child(n + 3) {
        display: none;
    }

    .mobile-collapsible#auditsGrid.is-expanded .solution-card {
        display: block;
    }

    .mobile-collapsible#pricingTableWrap {
        display: none;
    }

    .mobile-collapsible#pricingTableWrap.is-expanded {
        display: block;
    }

    .mobile-collapsible#casClientContent .feature-content {
        display: none;
    }

    .mobile-collapsible#casClientContent .cas-client-cards {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .mobile-collapsible#casClientContent .cas-client-card:nth-child(n + 2) {
        display: none;
    }

    .mobile-collapsible#casClientContent.is-expanded .feature-content {
        display: block;
    }

    .mobile-collapsible#casClientContent.is-expanded .cas-client-card {
        display: block;
    }

    .mobile-collapsible#faqGrid .solution-card:nth-child(n + 2) {
        display: none;
    }

    .mobile-collapsible#faqGrid.is-expanded .solution-card {
        display: block;
    }

    .mobile-collapsible#partenairesGrid .solution-card:nth-child(n + 2) {
        display: none;
    }

    .mobile-collapsible#partenairesGrid.is-expanded .solution-card {
        display: block;
    }

    .mobile-collapsible#pricingToolbarMobile,
    .mobile-collapsible#pricingNoteMobile {
        display: none;
    }

    .mobile-collapsible#pricingToolbarMobile.is-expanded,
    .mobile-collapsible#pricingNoteMobile.is-expanded {
        display: grid;
    }

    .mobile-collapsible#pricingNoteMobile.is-expanded {
        display: block;
    }

    .solutions,
    .trust,
    .cas-client-section,
    .live-map-section {
        padding: 2rem 1rem;
    }

    .solution-card,
    .stat-item,
    .cas-client-card {
        padding: 0.9rem;
    }

    .stat-item {
        flex: 1 1 0;
        max-width: 130px;
        min-width: 0;
        border-radius: 12px;
        text-align: center;
    }

    .stat-item .stat-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.45rem;
    }

    .stat-item .stat-icon i {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.74rem;
        line-height: 1.25;
    }

    .trust-logo {
        height: 68px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .cas-client-section {
        display: none;
    }

    .feature-list li {
        padding: 0.65rem 0;
    }

    .live-map-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-visual,
    .parallax-banner,
    .cas-client-parallax {
        transform: none !important;
    }
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    background: rgba(10, 24, 49, 0.96);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cookie-banner__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.9rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.cookie-banner__text a {
    color: #8fd3ff;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.55rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cookie-btn--primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.65rem;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }
}