/* --- Variables & Global Styles --- */
:root {
    --bg-dark: #0a0c10;
    --bg-medium: #1a1c20;
    --text-light: #e0e0e0;
    --text-dark: #a0a0a0;
    --accent-primary: #00f7ff;
    --accent-secondary: #00aaff;
    --font-main: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: var(--font-mono);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-secondary);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}

/* --- Header --- */
header {
    background-color: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo .accent-dot {
    color: var(--accent-primary);
}


/* Ne cible que l'UL principal, pas le sous-menu */
nav > ul {
    list-style: none;
    display: flex;
}

/* Ne cible que les LI du menu principal */
nav > ul > li {
    margin-left: 2rem;
}

nav a {
    color: var(--text-light);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a.active, nav a:hover {
    color: #fff;
    border-bottom-color: var(--accent-primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}







/* -------------- MENU DEROULANT --------------------------- */
/* --- Dropdown Menu --- */
.has-dropdown {
    position: relative; /* Contexte de positionnement pour le sous-menu */
}

.dropdown-menu {
    position: absolute;
    top: 100%; /* Se positionne juste en dessous du parent */
    left: 0;
    background-color: var(--bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 10px; /* Petit espace pour ne pas coller au menu */
    min-width: 250px;
    z-index: 1001;
    
    /* Cacher le menu par défaut avec une animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Style des liens du sous-menu */
.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block; /* Pour que toute la zone soit cliquable */
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    border-bottom: none !important; /* Annule le style du menu principal */
}

.dropdown-menu a:hover {
    background-color: rgba(0, 247, 255, 0.1);
    color: #fff;
    border-bottom: none !important;
}

/* Afficher le sous-menu au survol sur ordinateur */
.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ajustement pour l'icône */
.has-dropdown > a i {
    margin-left: 0.5rem;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* -------------- MENU DEROULANT --------------------------- */













/* --- Hero Section --- */
#hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.typing-effect::after {
    content: '_';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* --- Sections --- */
section {
    padding: 6rem 0;
}

.page-header {
    padding-top: 4rem;
    padding-bottom: 2rem;
    text-align: center;
}

/* --- Services Overview --- */
#services-overview h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-medium);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
}


/* --- Why Us Section --- */
#why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
#why-us h2 {
    font-size: 2.5rem;
}

#why-us ul {
    list-style: none;
    margin-top: 2rem;
}
#why-us li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
#why-us i {
    color: var(--accent-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}
.why-us-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

/* --- Detailed Services Page --- */
/*
.detailed-service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--bg-medium);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-primary);
}
*/
.detailed-service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--bg-medium);
    padding: 2rem;
    margin-bottom: 2rem;

  border-radius: 8px;                   /* coins arrondis */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* ombre légère */
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.detailed-service-item:hover {
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);  /* ombre portée plus prononcée */
  transform: translateY(-5px) scale(1.03);         /* léger déplacement vers le haut + agrandissement */
}

.detailed-service-item .service-icon-bg {
  transition: transform 0.3s ease;
}

.detailed-service-item:hover .service-icon-bg {
  transform: rotate(10deg) scale(1.1);    /* légère rotation et agrandissement de l’icône */
}






.service-icon-bg {
    font-size: 2rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}
.service-content h3 {
    margin-bottom: 0.5rem;
}

/* --- Reveal on Scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Footer --- */
footer {
    background-color: var(--bg-medium);
    padding: 1rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-dark);
}
.footer-col a:hover {
    color: var(--accent-primary);
}

.social-icons a {
    color: var(--text-dark);
    margin-right: 1rem;
    font-size: 1.5rem;
}
.social-icons a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    #why-us .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    nav {
        display: none; /* Hide nav by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-medium);
        padding: 1rem 0;
    }
    nav.active {
        display: block; /* Show nav when active */
    }

    /* Ne cible que l'UL principal, pas le sous-menu */
    nav > ul {
        list-style: none;
        display: flex;
    }
    /* Ne cible que les LI du menu principal */
    nav > ul > li {
        margin-left: 2rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    section {
        padding: 4rem 0;
    }





    .dropdown-menu {
        /* Sur mobile, le menu n'est plus absolu mais fait partie du flux */
        position: static;
        display: none; /* Caché par défaut, géré par JS */
        width: 100%;
        background-color: transparent;
        border: none;
        margin-top: 0.5rem;
        padding-left: 1rem; /* Indentation pour montrer que c'est un sous-menu */
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .has-dropdown.open > .dropdown-menu {
        display: block; /* Afficher quand la classe 'open' est ajoutée */
    }

    .has-dropdown > a i {
        transform: none !important; /* On ne veut pas de rotation au "hover" sur mobile */
    }
    
    .has-dropdown.open > a i {
        transform: rotate(180deg) !important; /* Rotation seulement si ouvert */
    }



}
















/*------------ Notitia IP ----------------*/
/* --- STYLES POUR LA PAGE PRODUIT : NOTITIA IP --- */

/* --- Hero Section Spécifique --- */
#product-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 12, 16, 0.5), var(--bg-dark) 70%),
                url('https://www.transparenttextures.com/patterns/clean-gray-paper.png'); /* Texture subtile */
    z-index: 1;
}

#product-hero .hero-content {
    position: relative;
    z-index: 2;
}

.product-subtitle {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

#product-hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

#product-hero .tagline {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- Section Intro Produit --- */
#product-intro.container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-visual {
    text-align: center;
}

.intro-visual i {
    font-size: 10rem;
    color: var(--accent-primary);
    opacity: 0.2;
    transform: rotate(-15deg);
}

/* --- Section Mots-clés --- */
#keywords {
    background-color: var(--bg-medium);
}

#keywords h2 {
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.keyword-cloud span {
    font-family: var(--font-mono);
    padding: 0.5rem 1rem;
    background-color: rgba(0, 247, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.keyword-cloud span:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* --- Section Audience --- */
#target-audience h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-card {
    background-color: var(--bg-medium);
    padding: 2rem;
    border-left: 3px solid var(--accent-primary);
    transition: background-color 0.3s ease;
}

.audience-card:hover {
    background-color: #2a2c30;
}

.audience-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.audience-card h3 {
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* --- Section Utilités / Use Cases --- */
#use-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.use-cases-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 2.5rem;
}

.use-cases-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    transition: background-color 0.2s ease;
}
.use-cases-list li:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.use-cases-list i {
    color: var(--accent-primary);
    margin-right: 1rem;
    margin-top: 5px; /* Alignement vertical */
}

/* --- Callout LPM --- */
#lpm-callout {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.callout-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    padding: 2.5rem;
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-left: 5px solid var(--accent-primary);
}

.callout-box i {
    font-size: 4rem;
    color: var(--accent-secondary);
}

.callout-box h3 {
    color: #fff;
}

.callout-box p {
    color: var(--text-dark);
}

/* --- Responsive pour la page produit --- */
@media (max-width: 768px) {
    #product-hero h1 {
        font-size: 3rem;
    }
    #product-intro.container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .intro-visual {
        margin-top: 2rem;
    }
    .intro-visual i {
        font-size: 8rem;
    }
    .use-cases-list {
        columns: 1;
    }
    .callout-box {
        flex-direction: column;
        text-align: center;
    }
}
/*------------ Notitia IP ----------------*/





























/*------------ SCRUTIX ----------------*/
/* --- STYLES POUR LA PAGE PRODUIT : SCRUTIX --- */

/* --- Hero Section Spécifique à Scrutix --- */
#scrutix-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--bg-dark);
}

.hero-graph-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 150vmax;
    background-image: repeating-conic-gradient(from 0deg, var(--accent-primary) 0deg 0.1deg, transparent 0.1deg 20deg);
    opacity: 0.15;
    animation: spin 60s linear infinite;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

#scrutix-hero .hero-content {
    position: relative;
    z-index: 2;
}

#scrutix-hero h1 {
    font-size: 5rem;
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

/* Effet Glitch pour le H1 */
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    overflow: hidden;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-secondary);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-primary), 2px 2px var(--accent-secondary);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}
@keyframes glitch-anim-1 { 0% { clip-path: inset(40% 0 61% 0); } 100% { clip-path: inset(20% 0 1% 0); } }
@keyframes glitch-anim-2 { 0% { clip-path: inset(10% 0 81% 0); } 100% { clip-path: inset(90% 0 1% 0); } }


/* --- Section Intro & Visuel Graphique --- */
#scrutix-intro.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-visual-graph img {
    max-width: 100%;
    opacity: 0.7;
    filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.3));
}


/* --- Grille de Fonctionnalités --- */
#features h2 { text-align: center; margin-bottom: 3rem; }
.feature-grid-scrutix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-medium);
    padding: 2rem;
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: #1f2125;
}
.feature-card i { font-size: 2rem; color: var(--accent-primary); margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-dark); }


/* --- Tableau de Comparaison --- */
#comparison h2 { text-align: center; margin-bottom: 3rem; }
.table-container {
    overflow-x: auto; /* Pour la responsivité sur mobile */
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-medium);
}
.comparison-table th, .comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-table th {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    text-transform: uppercase;
}
.comparison-table tbody tr:hover {
    background-color: rgba(0, 247, 255, 0.05);
}
.comparison-table strong {
    color: #fff;
}


/* --- Boîte de Positionnement --- */
#positioning { background: var(--bg-dark); }
.positioning-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-medium);
    padding: 2.5rem;
    border-image: linear-gradient(to right, var(--accent-primary), var(--accent-secondary)) 1;
    border-width: 2px;
    border-style: solid;
}
.positioning-box i { font-size: 3rem; color: var(--accent-primary); }
.positioning-box p { color: var(--text-dark); }


/* --- Responsive pour Scrutix --- */
@media (max-width: 992px) {
    .feature-grid-scrutix {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    #scrutix-hero h1 { font-size: 3.5rem; }
    #scrutix-intro.container { grid-template-columns: 1fr; }
    .intro-visual-graph { margin-top: 2rem; }
    .positioning-box { flex-direction: column; text-align: center; }
}
/*------------ SCRUTIX ----------------*/





























/*------------ PENTEST ----------------*/
/* --- STYLES POUR LA PAGE PRODUIT : PENTEST --- */

/* --- Hero Section Spécifique à Pentest --- */
#pentest-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--bg-dark);
}

.hero-grid-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to right, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: pan-grid 10s linear infinite;
    z-index: 0;
}

@keyframes pan-grid {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

#pentest-hero .hero-content { position: relative; z-index: 2; }

.guarantee-box {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background-color: rgba(0, 247, 255, 0.1);
    border: 1px solid var(--accent-primary);
    backdrop-filter: blur(5px);
}
.guarantee-box i { font-size: 2.5rem; color: var(--accent-primary); }
.guarantee-box p { margin: 0; text-align: left; color: var(--text-light); }
.guarantee-box p strong { color: #fff; }

/* --- Section des "Boxes" --- */
#pentest-types h2 { text-align: center; margin-bottom: 3rem; }
.box-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.box-card { padding: 2rem; border: 1px solid var(--bg-medium); transition: all 0.3s ease; }
.box-card:hover { transform: translateY(-10px); background: var(--bg-medium); }
.box-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.box-header i { font-size: 2rem; }
.box-card.black-box { border-left: 3px solid #888; }
.box-card.black-box i { color: #888; }
.box-card.gray-box { border-left: 3px solid #ccc; }
.box-card.gray-box i { color: #ccc; }
.box-card.white-box { border-left: 3px solid var(--accent-primary); }
.box-card.white-box i { color: var(--accent-primary); }

/* --- Section Périmètre --- */
#service-scope { background: var(--bg-medium); }
#service-scope h2 { text-align: center; margin-bottom: 3rem; }
.scope-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.scope-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--bg-dark); border: 1px solid var(--bg-medium); transition: all 0.2s ease-in-out; }
.scope-item:hover { color: var(--accent-primary); border-color: var(--accent-primary); }
.scope-item i { font-size: 1.5rem; }

/* --- Section Méthodologie (Timeline) --- */
#pentest-methodology h2 { text-align: center; margin-bottom: 4rem; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; width: 2px; background: var(--accent-primary); opacity: 0.3; top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.timeline-item { position: relative; margin-bottom: 3rem; width: 50%; }
.timeline-item:nth-child(odd) { left: 0; padding-right: 3rem; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 3rem; }
.timeline-item::after { content: ''; position: absolute; width: 16px; height: 16px; background: var(--bg-dark); border: 2px solid var(--accent-primary); border-radius: 50%; top: 0.5rem; z-index: 1; }
.timeline-item:nth-child(odd)::after { right: -8px; }
.timeline-item:nth-child(even)::after { left: -8px; }
.timeline-content { background: var(--bg-medium); padding: 1.5rem; }
.timeline-content h3 { margin-top: 0; }

/* --- Section Rapport --- */
#pentest-report.container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
#pentest-report ul { list-style: none; padding-left: 0; }
#pentest-report li { display: flex; align-items: flex-start; margin-bottom: 1rem; }
#pentest-report i { color: var(--accent-primary); margin-right: 1rem; margin-top: 5px; }
.report-visual { background: #1f2125; border: 1px solid var(--bg-medium); padding: 1rem; }
.report-header { display: flex; gap: 0.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--bg-medium); }
.report-header span { width: 12px; height: 12px; border-radius: 50%; background: #333; }
.report-body { padding-top: 1rem; }
.report-body h4 { margin: 0 0 1rem; font-family: var(--font-mono); }
.chart-bar { height: 2rem; margin-bottom: 0.5rem; font-size: 0.8rem; color: #000; font-weight: bold; display: flex; align-items: center; padding-left: 0.5rem; }

/* --- Responsive pour Pentest --- */
@media (max-width: 992px) {
    .box-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .timeline::before { left: 8px; }
    .timeline-item { width: 100%; padding-left: 3rem; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 0; }
    #pentest-report.container { grid-template-columns: 1fr; }
}
/*------------ PENTEST ----------------*/











/*------------ Notitia Wireless ----------------*/
/* --- STYLES POUR LA PAGE PRODUIT : NOTITIA WIRELESS --- */

/* --- Hero Section Spécifique à Wireless --- */
#wireless-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--bg-dark);
}

.hero-waves-background {
    position: absolute;
    top: 50%; left: 50%;
    width: 1px; height: 1px;
}
.hero-waves-background::before, .hero-waves-background::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100vmax; height: 100vmax;
    border: 2px solid rgba(0, 247, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: radiate 6s ease-out infinite;
}
.hero-waves-background::after {
    animation-delay: 3s; /* Second wave is delayed */
}

@keyframes radiate {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

#wireless-hero .hero-content { position: relative; z-index: 2; }

/* --- Boîte d'Avertissement --- */
.warning-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 204, 0, 0.05);
    padding: 2rem;
    border: 1px solid rgba(255, 204, 0, 0.5);
    border-left: 5px solid #ffcc00;
}
.warning-box i { font-size: 3rem; color: #ffcc00; }
.warning-box h3 { color: #ffcc00; }
.warning-box p { color: var(--text-dark); margin: 0; }
.warning-box strong { color: #fff; }

/* --- Grille de fonctionnalités --- */
#wireless-features h2 { text-align: center; margin-bottom: 3rem; }
.feature-grid-wireless { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-card-wireless { text-align: center; padding: 2rem; background: var(--bg-medium); transition: transform 0.3s ease; }
.feature-card-wireless:hover { transform: scale(1.05); }
.feature-card-wireless i { font-size: 3rem; color: var(--accent-primary); margin-bottom: 1.5rem; }

/* --- Processus Automatisé --- */
#wireless-process { background: var(--bg-dark); }
#wireless-process h2 { text-align: center; margin-bottom: 3rem; }
.process-flow { list-style: none; padding: 0; counter-reset: process-counter; }
.process-flow li { position: relative; padding: 1rem 1rem 2rem 3.5rem; margin-bottom: 1.5rem; }
.process-flow li:not(:last-child)::after { content: ''; position: absolute; left: 24px; top: 40px; bottom: -1.5rem; width: 2px; background: rgba(0, 247, 255, 0.2); }
.process-flow li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px; height: 50px;
    background: var(--bg-medium);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}
.process-flow h3 { margin-bottom: 0.5rem; }
.process-flow p { color: var(--text-dark); margin: 0; }

/* --- Boîte Usecase --- */
.usecase-box { display: flex; align-items: center; gap: 2rem; background: var(--bg-medium); padding: 2.5rem; }
.usecase-box i { font-size: 3rem; color: var(--accent-secondary); }

/* --- Responsive pour Wireless --- */
@media (max-width: 768px) {
    .warning-box { flex-direction: column; text-align: center; }
}
/*------------ Notitia Wireless ----------------*/


















/*------------ SERVIET ----------------*/
/* --- STYLES POUR LA PAGE PRODUIT : SERVIET --- */

/* --- Hero Section Spécifique à Serviet --- */
#serviet-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-color: var(--bg-dark);
}

.hero-hash-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(ellipse at center, rgba(10, 12, 16, 0) 0%, var(--bg-dark) 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300f7ff' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

#serviet-hero .hero-content { position: relative; z-index: 2; }

.trinity-logo {
    position: relative;
    width: 150px; height: 130px; /* Dimensions for an equilateral triangle */
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trinity-logo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--accent-primary);
    opacity: 0.1;
    animation: pulse-glow 4s infinite ease-in-out;
}
.trinity-logo i {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 15px var(--accent-primary);
    z-index: 2;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}


/* --- Section Trinity Features --- */
#trinity-features h2 { text-align: center; }
.section-subtitle { text-align: center; color: var(--text-dark); max-width: 600px; margin: -0.5rem auto 3rem; }
.trinity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.trinity-card { text-align: center; padding: 2rem; background: var(--bg-medium); border-bottom: 3px solid transparent; transition: all 0.3s ease; }
.trinity-card:hover { transform: translateY(-5px); border-bottom-color: var(--accent-primary); }
.trinity-card i { font-size: 3rem; color: var(--accent-primary); margin-bottom: 1.5rem; }

/* --- Section Smart Cracking Visual --- */
#smart-cracking-visual.container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.funnel-visual { display: flex; flex-direction: column; align-items: center; font-family: var(--font-mono); color: var(--text-dark); }
.funnel-visual span { display: block; text-align: center; padding: 0.5rem; }
.funnel-visual i { font-size: 1.5rem; color: var(--accent-primary); margin: 0.5rem 0; }
.funnel-top, .funnel-middle, .funnel-bottom { display: flex; flex-direction: column; align-items: center; }
.funnel-top span { width: 100%; background: rgba(255, 77, 77, 0.1); border: 1px solid rgba(255, 77, 77, 0.3); }
.funnel-middle span { width: 60%; margin-top: 1rem; }
.funnel-bottom span { width: 40%; background: rgba(0, 247, 255, 0.1); border: 1px solid rgba(0, 247, 255, 0.3); color: #fff; }

/* --- Section Avantages --- */
#serviet-advantages { background: var(--bg-medium); }
#serviet-advantages h2 { text-align: center; margin-bottom: 3rem; }
.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.advantage-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.advantage-item i { font-size: 2rem; color: var(--accent-secondary); margin-top: 5px; }
.advantage-item h4 { margin: 0 0 0.5rem; }
.advantage-item p { margin: 0; color: var(--text-dark); }

/* --- Responsive pour Serviet --- */
@media (max-width: 992px) {
    .trinity-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    #smart-cracking-visual.container { grid-template-columns: 1fr; }
}
/*------------ SERVIET ----------------*/

















/*------------ CONTACT ----------------*/
/* --- STYLES POUR LA PAGE CONTACT --- */

#contact-hero {
    position: relative;
    width: 100%;
    min-height: 90vh; /* Prend presque toute la hauteur de l'écran */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
    background-color: var(--bg-dark);
}

#contact-particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-box {
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.2);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

#contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.email-container {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-medium);
    border: 1px solid var(--accent-primary);
    padding: 0.5rem;
    font-size: 1.2rem;
}

#contact-email {
    font-family: var(--font-mono);
    padding: 0.5rem 1rem;
    color: #fff;
}

#copy-email-btn {
    background: var(--accent-primary);
    border: none;
    color: var(--bg-dark);
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#copy-email-btn:hover {
    background-color: var(--accent-secondary);
}

#copy-email-btn:active {
    transform: scale(0.95);
}

.social-contact {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

.social-contact p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-icons-contact a {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--accent-primary);
    transform: translateY(-5px);
}

/* Responsive pour Contact */
@media (max-width: 768px) {
    #contact-hero h1 {
        font-size: 2.5rem;
    }
    .contact-box {
        padding: 2.5rem 1.5rem;
    }
    .email-container {
        font-size: 1rem;
    }
}
/*------------ CONTACT ----------------*/











/*------------ À PROPOS ----------------*/
/* --- STYLES POUR LA PAGE À PROPOS --- */

/* --- Hero Section Spécifique "À Propos" --- */
#about-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}
.hero-dna-background {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.1), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 247, 255, 0.1), transparent 30%),
        var(--bg-dark);
    z-index: 0;
}
#about-hero .hero-content { position: relative; z-index: 1; }

/* --- Section Nos Valeurs --- */
#our-values h2 { text-align: center; margin-bottom: 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; background: var(--bg-medium); text-align: center; border-top: 3px solid transparent; transition: all 0.3s ease; }
.value-card:hover { transform: translateY(-10px); border-top-color: var(--accent-primary); }
.value-card i { font-size: 3rem; color: var(--accent-primary); margin-bottom: 1.5rem; }

/* --- Section Timeline de notre parcours --- */
#our-journey { background: var(--bg-dark); }
#our-journey h2 { text-align: center; margin-bottom: 4rem; }
.journey-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.journey-timeline::after { content: ''; position: absolute; width: 3px; background-color: var(--accent-primary); top: 0; bottom: 0; left: 30px; margin-left: -1.5px; opacity: 0.2; }
.journey-item { position: relative; padding-left: 80px; margin-bottom: 50px; }
.journey-year { position: absolute; left: 0; top: 5px; font-family: var(--font-mono); font-size: 1.2rem; font-weight: bold; color: var(--accent-primary); }
.journey-content { background: var(--bg-medium); padding: 1.5rem; }
.journey-content h3 { margin-top: 0; color: #fff; }
.journey-content p { color: var(--text-dark); margin: 0; }

/* --- Section Équipe --- */
#the-team h2 { text-align: center; margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; justify-content: center; }
.team-card { position: relative; background: var(--bg-medium); text-align: center; padding: 2.5rem 1.5rem; overflow: hidden; }
.team-avatar { margin-bottom: 1.5rem; }
.team-avatar img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--accent-primary); }
.team-card h3 { margin-bottom: 0.25rem; }
.team-card span { color: var(--text-dark); font-family: var(--font-mono); }
.team-card .social-link { position: absolute; top: 1rem; right: -50px; /* Caché par défaut */ background: var(--accent-primary); color: var(--bg-dark); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: right 0.3s ease; }
.team-card:hover .social-link { right: 1rem; }

/* --- Section CTA Carrières --- */
#join-us-cta { background: var(--bg-medium); text-align: center; padding: 4rem 0; }
#join-us-cta p { margin-top: 1rem; margin-bottom: 2rem; color: var(--text-dark); }

/* --- Responsive pour "À Propos" --- */
@media (max-width: 992px) {
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .journey-timeline::after { left: 15px; }
    .journey-item { padding-left: 50px; }
    .journey-year { font-size: 1rem; }
}
/*------------ À PROPOS ----------------*/













/*------------ LA PAGE CARRIÈRES ----------------*/
/* --- STYLES POUR LA PAGE CARRIÈRES --- */

/* --- Hero Section Spécifique "Carrières" --- */
#careers-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-lines-background {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        repeating-linear-gradient(-45deg, 
            transparent, 
            transparent 20px, 
            rgba(0, 247, 255, 0.05) 20px, 
            rgba(0, 247, 255, 0.05) 40px);
    z-index: 0;
}

#careers-hero .hero-content { position: relative; z-index: 1; }

/* --- Section "Pourquoi nous rejoindre" --- */
#why-join-us h2 { text-align: center; margin-bottom: 3rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-card { padding: 2.5rem 2rem; background: var(--bg-medium); text-align: center; }
.benefit-card i { font-size: 3rem; color: var(--accent-primary); margin-bottom: 1.5rem; }

/* --- Section Offres d'emploi --- */
#job-listings { background: var(--bg-dark); }
#job-listings h2 { text-align: center; margin-bottom: 3rem; }
.job-list { max-width: 900px; margin: 0 auto; }
.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--bg-medium);
    border-left: 4px solid transparent;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.job-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-primary);
}
.job-info h3 { margin: 0 0 0.5rem; }
.job-meta { display: flex; gap: 1.5rem; color: var(--text-dark); font-family: var(--font-mono); }
.job-meta i { margin-right: 0.5rem; color: var(--accent-secondary); }

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--accent-secondary);
    color: var(--bg-dark);
}

/* --- Section Candidature Spontanée --- */
#spontaneous-application { text-align: center; }
.spontaneous-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.spontaneous-box i { font-size: 3rem; color: var(--accent-primary); margin-bottom: 1.5rem; }
.spontaneous-box h3 { margin-bottom: 1rem; }
.spontaneous-box p { color: var(--text-dark); margin-bottom: 2rem; }

/* --- Responsive pour "Carrières" --- */
@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
/*------------ LA PAGE CARRIÈRES ----------------*/

















/*------------ SERVITUS ----------------*/
/* --- STYLES POUR LA PAGE DÉFENSE BOTNET --- */

/* --- STYLES POUR LA PAGE PRODUIT : SERVITUS --- */

/* --- Hero Section Spécifique "Servitus" --- */
#servitus-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}
/* Le fond de cette page utilisera le même que la page "botnet-defense" pour la cohérence */
/* Assurez-vous que .hero-network-background est bien stylé, sinon décommentez le code ci-dessous */
/*
.hero-network-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100%" height="100%"><defs><style>line{stroke:%2300f7ff;stroke-width:0.1px;stroke-opacity:0.2;}</style></defs><line x1="0" y1="0" x2="100" y2="100" /><line x1="100" y1="0" x2="0" y2="100" /><line x1="50" y1="0" x2="50" y2="100" /><line x1="0" y1="50" x2="100" y2="50" /></svg>');
    opacity: 0.5;
}
*/
#servitus-hero .hero-content {
    position: relative;
    z-index: 1;
}

/* --- Section Fonctionnalités --- */
#servitus-features h2 {
    text-align: center;
    margin-bottom: 4rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
/* Schéma : Ligne de connexion entre les étapes */
.feature-grid::before {
    content: '';
    position: absolute;
    top: 52px; /* Positionnement vertical pour s'aligner avec les icônes */
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    opacity: 0.3;
}
.feature-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-medium);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.feature-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
}
.feature-step .step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.1);
}
.feature-step i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: block;
}
.feature-step h3 {
    margin-bottom: 1rem;
}
.feature-step p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* --- Section Interface --- */
#servitus-interface h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.interface-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 4rem;
    background: var(--bg-medium);
    padding: 3rem;
}
.interface-visual {
    text-align: center;
}
/* Schéma : Transformer l'icône en un élément de design majeur */
.interface-visual i {
    font-size: 12rem;
    color: var(--accent-primary);
    opacity: 0.1;
    animation: pulse-glow 4s infinite ease-in-out; /* Réutiliser l'animation de la page Serviet */
}
.interface-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.interface-text li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
/* Schéma : Personnalisation des puces de la liste */
.interface-text li i {
    color: var(--accent-primary);
    margin-right: 1rem;
    margin-top: 5px;
}
.interface-text p {
    font-size: 1.1rem;
}

/* --- Section CTA --- */
#servitus-cta {
    background: var(--bg-dark);
    text-align: center;
    padding: 4rem 0;
}
#servitus-cta p {
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .feature-grid::before {
        display: none; /* Cache la ligne de connexion qui ne fonctionnerait pas sur 2 colonnes */
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .interface-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .interface-visual {
        margin-bottom: 2rem;
    }
    .interface-visual i {
        font-size: 8rem;
    }
    .interface-text li {
        text-align: left;
    }
}
/*------------ SERVITUS ----------------*/



















/*------------ MENU LATERAL PANELS SERVICES ----------------*/
/* --- STYLES POUR LE MENU LATÉRAL FIXE --- */

#sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%; /* Prend toute la hauteur de l'écran */
    width: 250px; /* Largeur totale du menu déployé */
    z-index: 999;
    
    background-color: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 247, 255, 0.2);
    
    /* Le "truc" pour l'animation de position */
    /* On le déplace vers la gauche de 200px (250px de large - 50px visibles) */
    transform: translateX(-200px); 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Centrer les éléments à l'intérieur verticalement */
    display: flex;
    align-items: center;

}

#sidebar-nav:hover {
    transform: translateX(0); /* Ramène le menu à sa position d'origine */

}


#sidebar-nav:hover #hideArrow {
  display: none;
}



#sidebar-nav ul {
    list-style: none;
    padding: 1rem 0;
    width: 100%; /* S'assure que la liste prend toute la largeur */
}

#sidebar-nav li {
    margin: 0;
}

#sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: hidden; /* Empêche tout bug visuel lors de l'animation */
}

#sidebar-nav a:hover {
    background-color: rgba(0, 247, 255, 0.1);
    color: #fff;
}

#sidebar-nav a i {
    font-size: 1.4rem;
    min-width: 60px; /* Largeur minimum pour que l'icône soit bien visible */
    text-align: center;
    color: var(--accent-primary);
}

#sidebar-nav a span {
    font-weight: 600;
    margin-left: 10px; /* Espace entre l'icône et le texte */
}

/* --- Responsive pour le menu latéral --- */
/* On cache le menu sur les tablettes et mobiles */
@media (max-width: 992px) {
    #sidebar-nav {
        display: none;
    }
}
/*------------ MENU LATERAL PANELS SERVICES ----------------*/

















/*------------ AUDIT ----------------*/
/* --- STYLES POUR LA PAGE AUDIT DE SÉCURITÉ --- */

/* --- Hero Section Spécifique "Audit" --- */
#audit-hero {
    position: relative; padding: 8rem 0; text-align: center;
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    background-color: var(--bg-dark); overflow: hidden;
}
.hero-scanner-background {
    position: absolute; top: 50%; left: 50%;
    width: 150vmax; height: 150vmax;
    background: conic-gradient(from 0deg, transparent 0%, transparent 80%, var(--accent-primary) 95%, transparent 100%);
    opacity: 0.2;
    animation: spin 10s linear infinite;
    transform-origin: center center;
    transform: translate(-50%, -50%);
}
/* keyframes 'spin' est déjà défini dans le CSS de Scrutix, pas besoin de le redéfinir */

/* --- Section Méthodologie --- */
#audit-methodology h2 { text-align: center; margin-bottom: 4rem; }
.method-flow { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.method-step { flex: 1; text-align: center; padding: 1.5rem; background: var(--bg-medium); }
.method-step i { font-size: 2.5rem; color: var(--accent-primary); margin-bottom: 1rem; }
.method-arrow { display: flex; align-items: center; height: 150px; /* Aligner avec le contenu */ font-size: 2rem; color: var(--text-dark); }

/* --- Section Types d'Audits --- */
#audit-scope { background: var(--bg-dark); }
#audit-scope h2 { text-align: center; margin-bottom: 3rem; }
.scope-grid-audit { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.scope-card { padding: 2rem; background: var(--bg-medium); text-align: center; border: 1px solid transparent; transition: all 0.3s ease; }
.scope-card:hover { border-color: var(--accent-secondary); }
.scope-card i { font-size: 2.5rem; color: var(--accent-secondary); margin-bottom: 1rem; }
.scope-card h4 { margin: 0; }

/* --- Section Livrable (Radar Chart) --- */
#audit-deliverable h2 { text-align: center; margin-bottom: 3rem; }
.deliverable-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.radar-chart-container { position: relative; width: 350px; height: 350px; margin: 0 auto; }
.radar-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        repeating-radial-gradient(circle at center, transparent, transparent 19.5%, rgba(0, 247, 255, 0.1) 20%),
        /* Lignes de l'axe */
        linear-gradient(to bottom, rgba(0, 247, 255, 0.1) 1px, transparent 1px) center/1px 100% no-repeat,
        linear-gradient(60deg, transparent 49.5%, rgba(0, 247, 255, 0.1) 49.5%, rgba(0, 247, 255, 0.1) 50.5%, transparent 50.5%) center/100% 100% no-repeat,
        linear-gradient(120deg, transparent 49.5%, rgba(0, 247, 255, 0.1) 49.5%, rgba(0, 247, 255, 0.1) 50.5%, transparent 50.5%) center/100% 100% no-repeat;
    background-size: 100% 100%;
}
.radar-data {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 247, 255, 0.3);
    border: 2px solid var(--accent-primary);
}
.radar-label { position: absolute; font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-dark); }

/* --- Responsive pour Audit --- */
@media (max-width: 992px) {
    .method-flow { flex-direction: column; }
    .method-arrow { transform: rotate(90deg); height: auto; margin: 1rem 0; }
}
@media (max-width: 768px) {
    .deliverable-content { grid-template-columns: 1fr; }
    .radar-chart-container { margin-bottom: 2rem; width: 300px; height: 300px; }
}
/*------------ AUDIT ----------------*/
















/*------------ PRODUCTS ----------------*/
/* --- STYLES POUR LA PAGE PRODUITS --- */

/* --- Hero Section Spécifique "Produits" --- */
#products-hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

#products-canvas-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

#products-hero .hero-content {
    position: relative;
    z-index: 1;
}

/* --- Grille des Produits --- */
#product-grid {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.products-container {
    display: grid;
    grid-template-columns: 1fr; /* Une seule colonne par défaut */
    gap: 2.5rem;
}

.product-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: var(--bg-medium);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    width: 5px;
    height: 0%; /* Hauteur 0 par défaut */
    background: var(--accent-primary);
    transition: height 0.4s ease;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 247, 255, 0.1);
}

.product-card:hover::before {
    height: 70%; /* La ligne verticale grandit au survol */
}

.product-icon {
    font-size: 4rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.product-content h3 {
    margin: 0;
    font-size: 2rem;
    color: #fff;
}

.product-tag {
    font-family: var(--font-mono);
    color: var(--accent-secondary);
    margin: 0.25rem 0 1rem;
}

.product-desc {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.product-link {
    font-weight: bold;
    color: var(--accent-primary);
    text-decoration: none;
    transition: letter-spacing 0.3s ease;
}

.product-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.product-link:hover {
    letter-spacing: 1px;
}
.product-link:hover i {
    transform: translateX(5px);
}

/* --- Responsive pour Produits --- */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .product-card::before {
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        height: 5px;
    }
    .product-card:hover::before {
        width: 70%;
        height: 5px;
    }
}
/*------------ PRODUCTS ----------------*/







/*------------ Response incident ----------------*/
/* --- STYLES POUR LA PAGE RÉPONSE À INCIDENT --- */

/* --- Hero Section Spécifique "IR" --- */
#ir-hero {
    position: relative; padding: 8rem 0; text-align: center;
    min-height: 70vh; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at bottom, rgba(255, 77, 77, 0.1), transparent 70%), var(--bg-dark);
    overflow: hidden;
}

.hero-ekg-background { position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%); opacity: 0.3; }
.hero-ekg-background svg path {
    stroke: var(--accent-primary);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: ekg-draw 4s linear infinite;
}
@keyframes ekg-draw {
    to { stroke-dashoffset: 0; }
}

#ir-hero .hero-content { position: relative; z-index: 1; }

.btn-emergency {
    background: var(--accent-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
    animation: pulse-emergency 2s infinite;
}
.btn-emergency:hover { background: #fff; border-color: #fff; }

@keyframes pulse-emergency {
    0% { box-shadow: 0 0 0 0 rgba(0, 247, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 247, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 247, 255, 0); }
}

/* --- Section Processus d'Intervention --- */
#ir-process h2 { text-align: center; margin-bottom: 4rem; }
.process-timeline-ir {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.process-timeline-ir::before {
    content: '';
    position: absolute;
    top: 50px; /* Aligné avec les icônes */
    left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-primary), transparent);
    z-index: -1;
}
.ir-step { text-align: center; }
.ir-icon {
    width: 100px; height: 100px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--accent-primary);
    background: var(--bg-dark);
}
.ir-step h3 { margin-bottom: 0.5rem; }
.ir-step p { color: var(--text-dark); font-size: 0.9rem; }

/* --- Section Sous-Services --- */
#ir-sub-services { background: var(--bg-dark); }
#ir-sub-services h2 { text-align: center; margin-bottom: 3rem; }
.sub-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ir-service-card { padding: 2rem; background: var(--bg-medium); text-align: center; }
.ir-service-card i { font-size: 2.5rem; color: var(--accent-secondary); margin-bottom: 1rem; }

/* --- Section CTA Finale --- */
#ir-cta { background: var(--bg-medium); text-align: center; padding: 4rem 0; }
#ir-cta p { margin-top: 1rem; margin-bottom: 2rem; color: var(--text-dark); }
.btn-emergency-dark {
    background: transparent;
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    animation: pulse-emergency 2s infinite;
}
.btn-emergency-dark:hover { background: var(--accent-primary); color: var(--bg-dark); }

/* --- Responsive pour IR --- */
@media (max-width: 992px) {
    .process-timeline-ir { grid-template-columns: repeat(2, 1fr); }
    .process-timeline-ir::before { display: none; }
    .sub-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .process-timeline-ir { grid-template-columns: 1fr; }
}
/*------------ Response incident ----------------*/











/*------------ Investigation ----------------*/
/* --- STYLES POUR LA PAGE INVESTIGATION --- */

/* =================================
   Timeline Section
   ================================= */

#methodology {
    padding-top: 80px;
    padding-bottom: 80px;
}

#methodology h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px; /* Espace pour la ligne */
}

/* La ligne verticale de la timeline */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #333; /* Couleur de la ligne */
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 50px; /* Espace entre la ligne et le contenu */
}

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

/* Le point sur la ligne */
.timeline-dot {
    position: absolute;
    left: 20px; /* Doit correspondre à la position de la ligne */
    top: 5px; /* Ajustement vertical pour l'aligner avec le texte */
    width: 20px;
    height: 20px;
    background-color: #00f7ff; /* Couleur du point (votre couleur d'accent) */
    border: 3px solid #1a1a1a; /* Bordure pour se démarquer sur la ligne */
    border-radius: 50%;
    transform: translateX(-50%); /* Centrer le point sur la ligne */
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Style pour le numéro de l'étape */
.timeline-content .step-number {
    color: #00f7ff; /* Votre couleur d'accent */
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.7;
}









/* =================================
   Intervention Areas Section
   ================================= */

#intervention-areas {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

#intervention-areas h2 {
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Crée 2 colonnes égales */
    gap: 40px; /* Espace entre les colonnes */
    text-align: left; /* Aligne le texte des cartes à gauche */
}

.area-card {
    background-color: #1f1f1f; /* Un fond légèrement différent */
    padding: 40px 30px;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 247, 255, 0.1);
}

.area-icon {
    font-size: 2.5rem;
    color: #00f7ff; /* Votre couleur d'accent */
    margin-bottom: 20px;
    text-align: center;
}

.area-card h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card ul li {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; /* Aligne bien pour les listes sur plusieurs lignes */
    line-height: 1.6;
}

.area-card ul li i {
    color: #00f7ff; /* Couleur de l'icône check */
    margin-right: 12px;
    margin-top: 5px; /* Petit ajustement pour l'alignement vertical */
}

/* Responsive: Passer sur 1 colonne sur les petits écrans */
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
/*------------ Investigation ----------------*/


















/*------------ Public cible ----------------*/
/* =================================
   STYLE POUR LA SECTION PUBLIC CIBLE
   ================================= */
#target-audience {
    padding-top: 4rem;
    padding-bottom: 2rem;
    text-align: center;
}

#target-audience .section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #b0c4de; /* Couleur claire mais pas blanche */
}

.audience-grid {
    display: grid;
    /* Crée 2 colonnes par défaut */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.audience-card {
    background: #12121f; /* Un fond un peu plus sombre */
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color); /* Utilise la variable de couleur principale */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.1);
}

.audience-card .audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.audience-card h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.audience-card p {
    color: #a9a9c9; /* Couleur du texte plus douce */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive : passe à 1 colonne sur les petits écrans */
@media (max-width: 820px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}
/*------------ Public cible ----------------*/

