/* ==========================================================
   SKOLLGUARD V3
   ----------------------------------------------------------
   Fichier : style2.css

   Feuille de style principale

   Organisation :

   1. Variables
   2. Reset
   3. Container
   4. Header
   5. Navigation
   6. Boutons
   7. Hero
   8. Sections
   9. Footer

========================================================== */



/* ==========================================================
   VARIABLES
========================================================== */

:root{

    /* Couleurs */

    --background:#081c2c;
    --background-light:#12283d;
    --background-card:#173149;

    --primary:#2da8ff;
    --primary-hover:#1697f7;

    --text:#ffffff;
    --text-soft:#b9c6d3;

    --border:#2d4b66;

    --warning:#ffb400;

    /* Dimensions */

    --container:1280px;

    --radius-small:8px;
    --radius:12px;
    --radius-large:16px;
    --radius-xl:22px;

    /* Ombres */

    --shadow-small:0 4px 12px rgba(0,0,0,.18);
    --shadow:0 8px 24px rgba(0,0,0,.25);
    --shadow-large:0 20px 45px rgba(0,0,0,.35);

    /* Animations */

    --transition:.30s;

}



/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);
    color:var(--text);

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size:14px;
    line-height:1.5;

    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font:inherit;
    cursor:pointer;

}

input,
textarea,
select{

    font:inherit;

}



/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(95%, var(--container));

    margin-inline:auto;

}
/* ==========================================================
   HEADER
========================================================== */

.header{

    position:sticky;
    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:var(--background-light);

    backdrop-filter:blur(10px);

    box-shadow:var(--shadow);

}

.header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

}

/* ==========================================================
   IDENTITÉ
========================================================== */

.brand{

    display:flex;

    align-items:center;

    gap:18px;

}

.brand img,
.logo{

    width:60px;
    height:auto;

}

.brand-text{

    display:flex;

    flex-direction:column;

}

.brand-name{

    font-size:1.35rem;

    font-weight:700;

    letter-spacing:.5px;

    color:var(--text);

}

.brand-tagline{

    margin-top:2px;

    font-size:.90rem;

    color:var(--text-soft);

}

/* ==========================================================
   NAVIGATION
========================================================== */

.nav{

    display:flex;

    align-items:center;

}

.nav-list{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-list li{

    position:relative;

}

.nav-list a{

    position:relative;

    display:inline-block;

    padding:8px 0;

    font-weight:500;

    color:var(--text);

    transition:color var(--transition);

}

/* Soulignement animé */

.nav-list a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-2px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:width var(--transition);

}

.nav-list a:hover{

    color:var(--primary);

}

.nav-list a:hover::after{

    width:100%;

}

.nav-list a.active{

    color:var(--primary);

}

.nav-list a.active::after{

    width:100%;

}

/* ==========================================================
   MENU HAMBURGER
========================================================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:5px;

    width:42px;
    height:42px;

    background:transparent;

    border:none;

    cursor:pointer;

    padding:0;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:#ffffff;

    border-radius:50px;

    transition:all var(--transition);

}

.menu-toggle:hover{

    color:var(--primary);

}
/* ==========================================================
   BOUTONS
========================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border:none;

    border-radius:var(--radius);

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:all var(--transition) ease;

    white-space:nowrap;

    will-change:transform;

}

/* ==========================================================
   BOUTON PRINCIPAL
========================================================== */

.btn-primary{

    background:var(--primary);

    color:#ffffff;

    box-shadow:var(--shadow-small);

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

    box-shadow:
        0 0 18px rgba(45,168,255,.35),
        0 12px 28px rgba(0,0,0,.25);

}

/* ==========================================================
   BOUTON SECONDAIRE
========================================================== */

.btn-secondary{

    background:transparent;

    color:var(--text);

    border:2px solid var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:
        0 0 18px rgba(45,168,255,.35),
        0 12px 28px rgba(0,0,0,.25);

}

/* ==========================================================
   BOUTON OUTLINE
========================================================== */

.btn-outline{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#ffffff;

}

/* ==========================================================
   TAILLES
========================================================== */

.btn-sm{

    padding:10px 20px;

    font-size:.90rem;

}

.btn-lg{

    padding:18px 36px;

    font-size:1.05rem;

}

/* ==========================================================
   ETAT DESACTIVE
========================================================== */

.btn:disabled{

    opacity:.5;

    cursor:not-allowed;

    transform:none;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:500px;

    background:
        linear-gradient(
            90deg,
            rgba(8,28,44,.92) 0%,
            rgba(8,28,44,.82) 35%,
            rgba(8,28,44,.55) 60%,
            rgba(8,28,44,.18) 100%
        ),
        url("../img/hero.webp");

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center right;

}

.hero-container{

    width:94%;

    margin-inline:auto;

}

.hero-text{

    max-width:700px;

    padding:70px 0;

}



/* ---------- TITRE ---------- */

.hero h1{

    font-size:1.6rem;

    font-weight:500;

    line-height:1.10;

    margin-bottom:18px;

    letter-spacing:-1px;

}



/* ---------- DESCRIPTION ---------- */

.hero-description{

    font-size:1.10rem;

    color:var(--text-soft);

    line-height:1.6;

    margin-bottom:20px;

}



/* ---------- SLOGAN ---------- */

.hero-slogan{

    margin:30px 0;

    font-size:1.10rem;

    font-weight:500;

    color:var(--text);

}

.hero-slogan strong{

    color:var(--primary);

}



/* ---------- BOUTONS ---------- */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}



/* ---------- PETIT EFFET ---------- */

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at right center,

            rgba(45,168,255,.08),

            transparent 60%

        );

}
/* ==========================================================
   SERVICES
========================================================== */

.services{

    padding:35px 0;

    background:var(--background-light);

}

/* ==========================================================
   TITRE DE SECTION
========================================================== */

.sg-section-title{

    max-width:94%;

    margin:0 auto 32px;

    text-align:center;

}

.sg-section-title span{

    display:inline-block;

    margin-bottom:13px;

    color:var(--primary);

    font-size:1.50rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.sg-section-title h2{

    font-size:1.55rem;

    font-weight:500;

    line-height:1.1;

    margin-bottom:18px;

}

.sg-section-title p{
	
	text-align:left;
	font-size:1.15rem;
    margin-bottom:10px;

}

.sg-section-title .btn{

    margin-top:20px;

}

/* ==========================================================
   GRILLE
========================================================== */

.sg-grid{

    display:grid;

    gap:30px;

}

.sg-grid-2{

    grid-template-columns:repeat(2,1fr);

}

.sg-grid-3{

    grid-template-columns:repeat(3,1fr);

}

.sg-grid-4{

    grid-template-columns:repeat(4,1fr);

}

/* ==========================================================
   CARTE
========================================================== */

.sg-card{

    display:flex;

    flex-direction:column;

    height:100%;

    padding:35px;

    background:var(--background-card);

    border:1px solid var(--border);

    border-radius:var(--radius-large);

    transition:all .30s ease;

    box-shadow:var(--shadow-small);

}

.sg-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:var(--shadow-large);

}

/* ==========================================================
   TITRE
========================================================== */

.sg-card h3{

    margin-bottom:16px;

    font-size:1.10rem;

    font-weight:500;

}

/* ==========================================================
   TEXTE
========================================================== */

.sg-card p{

    flex:1;

    color:var(--text-soft);

    margin-bottom:25px;

}

/* ==========================================================
   LIEN
========================================================== */

.sg-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    transition:all var(--transition);

}

.sg-card:hover a{

    gap:14px;

}

/* ==========================================================
   POURQUOI SKOLLGUARD
========================================================== */

.why-skollguard{

    padding:35px 0;

    background:var(--background);

    border-top:2px solid rgba(45,168,255,.15);

}

/*==================================================
=                     FOOTER
==================================================*/

.footer{

    background:#081722;
    border-top:1px solid rgba(255,255,255,.06);

    padding:70px 0 25px;

}

.footer .sg-grid{

    align-items:start;
    gap:60px;

}

.footer-brand img{

    width:72px;
    margin-bottom:15px;

}

.footer-brand h3{

    color:#fff;
    font-size:1.7rem;
    margin-bottom:12px;

}

.footer-brand p{

    color:var(--text-light);
    line-height:1.8;

}

.footer h4{

    color:#fff;
    font-size:1.15rem;
    margin-bottom:20px;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

    color:var(--text-light);

}

.footer-links a{

    color:var(--text-light);
    text-decoration:none;

    transition:.25s;

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-bottom{

    margin-top:50px;
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    color:#8fa8bd;
    font-size:.95rem;

}
/* ==========================================================
   CONTACT
========================================================== */

.contact-page{

    padding:70px 0;

    background:var(--background);

}

.contact-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;

}

/* ==========================================================
   FORMULAIRE
========================================================== */

.contact-form h2,
.contact-info h2{

    margin-bottom:25px;

    font-size:1.50rem;

    font-weight:600;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

    color:var(--text);

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    background:var(--background);

    color:var(--text);

    transition:var(--transition);

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(45,168,255,.15);

}

/* ==========================================================
   BOUTON
========================================================== */

.contact-form .btn{

    margin-top:15px;

}

/* ==========================================================
   INFOS
========================================================== */

.contact-info p{

    color:var(--text-soft);

    line-height:1.7;

    margin-bottom:30px;

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;

}

.contact-list li{

    color:var(--text);

}

.contact-points{

    display:flex;

    flex-direction:column;

    gap:15px;

    color:var(--text-soft);

}

/* ==========================================================
   ALERTES
========================================================== */

.alert-success{

    margin-bottom:25px;

    padding:15px;

    border-radius:var(--radius);

    background:#1d5d37;

    color:#fff;

}

.alert-error{

    margin-bottom:25px;

    padding:15px;

    border-radius:var(--radius);

    background:#8b2f2f;

    color:#fff;

}
.cyber-list{

    list-style:none;

    padding:0;

    margin:0;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.cyber-list li{

    font-size:1.05rem;

    color:var(--text);

}
/* ==========================================================
   CTA
========================================================== */

.cta-section{

    padding:80px 0;

    background:var(--background);

}

.cta-card{

    text-align:center;

    max-width:900px;

    margin:0 auto;

}

.cta-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.cta-card h2{

    margin-bottom:20px;

    font-size:2.2rem;

}

.cta-card p{

    max-width:700px;

    margin:0 auto 35px;

    color:var(--text-soft);

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==================================================
=                     FAQ
==================================================*/

.faq-page{

    padding:70px 0;

    background:var(--background);

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:20px;

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    background:var(--card-bg);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    transition:var(--transition);

}

.faq-item:hover{

    border-color:var(--primary);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    background:none;

    border:none;

    cursor:pointer;

    color:var(--text);

    font-size:1.05rem;

    font-weight:600;

    text-align:left;

}

.faq-question span{

    font-size:1.8rem;

    color:var(--primary);

    transition:.3s;

}

.faq-answer{

    display:none;

    padding:0 28px 24px;

}

.faq-answer p{

    color:var(--text-soft);

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}
/* ==========================================================
   MENU MOBILE
========================================================== */

.nav.active{

    display:flex;

    flex-direction:column;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#081722;

    padding:30px;

    gap:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.nav.active ul{

    flex-direction:column;

    width:100%;

    gap:18px;

}

.nav.active li{

    width:100%;

}

.nav.active a{

    display:block;

    width:100%;

}
.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}
/*==================================================
=              MENTIONS LÉGALES
==================================================*/

.legal-content{

    max-width:900px;

    margin:0 auto;

}

.legal-content h2{

    margin-top:35px;

    margin-bottom:15px;

}

.legal-content h2:first-child{

    margin-top:0;

}

.legal-content p{

    line-height:1.9;

    color:var(--text-soft);

}

.legal-content hr{

    margin:35px 0;

    border:none;

    border-top:1px solid var(--border);

}
/*==================================================
=                COOKIE BANNER
==================================================*/

.cookie-banner{

    position:fixed;

    left:25px;

    right:25px;

    bottom:25px;

    z-index:9999;

    background:#081722;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    padding:24px;

    display:none;

}

.cookie-content{

    display:grid;

    grid-template-columns:auto 1fr auto;

    gap:25px;

    align-items:center;

}

.cookie-icon{

    font-size:2rem;

}

.cookie-text h3{

    margin-bottom:8px;

    color:#fff;

}

.cookie-text p{

    margin:0;

    color:#c5d6e3;

    line-height:1.7;

}

.cookie-text a{

    color:var(--primary);

    text-decoration:none;

}

.cookie-text a:hover{

    text-decoration:underline;

}

.cookie-buttons{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}