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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #07182d;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 20, 39, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 750;
}

.logo img {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    object-fit: contain;
    border-radius: 10px;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    color: #b8c7d8;
    font-size: 14px;
    transition: .25s;
}

.nav a:hover {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-header {
    background: linear-gradient(135deg, #08c5e9, #1477ff);
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 650;
}


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

.hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;
    padding: 170px 0 100px;
    background:
        radial-gradient(circle at 75% 40%, rgba(0,174,255,.13), transparent 28%),
        linear-gradient(145deg, #06172c, #081c34 60%, #061426);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    border: 1px solid rgba(0,215,255,.25);
    background: rgba(0,200,255,.07);
    color: #5fe5ff;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 13px;
    margin-bottom: 27px;
}

.hero h1 {
    font-size: clamp(52px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
    max-width: 720px;
}

.hero h1 span {
    background: linear-gradient(90deg, #00e5ff, #1682ff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    color: #aabbd0;
    max-width: 600px;
    font-size: 18px;
    margin-top: 27px;
}

.compatibility {
    color: #6e879f;
    font-size: 13px;
    margin-top: 18px;
}

.store-buttons {
    display: flex;
    gap: 13px;
    margin-top: 33px;
}

.store-button {
    min-width: 175px;
    background: #ffffff;
    color: #061427;
    padding: 9px 17px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: .25s;
}

.store-button:hover {
    transform: translateY(-3px);
}

.store-button small {
    display: block;
    font-size: 10px;
    line-height: 1.1;
}

.store-button strong {
    display: block;
    font-size: 17px;
    line-height: 1.25;
}

.store-icon {
    font-size: 30px;
}

.play-icon {
    font-size: 24px;
    color: #098ddc;
}

.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 23px;
    color: #70879e;
    font-size: 12px;
}


/* PHONE */

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(0,196,255,.16);
    filter: blur(90px);
}

.phone {
    width: 315px;
    height: 650px;
    border: 8px solid #162c43;
    background: #061529;
    border-radius: 48px;
    padding: 13px;
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
    box-shadow: 0 45px 100px rgba(0,0,0,.45);
}

.phone-top {
    width: 95px;
    height: 23px;
    background: #071421;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    z-index: 5;
}

.phone-screen {
    height: 100%;
    border-radius: 34px;
    padding: 43px 18px 20px;
    background:
        radial-gradient(circle at top right, rgba(0,201,255,.16), transparent 30%),
        #091c31;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 11px;
}

.app-header small,
.app-header strong {
    display: block;
}

.app-header small {
    color: #758ca2;
    font-size: 10px;
}

.app-logo {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, #00d9e9, #1468ff);
    font-size: 10px;
    font-weight: 800;
}

.mail-health {
    margin-top: 24px;
    text-align: center;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(8,52,81,.8), rgba(7,31,53,.8));
    border: 1px solid rgba(0,211,255,.12);
}

.mail-health > span {
    color: #7c96ac;
    font-size: 10px;
}

.score {
    font-size: 52px;
    font-weight: 750;
    line-height: 1.2;
    background: linear-gradient(90deg,#00e7ee,#1688ff);
    -webkit-background-clip: text;
    color: transparent;
}

.score small {
    font-size: 18px;
}

.mail-health strong {
    display: block;
    font-size: 13px;
}

.mail-health p {
    color: #70869b;
    font-size: 9px;
    margin-top: 3px;
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 10px 0;
}

.app-stats div {
    background: rgba(255,255,255,.04);
    padding: 12px;
    border-radius: 13px;
}

.app-stats span,
.app-stats small {
    display: block;
}

.app-stats span {
    color: #50dff4;
    font-weight: 700;
    font-size: 15px;
}

.app-stats small {
    color: #71889c;
    font-size: 8px;
}

.app-action {
    display: grid;
    grid-template-columns: 37px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 11px;
    margin-top: 7px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 13px;
}

.action-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(0,204,255,.1);
    color: #4be5ff;
    border-radius: 9px;
}

.app-action strong,
.app-action small {
    display: block;
}

.app-action strong {
    font-size: 10px;
}

.app-action small {
    color: #71889d;
    font-size: 7px;
}


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

section:not(.hero) {
    padding: 110px 0;
}

.section-label {
    color: #22cde9;
    letter-spacing: 2.5px;
    font-size: 11px;
    font-weight: 750;
    margin-bottom: 13px;
}

section h2 {
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-intro {
    color: #8599ad;
    max-width: 620px;
    margin: 17px auto 0;
}


/* ================================
   PROVIDERS
================================ */

.providers {
    text-align: center;
    background: #ffffff;
    color: #07182d;
}

.providers .section-label {
    color: #078eb6;
}

.provider-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 50px;
}

.provider {
    min-width: 145px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5ebf0;
    border-radius: 14px;
    font-weight: 600;
}

.provider-icon {
    width: 33px;
    height: 33px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: #eef7fb;
    color: #087bb5;
}


/* ================================
   FEATURES
================================ */

.features {
    background: #f5f8fa;
    color: #08182a;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e7edf1;
    border-radius: 23px;
    padding: 35px;
    min-height: 245px;
}

.feature-large {
    grid-row: span 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(145deg,#e6fbff,#e7f0ff);
    display: grid;
    place-items: center;
    color: #079dcc;
    font-size: 21px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #748393;
    font-size: 14px;
}

.mini-analysis {
    margin-top: 35px;
    background: #f6f9fb;
    border-radius: 16px;
    padding: 20px;
}

.mini-analysis div:first-child {
    display: flex;
    justify-content: space-between;
}

.mini-analysis strong {
    color: #078fb6;
}

.progress {
    height: 7px;
    background: #dce7ec;
    border-radius: 20px;
    margin: 15px 0 8px;
}

.progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#05d4dd,#1478ff);
}

.mini-analysis small {
    color: #8a9ba9;
}


/* ================================
   HOW
================================ */

.how {
    background: #ffffff;
    color: #08182a;
    text-align: center;
}

.steps {
    margin-top: 70px;
    display: flex;
    align-items: center;
}

.step {
    flex: 1;
}

.step-number {
    color: #b3c0c9;
    font-size: 11px;
}

.step-icon {
    margin: 13px auto 18px;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg,#e5fbff,#e9f0ff);
    color: #078fb8;
    font-size: 23px;
}

.step h3 {
    margin-bottom: 7px;
}

.step p {
    color: #7d8b99;
    font-size: 13px;
}

.step-line {
    width: 70px;
    height: 1px;
    background: #dce6eb;
}


/* ================================
   SECURITY
================================ */

.security {
    background: #071a31;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.security-grid p:not(.section-label) {
    color: #8ca0b5;
    margin-top: 22px;
}

.security-points {
    margin-top: 30px;
    display: grid;
    gap: 13px;
}

.security-points div {
    color: #b7c5d3;
}

.security-points span {
    color: #26e0e5;
    margin-right: 10px;
}

.security-visual {
    height: 350px;
    display: grid;
    place-items: center;
    position: relative;
}

.shield {
    width: 120px;
    height: 140px;
    background: linear-gradient(145deg,#03d6e5,#126eff);
    clip-path: polygon(50% 0,100% 20%,90% 75%,50% 100%,10% 75%,0 20%);
    display: grid;
    place-items: center;
    font-size: 40px;
    box-shadow: 0 0 80px rgba(0,208,255,.25);
}

.security-orbit {
    position: absolute;
    border: 1px solid rgba(0,214,255,.15);
    border-radius: 50%;
}

.orbit-one {
    width: 230px;
    height: 230px;
}

.orbit-two {
    width: 330px;
    height: 330px;
}


/* ================================
   DOWNLOAD
================================ */

.download {
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(0,199,255,.16), transparent 30%),
        #051529;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-logo {
   
    height: 85px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 25px;
}

.download p:not(.section-label) {
    color: #849aaf;
    margin-top: 15px;
}

.store-buttons-center {
    justify-content: center;
}


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

.footer {
    padding: 40px 0;
    background: #04101f;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a,
.footer p {
    color: #6f8499;
    font-size: 12px;
}


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

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hero-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

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

    .store-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-phone {
        margin-top: 50px;
    }

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

    .feature-large {
        grid-row: auto;
    }

    .steps {
        flex-direction: column;
        gap: 35px;
    }

    .step-line {
        width: 1px;
        height: 40px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 25px;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .btn-header {
        display: none;
    }

    .hero {
        padding-top: 135px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 210px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 5px;
    }

    .phone {
        width: 285px;
        height: 590px;
    }

    section:not(.hero) {
        padding: 80px 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ===== CORRECTIONS CLEVERMAIL ===== */
body { overflow-x: hidden; }

.logo { flex-shrink: 0; }
.logo img { display: block; }

.hero-grid,
.security-grid,
.hero-content,
.hero-phone { min-width: 0; }

.phone-screen { overflow: hidden; }

@media (max-width: 900px) {
    .header-inner { gap: 20px; }
    .hero-grid { gap: 45px; }
    .hero h1 { max-width: 100%; }
    .security-grid { gap: 50px; }
}

@media (max-width: 600px) {
    .header-inner { height: 72px; }

    .logo { font-size: 18px; }

    .logo img {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 75px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.04;
    }

    .hero-description { font-size: 16px; }

    .phone-glow {
        width: 300px;
        height: 300px;
    }

    .phone {
        max-width: 100%;
        transform: none;
    }

    .provider {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }

    .feature-card { padding: 26px; }

    .security-visual { height: 300px; }

    .orbit-two {
        width: 280px;
        height: 280px;
    }
}


/* ==========================================================
   CLEVERMAIL
   PAGE : COMMENT ÇA MARCHE
========================================================== */


/* ================================
   NAV ACTIVE
================================ */

.nav a.active {
    color: #ffffff;
    position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00e5ff, #1682ff);
    border-radius: 20px;
}


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

.how-hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 155px 0 100px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0, 207, 255, .14),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(30, 87, 255, .12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #06172c,
            #081d35 55%,
            #051426
        );
}


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

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 217, 255, .35),
        transparent
    );
}


.how-hero-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.how-badge {
    display: inline-flex;

    padding: 8px 17px;

    margin-bottom: 28px;

    border-radius: 30px;

    border: 1px solid rgba(0, 215, 255, .25);

    background: rgba(0, 200, 255, .07);

    color: #5fe5ff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.how-hero h1 {
    max-width: 900px;

    font-size: clamp(54px, 7vw, 88px);

    line-height: .98;

    letter-spacing: -4px;
}


.how-hero h1 span {
    background: linear-gradient(
        90deg,
        #00e5ff,
        #1682ff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.how-hero-text {
    max-width: 690px;

    margin-top: 30px;

    color: #9eb1c4;

    font-size: 18px;
}


.how-provider-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 9px;

    margin-top: 28px;
}


.how-provider-line span {
    padding: 7px 12px;

    border-radius: 30px;

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

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

    color: #8299af;

    font-size: 11px;
}


.how-scroll-btn {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 40px;

    padding: 13px 21px;

    border-radius: 11px;

    background: linear-gradient(
        135deg,
        #08c5e9,
        #1477ff
    );

    color: #ffffff;

    font-size: 13px;
    font-weight: 650;

    box-shadow:
        0 15px 40px rgba(0, 150, 255, .2);

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


.how-scroll-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(0, 150, 255, .3);
}



/* ================================
   INTRO
================================ */

.how-intro {
    background: #ffffff;

    color: #07182d;

    text-align: center;
}


.how-intro .section-label {
    color: #078eb6;
}


.how-intro h2 {
    font-size: clamp(38px, 5vw, 58px);
}


.how-intro-text {
    max-width: 680px;

    margin: 20px auto 0;

    color: #77899a;

    font-size: 16px;
}


.mail-providers {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(130px, 1fr));

    gap: 14px;

    max-width: 920px;

    margin: 55px auto 0;
}


.mail-provider {
    min-height: 120px;

    padding: 22px;

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

    gap: 10px;

    border: 1px solid #e4ebf0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(6, 33, 58, .04);

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


.mail-provider:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(6, 33, 58, .09);
}


.provider-symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: linear-gradient(
        145deg,
        #e5fbff,
        #e8f0ff
    );

    color: #078fb6;

    font-weight: 800;
}


.mail-provider strong {
    font-size: 13px;
}



/* ================================
   ÉTAPES
================================ */

.how-steps-section {
    background: #f4f8fb;

    color: #08182a;
}


.how-title {
    text-align: center;

    margin-bottom: 90px;
}


.how-title .section-label {
    color: #078eb6;
}


.how-title h2 {
    font-size: clamp(40px, 5vw, 60px);
}


.how-step-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;

    padding: 85px 0;

    border-bottom: 1px solid #dde7ed;
}


.how-step-row:last-child {
    border-bottom: 0;
}


.how-step-row.reverse .how-step-content {
    order: 2;
}


.how-step-row.reverse .how-demo {
    order: 1;
}


.how-step-content {
    max-width: 520px;
}


.how-step-number {
    display: block;

    margin-bottom: 15px;

    color: #a8b8c5;

    font-size: 12px;
    font-weight: 750;
    letter-spacing: 3px;
}


.how-step-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 16px;

    background: linear-gradient(
        145deg,
        #ddfaff,
        #e4efff
    );

    color: #078fb8;

    font-size: 23px;
}


.how-step-content h3 {
    margin-bottom: 18px;

    color: #07182d;

    font-size: clamp(29px, 3vw, 40px);

    line-height: 1.1;

    letter-spacing: -1.3px;
}


.how-step-content > p {
    color: #738596;

    font-size: 15px;
}


.how-step-content ul {
    list-style: none;

    display: grid;

    gap: 11px;

    margin-top: 25px;
}


.how-step-content li {
    position: relative;

    padding-left: 27px;

    color: #536b7d;

    font-size: 13px;
}


.how-step-content li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #dff9fa;

    color: #079eb1;

    font-size: 10px;
    font-weight: 800;
}



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

.how-demo {
    display: flex;
    justify-content: center;
}


.demo-window,
.analysis-card,
.suggestion-card,
.clean-card {
    width: min(100%, 430px);

    border-radius: 25px;

    background: #ffffff;

    border: 1px solid #e0e9ee;

    box-shadow:
        0 30px 80px rgba(7, 31, 52, .11);
}


/* ADD MAIL */

.demo-window {
    overflow: hidden;
}


.demo-header {
    height: 46px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 18px;

    background: #071a31;
}


.demo-header span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #31516b;
}


.demo-title {
    padding: 24px 25px 15px;

    color: #07182d;

    font-size: 17px;
    font-weight: 700;
}


.demo-mail {
    display: grid;

    grid-template-columns:
        45px 1fr auto;

    align-items: center;

    gap: 12px;

    margin: 10px 20px;

    padding: 14px;

    border: 1px solid #e8eef2;

    border-radius: 14px;

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


.demo-mail:last-child {
    margin-bottom: 23px;
}


.demo-mail:hover {
    transform: translateX(4px);

    border-color: #9ddfeb;
}


.demo-mail-icon {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #eef8fb;

    color: #078fb6;

    font-weight: 800;
}


.demo-mail strong,
.demo-mail small {
    display: block;
}


.demo-mail strong {
    color: #142b3e;

    font-size: 13px;
}


.demo-mail small {
    margin-top: 2px;

    color: #8998a5;

    font-size: 9px;
}



/* ANALYSIS */

.analysis-card {
    padding: 28px;
}


.analysis-head {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.analysis-head small,
.analysis-head strong {
    display: block;
}


.analysis-head small {
    color: #09a3bf;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.analysis-head strong {
    margin-top: 3px;

    color: #07182d;

    font-size: 17px;
}


.analysis-status {
    padding: 6px 10px;

    border-radius: 20px;

    background: #e1faf5;

    color: #13967d;

    font-size: 9px;
    font-weight: 700;
}


.analysis-score {
    margin-top: 32px;

    text-align: center;
}


.analysis-score strong,
.analysis-score span {
    display: block;
}


.analysis-score strong {
    color: #078fb6;

    font-size: 46px;

    line-height: 1;
}


.analysis-score span {
    margin-top: 7px;

    color: #8999a6;

    font-size: 11px;
}


.analysis-bar {
    height: 8px;

    margin: 26px 0;

    overflow: hidden;

    border-radius: 20px;

    background: #e5edf1;
}


.analysis-bar span {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #00d7df,
        #147aff
    );
}


.analysis-grid {
    display: grid;

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

    gap: 8px;
}


.analysis-grid div {
    padding: 15px 8px;

    border-radius: 12px;

    background: #f5f8fa;

    text-align: center;
}


.analysis-grid strong,
.analysis-grid span {
    display: block;
}


.analysis-grid strong {
    color: #142b3e;

    font-size: 14px;
}


.analysis-grid span {
    margin-top: 3px;

    color: #91a0ac;

    font-size: 8px;
}



/* SUGGESTIONS */

.suggestion-card {
    padding: 27px;
}


.suggestion-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}


.suggestion-title > span {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: linear-gradient(
        145deg,
        #04d3df,
        #1376ff
    );

    color: #ffffff;
}


.suggestion-title small,
.suggestion-title strong {
    display: block;
}


.suggestion-title small {
    color: #099ebd;

    font-size: 8px;

    letter-spacing: 1px;
}


.suggestion-title strong {
    color: #07182d;

    font-size: 18px;
}


.suggestion-item {
    display: grid;

    grid-template-columns:
        35px 1fr auto;

    align-items: center;

    gap: 10px;

    padding: 14px 5px;

    border-top: 1px solid #edf1f4;
}


.suggestion-check {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #e5faf8;

    color: #119e8a;

    font-size: 11px;
}


.suggestion-item strong,
.suggestion-item small {
    display: block;
}


.suggestion-item strong {
    color: #21384a;

    font-size: 12px;
}


.suggestion-item small {
    color: #8b9aa7;

    font-size: 9px;
}



/* CLEAN */

.clean-card {
    padding: 45px 35px;

    text-align: center;
}


.clean-circle {
    width: 78px;
    height: 78px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #00d8df,
        #1478ff
    );

    box-shadow:
        0 15px 35px rgba(0, 173, 225, .22);

    color: #ffffff;

    font-size: 30px;
}


.clean-card h4 {
    color: #07182d;

    font-size: 21px;
}


.clean-card > p {
    margin-top: 8px;

    color: #8797a5;

    font-size: 12px;
}


.clean-result {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 30px;
}


.clean-result div {
    padding: 16px;

    border-radius: 13px;

    background: #f4f8fa;
}


.clean-result small,
.clean-result strong {
    display: block;
}


.clean-result small {
    color: #8b9aa7;

    font-size: 8px;
}


.clean-result strong {
    margin-top: 4px;

    color: #078fb6;

    font-size: 18px;
}



/* ================================
   USER CONTROL
================================ */

.user-control {
    background: #ffffff;

    color: #07182d;
}


.control-card {
    display: grid;

    grid-template-columns:
        100px 1fr;

    gap: 35px;

    max-width: 900px;

    margin: auto;

    padding: 50px;

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            #f5fcfd,
            #f4f8ff
        );

    border: 1px solid #e2edf1;
}


.control-icon {
    width: 85px;
    height: 85px;

    display: grid;
    place-items: center;

    border-radius: 24px;

    background: linear-gradient(
        145deg,
        #00d9e1,
        #1477ff
    );

    color: #ffffff;

    font-size: 32px;

    box-shadow:
        0 20px 45px rgba(0, 167, 222, .18);
}


.control-card .section-label {
    color: #078eb6;
}


.control-card h2 {
    font-size: clamp(32px, 4vw, 48px);
}


.control-card p:last-child {
    max-width: 650px;

    margin-top: 18px;

    color: #718595;

    font-size: 14px;
}



/* ================================
   DOWNLOAD
================================ */

.how-download {
    position: relative;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 201, 255, .15),
            transparent 30%
        ),
        #051529;
}


.how-download-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 600px;
    height: 300px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

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

    filter: blur(100px);
}


.how-download .container {
    position: relative;

    z-index: 2;
}


.how-download-logo {
    width: 82px;
    height: 82px;

    object-fit: contain;

    margin-bottom: 24px;

    border-radius: 20px;
}


.how-download h2 {
    font-size: clamp(40px, 5vw, 60px);
}


.download-description {
    margin-top: 16px;

    color: #8ba0b5;
}



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

@media (max-width: 950px) {

    .mail-providers {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .how-step-row {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 70px 0;
    }


    .how-step-content {
        max-width: 650px;

        margin: auto;

        text-align: center;
    }


    .how-step-icon {
        margin-left: auto;
        margin-right: auto;
    }


    .how-step-content li {
        text-align: left;
    }


    .how-step-row.reverse .how-step-content,
    .how-step-row.reverse .how-demo {
        order: initial;
    }


    .control-card {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .control-icon {
        margin: auto;
    }

}



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

@media (max-width: 600px) {

    .how-hero {
        min-height: auto;

        padding:
            125px 0
            75px;
    }


    .how-hero h1 {
        font-size: clamp(
            45px,
            14vw,
            62px
        );

        letter-spacing: -2.5px;
    }


    .how-hero-text {
        font-size: 16px;
    }


    .how-provider-line {
        max-width: 340px;
    }


    .mail-providers {
        grid-template-columns:
            1fr 1fr;

        gap: 10px;
    }


    .mail-provider:last-child {
        grid-column: 1 / -1;
    }


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


    .how-step-row {
        padding: 55px 0;
    }


    .how-step-content h3 {
        font-size: 30px;
    }


    .demo-window,
    .analysis-card,
    .suggestion-card,
    .clean-card {
        width: 100%;
    }


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


    .control-card {
        padding: 32px 22px;
    }


    .control-icon {
        width: 70px;
        height: 70px;
    }

}

/* =========================================================
   CLEVERMAIL — PAGE TARIFS
   3 OFFRES
========================================================= */


/* =========================================================
   NAVIGATION ACTIVE
========================================================= */

.nav a.active {
    color: #ffffff;
    position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: linear-gradient(90deg, #00e5ff, #1682ff);
}


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

.pricing-hero {
    min-height: 620px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 155px 0 100px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0, 211, 255, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(26, 92, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #06172c,
            #081d35 55%,
            #051426
        );
}

.pricing-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 217, 255, 0.35),
        transparent
    );
}

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

.pricing-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
    padding: 8px 17px;

    border: 1px solid rgba(0, 215, 255, 0.25);
    border-radius: 30px;

    background: rgba(0, 200, 255, 0.07);

    color: #5fe5ff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.pricing-hero h1 {
    max-width: 1000px;
    margin: auto;

    font-size: clamp(50px, 7vw, 82px);
    line-height: 1;
    letter-spacing: -4px;
}

.pricing-hero h1 span {
    background: linear-gradient(
        90deg,
        #00e5ff,
        #1682ff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.pricing-hero p {
    max-width: 650px;
    margin: 28px auto 0;

    color: #9db0c3;

    font-size: 18px;
}


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

.pricing-section {
    padding: 110px 0 130px;

    background: #f4f8fb;

    color: #07182d;
}

.pricing-heading {
    text-align: center;
}

.pricing-heading .section-label {
    color: #078eb6;
}

.pricing-heading h2 {
    color: #07182d;
}

.pricing-heading > p:last-child {
    max-width: 650px;

    margin: 16px auto 0;

    color: #7d8e9d;
}


/* =========================================================
   GRILLE 3 TARIFS
========================================================= */

.pricing-grid {
    display: grid;

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

    align-items: stretch;

    gap: 22px;

    margin-top: 75px;
}


/* =========================================================
   CARTE TARIF
========================================================= */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    margin: 0;

    padding: 42px 30px 32px;

    border: 1px solid #dce9ef;
    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 20px 55px rgba(8, 36, 61, 0.08);

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

.pricing-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 184, 222, 0.35);

    box-shadow:
        0 30px 70px rgba(8, 36, 61, 0.13);
}


/* =========================================================
   OFFRE MULTI MISE EN AVANT
========================================================= */

.pricing-card-featured {
    z-index: 2;

    transform: translateY(-14px);

    border: 2px solid #08bdda;

    box-shadow:
        0 35px 80px rgba(0, 145, 205, 0.17);
}

.pricing-card-featured:hover {
    transform: translateY(-20px);

    box-shadow:
        0 42px 90px rgba(0, 145, 205, 0.23);
}

.pricing-card-featured::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(0, 215, 255, 0.055),
            transparent 32%
        );
}


/* BADGE */

.pricing-popular {
    position: absolute;

    top: 0;
    left: 50%;

    z-index: 3;

    transform: translate(-50%, -50%);

    padding: 8px 18px;

    white-space: nowrap;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #00cadf,
        #1477ff
    );

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(0, 153, 220, 0.25);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


/* =========================================================
   LOGO
========================================================= */

.pricing-logo {
    width: 58px;
    height: 58px;

    margin: 0 auto 16px;

    overflow: hidden;

    border-radius: 15px;
}

.pricing-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   NOM OFFRE
========================================================= */

.plan-name {
    margin-bottom: 7px;

    text-align: center;

    color: #079abb;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.pricing-card h3 {
    text-align: center;

    color: #07182d;

    font-size: 23px;
    line-height: 1.2;
}

.pricing-subtitle {
    min-height: 42px;

    margin-top: 8px;

    text-align: center;

    color: #8494a1;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   NOMBRE D'ADRESSES
========================================================= */

.mail-count {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    margin: 24px 0 4px;
    padding: 13px 15px;

    border: 1px solid #e1edf1;
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #f1fcfd,
            #f4f8ff
        );
}

.mail-count-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #05ccdf,
            #1477ff
        );

    color: #ffffff;

    font-size: 15px;
}

.mail-count div {
    display: flex;
    align-items: baseline;

    gap: 5px;
}

.mail-count strong {
    color: #07182d;

    font-size: 17px;
}

.mail-count small {
    color: #738696;

    font-size: 10px;
}


/* =========================================================
   PRIX
========================================================= */

.price {
    display: flex;
    justify-content: center;
    align-items: flex-end;

    margin-top: 28px;
}

.price strong {
    color: #07182d;

    font-size: 52px;
    font-weight: 750;

    line-height: 0.9;

    letter-spacing: -3px;
}

.price-currency {
    margin-right: 6px;
    margin-bottom: 17px;

    color: #078fb6;

    font-size: 17px;
    font-weight: 750;
}

.price-period {
    margin-left: 6px;
    margin-bottom: 5px;

    color: #8394a3;

    font-size: 10px;
}

.price-info {
    margin-top: 12px;

    text-align: center;

    color: #93a2ae;

    font-size: 10px;
}

.pricing-separator {
    width: 100%;
    height: 1px;

    margin: 28px 0;

    background: #e6edf1;
}


/* =========================================================
   FONCTIONNALITÉS
========================================================= */

.pricing-features {
    display: grid;

    gap: 17px;

    flex: 1;
}

.pricing-features > div {
    display: grid;

    grid-template-columns: 25px 1fr;

    align-items: flex-start;

    gap: 10px;
}

.pricing-features > div > span {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #e0fafa;

    color: #079cae;

    font-size: 10px;
    font-weight: 800;
}

.pricing-features p {
    margin: 0;
}

.pricing-features strong,
.pricing-features small {
    display: block;
}

.pricing-features strong {
    color: #1b3345;

    font-size: 12px;
}

.pricing-features small {
    margin-top: 3px;

    color: #8796a3;

    font-size: 9px;
    line-height: 1.45;
}


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

.pricing-button {
    width: 100%;

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

    margin-top: 32px;
    padding: 14px 15px;

    border: 1px solid #d5e6ec;
    border-radius: 11px;

    background: #eef8fb;

    color: #087f9e;

    font-size: 12px;
    font-weight: 750;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);

    background: #e0f7fa;
}


/* BOUTON OFFRE MULTI */

.pricing-button-featured {
    border: 0;

    background:
        linear-gradient(
            135deg,
            #04cce1,
            #1477ff
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 154, 226, 0.20);
}

.pricing-button-featured:hover {
    background:
        linear-gradient(
            135deg,
            #04cce1,
            #1477ff
        );

    color: #ffffff;

    box-shadow:
        0 20px 45px rgba(0, 154, 226, 0.30);
}

.pricing-note {
    margin-top: 13px;

    text-align: center;

    color: #95a3ae;

    font-size: 9px;
}


/* =========================================================
   TOUT EST INCLUS
========================================================= */

.included-section {
    padding: 110px 0;

    background: #ffffff;

    color: #07182d;
}

.included-heading {
    text-align: center;
}

.included-heading .section-label {
    color: #078eb6;
}

.included-heading h2 {
    color: #07182d;
}

.included-heading > p:last-child {
    max-width: 600px;

    margin: 17px auto 0;

    color: #7e8f9e;
}

.included-grid {
    display: grid;

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

    gap: 16px;

    margin-top: 60px;
}

.included-card {
    min-height: 250px;

    padding: 30px;

    border: 1px solid #e3ebf0;
    border-radius: 22px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.included-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(7, 31, 52, 0.08);
}

.included-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #e3fbff,
            #e7efff
        );

    color: #078fb8;

    font-size: 20px;
}

.included-card h3 {
    color: #07182d;

    font-size: 19px;
}

.included-card p {
    margin-top: 10px;

    color: #7b8c9b;

    font-size: 13px;
}


/* =========================================================
   FOURNISSEURS EMAIL
========================================================= */

.pricing-providers {
    padding: 110px 0;

    background: #f4f8fb;

    color: #07182d;

    text-align: center;
}

.pricing-providers .section-label {
    color: #078eb6;
}

.pricing-providers h2 {
    color: #07182d;
}

.providers-description {
    max-width: 650px;

    margin: 18px auto 0;

    color: #7b8d9c;
}

.pricing-provider-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 45px;
}

.pricing-provider-list > div {
    min-width: 145px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 15px 20px;

    border: 1px solid #e0e9ee;
    border-radius: 14px;

    background: #ffffff;

    color: #243a4c;

    font-size: 13px;
    font-weight: 650;

    box-shadow:
        0 8px 25px rgba(7, 31, 52, 0.04);
}

.pricing-provider-list span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eaf8fb;

    color: #078fb6;

    font-size: 12px;
    font-weight: 800;
}


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

.pricing-faq {
    padding: 110px 0;

    background: #ffffff;

    color: #07182d;
}

.faq-heading {
    text-align: center;
}

.faq-heading .section-label {
    color: #078eb6;
}

.faq-heading h2 {
    color: #07182d;
}

.faq-list {
    max-width: 780px;

    margin: 55px auto 0;
}

.faq-list details {
    border-bottom: 1px solid #e2e9ee;
}

.faq-list summary {
    list-style: none;

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

    gap: 20px;

    padding: 23px 5px;

    cursor: pointer;

    color: #142c3e;

    font-size: 15px;
    font-weight: 650;
}

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

.faq-list summary span {
    flex-shrink: 0;

    color: #079bbd;

    font-size: 22px;

    transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 45px 25px 5px;

    color: #7a8c9b;

    font-size: 13px;
}


/* =========================================================
   DOWNLOAD
========================================================= */

.pricing-download {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 201, 255, 0.16),
            transparent 30%
        ),
        #051529;
}

.pricing-download::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 650px;
    height: 350px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(0, 187, 255, 0.08);

    filter: blur(100px);
}

.pricing-download .container {
    position: relative;

    z-index: 2;
}

.pricing-download-logo {
    width: 82px;
    height: 82px;

    object-fit: contain;

    margin-bottom: 23px;

    border-radius: 20px;
}

.pricing-download h2 {
    color: #ffffff;

    font-size: clamp(40px, 5vw, 60px);
}

.pricing-download > .container > p:not(.section-label) {
    margin-top: 15px;

    color: #879caf;
}

.pricing-download .store-buttons {
    justify-content: center;
}


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

@media (max-width: 1050px) {

    .pricing-grid {
        grid-template-columns: 1fr 1fr;

        max-width: 800px;

        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-7px);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 11px);

        justify-self: center;
    }

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

}


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

@media (max-width: 650px) {

    .pricing-hero {
        min-height: auto;

        padding: 125px 0 75px;
    }

    .pricing-hero h1 {
        font-size: clamp(43px, 13vw, 60px);

        line-height: 1.03;

        letter-spacing: -2.5px;
    }

    .pricing-hero p {
        font-size: 16px;
    }


    /* 3 CARTES L'UNE SOUS L'AUTRE */

    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 65px;
    }

    .pricing-card,
    .pricing-card:last-child {
        width: 100%;

        grid-column: auto;

        padding: 42px 24px 32px;
    }

    .pricing-card-featured {
        order: -1;

        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }


    /* PRIX */

    .price strong {
        font-size: 55px;
    }


    /* INCLUS */

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

    .included-card {
        min-height: auto;
    }


    /* FOURNISSEURS */

    .pricing-provider-list {
        display: grid;

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

    .pricing-provider-list > div {
        min-width: 0;
    }

    .pricing-provider-list > div:last-child {
        grid-column: 1 / -1;
    }


    /* FAQ */

    .faq-list summary {
        font-size: 14px;
    }

    .faq-list details p {
        padding-right: 5px;
    }


    /* ESPACEMENTS */

    .pricing-section,
    .included-section,
    .pricing-providers,
    .pricing-faq,
    .pricing-download {
        padding: 80px 0;
    }

}


/* =========================================================
   CLEVERMAIL — POLITIQUE DE CONFIDENTIALITÉ
========================================================= */


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

.privacy-hero {
    position: relative;
    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 150px 0 90px;

    overflow: hidden;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0, 211, 255, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 70%,
            rgba(25, 85, 255, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #06172c,
            #081d35 55%,
            #051426
        );
}

.privacy-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -200px;
    right: -150px;

    border-radius: 50%;

    background: rgba(0, 199, 255, 0.08);

    filter: blur(90px);
}

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

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 217, 255, 0.35),
            transparent
        );
}

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


/* ICONE BOUCLIER */

.privacy-icon {
    width: 70px;
    height: 78px;

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    background:
        linear-gradient(
            145deg,
            #00d7df,
            #1477ff
        );

    clip-path:
        polygon(
            50% 0,
            100% 20%,
            90% 75%,
            50% 100%,
            10% 75%,
            0 20%
        );

    color: #ffffff;

    font-size: 25px;
    font-weight: 800;

    filter:
        drop-shadow(
            0 15px 25px rgba(0, 183, 230, 0.25)
        );
}


/* LABEL */

.privacy-label {
    color: #4adcf3;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 2px;
}


/* TITRE */

.privacy-hero h1 {
    max-width: 900px;

    margin: 17px auto 0;

    color: #ffffff;

    font-size: clamp(50px, 7vw, 82px);

    line-height: 1;

    letter-spacing: -4px;
}

.privacy-hero h1 span {
    background:
        linear-gradient(
            90deg,
            #00e5ff,
            #1682ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* INTRO */

.privacy-intro {
    max-width: 630px;

    margin: 25px auto 0;

    color: #9db0c3;

    font-size: 17px;

    line-height: 1.7;
}

.privacy-update {
    margin-top: 18px;

    color: #647d94;

    font-size: 10px;
}


/* =========================================================
   CONTENU PRINCIPAL
========================================================= */

.privacy-content {
    padding: 100px 0 120px;

    background: #ffffff;

    color: #07182d;
}

.privacy-layout {
    display: grid;

    grid-template-columns: 220px minmax(0, 1fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   SOMMAIRE
========================================================= */

.privacy-menu {
    position: sticky;

    top: 120px;

    padding: 22px;

    border: 1px solid #e2eaf0;
    border-radius: 18px;

    background: #f8fafc;

    box-shadow:
        0 15px 40px rgba(7, 31, 52, 0.04);
}

.privacy-menu > strong {
    display: block;

    margin-bottom: 15px;

    color: #132c3e;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.privacy-menu nav {
    display: grid;
}

.privacy-menu a {
    position: relative;

    padding: 8px 0;

    color: #748898;

    font-size: 11px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.privacy-menu a:hover {
    color: #079abb;

    transform: translateX(3px);
}


/* =========================================================
   ARTICLES
========================================================= */

.privacy-text {
    min-width: 0;
}

.privacy-text article {
    padding: 0 0 65px;

    margin-bottom: 65px;

    border-bottom: 1px solid #e7edf1;

    scroll-margin-top: 120px;
}

.privacy-text article:last-child {
    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: 0;
}


/* NUMERO */

.privacy-number {
    display: block;

    margin-bottom: 10px;

    color: #08a3c2;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* TITRES */

.privacy-text h2 {
    margin-bottom: 22px;

    color: #07182d;

    font-size: clamp(28px, 3vw, 39px);

    line-height: 1.1;

    letter-spacing: -1.2px;
}


/* PARAGRAPHES */

.privacy-text > article > p {
    max-width: 780px;

    margin-top: 15px;

    color: #6e8292;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSABLE / INFORMATIONS
========================================================= */

.privacy-info-box {
    display: grid;

    gap: 7px;

    margin-top: 25px;

    padding: 22px;

    border-left: 3px solid #08bad2;

    border-radius: 0 14px 14px 0;

    background: #f3f9fb;
}

.privacy-info-box strong {
    margin-bottom: 4px;

    color: #173247;

    font-size: 15px;
}

.privacy-info-box span {
    color: #748796;

    font-size: 12px;
}

.privacy-info-box a {
    color: #078eae;

    font-weight: 650;
}

.privacy-info-box a:hover {
    text-decoration: underline;
}


/* =========================================================
   FOURNISSEURS EMAIL
========================================================= */

.provider-privacy {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin: 25px 0;
}

.provider-privacy span {
    padding: 9px 14px;

    border: 1px solid #deeaef;

    border-radius: 30px;

    background: #f5f9fb;

    color: #476276;

    font-size: 10px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.provider-privacy span:hover {
    transform: translateY(-2px);

    border-color: #b9dce5;
}


/* =========================================================
   CARTES DONNEES
========================================================= */

.privacy-cards {
    display: grid;

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

    gap: 13px;

    margin-top: 30px;
}

.privacy-small-card {
    padding: 23px;

    border: 1px solid #e2ebef;

    border-radius: 17px;

    background: #f9fbfc;

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

.privacy-small-card:hover {
    transform: translateY(-4px);

    border-color: #cde3e9;

    box-shadow:
        0 15px 35px rgba(7, 31, 52, 0.06);
}


/* ICONE CARTE */

.small-card-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #dffaff,
            #e5efff
        );

    color: #078fb6;

    font-size: 16px;
    font-weight: 750;
}

.privacy-small-card h3 {
    color: #183247;

    font-size: 15px;
}

.privacy-small-card p {
    margin-top: 7px;

    color: #7d8e9b;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   BLOC IMPORTANT
========================================================= */

.important-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 18px;

    margin-top: 30px;

    padding: 25px;

    border: 1px solid #cdebf0;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #effcfd,
            #f3f8ff
        );
}

.important-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #00d5df,
            #1478ff
        );

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(0, 165, 220, 0.18);
}

.important-box strong {
    color: #173247;

    font-size: 14px;
}

.important-box p {
    margin-top: 6px;

    color: #718595;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   LISTES
========================================================= */

.privacy-list {
    list-style: none;

    display: grid;

    gap: 11px;

    margin: 25px 0 0;

    padding: 0;
}

.privacy-list li {
    position: relative;

    padding-left: 29px;

    color: #5f7586;

    font-size: 13px;

    line-height: 1.6;
}

.privacy-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #def8f8;

    color: #079caf;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   SECURITE
========================================================= */

.security-privacy-grid {
    display: grid;

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

    gap: 10px;

    margin-top: 28px;
}

.security-privacy-grid div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px;

    border: 1px solid #e0ebef;

    border-radius: 13px;

    background: #f8fbfc;
}

.security-privacy-grid span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #dff9f8;

    color: #079d9d;

    font-size: 10px;
    font-weight: 800;
}

.security-privacy-grid strong {
    color: #385267;

    font-size: 11px;
}


/* =========================================================
   BOUTON SUPPRESSION COMPTE
========================================================= */

.privacy-action {
    display: inline-flex;

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

    gap: 30px;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #04cce1,
            #1477ff
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0, 153, 220, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.privacy-action:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0, 153, 220, 0.25);
}

.privacy-action span {
    font-size: 18px;
}


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

.contact-privacy {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 27px;

    padding: 20px;

    border: 1px solid #e1eaef;

    border-radius: 15px;

    background: #f7fafb;
}

.contact-privacy-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #e1fbff,
            #e6efff
        );

    color: #078fb6;
}

.contact-privacy small,
.contact-privacy a {
    display: block;
}

.contact-privacy small {
    color: #98a5ae;

    font-size: 8px;

    letter-spacing: 1px;
}

.contact-privacy a {
    margin-top: 3px;

    color: #087f9d;

    font-size: 13px;
    font-weight: 700;
}

.contact-privacy a:hover {
    text-decoration: underline;
}


/* =========================================================
   BAS DE PAGE
========================================================= */

.privacy-bottom {
    position: relative;

    overflow: hidden;

    padding: 90px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 202, 255, 0.13),
            transparent 32%
        ),
        #06162a;
}

.privacy-bottom::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 550px;
    height: 300px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(0, 184, 255, 0.07);

    filter: blur(80px);
}

.privacy-bottom .container {
    position: relative;

    z-index: 2;
}

.privacy-bottom img {
    width: 70px;
    height: 70px;

    object-fit: contain;

    margin-bottom: 20px;

    border-radius: 17px;
}

.privacy-bottom h2 {
    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.privacy-bottom p {
    max-width: 580px;

    margin: 15px auto 0;

    color: #8298ad;

    font-size: 14px;

    line-height: 1.7;
}


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

@media (max-width: 900px) {

    .privacy-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .privacy-menu {
        position: static;
    }

    .privacy-menu nav {
        grid-template-columns: repeat(3, 1fr);

        gap: 3px 20px;
    }

}


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

@media (max-width: 600px) {

    /* HERO */

    .privacy-hero {
        min-height: auto;

        padding: 125px 0 75px;
    }

    .privacy-icon {
        width: 60px;
        height: 67px;
    }

    .privacy-hero h1 {
        font-size: clamp(44px, 13vw, 60px);

        line-height: 1.02;

        letter-spacing: -2.5px;
    }

    .privacy-intro {
        font-size: 15px;
    }


    /* CONTENU */

    .privacy-content {
        padding: 70px 0;
    }


    /* SOMMAIRE */

    .privacy-menu {
        padding: 20px;
    }

    .privacy-menu nav {
        grid-template-columns: 1fr 1fr;

        gap: 2px 15px;
    }

    .privacy-menu a {
        font-size: 10px;
    }


    /* ARTICLES */

    .privacy-text article {
        padding-bottom: 45px;

        margin-bottom: 45px;
    }

    .privacy-text h2 {
        font-size: 29px;
    }

    .privacy-text > article > p {
        font-size: 13px;
    }


    /* CARTES */

    .privacy-cards {
        grid-template-columns: 1fr;
    }


    /* BLOC IMPORTANT */

    .important-box {
        grid-template-columns: 1fr;
    }


    /* SECURITE */

    .security-privacy-grid {
        grid-template-columns: 1fr;
    }


    /* SUPPRESSION */

    .privacy-action {
        width: 100%;
    }


    /* BAS DE PAGE */

    .privacy-bottom {
        padding: 75px 0;
    }

}


/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 400px) {

    .privacy-menu nav {
        grid-template-columns: 1fr;
    }

    .privacy-hero h1 {
        font-size: 42px;
    }

}