:root {
    --navy: #031B3A;
    --navy2: #062B57;
    --blue: #087FF5;
    --blue2: #28A9FF;
    --orange: #FF7900;
    --light: #F4F7FA;
    --white: #fff;
    --text: #172333;
    --muted: #68788A;
    --border: #DCE5EF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp .6s ease forwards;
}

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

.card:hover {
    transform: translateY(-6px);
    transition: .3s ease;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 27, 58, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    min-height: 74px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 21px;
    font-weight: 700;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: white;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
    font-size: 14px;
}

.nav-links a {
    opacity: .88;
}

.nav-links a:hover {
    color: var(--blue2);
    opacity: 1;
}

.nav-cta {
    padding: 10px 17px;
    background: var(--orange);
    border-radius: 6px;
    font-weight: 700;
    opacity: 1 !important;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #02152F, #063665 62%, #0759B8);
    color: white;
}

.hero:before,
.hero:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(40, 169, 255, .22);
    transform: rotate(-24deg);
}

.hero:before {
    width: 650px;
    height: 130px;
    right: -160px;
    top: 90px;
}

.hero:after {
    width: 520px;
    height: 110px;
    left: -190px;
    bottom: 55px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 85px 24px;
}

.breadcrumb {
    color: #9CCFFF;
    font-size: 13px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 20px;
    max-width: 850px;
}

.hero h1 span {
    color: var(--blue2);
}

.hero p {
    max-width: 760px;
    color: #D9E7F5;
    font-size: 19px;
    margin: 0 0 30px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    border-radius: 6px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: #ff8d26;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    background: rgba(255, 255, 255, .05);
    margin-left: 10px;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

section {
    padding: 75px 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title .label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 38px;
    line-height: 1.15;
    color: var(--navy);
    margin: 9px 0 12px;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(3, 27, 58, .05);
}

.card h3 {
    color: var(--navy);
    margin: 0 0 9px;
    font-size: 19px;
}

.card p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

.icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(8, 127, 245, .1);
    color: var(--blue);
    font-size: 25px;
    margin-bottom: 17px;
}

/* PROGRAM */
.program {
    background: white;
}

.program-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 45px;
}

.program-list {
    display: grid;
    gap: 13px;
}

.program-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--light);
    border-radius: 8px;
}

.num {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.program-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 3px;
}

.program-item span {
    color: var(--muted);
    font-size: 14px;
}

/* INFO BOX */
.info-box {
    background: linear-gradient(145deg, #031B3A, #0759B8);
    color: white;
    border-radius: 12px;
    padding: 30px;
    height: max-content;
}

.info-box h3 {
    margin-top: 0;
    font-size: 24px;
}

.info-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.info-row:last-child {
    border: 0;
}

.info-row strong {
    display: block;
    color: var(--blue2);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-row span {
    color: #E1EDF8;
}

/* HIGHLIGHT */
.highlight {
    background: var(--navy);
    color: white;
}

.highlight .section-title h2 {
    color: white;
}

.highlight .section-title p {
    color: #C7D8E8;
}

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

.benefit {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
}

.benefit strong {
    display: block;
    color: var(--blue2);
    margin-bottom: 7px;
}

.benefit span {
    color: #D2E0ED;
    font-size: 14px;
}

/* APPROACH BUTTON */
.approach-button {
    text-align: center;
    margin-top: 40px;   // descend le bouton
}

.approach-button .btn {
    display: inline-flex;
}

/* CTA */
.cta {
    padding: 70px 0;
    background: white;
}

.cta-box {
    max-width: 1050px;
    margin: auto;
    padding: 45px 50px;
    border-radius: 12px;
    background: linear-gradient(120deg, #052650, #075FC0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.cta-box p {
    margin: 0;
    color: #D7E7F7;
}

.modules .module {
    margin-bottom: 60px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.module h3 {
    margin-top: 0;
    color: var(--navy);
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.module-list li {
    margin-bottom: 10px;
}

/* MODULES */
.module-card {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    margin-bottom: 40px;
}

.module-card h3 {
    margin-top: 0;
    color: var(--navy);
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.module-card ul li {
    margin-bottom: 10px;
}

.module-card .module-desc {
    color: var(--muted);
    margin-bottom: 20px;
}

.form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Conteneur des chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

/* Style des bulles */
.chip {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s ease;
    display: inline-block;
}

/* Alignement interne parfait */
.chip-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Case à cocher */
.chip input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

/* Texte */
.chip span {
    font-size: 15px;
    color: var(--text);
}

/* Hover */
.chip:hover {
    border-color: var(--blue);
    box-shadow: 0 0 6px rgba(0,0,0,.08);
}

/* Optionnel : chip sélectionné */
.chip input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--blue);
}

/* Champ message même largeur */
.full-width {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
}

/* Alignement RGPD */
.rgpd-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--text);
    line-height: 1.4;
}

.rgpd-label:hover span {
    color: var(--blue);
}

/* Case à cocher */
.rgpd-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/* Texte RGPD */
.rgpd-label span {
    display: block;
    font-size: 15px;
}

/* FOOTER */
footer {
    background: #02152D;
    color: #9FB3C7;
    padding: 38px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    color: white;
    font-size: 19px;
    font-weight: 700;
}

.footer-inner a {
    color: var(--blue2);
}

.footer-links a {
    display: block;
    margin-bottom: 6px;
    line-height: 1.1;
}

.footer-links a.active {
    color: var(--orange);
    font-weight: 700;
}

.footer-label {
    color: #fff;
    font-weight: 600;
}


/* RESPONSIVE */
@media (max-width: 850px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

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

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

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 65px 20px;
    }

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

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

    .btn-secondary {
        margin: 10px 0 0;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .footer-inner {
        flex-direction: column;
    }
}


