/* ==========================================================
   MONPORTAILCSE
   COLLECTIVITES V2
==========================================================*/

:root{

    --primary:#0d6efd;
    --secondary:#198754;
    --accent:#ff9800;

    --dark:#172235;
    --text:#505d6b;

    --light:#f5f7fb;
    --white:#ffffff;

    --border:#e4e9f2;

    --radius:18px;

    --shadow:
        0 10px 35px rgba(0,0,0,.08);

    --transition:.30s;

    --container:1280px;

}

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

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:#fff;

    color:var(--text);

    line-height:1.65;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

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

    margin:auto;

}

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

.site-header{

    position:sticky;

    top:0;

    background:#fff;

    z-index:1000;

    box-shadow:
        0 2px 12px rgba(0,0,0,.05);

}

.header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.site-logo{

    font-size:30px;

    font-weight:800;

    color:var(--dark);

}

.site-logo span{

    color:var(--primary);

}

.header-nav{

    display:flex;

    gap:35px;

}

.header-nav a{

    color:var(--dark);

    font-weight:600;

    transition:.25s;

}

.header-nav a:hover{

    color:var(--primary);

}

.header-actions{

    display:flex;

    gap:12px;

}

/* ==========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:12px;

    font-weight:700;

    transition:.30s;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:var(--shadow);

}

.btn-light{

    background:#fff;

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

    color:var(--dark);

}

.btn-light:hover{

    background:#f5f7fb;

}

.btn-white{

    background:#fff;

    color:var(--primary);

}

.btn-transparent{

    border:2px solid #fff;

    color:#fff;

}

.btn-large{

    padding:18px 42px;

}

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

.hero-collectivite{

    padding:90px 0;

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );

}

.hero-grid{

    display:grid;

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

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-block;

    background:#e8f1ff;

    color:var(--primary);

    padding:8px 18px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-left h1{

    font-size:58px;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:28px;

}

.hero-text{

    font-size:21px;

    margin-bottom:35px;

}

.hero-price{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;

}

.price{

    font-size:62px;

    font-weight:900;

    color:var(--secondary);

}

.price-text{

    font-size:22px;

}

.hero-actions{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.hero-features{

    display:grid;

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

    gap:14px;

}

.hero-features div{

    background:#fff;

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

    border-radius:12px;

    padding:15px;

}

/* ==========================================================
SIMULATEUR
==========================================================*/

.price-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow);

}

.price-card h3{

    font-size:30px;

    margin-bottom:25px;

    color:var(--dark);

}

.price-card label{

    display:block;

    margin-bottom:10px;

    font-weight:700;

}

.price-card input{

    width:100%;

}

.agents-value{

    text-align:center;

    font-size:28px;

    margin:20px 0;

    font-weight:700;

}

.compare-line{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

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

}

.compare-line strong{

    color:var(--dark);

}

.gain strong{

    color:var(--secondary);

    font-size:28px;

}

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

.section{

    padding:100px 0;

}

.section-soft{

    background:var(--light);

}

.section-title{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    display:block;

    margin-bottom:15px;

}

.section-title h2{

    font-size:46px;

    color:var(--dark);

    margin-bottom:20px;

}

.section-title p{

    font-size:20px;

}

/* ==========================================================
CARDS
==========================================================*/

.cards{

    display:grid;

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

    gap:30px;

}

.card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.30s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    color:var(--dark);

    margin-bottom:22px;

    font-size:24px;

}

.card ul li{

    padding:10px 0;

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

}

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

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr 1fr;

}

.header-nav{

display:none;

}

}

@media(max-width:768px){

.hero-left h1{

font-size:40px;

}

.price{

font-size:44px;

}

.hero-actions{

flex-direction:column;

}

.cards{

grid-template-columns:1fr;

}

.hero-features{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.price-card{

padding:25px;

}

}
/* ==========================================================
   UNIVERS FONCTIONNELS
========================================================== */

.universe-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:26px;
}

.universe-card{
    position:relative;
    overflow:hidden;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:22px;
    padding:34px;
    box-shadow:0 8px 28px rgba(23,34,53,.06);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.universe-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
}

.universe-card:hover{
    transform:translateY(-8px);
    border-color:rgba(13,110,253,.25);
    box-shadow:0 20px 45px rgba(23,34,53,.11);
}

.universe-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    margin-bottom:22px;
    background:linear-gradient(
        135deg,
        rgba(13,110,253,.12),
        rgba(25,135,84,.10)
    );
    font-size:31px;
}

.universe-card h3{
    margin-bottom:12px;
    color:var(--dark);
    font-size:25px;
    line-height:1.25;
}

.universe-card p{
    margin-bottom:22px;
    color:var(--text);
}

.universe-card ul{
    display:grid;
    gap:10px;
}

.universe-card li{
    position:relative;
    padding-left:26px;
    color:var(--dark);
    font-size:15px;
}

.universe-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--secondary);
    font-weight:900;
}

/* ==========================================================
   WORKFLOW
========================================================== */

.workflow-section{
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(13,110,253,.09),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(25,135,84,.08),
            transparent 30%
        ),
        #fff;
}

.workflow{
    max-width:900px;
    margin:0 auto;
}

.workflow-step{
    display:grid;
    grid-template-columns:76px 1fr;
    gap:22px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px 28px;
    box-shadow:0 8px 28px rgba(23,34,53,.06);
    transition:.25s ease;
}

.workflow-step:hover{
    transform:translateX(8px);
    border-color:rgba(13,110,253,.28);
    box-shadow:0 14px 36px rgba(23,34,53,.10);
}

.workflow-number{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    font-size:21px;
    font-weight:900;
    box-shadow:0 9px 22px rgba(13,110,253,.22);
}

.workflow-content h3{
    margin-bottom:5px;
    color:var(--dark);
    font-size:21px;
}

.workflow-content p{
    color:var(--text);
}

.workflow-arrow{
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:25px;
    font-weight:900;
}

.workflow-summary{
    max-width:900px;
    margin:36px auto 0;
    padding:26px;
    border-radius:20px;
    text-align:center;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    box-shadow:0 18px 42px rgba(13,110,253,.20);
}

.workflow-summary strong{
    display:block;
    margin-bottom:7px;
    font-size:20px;
}

.workflow-summary p{
    color:rgba(255,255,255,.86);
}

/* ==========================================================
   RÉSEAU PARTENAIRES
========================================================== */

.partner-section{
    overflow:hidden;
    background:linear-gradient(
        145deg,
        #eefaf4 0%,
        #f7fbff 52%,
        #fff 100%
    );
}

.partner-grid{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:70px;
    align-items:center;
}

.small-label{
    display:inline-flex;
    align-items:center;
    padding:7px 14px;
    margin-bottom:18px;
    border-radius:999px;
    background:rgba(25,135,84,.11);
    color:var(--secondary);
    font-size:14px;
    font-weight:800;
}

.partner-content h2{
    margin-bottom:22px;
    color:var(--dark);
    font-size:44px;
    line-height:1.15;
}

.partner-content p{
    margin-bottom:18px;
    font-size:18px;
}

.partner-options{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin-top:28px;
}

.partner-option{
    display:flex;
    align-items:center;
    gap:11px;
    min-height:58px;
    padding:14px 16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    color:var(--dark);
    font-weight:700;
    box-shadow:0 6px 18px rgba(23,34,53,.05);
}

.partner-option span{
    width:27px;
    height:27px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:50%;
    background:#dcfce7;
    color:#15803d;
}

.partner-visual{
    position:relative;
}

.network-main{
    position:relative;
    z-index:2;
    padding:34px !important;
    text-align:center;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    ) !important;
    color:#fff !important;
    border:none !important;
    box-shadow:0 24px 55px rgba(13,110,253,.22) !important;
}

.network-icon{
    margin-bottom:10px;
    font-size:48px;
}

.network-main strong{
    display:block;
    margin-bottom:5px;
    font-size:25px;
}

.network-main span{
    color:rgba(255,255,255,.83);
}

.network-columns{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:16px;
}

.network-card{
    padding:19px;
    border:1px solid var(--border);
    border-radius:17px;
    background:#fff;
    color:var(--dark);
    font-weight:750;
    box-shadow:0 8px 22px rgba(23,34,53,.07);
}

/* ==========================================================
   TABLEAU COMPARATIF
========================================================== */

.comparison-wrapper{
    overflow-x:auto;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 40px rgba(23,34,53,.08);
}

.comparison-table{
    width:100%;
    min-width:760px;
    border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
    padding:18px 22px;
    text-align:left;
    border-bottom:1px solid var(--border);
}

.comparison-table thead{
    background:linear-gradient(
        135deg,
        var(--dark),
        #253653
    );
}

.comparison-table th{
    color:#fff;
    font-size:15px;
    letter-spacing:.02em;
}

.comparison-table th:last-child{
    background:rgba(13,110,253,.28);
}

.comparison-table tbody tr{
    transition:background .2s ease;
}

.comparison-table tbody tr:hover{
    background:#f8fbff;
}

.comparison-table tbody tr:last-child td{
    border-bottom:none;
}

.comparison-table td:first-child{
    color:var(--dark);
    font-weight:750;
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 11px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
}

.status.yes{
    background:#dcfce7;
    color:#166534;
}

.status.no{
    background:#fee2e2;
    color:#991b1b;
}

.status.limited{
    background:#fef3c7;
    color:#92400e;
}

.status.progressive{
    background:#dbeafe;
    color:#1d4ed8;
}

.comparison-note{
    max-width:920px;
    margin:24px auto 0;
    padding:19px 22px;
    border-left:4px solid var(--primary);
    border-radius:0 12px 12px 0;
    background:#eff6ff;
    color:#334155;
    font-size:15px;
}

/* ==========================================================
   CTA INTERMÉDIAIRE
========================================================== */

.mid-cta{
    padding:72px 0;
    background:linear-gradient(
        125deg,
        var(--primary),
        #1558b0 50%,
        var(--secondary)
    );
}

.mid-cta-inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:45px;
    align-items:center;
}

.light-label{
    background:rgba(255,255,255,.13);
    color:#fff;
    border:1px solid rgba(255,255,255,.22);
}

.mid-cta h2{
    max-width:760px;
    margin-bottom:13px;
    color:#fff;
    font-size:38px;
    line-height:1.2;
}

.mid-cta p{
    max-width:760px;
    color:rgba(255,255,255,.81);
    font-size:17px;
}

.mid-cta-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    min-width:245px;
}

.mid-cta .btn-transparent:hover,
.final-cta .btn-transparent:hover{
    background:#fff;
    color:var(--primary);
}

/* ==========================================================
   TARIFICATION
========================================================== */

.pricing-section{
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(13,110,253,.09),
            transparent 28%
        ),
        #fff;
}

.pricing-wrapper{
    max-width:1100px;
    margin:0 auto;
}

.pricing-card-main{
    position:relative;
    overflow:hidden;
    padding:50px;
    border:2px solid rgba(13,110,253,.25);
    border-radius:28px;
    background:#fff;
    box-shadow:0 22px 60px rgba(23,34,53,.12);
}

.pricing-card-main::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary),
        var(--accent)
    );
}

.pricing-badge{
    display:inline-flex;
    margin-bottom:20px;
    padding:8px 16px;
    border-radius:999px;
    background:#e8f1ff;
    color:var(--primary);
    font-weight:800;
}

.pricing-heading{
    display:flex;
    align-items:center;
    gap:22px;
    margin-bottom:20px;
}

.pricing-amount{
    color:var(--secondary);
    font-size:76px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.04em;
}

.pricing-period{
    display:flex;
    flex-direction:column;
}

.pricing-period strong{
    color:var(--dark);
    font-size:20px;
}

.pricing-period span{
    color:var(--text);
}

.pricing-description{
    max-width:800px;
    margin-bottom:36px;
    font-size:18px;
}

.pricing-columns{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.pricing-list{
    padding:22px;
    border:1px solid var(--border);
    border-radius:16px;
    background:var(--light);
}

.pricing-list h3{
    margin-bottom:13px;
    color:var(--dark);
    font-size:18px;
}

.pricing-list ul{
    display:grid;
    gap:8px;
}

.pricing-list li{
    position:relative;
    padding-left:23px;
    font-size:14px;
}

.pricing-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--secondary);
    font-weight:900;
}

.pricing-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:35px;
}

.pricing-note{
    max-width:820px;
    margin:20px auto 0;
    text-align:center;
    color:#718096;
    font-size:14px;
}

/* ==========================================================
   BÉNÉFICES
========================================================== */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:26px;
}

.benefit-card{
    padding:32px;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    box-shadow:0 9px 30px rgba(23,34,53,.07);
}

.benefit-icon{
    margin-bottom:17px;
    font-size:39px;
}

.benefit-card h3{
    margin-bottom:19px;
    color:var(--dark);
    font-size:24px;
}

.benefit-card ul{
    display:grid;
    gap:12px;
}

.benefit-card li{
    position:relative;
    padding-left:25px;
}

.benefit-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--secondary);
    font-weight:900;
}

/* ==========================================================
   TIMELINE : UNE JOURNÉE
========================================================== */

.timeline{
    position:relative;
    max-width:900px;
    margin:0 auto;
}

.timeline::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:122px;
    width:3px;
    border-radius:4px;
    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );
}

.timeline-item{
    position:relative;
    display:grid;
    grid-template-columns:92px 30px 1fr;
    gap:15px;
    align-items:start;
    margin-bottom:26px;
}

.timeline-time{
    padding-top:16px;
    color:var(--primary);
    text-align:right;
    font-weight:900;
    font-size:17px;
}

.timeline-marker{
    position:relative;
    z-index:2;
    width:18px;
    height:18px;
    margin-top:18px;
    margin-left:6px;
    border:4px solid #fff;
    border-radius:50%;
    background:var(--secondary);
    box-shadow:0 0 0 3px rgba(25,135,84,.20);
}

.timeline-content{
    padding:22px 25px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(23,34,53,.06);
}

.timeline-content h3{
    margin-bottom:5px;
    color:var(--dark);
    font-size:19px;
}

/* ==========================================================
   DÉPLOIEMENT
========================================================== */

.deployment-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.deployment-step{
    position:relative;
    padding:30px 24px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(23,34,53,.06);
}

.deployment-number{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border-radius:15px;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    font-size:20px;
    font-weight:900;
}

.deployment-step h3{
    margin-bottom:10px;
    color:var(--dark);
    font-size:21px;
}

/* ==========================================================
   STATISTIQUES
========================================================== */

.stats-section{
    padding:68px 0;
    background:linear-gradient(
        135deg,
        var(--dark),
        #263855
    );
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
}

.stat-card{
    padding:24px 15px;
    text-align:center;
    border:1px solid rgba(255,255,255,.13);
    border-radius:18px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(8px);
}

.stat-card strong{
    display:block;
    margin-bottom:7px;
    color:#fff;
    font-size:37px;
    line-height:1;
}

.stat-card span{
    color:rgba(255,255,255,.70);
    font-size:14px;
}

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

.faq-list{
    max-width:900px;
    margin:0 auto;
    display:grid;
    gap:14px;
}

.faq-item{
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:16px;
    background:#fff;
    box-shadow:0 6px 20px rgba(23,34,53,.05);
}

.faq-item summary{
    position:relative;
    padding:21px 58px 21px 23px;
    color:var(--dark);
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    top:50%;
    right:22px;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateY(-50%);
    border-radius:50%;
    background:#e8f1ff;
    color:var(--primary);
    font-size:21px;
    transition:transform .2s ease;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item[open] summary{
    color:var(--primary);
    border-bottom:1px solid var(--border);
}

.faq-answer{
    padding:21px 23px 24px;
    color:var(--text);
}

/* ==========================================================
   CTA FINAL
========================================================== */

.final-cta{
    padding:95px 0;
    text-align:center;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--primary),
            #164eaa 47%,
            var(--secondary)
        );
}

.final-cta-inner{
    max-width:950px;
}

.final-cta-label{
    display:inline-flex;
    margin-bottom:20px;
    padding:7px 15px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.11);
    font-weight:800;
}

.final-cta h2{
    margin-bottom:22px;
    color:#fff;
    font-size:48px;
    line-height:1.15;
}

.final-cta p{
    max-width:800px;
    margin:0 auto 28px;
    color:rgba(255,255,255,.80);
    font-size:19px;
}

.final-price{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:30px;
    color:#fff;
}

.final-price strong{
    font-size:50px;
    line-height:1;
}

.final-price span{
    max-width:150px;
    text-align:left;
}

.final-cta-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.final-reassurance{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:13px 26px;
    margin-top:30px;
    color:rgba(255,255,255,.82);
    font-size:14px;
    font-weight:700;
}

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

.site-footer{
    padding:48px 0;
    background:#101827;
    color:rgba(255,255,255,.65);
}

.footer-inner{
    display:grid;
    grid-template-columns:1.2fr 1fr auto;
    gap:35px;
    align-items:center;
}

.footer-logo{
    margin-bottom:8px;
    color:#fff;
    font-size:24px;
    font-weight:900;
}

.footer-logo span{
    color:#60a5fa;
}

.footer-inner p{
    max-width:420px;
    font-size:14px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:13px 22px;
}

.footer-links a{
    color:rgba(255,255,255,.67);
    font-size:14px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-copyright{
    text-align:right;
    font-size:13px;
}

/* ==========================================================
   ACCESSIBILITÉ ET EFFETS
========================================================== */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible{
    outline:3px solid rgba(13,110,253,.35);
    outline-offset:3px;
}

.btn:active{
    transform:translateY(1px);
}

::selection{
    background:rgba(13,110,253,.20);
    color:var(--dark);
}

/* ==========================================================
   RESPONSIVE COMPLÉMENTAIRE
========================================================== */

@media(max-width:1100px){

    .universe-grid,
    .pricing-columns{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .partner-grid{
        grid-template-columns:1fr;
    }

    .partner-visual{
        max-width:700px;
        width:100%;
        margin:0 auto;
    }

    .mid-cta-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mid-cta h2,
    .mid-cta p{
        margin-left:auto;
        margin-right:auto;
    }

    .mid-cta-actions{
        flex-direction:row;
        justify-content:center;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .deployment-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .stats-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .footer-inner{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-inner p{
        margin:0 auto;
    }

    .footer-copyright{
        text-align:center;
    }

}

@media(max-width:768px){

    .section{
        padding:72px 0;
    }

    .universe-grid,
    .pricing-columns,
    .partner-options,
    .network-columns,
    .deployment-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .universe-card,
    .benefit-card{
        padding:26px;
    }

    .workflow-step{
        grid-template-columns:52px 1fr;
        padding:20px;
    }

    .workflow-number{
        width:46px;
        height:46px;
        font-size:17px;
    }

    .partner-content h2{
        font-size:34px;
    }

    .comparison-table th,
    .comparison-table td{
        padding:14px;
    }

    .mid-cta{
        padding:58px 0;
    }

    .mid-cta h2{
        font-size:31px;
    }

    .mid-cta-actions{
        flex-direction:column;
        width:100%;
    }

    .pricing-card-main{
        padding:32px 22px;
    }

    .pricing-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }

    .pricing-amount{
        font-size:62px;
    }

    .pricing-actions{
        flex-direction:column;
    }

    .pricing-actions .btn{
        width:100%;
    }

    .timeline::before{
        left:14px;
    }

    .timeline-item{
        grid-template-columns:29px 1fr;
        gap:12px;
    }

    .timeline-time{
        grid-column:2;
        padding:0;
        text-align:left;
        font-size:15px;
    }

    .timeline-marker{
        grid-column:1;
        grid-row:1 / span 2;
        margin-top:5px;
        margin-left:6px;
    }

    .timeline-content{
        grid-column:2;
    }

    .final-cta{
        padding:72px 0;
    }

    .final-cta h2{
        font-size:35px;
    }

    .final-price{
        flex-direction:column;
    }

    .final-price span{
        max-width:none;
        text-align:center;
    }

    .final-cta-actions{
        flex-direction:column;
    }

    .final-cta-actions .btn{
        width:100%;
    }

}

@media(max-width:520px){

    .site-logo{
        font-size:23px;
    }

    .header-actions .btn-light{
        display:none;
    }

    .header-actions .btn{
        padding:10px 13px;
        font-size:13px;
    }

    .hero-collectivite{
        padding:58px 0 70px;
    }

    .hero-left h1{
        font-size:35px;
    }

    .hero-text{
        font-size:17px;
    }

    .hero-price{
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }

    .price{
        font-size:51px;
    }

    .price-text{
        font-size:17px;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:17px;
    }

    .price-card h3{
        font-size:24px;
    }

    .comparison-note{
        font-size:14px;
    }

    .stat-card strong{
        font-size:32px;
    }

    .faq-item summary{
        padding-left:18px;
        font-size:15px;
    }

}
/* ==========================================================
   CSS3 — FINITIONS PREMIUM
   MONPORTAILCSE COLLECTIVITÉS
========================================================== */


/* ==========================================================
   AMÉLIORATION DU HEADER
========================================================== */

.site-header{
    transition:
        box-shadow .25s ease,
        background-color .25s ease,
        transform .25s ease;
}

.site-header.header-scrolled{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:0 8px 28px rgba(23,34,53,.10);
}

.site-logo{
    display:inline-flex;
    align-items:center;
    letter-spacing:-.04em;
}

.header-nav a{
    position:relative;
    padding:8px 0;
}

.header-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    transition:width .25s ease;
}

.header-nav a:hover::after,
.header-nav a.is-active::after{
    width:100%;
}


/* ==========================================================
   SLIDER DU SIMULATEUR
========================================================== */

.price-card input[type="range"]{
    appearance:none;
    -webkit-appearance:none;

    width:100%;
    height:8px;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            var(--primary) 0%,
            var(--primary) 14%,
            #dbe4f1 14%,
            #dbe4f1 100%
        );

    cursor:pointer;
    outline:none;
}

.price-card input[type="range"]::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;

    width:25px;
    height:25px;

    border:4px solid #fff;
    border-radius:50%;

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

    box-shadow:
        0 4px 12px rgba(13,110,253,.35);

    cursor:pointer;

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.price-card input[type="range"]::-webkit-slider-thumb:hover{
    transform:scale(1.13);

    box-shadow:
        0 6px 18px rgba(13,110,253,.44);
}

.price-card input[type="range"]::-moz-range-thumb{
    width:18px;
    height:18px;

    border:4px solid #fff;
    border-radius:50%;

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

    box-shadow:
        0 4px 12px rgba(13,110,253,.35);

    cursor:pointer;
}

.price-card input[type="range"]::-moz-range-track{
    height:8px;

    border-radius:999px;

    background:#dbe4f1;
}

.price-card input[type="range"]:focus-visible{
    outline:3px solid rgba(13,110,253,.22);
    outline-offset:5px;
}


/* ==========================================================
   SIMULATEUR — FINITIONS
========================================================== */

.price-card{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

.price-card::before{
    content:"";
    position:absolute;

    width:220px;
    height:220px;

    top:-100px;
    right:-100px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(13,110,253,.14),
        transparent 70%
    );

    z-index:-1;
}

.price-card::after{
    content:"";

    position:absolute;

    width:170px;
    height:170px;

    left:-80px;
    bottom:-80px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(25,135,84,.12),
        transparent 70%
    );

    z-index:-1;
}

.compare-line{
    gap:20px;
}

.compare-line span{
    color:var(--text);
}

.compare-line strong{
    white-space:nowrap;
}

.compare-line.gain{
    margin-top:14px;
    padding:20px;

    border:none;
    border-radius:16px;

    background:linear-gradient(
        135deg,
        rgba(25,135,84,.10),
        rgba(13,110,253,.08)
    );
}

.compare-line.gain span{
    color:var(--dark);
    font-weight:800;
}


/* ==========================================================
   EFFETS DU HERO
========================================================== */

.hero-collectivite{
    position:relative;
    overflow:hidden;
}

.hero-collectivite::before{
    content:"";

    position:absolute;

    top:70px;
    left:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(13,110,253,.10),
        transparent 68%
    );

    pointer-events:none;
}

.hero-collectivite::after{
    content:"";

    position:absolute;

    right:-170px;
    bottom:-210px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(25,135,84,.09),
        transparent 68%
    );

    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:1;
}

.hero-left h1{
    letter-spacing:-.045em;
}

.hero-text{
    max-width:740px;
}

.hero-features div{
    display:flex;
    align-items:center;
    min-height:56px;

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

.hero-features div:hover{
    transform:translateY(-3px);

    border-color:rgba(13,110,253,.25);

    box-shadow:
        0 9px 22px rgba(23,34,53,.08);
}


/* ==========================================================
   BADGES ET LABELS
========================================================== */

.badge,
.small-label,
.pricing-badge,
.final-cta-label{
    letter-spacing:.02em;
}

.badge::before{
    content:"●";

    margin-right:8px;

    color:var(--secondary);

    font-size:11px;
}


/* ==========================================================
   CARTES — EFFETS DE LUMIÈRE
========================================================== */

.card,
.universe-card,
.benefit-card,
.deployment-step,
.timeline-content,
.network-card,
.pricing-list{
    isolation:isolate;
}

.card::after,
.benefit-card::after,
.deployment-step::after{
    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:linear-gradient(
        130deg,
        rgba(255,255,255,.55),
        transparent 40%
    );

    opacity:0;

    pointer-events:none;

    transition:opacity .25s ease;

    z-index:-1;
}

.card,
.benefit-card,
.deployment-step{
    position:relative;
}

.card:hover::after,
.benefit-card:hover::after,
.deployment-step:hover::after{
    opacity:1;
}

.benefit-card,
.deployment-step{
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.benefit-card:hover,
.deployment-step:hover{
    transform:translateY(-7px);

    border-color:rgba(13,110,253,.22);

    box-shadow:
        0 18px 42px rgba(23,34,53,.10);
}


/* ==========================================================
   ICÔNES ET NUMÉROS
========================================================== */

.universe-icon,
.benefit-icon,
.deployment-number,
.workflow-number{
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.universe-card:hover .universe-icon,
.benefit-card:hover .benefit-icon,
.deployment-step:hover .deployment-number{
    transform:
        translateY(-3px)
        scale(1.05);
}


/* ==========================================================
   TARIFICATION — MISE EN VALEUR
========================================================== */

.pricing-card-main{
    isolation:isolate;
}

.pricing-card-main::after{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    top:-260px;
    right:-180px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(13,110,253,.12),
        transparent 68%
    );

    z-index:-1;
}

.pricing-list{
    transition:
        transform .22s ease,
        background-color .22s ease,
        border-color .22s ease;
}

.pricing-list:hover{
    transform:translateY(-4px);

    border-color:rgba(13,110,253,.25);

    background:#fff;
}

.pricing-amount{
    text-shadow:
        0 10px 28px rgba(25,135,84,.13);
}


/* ==========================================================
   TABLEAU COMPARATIF — COLONNE MONPORTAILCSE
========================================================== */

.comparison-table td:last-child{
    background:rgba(13,110,253,.025);
}

.comparison-table tbody tr:hover td:last-child{
    background:rgba(13,110,253,.07);
}

.comparison-table th:last-child,
.comparison-table td:last-child{
    border-left:1px solid rgba(13,110,253,.15);
}


/* ==========================================================
   FAQ — ANIMATION
========================================================== */

.faq-item{
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease;
}

.faq-item:hover{
    border-color:rgba(13,110,253,.23);

    box-shadow:
        0 11px 27px rgba(23,34,53,.08);
}

.faq-item[open]{
    border-color:rgba(13,110,253,.32);

    box-shadow:
        0 13px 32px rgba(23,34,53,.09);
}

.faq-answer{
    animation:faqReveal .25s ease both;
}

@keyframes faqReveal{

    from{
        opacity:0;
        transform:translateY(-5px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* ==========================================================
   ANIMATIONS D’APPARITION
========================================================== */

.reveal{
    opacity:0;

    transform:translateY(28px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal.reveal-visible{
    opacity:1;

    transform:translateY(0);
}

.reveal-left{
    opacity:0;

    transform:translateX(-30px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal-left.reveal-visible{
    opacity:1;

    transform:translateX(0);
}

.reveal-right{
    opacity:0;

    transform:translateX(30px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal-right.reveal-visible{
    opacity:1;

    transform:translateX(0);
}


/* ==========================================================
   BOUTON RETOUR EN HAUT
========================================================== */

.back-to-top{
    position:fixed;

    right:22px;
    bottom:22px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

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

    color:#fff;

    font-size:20px;
    font-weight:900;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    box-shadow:
        0 10px 28px rgba(13,110,253,.30);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index:1200;
}

.back-to-top.is-visible{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.back-to-top:hover{
    transform:translateY(-4px);
}


/* ==========================================================
   NAVIGATION MOBILE
========================================================== */

.mobile-menu-toggle{
    display:none;

    width:44px;
    height:44px;

    align-items:center;
    justify-content:center;

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

    background:#fff;
    color:var(--dark);

    font-size:22px;

    cursor:pointer;
}

.mobile-navigation{
    display:none;
}


/* ==========================================================
   BOUTONS — FINITIONS GLOBALES
========================================================== */

.btn{
    position:relative;

    overflow:hidden;

    border:none;

    cursor:pointer;

    isolation:isolate;
}

.btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-130%;

    width:75%;
    height:100%;

    transform:skewX(-22deg);

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.32),
        transparent
    );

    transition:left .55s ease;

    z-index:-1;
}

.btn:hover::before{
    left:140%;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--primary),
        #185abc
    );
}

.btn-primary:hover{
    background:linear-gradient(
        135deg,
        #0759c7,
        var(--primary)
    );
}


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

@media(max-width:1100px){

    .header-inner{
        gap:16px;
    }

    .header-actions{
        margin-left:auto;
    }

    .hero-grid{
        gap:48px;
    }

    .hero-left{
        text-align:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-price,
    .hero-actions{
        justify-content:center;
    }

    .hero-features{
        max-width:720px;
        margin-left:auto;
        margin-right:auto;
    }

    .price-card{
        max-width:680px;
        width:100%;
        margin:0 auto;
    }

}


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

@media(max-width:768px){

    .site-header{
        position:sticky;
    }

    .header-inner{
        min-height:72px;
    }

    .mobile-menu-toggle{
        display:flex;
    }

    .header-actions{
        margin-left:auto;
    }

    .mobile-navigation{
        position:absolute;

        top:100%;
        left:0;
        right:0;

        display:grid;

        max-height:0;

        overflow:hidden;

        background:#fff;

        border-top:1px solid transparent;

        box-shadow:
            0 14px 30px rgba(23,34,53,.10);

        opacity:0;

        transition:
            max-height .3s ease,
            opacity .3s ease,
            border-color .3s ease;
    }

    .mobile-navigation.is-open{
        max-height:420px;

        opacity:1;

        border-color:var(--border);
    }

    .mobile-navigation a{
        padding:15px 24px;

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

        color:var(--dark);

        font-weight:700;
    }

    .mobile-navigation a:hover{
        color:var(--primary);

        background:#f7faff;
    }

    .hero-left{
        text-align:left;
    }

    .hero-price,
    .hero-actions{
        justify-content:flex-start;
    }

    .hero-actions .btn{
        width:100%;
    }

    .price-card{
        border-radius:18px;
    }

    .compare-line{
        align-items:flex-start;
    }

    .compare-line strong{
        text-align:right;
    }

    .workflow-step:hover{
        transform:none;
    }

    .partner-content{
        text-align:center;
    }

    .partner-options{
        text-align:left;
    }

    .comparison-wrapper{
        margin-left:-3%;
        margin-right:-3%;

        border-left:none;
        border-right:none;

        border-radius:0;
    }

    .pricing-card-main{
        border-radius:20px;
    }

    .back-to-top{
        right:15px;
        bottom:15px;

        width:44px;
        height:44px;
    }

}


/* ==========================================================
   TRÈS PETITS ÉCRANS
========================================================== */

@media(max-width:420px){

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

    .site-logo{
        font-size:21px;
    }

    .header-actions .btn-primary{
        padding:9px 11px;

        font-size:12px;
    }

    .hero-left h1{
        font-size:31px;
    }

    .badge{
        padding:7px 12px;

        font-size:12px;
    }

    .price-card{
        padding:22px 18px;
    }

    .agents-value{
        font-size:23px;
    }

    .compare-line{
        flex-direction:column;

        gap:5px;
    }

    .compare-line strong{
        text-align:left;
    }

    .compare-line.gain strong{
        font-size:24px;
    }

    .universe-card,
    .benefit-card,
    .deployment-step,
    .timeline-content{
        padding:22px 19px;
    }

    .workflow-step{
        grid-template-columns:1fr;

        text-align:center;
    }

    .workflow-number{
        margin:0 auto;
    }

    .workflow-summary strong{
        font-size:16px;
    }

    .pricing-amount{
        font-size:55px;
    }

    .final-cta h2{
        font-size:31px;
    }

    .final-price strong{
        font-size:44px;
    }

}


/* ==========================================================
   PRÉFÉRENCES D’ACCESSIBILITÉ
========================================================== */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;

        transition-duration:.01ms !important;

        scroll-behavior:auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right{
        opacity:1;

        transform:none;
    }

}


/* ==========================================================
   MODE IMPRESSION
========================================================== */

@media print{

    .site-header,
    .hero-actions,
    .mid-cta,
    .pricing-actions,
    .final-cta-actions,
    .back-to-top,
    .mobile-menu-toggle,
    .mobile-navigation{
        display:none !important;
    }

    body{
        color:#000;

        background:#fff;

        font-size:12pt;
    }

    .section,
    .hero-collectivite,
    .final-cta,
    .stats-section{
        padding:28px 0;

        background:#fff !important;

        color:#000 !important;
    }

    .hero-grid,
    .partner-grid,
    .benefits-grid,
    .pricing-columns,
    .deployment-grid,
    .stats-grid{
        display:block;
    }

    .price-card,
    .card,
    .universe-card,
    .benefit-card,
    .pricing-card-main,
    .deployment-step,
    .timeline-content,
    .network-card{
        break-inside:avoid;

        margin-bottom:15px;

        box-shadow:none;

        border:1px solid #bbb;
    }

    .final-cta h2,
    .final-cta p,
    .final-price,
    .stat-card strong,
    .stat-card span{
        color:#000 !important;
    }

    a{
        color:#000;
    }

}

