:root {

    --primary: #0066ff;
    --primary-dark: #0047b3;
    --secondary: #00b7ff;

    --text: #111827;
    --text-light: #64748b;

    --background: #ffffff;
    --background-soft: #f8fafc;

    --border: #e5e7eb;

    --success: #16a34a;

    --shadow:
    0 20px 50px rgba(15,23,42,.08);

    --shadow-hover:
    0 30px 70px rgba(0,102,255,.18);

    --radius: 24px;

    --container: 1200px;

}




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


* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}



html {

    scroll-behavior:smooth;

}



body {

    font-family:
    "Inter",
    Arial,
    sans-serif;

    background:
    var(--background);

    color:
    var(--text);

    line-height:1.7;

}



img {

    max-width:100%;
    display:block;

}



a {

    text-decoration:none;
    color:inherit;

}



ul {

    list-style:none;

}



.container {

    width:min(92%, var(--container));

    margin:auto;

}





/* ============================= */
/* TITRES */
/* ============================= */


h1,
h2,
h3,
h4 {

    line-height:1.15;

    font-weight:800;

}



h2 {

    font-size:
    clamp(2rem,4vw,3.2rem);

}



p {

    color:
    var(--text-light);

}






/* ============================= */
/* SECTIONS */
/* ============================= */


section {

    padding:
    110px 0;

}



.section-header {

    max-width:800px;

    margin:
    0 auto 70px;

    text-align:center;

}



.section-tag {

    display:inline-block;

    padding:
    8px 18px;

    border-radius:50px;

    background:
    rgba(0,102,255,.08);

    color:
    var(--primary);

    font-weight:700;

    font-size:.9rem;

    margin-bottom:20px;

}



.section-header h2 {

    margin-bottom:20px;

}



.section-header p {

    font-size:1.1rem;

}








/* ============================= */
/* HEADER */
/* ============================= */


header {

    position:sticky;

    top:0;

    z-index:1000;

    background:
    rgba(255,255,255,.9);

    backdrop-filter:
    blur(15px);

    border-bottom:
    1px solid var(--border);

}



.navbar {

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



.logo {

    display:flex;

    align-items:center;

    gap:15px;

}



.logo-icon {

    width:55px;

    height:55px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    font-size:1.7rem;

}



.logo-text h2 {

    font-size:1.2rem;

}



.logo-text span {

    font-size:.75rem;

    color:
    var(--text-light);

}






nav ul {

    display:flex;

    gap:32px;

}



nav a {

    color:
    #334155;

    font-weight:600;

    transition:.25s;

}



nav a:hover {

    color:
    var(--primary);

}







.header-buttons {

    display:flex;

    gap:12px;

}





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


.btn {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

    border:none;

    cursor:pointer;

}



.btn-primary {

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    box-shadow:
    0 15px 35px rgba(0,102,255,.25);

}



.btn-primary:hover {

    transform:
    translateY(-3px);

    box-shadow:
    var(--shadow-hover);

}



.btn-secondary {

    background:white;

    border:
    1px solid var(--border);

    color:
    var(--text);

}



.btn-secondary:hover {

    border-color:
    var(--primary);

    color:
    var(--primary);

}



.btn-outline {

    border:
    1px solid var(--primary);

    color:
    var(--primary);

}







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


.hero {

    padding-top:
    80px;

    background:

    radial-gradient(
    circle at top right,
    rgba(0,102,255,.12),
    transparent 35%
    ),

    linear-gradient(
    180deg,
    #ffffff,
    #f8fafc
    );

}



.hero-grid {

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:70px;

    align-items:center;

}



.hero-badge {

    display:inline-block;

    background:
    rgba(0,102,255,.08);

    color:
    var(--primary);

    padding:
    10px 20px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

}



.hero h1 {

    font-size:
    clamp(3rem,6vw,5rem);

    letter-spacing:-2px;

    margin-bottom:30px;

}



.hero-content p {

    font-size:
    1.15rem;

    margin-bottom:35px;

}



.hero-buttons {

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}






.hero-stats {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

    margin-top:50px;

}



.stat {

    padding:20px;

    border-radius:20px;

    background:white;

    border:
    1px solid var(--border);

    text-align:center;

}



.stat h2 {

    color:
    var(--primary);

    font-size:2rem;

}



.stat p {

    font-size:.85rem;

}





.hero-card {

    padding:45px;

    border-radius:
    30px;

    background:white;

    border:
    1px solid var(--border);

    box-shadow:
    var(--shadow);

}



.hero-card h3 {

    font-size:1.8rem;

    margin-bottom:20px;

}



.hero-list {

    margin-top:30px;

    display:grid;

    gap:15px;

}



.hero-list div {

    padding:14px;

    border-radius:15px;

    background:
    var(--background-soft);

    font-weight:600;

}



.hero-list span {

    color:
    var(--success);

    margin-right:10px;

}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */


.about {

    background:
    var(--background);

}



.about-grid {

    display:grid;

    grid-template-columns:
    1fr .8fr;

    gap:70px;

    align-items:center;

}



.about-content h3 {

    font-size:2rem;

    margin-bottom:25px;

}



.about-content p {

    margin-bottom:20px;

    font-size:1.05rem;

}




.about-points {

    display:grid;

    gap:20px;

    margin-top:35px;

}



.point {

    display:flex;

    gap:18px;

    align-items:flex-start;

}



.point-icon {

    min-width:45px;

    height:45px;

    border-radius:50%;

    background:
    rgba(0,102,255,.1);

    color:
    var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;

}



.point h4 {

    margin-bottom:5px;

    font-size:1.1rem;

}



.point p {

    margin:0;

    font-size:.95rem;

}







/* ============================= */
/* PROFILE CARD */
/* ============================= */


.about-card {

    display:flex;

    justify-content:center;

}



.profile-card {

    width:100%;

    padding:45px;

    border-radius:30px;

    background:white;

    border:
    1px solid var(--border);

    box-shadow:
    var(--shadow);

    text-align:center;

}



.profile-avatar {

    width:110px;

    height:110px;

    margin:
    0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    font-size:2.5rem;

    font-weight:900;

}



.profile-card h3 {

    font-size:1.8rem;

}



.profile-role {

    color:
    var(--primary);

    font-weight:700;

    margin:
    10px 0 20px;

}



.profile-skills {

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    justify-content:center;

    margin-top:30px;

}



.profile-skills span {

    padding:
    8px 15px;

    background:
    var(--background-soft);

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;

    color:
    #334155;

}








/* ============================= */
/* EXPERIENCE TIMELINE */
/* ============================= */


.experience {

    background:
    var(--background-soft);

}



.timeline {

    max-width:950px;

    margin:auto;

    display:grid;

    gap:35px;

    position:relative;

}



.timeline::before {

    content:"";

    position:absolute;

    left:28px;

    top:0;

    bottom:0;

    width:3px;

    background:
    linear-gradient(
    var(--primary),
    var(--secondary)
    );

}



.timeline-item {

    display:grid;

    grid-template-columns:90px 1fr;

    gap:35px;

    position:relative;

}



.timeline-date {

    width:65px;

    height:65px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    position:relative;

    z-index:2;

}



.timeline-content {

    padding:35px;

    background:white;

    border-radius:25px;

    border:
    1px solid var(--border);

    box-shadow:
    var(--shadow);

}



.timeline-content h3 {

    font-size:1.5rem;

    margin-bottom:8px;

}



.timeline-content h4 {

    color:
    var(--primary);

    margin-bottom:20px;

}



.timeline-content ul {

    display:grid;

    gap:12px;

}



.timeline-content li {

    color:
    var(--text-light);

    position:relative;

    padding-left:25px;

}



.timeline-content li::before {

    content:"✓";

    position:absolute;

    left:0;

    color:
    var(--success);

    font-weight:bold;

}







/* ============================= */
/* ADVANTAGES */
/* ============================= */


.advantages {

    background:white;

}



.advantages-grid {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.advantage-card {

    padding:35px;

    border-radius:25px;

    background:white;

    border:
    1px solid var(--border);

    transition:.3s;

}



.advantage-card:hover {

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-hover);

    border-color:
    rgba(0,102,255,.25);

}



.advantage-icon {

    width:65px;

    height:65px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(0,102,255,.08);

    font-size:2rem;

    margin-bottom:25px;

}



.advantage-card h3 {

    margin-bottom:15px;

}



.advantage-card p {

    font-size:.95rem;

}







/* ============================= */
/* GLOBAL CARDS ANIMATION */
/* ============================= */


.service-card,
.price-card,
.review-card,
.faq-item {

    transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;

}



.service-card:hover,
.price-card:hover,
.review-card:hover,
.faq-item:hover {

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-hover);

}







/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */


@keyframes fadeUp {


from {

    opacity:0;

    transform:
    translateY(30px);

}


to {

    opacity:1;

    transform:
    translateY(0);

}


}



.hero-content,
.hero-card,
.about-content,
.profile-card {

    animation:
    fadeUp .8s ease forwards;

}

/* ============================= */
/* SERVICES */
/* ============================= */


.services {

    background:
    var(--background-soft);

}



.services-grid {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.service-card {

    background:white;

    padding:40px;

    border-radius:28px;

    border:
    1px solid var(--border);

    box-shadow:
    0 10px 30px rgba(15,23,42,.04);

}



.service-icon {

    width:70px;

    height:70px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    background:
    linear-gradient(
    135deg,
    rgba(0,102,255,.12),
    rgba(0,183,255,.12)
    );

    margin-bottom:25px;

}



.service-card h3 {

    font-size:1.45rem;

    margin-bottom:15px;

}



.service-card p {

    margin-bottom:25px;

}



.service-card ul {

    display:grid;

    gap:12px;

}



.service-card li {

    color:
    var(--text-light);

    padding-left:25px;

    position:relative;

    font-size:.95rem;

}



.service-card li::before {

    content:"✓";

    position:absolute;

    left:0;

    color:
    var(--primary);

    font-weight:bold;

}







/* ============================= */
/* VIRTUALISATION */
/* ============================= */


.virtualisation {

    background:white;

}



.two-columns {

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

}



.two-columns h2 {

    margin:
    20px 0;

}



.check-list {

    margin-top:30px;

    display:grid;

    gap:15px;

}



.check-list li {

    padding-left:30px;

    position:relative;

    font-weight:600;

}



.check-list li::before {

    content:"✓";

    position:absolute;

    left:0;

    color:
    var(--success);

}



.tech-box {

    padding:45px;

    border-radius:30px;

    background:
    var(--background-soft);

    border:
    1px solid var(--border);

}



.tech-box h3 {

    margin-bottom:30px;

    font-size:1.6rem;

}



.tech-grid {

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}



.tech-grid span {

    padding:
    12px 20px;

    border-radius:50px;

    background:white;

    border:
    1px solid var(--border);

    font-weight:600;

    color:
    #334155;

    transition:.3s;

}



.tech-grid span:hover {

    color:
    var(--primary);

    border-color:
    var(--primary);

}








/* ============================= */
/* INFOGERANCE */
/* ============================= */


.managed-services {

    background:
    var(--background-soft);

}



.management-grid {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.management-grid div {

    background:white;

    padding:35px;

    border-radius:25px;

    border:
    1px solid var(--border);

}



.management-grid h3 {

    margin-bottom:15px;

    color:
    var(--primary);

}








/* ============================= */
/* ZONE INTERVENTION */
/* ============================= */


.location {

    background:white;

}



.cities {

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}



.cities span {

    padding:
    15px 25px;

    border-radius:50px;

    background:
    var(--background-soft);

    border:
    1px solid var(--border);

    font-weight:600;

    transition:.3s;

}



.cities span:hover {

    background:
    var(--primary);

    color:white;

}








/* ============================= */
/* TARIFS */
/* ============================= */


.pricing {

    background:
    var(--background-soft);

}



.pricing-grid {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    align-items:center;

}



.price-card {

    position:relative;

    background:white;

    padding:45px;

    border-radius:30px;

    border:
    1px solid var(--border);

}



.price-card h3 {

    font-size:1.5rem;

    margin-bottom:25px;

}



.price {

    font-size:3.5rem;

    font-weight:900;

    color:
    var(--primary);

    margin-bottom:15px;

}



.price span {

    font-size:1rem;

    font-weight:500;

    color:
    var(--text-light);

}



.price-card p {

    margin-bottom:25px;

}



.price-card ul {

    display:grid;

    gap:15px;

    margin-bottom:35px;

}



.price-card li {

    padding-left:25px;

    position:relative;

    color:
    var(--text-light);

}



.price-card li::before {

    content:"✓";

    position:absolute;

    left:0;

    color:
    var(--success);

}



.price-card.featured {

    border:
    2px solid var(--primary);

    transform:
    scale(1.05);

}



.popular {

    position:absolute;

    top:-15px;

    right:30px;

    background:
    var(--primary);

    color:white;

    padding:
    8px 18px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:700;

}







/* ============================= */
/* AVIS CLIENTS */
/* ============================= */


.reviews {

    background:white;

}



.reviews-grid {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.review-card {

    padding:40px;

    border-radius:25px;

    background:
    white;

    border:
    1px solid var(--border);

}



.stars {

    color:#fbbf24;

    font-size:1.4rem;

    margin-bottom:20px;

}



.review-card p {

    font-style:italic;

    margin-bottom:25px;

}



.review-card h4 {

    color:
    var(--primary);

}

/* ============================= */
/* FAQ */
/* ============================= */


.faq {

    background:
    var(--background-soft);

}



.faq-list {

    max-width:900px;

    margin:auto;

    display:grid;

    gap:20px;

}



.faq-item {

    background:white;

    padding:30px;

    border-radius:25px;

    border:
    1px solid var(--border);

    cursor:pointer;

}



.faq-item h3 {

    font-size:1.25rem;

    margin-bottom:15px;

    color:
    var(--text);

}



.faq-item p {

    margin:0;

    line-height:1.8;

}







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


.contact {

    background:white;

}



.contact-box {

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

}



.contact h2 {

    font-size:
    clamp(2rem,4vw,3.5rem);

    margin:
    20px 0;

}



.contact-info {

    margin-top:35px;

    display:grid;

    gap:20px;

}



.contact-info p {

    padding:18px;

    background:
    var(--background-soft);

    border-radius:18px;

}



.contact-form {

    background:white;

    padding:45px;

    border-radius:30px;

    border:
    1px solid var(--border);

    box-shadow:
    var(--shadow);

    display:grid;

    gap:20px;

}



.contact-form input,
.contact-form select,
.contact-form textarea {

    width:100%;

    padding:
    16px 20px;

    border-radius:15px;

    border:
    1px solid var(--border);

    font-family:
    inherit;

    font-size:1rem;

    outline:none;

    transition:.3s;

}



.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color:
    var(--primary);

    box-shadow:
    0 0 0 4px rgba(0,102,255,.1);

}



.contact-form textarea {

    resize:none;

}





/* ============================= */
/* FOOTER */
/* ============================= */


footer {

    background:
    #0f172a;

    color:white;

    padding:
    70px 0 20px;

}



.footer-grid {

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr 1fr;

    gap:40px;

}



footer h3 {

    font-size:1.5rem;

    margin-bottom:20px;

}



footer h4 {

    margin-bottom:20px;

    color:white;

}



footer p,
footer li {

    color:
    #94a3b8;

}



footer ul {

    display:grid;

    gap:12px;

}



footer li:hover {

    color:white;

}



.footer-bottom {

    margin-top:50px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.1);

    text-align:center;

    color:
    #94a3b8;

    font-size:.9rem;

}








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


@media(max-width:1100px){



    nav {

        display:none;

    }



    .header-buttons .btn-outline {

        display:none;

    }



    .hero-grid {

        grid-template-columns:
        1fr;

    }



    .hero-card {

        max-width:650px;

        margin:auto;

    }



    .hero-stats {

        grid-template-columns:
        repeat(2,1fr);

    }



    .about-grid {

        grid-template-columns:
        1fr;

    }



    .profile-card {

        max-width:500px;

        margin:auto;

    }



    .services-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



    .advantages-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



    .management-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



    .pricing-grid {

        grid-template-columns:
        1fr;

        max-width:500px;

        margin:auto;

    }



    .price-card.featured {

        transform:none;

    }



    .reviews-grid {

        grid-template-columns:
        1fr;

    }



    .contact-box {

        grid-template-columns:
        1fr;

    }



    .footer-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



}









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


@media(max-width:700px){



    section {

        padding:
        70px 0;

    }



    .navbar {

        height:75px;

    }



    .logo-text span {

        display:none;

    }



    .header-buttons .btn-primary {

        padding:
        12px 18px;

        font-size:.85rem;

    }



    .hero {

        padding-top:
        50px;

    }



    .hero h1 {

        font-size:
        2.6rem;

    }



    .hero-content p {

        font-size:1rem;

    }



    .hero-buttons {

        flex-direction:column;

    }



    .hero-buttons .btn {

        width:100%;

    }



    .hero-stats {

        grid-template-columns:
        1fr;

    }



    .hero-card {

        padding:30px;

    }



    .timeline-item {

        grid-template-columns:
        1fr;

        gap:15px;

    }



    .timeline::before {

        display:none;

    }



    .timeline-date {

        margin-bottom:10px;

    }



    .services-grid {

        grid-template-columns:
        1fr;

    }



    .service-card {

        padding:30px;

    }



    .two-columns {

        grid-template-columns:
        1fr;

    }



    .tech-box {

        padding:30px;

    }



    .advantages-grid {

        grid-template-columns:
        1fr;

    }



    .management-grid {

        grid-template-columns:
        1fr;

    }



    .price-card {

        padding:35px;

    }



    .contact-form {

        padding:30px;

    }



    .footer-grid {

        grid-template-columns:
        1fr;

    }



}








/* ============================= */
/* ANIMATIONS */
/* ============================= */


@keyframes slideIn {


from {

    opacity:0;

    transform:
    translateX(-30px);

}


to {

    opacity:1;

    transform:
    translateX(0);

}


}



@keyframes scaleIn {


from {

    opacity:0;

    transform:
    scale(.95);

}


to {

    opacity:1;

    transform:
    scale(1);

}


}



.service-card,
.price-card,
.review-card,
.advantage-card {

    animation:
    scaleIn .6s ease;

}





/* ============================= */
/* ACCESSIBILITE */
/* ============================= */


button,
a {

    -webkit-tap-highlight-color:
    transparent;

}



::selection {

    background:
    var(--primary);

    color:white;

}
