/* ==========================================================
   DMHT SMART HOSPITAL OS™
   ULTRA PREMIUM SAAS HEALTHCARE UI
   DM HEALTH TECHNOLOGY
========================================================== */

:root{

    --primary:#003B8E;
    --secondary:#00BFA6;
    --dark:#08111F;
    --light:#F8FAFC;

    --glass:
    rgba(255,255,255,.08);

    --glass-border:
    rgba(255,255,255,.12);

    --shadow:
    0 25px 60px rgba(0,0,0,.25);

    --radius:28px;

}


/* ==========================================================
   GLOBAL
========================================================== */

body{

    background:#fff;
    overflow-x:hidden;

}


/* ==========================================================
   HERO SECTION
========================================================== */

.dmht-hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #08111F 0%,
        #0A1C3B 30%,
        #003B8E 100%
    );

    color:white;
}


/* Glow 1 */

.dmht-hero::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(0,191,166,.15);

    filter:blur(140px);

    top:-250px;
    right:-150px;

    animation:
    floatGlow 10s ease-in-out infinite;
}


/* Glow 2 */

.dmht-hero::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    filter:blur(120px);

    left:-100px;
    bottom:-100px;

    animation:
    floatGlow 8s ease-in-out infinite;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    border-radius:60px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    margin-bottom:30px;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}

.dmht-hero h1{

    font-size:5rem;

    font-weight:900;

    line-height:1.05;

    margin-bottom:30px;

    letter-spacing:-2px;
}

.dmht-hero h1 span{

    color:var(--secondary);
}

.dmht-hero p{

    font-size:1.25rem;

    line-height:1.9;

    opacity:.92;

    max-width:720px;

    margin-bottom:40px;
}


/* ==========================================================
   CTA BUTTONS
========================================================== */

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-dmht{

    padding:18px 34px;

    border-radius:16px;

    text-decoration:none;

    font-weight:700;

    transition:.4s ease;
}

.btn-primary-dmht{

    background:
    linear-gradient(
        135deg,
        #00BFA6,
        #00E5C7
    );

    color:white;

    box-shadow:
    0 15px 40px rgba(0,191,166,.35);
}

.btn-primary-dmht:hover{

    transform:
    translateY(-4px);

    color:white;
}

.btn-outline-dmht{

    border:
    1px solid rgba(255,255,255,.15);

    color:white;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(15px);
}

.btn-outline-dmht:hover{

    background:
    rgba(255,255,255,.12);

    color:white;
}


/* ==========================================================
   DASHBOARD PREVIEW
========================================================== */

.dashboard-preview{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;

    position:relative;

    z-index:10;

    animation:
    floatingDashboard 6s ease-in-out infinite;
}


/* ==========================================================
   KPI CARD
========================================================== */

.kpi-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(25px);

    -webkit-backdrop-filter:
    blur(25px);

    border:
    1px solid rgba(255,255,255,.12);

    border-radius:28px;

    padding:32px;

    color:white;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}


.kpi-card::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;
    right:-120px;
}


.kpi-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 35px 80px rgba(0,0,0,.35);
}

.kpi-card i{

    font-size:2.2rem;

    color:var(--secondary);
}

.kpi-card h3{

    margin-top:18px;

    color:var(--secondary);

    font-weight:800;

    font-size:2rem;
}

.kpi-card h5{

    margin-top:10px;

    font-weight:700;
}

.kpi-card p{

    opacity:.85;

    margin-bottom:0;
}


/* ==========================================================
   AI COPILOT SECTION
========================================================== */

.ai-copilot{

    background:#08111F;

    padding:140px 0;

    position:relative;

    color:white;

    overflow:hidden;
}


.ai-copilot::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(0,191,166,.08);

    filter:blur(160px);

    top:-250px;
    left:-150px;
}


.chat-demo{

    max-width:950px;

    margin:auto;

    position:relative;

    z-index:2;
}


/* ==========================================================
   QUESTION
========================================================== */

.question{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(18px);

    border:
    1px solid rgba(255,255,255,.08);

    padding:28px;

    border-radius:22px;

    margin-bottom:20px;

    font-size:1.05rem;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}


/* ==========================================================
   ANSWER
========================================================== */

.answer{

    background:
    linear-gradient(
        135deg,
        #003B8E,
        #00BFA6
    );

    padding:30px;

    border-radius:22px;

    margin-bottom:40px;

    box-shadow:
    0 20px 60px rgba(0,191,166,.25);

    line-height:1.8;
}


/* ==========================================================
   FLOATING ANIMATIONS
========================================================== */

@keyframes floatingDashboard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}


@keyframes floatGlow{

    0%{
        transform:translate(0,0);
    }

    50%{
        transform:translate(30px,-30px);
    }

    100%{
        transform:translate(0,0);
    }
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

    .dmht-hero h1{

        font-size:4rem;
    }
}


@media(max-width:991px){

    .dmht-hero{

        padding:120px 0;
        text-align:center;
    }

    .dmht-hero h1{

        font-size:3rem;
    }

    .dashboard-preview{

        margin-top:60px;

        grid-template-columns:
        repeat(2,1fr);
    }

    .hero-buttons{

        justify-content:center;
    }
}


@media(max-width:768px){

    .dashboard-preview{

        grid-template-columns:1fr;
    }

    .dmht-hero h1{

        font-size:2.4rem;
    }

    .dmht-hero p{

        font-size:1rem;
    }

    .hero-badge{

        font-size:.9rem;
    }

    .kpi-card{

        padding:24px;
    }

    .ai-copilot{

        padding:90px 0;
    }

    .question,
    .answer{

        padding:22px;
    }
}


@media(max-width:576px){

    .dmht-hero h1{

        font-size:2rem;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .btn-dmht{

        width:100%;
    }
}

/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{
    margin-bottom:80px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:60px;
    background:rgba(0,191,166,.08);
    color:var(--secondary);
    font-weight:700;
    margin-bottom:20px;
}

.section-title h2{
    font-size:3rem;
    font-weight:900;
    color:var(--dark);
    margin-bottom:20px;
    letter-spacing:-1px;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:#64748B;
    font-size:1.1rem;
    line-height:1.8;
}

/* ==========================================================
   ECOSYSTEM ARCHITECTURE
========================================================== */

.ecosystem-section{
    padding:140px 0;
    background:#F8FAFC;
    position:relative;
}

.ecosystem{
    position:relative;
    width:850px;
    height:850px;
    margin:80px auto 0;
}

.center-node{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:260px;
    height:260px;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #003B8E,
        #00BFA6
    );

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    font-size:1.4rem;
    font-weight:800;

    box-shadow:
    0 30px 80px rgba(0,59,142,.35);

    z-index:10;
}

.center-node::before{
    content:'';
    position:absolute;
    inset:-25px;
    border-radius:50%;
    border:2px dashed rgba(0,191,166,.25);
    animation:spinSlow 25s linear infinite;
}

.module-node{
    position:absolute;

    width:220px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:white;

    border-radius:22px;

    font-weight:700;

    box-shadow:
    0 15px 40px rgba(15,23,42,.08);

    transition:.4s;
}

.module-node:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 60px rgba(0,59,142,.18);
}

.module-node i{
    color:var(--secondary);
    font-size:1.3rem;
}

.node-1{top:0;left:50%;transform:translateX(-50%);}
.node-2{top:20%;right:0;}
.node-3{bottom:20%;right:0;}
.node-4{bottom:0;left:50%;transform:translateX(-50%);}
.node-5{bottom:20%;left:0;}
.node-6{top:20%;left:0;}

/* ==========================================================
   MODULES PREMIUM
========================================================== */

.premium-modules{
    padding:140px 0;
    background:#F8FAFC;
}

.module-card{
    background:white;
    border-radius:28px;
    padding:45px 30px;
    text-align:center;
    height:100%;

    border:1px solid #E2E8F0;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.module-card:hover{
    transform:translateY(-10px);
}

.module-card i{
    font-size:3rem;
    color:var(--secondary);
    margin-bottom:20px;
}

.module-card h4{
    font-size:1.1rem;
    font-weight:700;
}

/* ==========================================================
   PRICING
========================================================== */

.pricing-section{
    padding:140px 0;
    background:white;
}

.pricing-card{
    background:white;
    border-radius:32px;
    padding:50px 35px;

    text-align:center;

    border:1px solid #E2E8F0;

    height:100%;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(15,23,42,.06);
}

.pricing-card:hover{
    transform:translateY(-12px);
}

.featured{
    background:
    linear-gradient(
        135deg,
        #003B8E,
        #00BFA6
    );

    color:white;

    transform:scale(1.05);
}

.price{
    font-size:3rem;
    font-weight:900;
    margin:25px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card li{
    margin:12px 0;
}




/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes spinSlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ==================================================
ANALYTICS SECTION
================================================== */

.analytics-section{
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #ffffff 100%
    );
    position:relative;
}

.analytics-card{
    background:#fff;
    border-radius:30px;
    padding:35px;
    border:1px solid rgba(13,110,253,.08);
    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
    height:100%;
    transition:.4s;
}

.analytics-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

.card-header-custom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.card-header-custom h4{
    font-size:1.2rem;
    font-weight:700;
    color:#0d1b3e;
    margin:0;
}

.trend-positive{
    background:#e8fff0;
    color:#00a651;
    padding:8px 14px;
    border-radius:50px;
    font-weight:600;
    font-size:.9rem;
}

.analytics-card canvas{
    width:100% !important;
    height:350px !important;
}

/* ==================================================
ANALYTICS PREMIUM DMHT
================================================== */

.analytics-chart-card {

    background: #ffffff;
    border-radius: 24px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(13,110,253,.08);

    box-shadow:
        0 10px 35px rgba(15,23,42,.06);

}

.card-header-custom {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;

}

.card-header-custom h4 {

    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;

}

.chart-wrapper {

    position: relative;
    height: 380px;
    width: 100%;

}

.trend-positive {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(25,135,84,.1);
    color: #198754;

    padding: 8px 14px;
    border-radius: 50px;

    font-weight: 700;
    font-size: .9rem;

}

@media (max-width: 768px) {

    .chart-wrapper {

        height: 300px;

    }

    .card-header-custom {

        flex-direction: column;
        gap: 15px;
        align-items: flex-start;

    }

}

/* ==================================================
DEPLOYMENT SECTION
DMHT SMART HOSPITAL OS™
================================================== */

.deployment-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 50%,
        #eef4ff 100%
    );
}

/* ==================================================
TIMELINE
================================================== */

.deployment-timeline{

    margin-top:80px;

    display:flex;

    justify-content:center;

    align-items:stretch;

    flex-wrap:wrap;

    gap:25px;

    position:relative;
}

/* ==================================================
STEP CARD
================================================== */

.timeline-step,
.deploy-step{

    flex:1;

    min-width:220px;

    max-width:320px;

    background:#ffffff;

    border-radius:28px;

    padding:35px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(226,232,240,.8);

    box-shadow:
    0 15px 35px rgba(15,23,42,.05);

    transition:all .4s ease;
}

/* Glow Effect */

.timeline-step::before,
.deploy-step::before{

    content:"";

    position:absolute;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;

    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.08),
        transparent 70%
    );

    opacity:0;

    transition:.5s;
}

.timeline-step:hover::before,
.deploy-step:hover::before{

    opacity:1;
}

.timeline-step:hover,
.deploy-step:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(37,99,235,.25);

    box-shadow:
    0 25px 60px rgba(37,99,235,.15);
}

/* ==================================================
STEP NUMBER
================================================== */

.step-number{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );

    color:#ffffff;

    font-size:1.8rem;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(37,99,235,.30);
}

/* ==================================================
TEXT
================================================== */

.timeline-step h4,
.deploy-step h4{

    font-size:1.35rem;

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;
}

.timeline-step p,
.deploy-step p{

    color:#64748b;

    font-size:.95rem;

    line-height:1.8;

    margin:0;
}

/* ==================================================
ARROWS
================================================== */

.timeline-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    color:#2563eb;

    font-size:28px;

    min-width:40px;

    animation:
    bounceArrow 2s infinite;
}

@keyframes bounceArrow{

    0%,100%{

        transform:
        translateY(0);
    }

    50%{

        transform:
        translateY(8px);
    }
}

/* ==================================================
RESPONSIVE
================================================== */

@media (max-width:1200px){

    .deployment-timeline{

        justify-content:center;
    }

    .timeline-step,
    .deploy-step{

        max-width:350px;
    }
}

@media (max-width:992px){

    .deployment-section{

        padding:100px 0;
    }

    .deployment-timeline{

        flex-direction:column;

        align-items:center;
    }

    .timeline-arrow{

        transform:rotate(90deg);
    }
}

@media (max-width:768px){

    .timeline-step,
    .deploy-step{

        width:100%;

        max-width:100%;

        padding:30px 25px;
    }

    .step-number{

        width:70px;
        height:70px;

        font-size:1.5rem;
    }

    .timeline-step h4,
    .deploy-step h4{

        font-size:1.2rem;
    }
}

/* ==================================================
BACKGROUND GLOW EFFECTS
================================================== */

.roi-section::before,
.profiles-section::before,
.deployment-section::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

    filter:blur(40px);

    z-index:0;
}

.roi-section::before{
    top:-250px;
    right:-150px;
}

.profiles-section::before{
    left:-200px;
    top:0;
}

.deployment-section::before{
    right:-200px;
    bottom:-150px;
}

.roi-section .container,
.profiles-section .container,
.deployment-section .container{
    position:relative;
    z-index:2;
}

/* ==================================================
DASHBOARD PROFESSIONNEL
================================================== */

.analytics-section {
    padding: 120px 0;
    background: #f8fbff;
}

.analytics-chart-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header-custom h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.trend-positive {
    background: rgba(25,135,84,.12);
    color: #198754;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 700;
}

.chart-wrapper {
    height: 380px;
    position: relative;
}

.analytics-mini-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.05);
    transition: .4s;
}

.analytics-mini-card:hover {
    transform: translateY(-8px);
}

.analytics-mini-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.mini-label {
    color: #6c757d;
    font-size: .95rem;
}

.analytics-mini-card .positive {
    color: #198754;
    font-weight: 700;
}

/* ==================================================
BROCHURE PDF
================================================== */

.brochure-section{
    padding:120px 0;
    background:#f8fbff;
}

.brochure-wrapper{
    background:linear-gradient(
        135deg,
        #08264d,
        #0f4c81
    );
    border-radius:30px;
    padding:70px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.brochure-wrapper h2{
    color:#fff;
    margin-bottom:20px;
}

.brochure-wrapper p{
    color:rgba(255,255,255,.85);
}

.brochure-features{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.brochure-features li{
    margin-bottom:15px;
}

.brochure-features i{
    color:#39d98a;
    margin-right:10px;
}

.brochure-preview{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-radius:25px;
    padding:60px;
    text-align:center;
}

.brochure-preview i{
    font-size:7rem;
    color:#ff4d4d;
}

.brochure-preview h4{
    margin-top:25px;
    color:#fff;
}

.brochure-preview span{
    color:rgba(255,255,255,.8);
}

@media(max-width:768px){

    .brochure-wrapper{
        padding:40px 25px;
    }

    .africa-banner .features{
        flex-direction:column;
        align-items:center;
    }

}

/* ==========================================================
   DMHT SMART HOSPITAL OS™
   EXECUTIVE DEMO SECTION
   GOVERNMENT • CHU • NATIONAL HEALTH SYSTEM
========================================================== */

.demo-section{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    box-sizing: border-box;

    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 40%,
        #f8fbff 100%
    );
}

/* ==========================================================
   BACKGROUND EFFECTS
========================================================== */

.demo-bg-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.demo-shape-1{
    width: 500px;
    height: 500px;
    top: -180px;
    right: -120px;
    background: rgba(0,191,166,.08);
}

.demo-shape-2{
    width: 450px;
    height: 450px;
    left: -150px;
    bottom: -150px;
    background: rgba(0,59,142,.08);
}

/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{
    position: relative;
    z-index: 2;
}

.section-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    border-radius: 50px;

    background:
    linear-gradient(
        135deg,
        rgba(0,59,142,.08),
        rgba(0,191,166,.08)
    );

    color: var(--primary);

    font-weight: 700;
    font-size: .9rem;

    margin-bottom: 25px;
}

.section-title h2{
    font-size: clamp(2.2rem,4vw,4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-title p{
    max-width: 900px;
    margin: auto;
    color: #64748B;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ==========================================================
   TRUST BAR
========================================================== */

.demo-trust-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 70px 0;
}

.trust-item{
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 26px;

    background: #fff;

    border: 1px solid #E2E8F0;

    border-radius: 18px;

    box-shadow:
    0 15px 35px rgba(15,23,42,.05);

    font-weight: 700;
    color: #0f172a;

    transition: all .3s ease;
}

.trust-item:hover{
    transform: translateY(-4px);
}

.trust-item i{
    color: var(--secondary);
    font-size: 1.25rem;
}

/* ==========================================================
   EXECUTIVE BRIEFING
========================================================== */

.executive-briefing{
    margin-bottom: 60px;
}

.briefing-card{
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 35px;

    background:
    linear-gradient(
        135deg,
        #003B8E,
        #0054C7
    );

    border-radius: 28px;

    color: #fff;

    box-shadow:
    0 30px 70px rgba(0,59,142,.20);
}

.briefing-icon{
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(255,255,255,.12);

    font-size: 2rem;
}

.briefing-card h4{
    font-weight: 800;
    margin-bottom: 10px;
}

.briefing-card p{
    margin: 0;
    opacity: .95;
    line-height: 1.8;
}

/* ==========================================================
   BENEFITS SIDEBAR
========================================================== */

.demo-benefits{
    position: sticky;
    top: 120px;
    left: 0;

    background: #fff;

    border: 1px solid #E2E8F0;

    border-radius: 32px;

    padding: 45px;

    box-shadow:
    0 25px 60px rgba(15,23,42,.08);
}

.benefits-badge{
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(0,191,166,.08);

    color: var(--secondary);

    font-weight: 700;

    margin-bottom: 20px;
}

.demo-benefits h3{
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.demo-benefits ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-benefits li{
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
}

.demo-benefits li i{
    color: #22c55e;
    margin-top: 4px;
}

.stakeholders-card{
    margin-top: 35px;
    margin-bottom: 30px;
}

.stakeholders-card h5{
    font-weight: 800;
    margin-bottom: 20px;
}

.stakeholder-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stakeholder-grid span{
    padding: 10px 16px;
    border-radius: 50px;
    background: #F1F5F9;
    color: #334155;
    font-size: .9rem;
    font-weight: 600;
}

/* ==========================================================
   BENEFITS HIGHLIGHT
========================================================== */

.benefits-highlight{
    margin-top: 30px;

    padding: 25px;

    border-radius: 22px;

    background:
    linear-gradient(
        135deg,
        rgba(0,59,142,.05),
        rgba(0,191,166,.05)
    );
}

.benefits-highlight h5{
    font-weight: 800;
    margin-bottom: 12px;
}

.benefits-highlight p{
    margin: 0;
    color: #64748B;
    line-height: 1.8;
}

/* ==========================================================
   OBJECTIVES
========================================================== */

.transformation-objectives{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.objective{
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
}

.objective i{
    display: block;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.objective h5{
    font-weight: 800;
    margin-bottom: 10px;
}

.objective p{
    color: #64748B;
    margin: 0;
}

/* ==========================================================
   FORM WRAPPER
========================================================== */

.demo-form-wrapper{
    background: #fff;
    border-radius: 36px;
    padding: 55px;
    border: 1px solid #E2E8F0;

    box-shadow:
    0 35px 90px rgba(15,23,42,.08);
}

.demo-header{
    margin-bottom: 40px;
}

.demo-eyebrow{
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: .85rem;
}

.demo-header h3{
    font-size: 2rem;
    font-weight: 900;
    margin: 12px 0;
}

.demo-header p{
    color: #64748B;
    margin: 0;
}

/* ==========================================================
   INPUTS
========================================================== */

.demo-form .form-control,
.demo-form .form-select{
    min-height: 62px;

    border-radius: 18px;

    border: 1px solid #CBD5E1;

    padding: 14px 18px;

    transition: all .3s ease;
}

.demo-form textarea.form-control{
    min-height: 180px;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus{
    border-color: var(--primary);

    box-shadow:
    0 0 0 .25rem rgba(0,59,142,.12);
}

.form-label{
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

/* ==========================================================
   MODULES
========================================================== */

.modules-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 18px;
}

.module-card{
    position: relative;
    cursor: pointer;

    background: #fff;

    border: 1px solid #E2E8F0;

    border-radius: 24px;

    padding: 25px;

    text-align: center;

    transition: all .35s ease;
}

.module-card:hover{
    transform: translateY(-6px);

    border-color: var(--secondary);

    box-shadow:
    0 20px 40px rgba(0,191,166,.12);
}

.module-card input{
    position: absolute;
    opacity: 0;
}

.module-card i{
    display: block;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.module-card span{
    font-weight: 700;
    color: #0f172a;
}

/* ==========================================================
   NOTE
========================================================== */

.demo-note{
    display: flex;
    gap: 12px;

    padding: 20px;

    border-radius: 20px;

    background: rgba(0,59,142,.05);

    color: #475569;
}

.demo-note i{
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==========================================================
   CTA BUTTON
========================================================== */

.btn-demo-submit{
    border: none;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: #fff;

    padding: 18px 40px;

    border-radius: 18px;

    font-weight: 800;

    font-size: 1rem;

    transition: all .35s ease;
}

.btn-demo-submit:hover{
    transform: translateY(-4px);

    box-shadow:
    0 20px 45px rgba(0,59,142,.25);
}

/* ==========================================================
   FOOTER
========================================================== */

.demo-footer{
    margin-top: 30px;

    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 15px;
}

.demo-footer div{
    background: #F8FAFC;

    border: 1px solid #E2E8F0;

    border-radius: 16px;

    padding: 18px;

    text-align: center;

    font-weight: 600;
}

.demo-footer i{
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 992px){

    .demo-benefits{
        position: relative;
        top: auto;
        left: auto;
    }

    .transformation-objectives{
        grid-template-columns: 1fr;
    }

    .demo-footer{
        grid-template-columns: repeat(2,1fr);
    }

    .demo-form-wrapper{
        padding: 35px;
    }
}

@media (max-width: 768px){

    .demo-section{
        padding: 90px 0;
    }

    .demo-footer{
        grid-template-columns: 1fr;
    }

    .briefing-card{
        flex-direction: column;
        text-align: center;
    }

    .demo-form-wrapper{
        padding: 25px;
    }

    .demo-benefits{
        padding: 30px;
    }

    .section-title h2{
        font-size: 2rem;
    }
}

/* ==========================================================
   CTA
========================================================== */

.btn-demo-submit{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    border:none;

    padding:18px 40px;

    border-radius:18px;

    font-weight:800;

    font-size:1rem;

    transition:.35s;

    box-shadow:
    0 15px 40px rgba(0,59,142,.25);
}

.btn-demo-submit:hover{

    transform:translateY(-4px);

    color:white;

    box-shadow:
    0 25px 50px rgba(0,59,142,.35);
}

/* ==========================================================
   FOOTER
========================================================== */

.demo-footer{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;

    margin-top:20px;

    color:#64748B;

    font-size:.95rem;
}

.demo-footer div{

    display:flex;
    align-items:center;
    gap:10px;
}

.demo-footer i{

    color:var(--secondary);
}

/* ==========================================
   TARIFICATION INSTITUTIONNELLE PREMIUM
========================================== */

.pricing-section {
    background: #f8fafc;
    position: relative;
}

/* TITRE */

.section-badge {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2937;
    max-width: 900px;
    margin: auto;
    line-height: 1.3;
}

.section-description {
    max-width: 800px;
    margin-top: 20px;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* CARTES */

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 28px;
    height: 100%;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* OFFRE VEDETTE */

.pricing-card.featured {
    background: linear-gradient(
        135deg,
        #0d6efd,
        #2563eb
    );
    color: #fff;
    transform: scale(1.03);
}

.pricing-card.featured .price,
.pricing-card.featured h3,
.pricing-card.featured .target,
.pricing-card.featured .period,
.pricing-card.featured li {
    color: #fff;
}

.pricing-card.featured .pricing-features li::before {
    color: #a7f3d0;
}

/* INSTITUTIONNEL */

.pricing-card.enterprise {
    border: 2px solid #198754;
    background: linear-gradient(
        180deg,
        #ffffff,
        #f3fff7
    );
}

/* BADGE POPULAIRE */

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;

    background: #ffc107;
    color: #111827;

    padding: 8px 16px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 6px 20px rgba(255,193,7,.35);
}

/* HEADER */

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.plan-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* PRIX */

.price {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 5px;
}

.period {
    display: block;
    text-align: center;
    color: #6b7280;
    margin-bottom: 25px;
}

/* LISTE */

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;

    flex-grow: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #374151;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: 700;
}

/* CIBLE */

.target {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;

    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
}

.pricing-card.featured .target {
    border-color: rgba(255,255,255,.25);
}

/* INFRASTRUCTURE */

.infrastructure-box {
    background: linear-gradient(
        135deg,
        #ffffff,
        #eef6ff
    );

    border-radius: 24px;
    padding: 45px;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.infrastructure-box h3 {
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.infrastructure-box p {
    color: #6b7280;
    line-height: 1.8;
}

/* ÉQUIPEMENTS */

.equipment-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.equipment-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.equipment-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: bold;
}

/* CARTE ÉQUIPEMENT */

.equipment-card {
    background: #0d6efd;
    color: white;

    border-radius: 20px;
    padding: 35px 20px;

    box-shadow: 0 15px 35px rgba(13,110,253,.25);
}

.equipment-card small {
    display: block;
    opacity: .9;
    margin-bottom: 10px;
}

.equipment-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.equipment-card span {
    opacity: .95;
}

/* NOTE */

.pricing-note {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .pricing-card.featured {
        transform: none;
    }

    .infrastructure-box {
        padding: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .section-title h2 {
        font-size: 1.7rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .infrastructure-box {
        text-align: center;
        padding: 25px;
    }

    .equipment-card {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {

    .pricing-card {
        padding: 28px 22px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.6rem;
    }
}