:root {
    --primary: #003F63;
    --primary-light: #005580;
    --accent: #f2b138;
    --accent-dark: #e09f1f;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: rgba(0, 63, 99, .10);
    --shadow: 0 18px 46px rgba(0, 0, 0, .14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem
}

/* ===========================
       NAV
       =========================== */
nav {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .10)
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1.6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0
}

.logo img {
    height: 36px;
    width: auto;
    display: block
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .4rem;
    list-style: none;
}

.nav-item {
    position: relative
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 900;
    padding: .65rem 1rem;
    border-radius: 10px;
    transition: all .18s ease;
    display: flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
    font-size: 14.5px;
}

.nav-link:hover {
    background: rgba(0, 63, 99, .08);
    color: var(--primary)
}

.nav-link.cta {
    background: #003f6300;
    color: #f2b138;
    margin-left: .6rem;
    border-color: #f2b138;
    border: solid;
}

.nav-link.cta:hover {
    background: #f2b138;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 63, 99, .25);
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .18s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg)
}

/* ===========================
       MEGA MENU (compact + rows égales)
       =========================== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 100;
    padding-top: 8px;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 12px;
}

.nav-item:hover>.mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.mega-panel {
    width: min(780px, calc(100vw - 28px));
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 12px;
    max-height: calc(100vh - 140px);
    overflow: auto;
    overscroll-behavior: contain;
}

/* ✅ Grille web : 3 lignes de même hauteur + asso en pleine hauteur */
.mega-grid-web {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    grid-template-rows: repeat(3, 112px);
    gap: 12px;
    align-items: stretch;
}

/* ✅ Grille “classique” pour les autres menus */
.mega-grid-big {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.big-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(2, 32, 56, .10);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;

    height: 100%;
    min-height: 0;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.big-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 63, 99, .30);
    box-shadow: 0 14px 30px rgba(0, 63, 99, .14);
}

.big-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    border: 1px solid rgba(0, 63, 99, .18);
    background: #d1e0f8;
    margin-top: 2px;
}

.big-icon svg {
    width: 28px;
    height: 28px
}

.big-icon svg * {
    stroke: var(--primary)
}

.big-title {
    font-weight: 900;
    color: var(--dark);
    font-size: 15.5px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.big-desc {
    color: #66758d;
    font-weight: 700;
    font-size: 12.6px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mega-footer {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.mega-footer a {
    text-decoration: none;
    font-weight: 900;
    color: #fff;
    background: var(--accent);
    padding: 8px 12px;
    border-radius: 12px;
    transition: .18s ease;
    font-size: 13.5px;
}

.mega-footer a:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(242, 177, 56, .22);
}

/* ===========================
       Bloc ASSO (pleine hauteur)
       =========================== */
.big-card.special-assoc {
    grid-column: 1;
    grid-row: 1 / span 3;
    height: 100%;
    padding: 18px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(700px 260px at 18% 8%, rgba(255, 255, 255, .12), transparent 55%),
        linear-gradient(180deg, #0a4a6b 0%, #063f5e 55%, #063651 100%);
    box-shadow: 0 18px 40px rgba(6, 63, 94, .20);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.big-card.special-assoc::after {
    content: "";
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 82% 22%, rgba(242, 177, 56, .26), transparent 42%);
    transform: rotate(10deg);
    pointer-events: none;
}

.assoc-body {
    position: relative;
    z-index: 1;
}

.assoc-title {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.15;
    margin-bottom: 4px;
}

.assoc-sub {
    font-weight: 800;
    opacity: .92;
    font-size: 13px;
    margin-bottom: 14px;
}

.assoc-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.assoc-amount {
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 12px 28px rgba(0, 0, 0, .20);
}

.assoc-unit {
    font-weight: 900;
    opacity: .95;
    font-size: 14px;
}

.assoc-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.assoc-note {
    font-weight: 800;
    font-size: 12px;
    opacity: .9;
    max-width: 130px;
}

.assoc-cta {
    font-weight: 900;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(242, 177, 56, .98);
    color: #0f172a;
    box-shadow: 0 14px 30px rgba(242, 177, 56, .20);
    transition: transform .16s ease, filter .16s ease;
    white-space: nowrap;
}

.big-card.special-assoc:hover {
    transform: translateY(-2px);
}

.big-card.special-assoc:hover .assoc-cta {
    transform: translateY(-1px);
    filter: brightness(.98);
}

/* ===========================
       HERO (image ~50%)
       =========================== */
.hero {
    padding: 6.8rem 0 3.2rem;
    background: #dff1ff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2.2rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.90rem;
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -1px;
    color: #0b3b58;
    margin-bottom: .95rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.06rem;
    color: rgba(51, 65, 85, .86);
    font-weight: 700;
    line-height: 1.85;
    max-width: 56ch;
    margin-bottom: 1.4rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: .42rem .78rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem;
    line-height: 1;
    color: var(--primary);
    background: rgba(0, 63, 99, .08);
    border: 1px solid rgba(0, 63, 99, .16);
}

.btn {
    text-decoration: none;
    font-weight: 900;
    transition: all .22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.btn.btn-hero-blue,
.btn.btn-hero-yellow {
    border-radius: 999px;
    padding: .95rem 1.9rem;
    min-width: 230px;
}

.btn.btn-hero-blue {
    background: #083b57;
    color: #fff;
}

.btn.btn-hero-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8, 59, 87, .22);
}

.btn.btn-hero-yellow {
    background: var(--accent);
    color: #ffffff;
}

.btn.btn-hero-yellow:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(242, 177, 56, .24);
}

.hero-right img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 560px;
    margin-left: auto;
}

/* ===========================
       FEATURES
       =========================== */
.features {
    padding: 4.6rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .7rem;
    letter-spacing: -.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 740px;
    margin: 0 auto;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #083b57;
    transform: scaleX(0);
    transition: transform .35s ease;
}

.feature-card:hover {
    border-color: rgba(0, 63, 99, .35);
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 63, 99, .12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #dff1ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.9rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .6rem;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 700;
}

/* ===========================
       PRICING (compact)
       =========================== */
.pricing {
    padding: 2.6rem 0 3rem;
    background: linear-gradient(180deg, #eef6ff 0%, #fff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-top: 1.4rem;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    border: 2px solid var(--border);
    padding: 1.1rem 1.1rem .95rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
    border-color: rgba(0, 63, 99, .18);
}

.pricing-card.featured {
    border-color: rgba(242, 177, 56, .65);
    box-shadow: 0 18px 36px rgba(242, 177, 56, .16);
    transform: scale(1.01);
}

.pricing-badge {
    display: inline-block;
    font-weight: 900;
    font-size: 12px;
    padding: .33rem .7rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin-bottom: .55rem;
    align-self: flex-start;
}

.pricing-card h3 {
    font-size: 1.12rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .35rem;
}

.pricing-card .description {
    font-size: .84rem;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.35;
    margin-bottom: .65rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .65rem;
}

.pricing-price .amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-price .currency {
    font-size: .98rem;
    font-weight: 800;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    margin: .35rem 0 .85rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: .22rem 0;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .88rem;
    font-weight: 750;
    color: var(--text);
    line-height: 1.25;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
    flex: 0 0 auto;
}

/* Toutes les features sont visibles */

.pricing-card .btn {
    width: 100%;
    border-radius: 14px;
    padding: .75rem 1rem;
    font-weight: 900;
    margin-top: auto;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #0f172a;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(242, 177, 56, .22);
}

/* ===========================
       Testimonials / Footer
       =========================== */
.testimonials {
    padding: 4.6rem 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg);
    padding: 1.75rem;
    border-radius: 16px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .10);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: .75rem;
    left: 1.2rem;
    font-size: 5.2rem;
    color: var(--primary);
    opacity: .10;
    font-weight: 900;
    line-height: 1;
}

.testimonial-text {
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.05rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: .98rem;
}

.author-name {
    font-weight: 900;
    color: var(--dark);
}

.author-company {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 700;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 3.6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.footer-logo {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: .8rem;
}

.footer-desc {
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-weight: 900;
    margin-bottom: 1.1rem;
    font-size: 1.05rem
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s ease;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 1.4rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 700;
    font-size: .95rem;
}

.footer-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
}

.footer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .30);
    border-radius: 999px;
    padding: .42rem 1rem .42rem .65rem;
    font-size: .875rem;
    font-weight: 800;
    color: #4ade80;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    animation: pulse-green 2s ease-in-out infinite;
    flex: 0 0 auto;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
    }

    60% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .0);
    }
}

.social-links {
    display: flex;
    gap: .8rem;
    margin-top: .9rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
    font-weight: 800;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ===========================
       Responsive
       =========================== */
@media (max-width: 1024px) {

    .features-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right img {
        margin: 0 auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .mega-panel {
        width: min(720px, calc(100vw - 24px));
    }

    .mega-grid-web {
        grid-template-columns: 240px 1fr 1fr;
        grid-template-rows: repeat(3, 112px);
    }
}

@media (max-width: 820px) {
    .mega-grid-web {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .big-card.special-assoc {
        grid-row: auto;
    }

    .big-card {
        height: auto;
    }

    .big-desc {
        -webkit-line-clamp: unset;
    }
}

/* ===========================
       SERVICE SECTIONS (hébergement / création)
       =========================== */
.srv-section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.srv-section.srv-hosting {
    background: linear-gradient(135deg, #042b45 0%, #063f5e 55%, #0a4a6b 100%);
}

.srv-section.srv-hosting::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 177, 56, .13) 0%, transparent 70%);
    pointer-events: none;
}

.srv-section.srv-creation {
    background: #f0f8ff;
}

.srv-section.srv-creation::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 63, 99, .06) 0%, transparent 70%);
    pointer-events: none;
}

.srv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.srv-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-visual img {
    width: 100%;
    max-width: 580px;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .18));
}

.srv-section.srv-creation .srv-visual img {
    filter: drop-shadow(0 24px 48px rgba(0, 63, 99, .12));
}

.srv-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.srv-section.srv-hosting .srv-tag {
    background: rgba(242, 177, 56, .18);
    color: #f2b138;
    border: 1px solid rgba(242, 177, 56, .35);
}

.srv-section.srv-creation .srv-tag {
    background: #dff1ff;
    color: #003F63;
    border: 1px solid rgba(0, 63, 99, .15);
}

.srv-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.5px;
    margin-bottom: 1rem;
}

.srv-section.srv-hosting .srv-text h2 {
    color: #fff;
}

.srv-section.srv-creation .srv-text h2 {
    color: #0f172a;
}

.srv-text>p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.78;
    margin-bottom: 2rem;
}

.srv-section.srv-hosting .srv-text>p {
    color: rgba(255, 255, 255, .75);
}

.srv-section.srv-creation .srv-text>p {
    color: #64748b;
}

.srv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: 2rem;
}

.srv-card {
    padding: 1.1rem 1.15rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.srv-card:hover {
    transform: translateY(-3px);
}

.srv-section.srv-hosting .srv-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(6px);
}

.srv-section.srv-hosting .srv-card:hover {
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.srv-section.srv-creation .srv-card {
    background: #fff;
    border: 1.5px solid rgba(0, 63, 99, .10);
    box-shadow: 0 4px 14px rgba(0, 63, 99, .06);
}

.srv-section.srv-creation .srv-card:hover {
    border-color: rgba(0, 63, 99, .25);
    box-shadow: 0 12px 28px rgba(0, 63, 99, .10);
}

.srv-card-icon {
    font-size: 1.55rem;
    line-height: 1;
}

.srv-card-title {
    font-weight: 900;
    font-size: .95rem;
    line-height: 1.2;
}

.srv-section.srv-hosting .srv-card-title {
    color: #fff;
}

.srv-section.srv-creation .srv-card-title {
    color: #0f172a;
}

.srv-card-desc {
    font-size: .83rem;
    font-weight: 700;
    line-height: 1.45;
}

.srv-section.srv-hosting .srv-card-desc {
    color: rgba(255, 255, 255, .62);
}

.srv-section.srv-creation .srv-card-desc {
    color: #64748b;
}

.srv-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: .88rem;
    margin-bottom: 1.4rem;
}

.srv-section.srv-hosting .srv-badge {
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #4ade80;
}

.srv-section.srv-creation .srv-badge {
    background: rgba(242, 177, 56, .12);
    border: 1px solid rgba(242, 177, 56, .35);
    color: #b45309;
}

.srv-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.srv-section.srv-hosting .srv-badge-dot {
    background: #22c55e;
}

.srv-section.srv-creation .srv-badge-dot {
    background: #f2b138;
}

.srv-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.srv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .88rem 1.75rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .96rem;
    text-decoration: none;
    transition: all .22s ease;
}

.srv-section.srv-hosting .srv-btn-primary {
    background: #f2b138;
    color: #0f172a;
}

.srv-section.srv-hosting .srv-btn-primary:hover {
    background: #e09f1f;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(242, 177, 56, .28);
}

.srv-section.srv-creation .srv-btn-primary {
    background: #003F63;
    color: #fff;
}

.srv-section.srv-creation .srv-btn-primary:hover {
    background: #005580;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 63, 99, .22);
}

.srv-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: .88rem 1.5rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .96rem;
    text-decoration: none;
    transition: all .22s ease;
}

.srv-section.srv-hosting .srv-btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .85);
}

.srv-section.srv-hosting .srv-btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.srv-section.srv-creation .srv-btn-ghost {
    border: 1.5px solid rgba(0, 63, 99, .25);
    color: #003F63;
}

.srv-section.srv-creation .srv-btn-ghost:hover {
    background: rgba(0, 63, 99, .06);
    border-color: #003F63;
}

@media (max-width: 900px) {
    .srv-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .srv-visual {
        order: -1;
    }

    .srv-text h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 500px) {
    .srv-cards {
        grid-template-columns: 1fr;
    }
}

/* ===========================
       HEBERGEMENT WEB (hb-*)
       =========================== */
.hb-hero {
    background: linear-gradient(120deg, #f8fafc 60%, #eaf6ff 100%);
    padding: 5.5rem 0 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.hb-halo2 {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #003f63 0%, #003f6300 80%);
    opacity: 0.08;
    z-index: 0;
}

.hb-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hb-eyebrow {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hb-eyebrow-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.hb-hero h1 {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.1rem;
}

.hb-hero h1 span {
    color: var(--primary);
}

.hb-hero-desc {
    font-size: 1.18rem;
    color: var(--muted);
    margin-bottom: 1.7rem;
    max-width: 540px;
}

.hb-hero-actions {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.7rem;
}

.hb-btn-gold {
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    padding: .85rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px #f2b13833;
    transition: background .18s;
}

.hb-btn-gold:hover {
    background: var(--accent-dark);
}

.hb-btn-ghost {
    background: transparent;
    color: var(--primary);
    font-weight: 900;
    padding: .85rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    transition: background .18s, color .18s;
}

.hb-btn-ghost:hover {
    background: var(--primary);
    color: #fff;
}

.hb-hero-stats {
    display: flex;
    gap: 2.2rem;
    margin-top: 1.7rem;
}

.hb-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: var(--primary);
}

.hb-hstat-val {
    font-size: 1.25rem;
    font-weight: 900;
}

.hb-hstat-label {
    font-size: .95rem;
    color: var(--muted);
}

.hb-hero-visual {
    position: relative;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.hb-badge-float {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 12px #003f6322;
    padding: .55rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    position: absolute;
    left: -60px;
}

.b1 {
    top: 10px;
}

.b2 {
    top: 60px;
}

.b3 {
    top: 110px;
}

.bf-icon {
    font-size: 1.3rem;
}

.bf-text span {
    display: block;
    font-size: .92rem;
    color: var(--muted);
    font-weight: 400;
}

.hb-hero-visual img {
    width: 320px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px #003f6322;
    margin-top: 2.5rem;
}

.hb-trust-bar {
    background: #fff8e6;
    border-top: 1px solid #f2b13822;
    border-bottom: 1px solid #f2b13822;
    padding: 1.1rem 0;
    margin-top: 2.5rem;
}

.hb-trust-inner {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hb-trust-item {
    font-size: 1.05rem;
    color: #b45309;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hb-specs {
    padding: 3.5rem 0 2.5rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: .7rem;
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.hb-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.7rem;
    margin-top: 2.2rem;
}

.hb-spec-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
    position: relative;
}

.hb-spec-icon {
    font-size: 2.1rem;
    color: var(--primary);
    margin-bottom: .5rem;
}

.hb-spec-highlight {
    background: #eaf6ff;
    color: var(--primary);
    font-size: .92rem;
    font-weight: 700;
    padding: .22rem .7rem;
    border-radius: 999px;
    margin-top: .7rem;
}

.hb-pricing {
    background: #fff;
    padding: 3.5rem 0 2.5rem 0;
}

.hb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-top: 2.2rem;
}

.hb-plan {
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    position: relative;
}

.hb-plan.featured {
    background: linear-gradient(120deg, #fff8e6 60%, #fff 100%);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 24px #f2b13822;
}

.hb-plan-ribbon {
    position: absolute;
    top: -18px;
    left: 1.5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: .95rem;
    padding: .32rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px #f2b13833;
}

.hb-plan-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
}

.hb-plan-tagline {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: .7rem;
}

.hb-plan-price-block {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .7rem;
}

.hb-plan-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--accent);
}

.hb-plan-ttc {
    color: #b45309;
    font-size: .98rem;
    font-weight: 700;
}

.hb-plan-feats {
    list-style: none;
    margin: 0 0 1.1rem 0;
    padding: 0;
    color: var(--text);
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.hb-plan-feats .check {
    color: var(--accent);
    font-weight: 900;
    margin-right: .5rem;
}

.hb-plan-feats .feat-new {
    background: #eaf6ff;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    padding: .12rem .5rem;
    border-radius: 999px;
    margin-left: .5rem;
}

.hb-plan-cta {
    background: transparent;
    color: var(--primary);
    font-weight: 900;
    padding: .85rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    transition: background .18s, color .18s;
    align-self: stretch;
    text-align: center;
}

.hb-plan-cta.gold {
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px #f2b13833;
}

.hb-plan-cta.gold:hover {
    background: var(--accent-dark);
}

.hb-plan-cta.outline:hover {
    background: var(--primary);
    color: #fff;
}

.hb-pricing-note {
    color: var(--muted);
    font-size: .98rem;
    margin-top: 1.7rem;
    text-align: center;
}

.hb-infra {
    background: #f8fafc;
    padding: 3.5rem 0 2.5rem 0;
}

.hb-infra-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.hb-infra-text {
    flex: 1 1 340px;
}

.hb-infra-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 1.7rem;
}

.hb-infra-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #003f6312;
    padding: .85rem 1.2rem;
}

.hb-infra-item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: .2rem;
}

.hb-infra-item-text strong {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.05rem;
}

.hb-infra-item-text span {
    color: var(--muted);
    font-size: .98rem;
}

.hb-dc-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hb-dc-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: .7rem;
}

.hb-dc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}

.hb-dc-stat {
    background: #f8fafc;
    border-radius: 10px;
    padding: .7rem 1.1rem;
    text-align: center;
}

.hb-dc-stat-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary);
}

.hb-dc-stat-label {
    color: var(--muted);
    font-size: .95rem;
}

.hb-dc-uptime-bar {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: .5rem;
}

.hb-dc-bar {
    flex: 1;
    background: #eaf6ff;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
    position: relative;
}

.hb-dc-bar-fill {
    background: var(--accent);
    height: 100%;
    width: 90%;
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 0;
}

.hb-dc-uptime-label {
    color: var(--muted);
    font-size: .95rem;
}

.hb-dc-uptime-val {
    color: #b45309;
    font-size: .98rem;
    font-weight: 700;
}

.hb-included {
    background: #fff;
    padding: 3.5rem 0 2.5rem 0;
}

.hb-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.7rem;
    margin-top: 2.2rem;
}

.hb-inc-card {
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
    position: relative;
}

.hb-inc-icon {
    font-size: 2.1rem;
    color: var(--primary);
    margin-bottom: .5rem;
}

.hb-compare {
    background: #f8fafc;
    padding: 3.5rem 0 2.5rem 0;
}

.hb-compare-wrap {
    overflow-x: auto;
}

.hb-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    overflow: hidden;
}

.hb-compare-table th,
.hb-compare-table td {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-size: 1.05rem;
}

.hb-compare-table th {
    background: #eaf6ff;
    color: var(--primary);
    font-weight: 900;
}

.hb-compare-table .th-featured {
    background: var(--accent);
    color: #fff;
}

.hb-compare-table .td-featured {
    background: #fff8e6;
    color: #b45309;
    font-weight: 900;
}

.hb-compare-table .check-yes {
    color: var(--accent);
    font-weight: 900;
}

.hb-compare-table .check-no {
    color: #e09f1f;
    font-weight: 900;
}

.hb-faq {
    background: #fff;
    padding: 3.5rem 0 2.5rem 0;
}

.hb-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.7rem;
    margin-top: 2.2rem;
}

.hb-faq-item {
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 2px 16px #003f6312;
    padding: 1.5rem 1.5rem 1.1rem 1.5rem;
    font-size: 1.05rem;
    color: var(--text);
}

.hb-faq-q {
    font-weight: 900;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.hb-faq-a {
    margin-top: 1.1rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.hb-cta {
    background: linear-gradient(120deg, #003f63 60%, #005580 100%);
    color: #fff;
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
}

.hb-cta h2 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: .7rem;
}

.hb-cta h2 span {
    color: var(--accent);
}

.hb-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.7rem;
}

.hb-cta-actions {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
}

@media (max-width: 900px) {

    .hb-hero-inner,
    .hb-infra-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .hb-hero-visual,
    .hb-dc-card {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hb-hero {
        padding: 2.5rem 0 1.5rem 0;
    }

    .hb-hero h1 {
        font-size: 1.5rem;
    }

    .hb-hero-visual img {
        width: 100%;
        margin-top: 1.2rem;
    }

    .hb-hero-inner {
        gap: 1.2rem;
    }

    .hb-trust-inner {
        gap: 1rem;
    }

    .hb-specs-grid,
    .hb-included-grid,
    .hb-faq-grid {
        grid-template-columns: 1fr;
    }

    .hb-pricing-grid {
        grid-template-columns: 1fr;
    }

    .hb-infra-inner {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* ===========================
       HAMBURGER BUTTON
       =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    transition: background .18s ease;
    padding: 0;
}

.hamburger:hover {
    background: rgba(0, 63, 99, .08);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: transform .28s ease, opacity .28s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===========================
       MOBILE NAV DRAWER
       =========================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
}

.mobile-nav.open {
    display: block;
}

.mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    animation: fadeIn .22s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

.mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
    animation: slideIn .26s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 63, 99, .07);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: background .15s;
}

.mobile-drawer-close:hover {
    background: rgba(0, 63, 99, .14);
}

.mobile-nav-list {
    list-style: none;
    padding: .6rem 0;
    flex-grow: 1;
}

.mobile-nav-section {
    padding: .2rem .8rem;
}

.mobile-nav-section-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: .7rem .6rem .3rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem .8rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: .97rem;
    transition: background .15s, color .15s;
}

.mobile-nav-link:hover {
    background: rgba(0, 63, 99, .07);
    color: var(--primary);
}

.mobile-nav-link .m-icon {
    width: 34px;
    height: 34px;
    background: #dff1ff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.mobile-nav-link .m-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.mobile-nav-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem .8rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    font-size: .97rem;
    color: var(--dark);
    list-style: none;
    transition: background .15s;
    user-select: none;
}

.mobile-nav-group summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-group summary:hover {
    background: rgba(0, 63, 99, .07);
}

.mobile-nav-group[open] summary {
    color: var(--primary);
}

.mobile-nav-group summary .arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .2s;
}

.mobile-nav-group[open] summary .arrow {
    transform: rotate(180deg);
}

.mobile-sub-links {
    padding: .2rem 0 .4rem 1rem;
}

.mobile-cta-area {
    padding: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .82rem 1rem;
    border-radius: 14px;
    font-weight: 900;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}

.mobile-cta-btn.blue {
    background: var(--primary);
    color: #fff;
}

.mobile-cta-btn.blue:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.mobile-cta-btn.yellow {
    background: var(--accent);
    color: #0f172a;
}

.mobile-cta-btn.yellow:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* ===========================
       FAQ SECTION
       =========================== */
.faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.4rem;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.faq-item:hover {
    border-color: rgba(0, 63, 99, .28);
    box-shadow: 0 8px 24px rgba(0, 63, 99, .07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.3rem;
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    font-size: 1rem;
    color: var(--dark);
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dff1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    transition: background .2s, transform .2s;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.faq-item[open] .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.3rem 1.15rem;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.7;
    font-size: .95rem;
    border-top: 1px solid var(--border);
    padding-top: .85rem;
}

.faq-cta-area {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta-area p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .btn.btn-hero-blue,
    .btn.btn-hero-yellow {
        width: 100%;
        min-width: unset;
    }

    .features-grid,
    .pricing-grid,
    .testimonial-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .mega-menu {
        display: none;
    }

    .pricing-features li:nth-child(n+5) {
        display: flex;
        align-items: flex-start;
        gap: .55rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.assoc-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    /* ✅ note au-dessus */
    align-items: flex-start;
    /* ✅ aligné à gauche */
    gap: 10px;
    /* espace entre note et bouton */
    margin-top: 10px;
}

.assoc-note {
    font-weight: 800;
    font-size: 12px;
    opacity: .9;
    max-width: none;
    /* ✅ plus de limite */
}

.assoc-cta {
    width: 100%;
    text-align: center;
}

/* Icône dans le lien "Espace client" */
.nav-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-block;
}

/* Optionnel: si tu veux que l'icône soit "remplie" comme FontAwesome */
.nav-link svg path {
    fill: currentColor;
}

/* Select langue (compact) */
.nav-lang {
    margin-left: .35rem;
}

.lang-select {
    height: 38px;
    padding: 0 .7rem;
    border-radius: 10px;
    border: 0px solid rgba(242, 177, 56, .65);
    background: transparent;
    color: var(--text);
    font-weight: 900;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.lang-select:hover {
    background: rgba(0, 63, 99, .06);
}

.lang-select:focus {
    box-shadow: 0 0 0 3px rgba(242, 177, 56, .25);
}

/* === PAGE CRÉATION DE SITE — charte bleu nuit + doré === */
nav {
    background: transparent !important;
    box-shadow: none !important;
}

nav.scrolled {
    background: rgba(255, 255, 255, .97) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .10) !important;
    backdrop-filter: blur(12px);
}

nav:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, .88) !important;
}

nav:not(.scrolled) .nav-link:hover {
    background: rgba(255, 255, 255, .12) !important;
    color: #fff !important;
}

nav:not(.scrolled) .dropdown-arrow {
    border-top-color: rgba(255, 255, 255, .75) !important;
}

nav:not(.scrolled) .nav-link.cta {
    color: #f2b138 !important;
    border-color: #f2b138 !important;
}

nav:not(.scrolled) .nav-link.cta:hover {
    background: #f2b138 !important;
    color: #fff !important;
}

nav:not(.scrolled) .lang-select {
    color: rgba(255, 255, 255, .82) !important;
}

nav:not(.scrolled) .hamburger span {
    background: #fff !important;
}

nav:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

/* HERO */
.cs-hero {
    padding: 8rem 0 0;
    background: linear-gradient(160deg, #020d18 0%, #031e30 40%, #042b45 70%, #053855 100%);
    position: relative;
    overflow: hidden;
}

.cs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cs-hero::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 177, 56, .11) 0%, transparent 65%);
    pointer-events: none;
}

.cs-halo2 {
    position: absolute;
    bottom: 40px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 150, 255, .07) 0%, transparent 65%);
    pointer-events: none;
}

.cs-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(242, 177, 56, .14);
    border: 1px solid rgba(242, 177, 56, .28);
    color: #f2b138;
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.3rem;
}

.cs-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #f2b138;
    border-radius: 50%;
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(242, 177, 56, .5);
    }

    60% {
        box-shadow: 0 0 0 7px rgba(242, 177, 56, 0);
    }
}

.cs-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.1rem;
}

.cs-hero h1 span {
    color: #f2b138;
}

.cs-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 50ch;
}

.cs-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cs-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 2rem;
    border-radius: 999px;
    background: #f2b138;
    color: #0f172a;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    transition: all .22s;
}

.cs-btn-gold:hover {
    background: #e09f1f;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(242, 177, 56, .3);
}

.cs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 1.8rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .82);
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    transition: all .22s;
}

.cs-btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    transform: translateY(-2px);
}

.cs-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cs-hstat {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.cs-hstat-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #f2b138;
    line-height: 1;
}

.cs-hstat-label {
    font-size: .78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Mockup browser */
.cs-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-browser {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cs-browser-bar {
    background: rgba(255, 255, 255, .08);
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cs-browser-dots {
    display: flex;
    gap: .4rem;
}

.cs-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cs-browser-url {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: .28rem .7rem;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.cs-browser-content {
    padding: 1.2rem;
}

/* Mini site mockup inside browser */
.cs-site-nav {
    height: 32px;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    padding: 0 .8rem;
    gap: 1rem;
}

.cs-site-nav-logo {
    width: 60px;
    height: 10px;
    background: #f2b138;
    border-radius: 4px;
    opacity: .8;
}

.cs-site-nav-links {
    display: flex;
    gap: .5rem;
    margin-left: auto;
}

.cs-site-nav-link {
    width: 30px;
    height: 8px;
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

.cs-site-hero-mock {
    background: linear-gradient(135deg, rgba(0, 63, 99, .4), rgba(4, 43, 69, .6));
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: .8rem;
}

.cs-site-h1 {
    height: 14px;
    background: rgba(255, 255, 255, .7);
    border-radius: 4px;
    width: 80%;
    margin-bottom: .5rem;
}

.cs-site-h1-sub {
    height: 10px;
    background: rgba(255, 255, 255, .4);
    border-radius: 4px;
    width: 60%;
    margin-bottom: .9rem;
}

.cs-site-cta-mock {
    display: inline-flex;
    gap: .5rem;
}

.cs-site-btn {
    height: 22px;
    border-radius: 999px;
}

.cs-site-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    margin-bottom: .8rem;
}

.cs-site-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: .6rem;
}

.cs-site-card-img {
    height: 28px;
    background: linear-gradient(135deg, rgba(0, 63, 99, .4), rgba(242, 177, 56, .2));
    border-radius: 5px;
    margin-bottom: .4rem;
}

.cs-site-card-text {
    height: 7px;
    background: rgba(255, 255, 255, .3);
    border-radius: 3px;
    margin-bottom: .25rem;
}

.cs-site-card-text.short {
    width: 60%;
}

.cs-site-footer-mock {
    height: 24px;
    background: rgba(255, 255, 255, .04);
    border-radius: 6px;
}

/* Badges */
.cs-badge-float {
    position: absolute;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.cs-badge-float.b1 {
    top: 20px;
    left: -20px;
    animation: float 4.5s .5s ease-in-out infinite;
}

.cs-badge-float.b2 {
    bottom: 40px;
    right: -10px;
    animation: float 5.5s 1s ease-in-out infinite;
}

.cs-badge-float .bf-icon {
    font-size: 1.2rem;
}

.cs-badge-float .bf-text strong {
    display: block;
    font-size: .82rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.cs-badge-float .bf-text span {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
}

/* Trust bar */
.cs-trust-bar {
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem 0;
    position: relative;
    z-index: 1;
}

.cs-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cs-trust-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 800;
    font-size: .875rem;
}

.cs-trust-item strong {
    color: rgba(255, 255, 255, .88);
}

/* TYPES DE SITES */
.cs-types {
    padding: 5rem 0;
    background: #fff;
}

.cs-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.cs-type-card {
    border: 2px solid rgba(0, 63, 99, .09);
    border-radius: 22px;
    padding: 2rem;
    background: #f8fafc;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cs-type-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003F63, #f2b138);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.cs-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 63, 99, .11);
    border-color: rgba(0, 63, 99, .22);
}

.cs-type-card:hover::after {
    transform: scaleX(1);
}

.cs-type-card.popular {
    border-color: rgba(242, 177, 56, .45);
    background: #fff;
    box-shadow: 0 12px 36px rgba(242, 177, 56, .12);
}

.cs-type-ribbon {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: linear-gradient(135deg, #003F63, #f2b138);
    color: #fff;
    font-weight: 900;
    font-size: .73rem;
    padding: .25rem .75rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.cs-type-icon {
    font-size: 2.4rem;
    margin-bottom: .9rem;
    display: block;
}

.cs-type-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: .5rem;
}

.cs-type-card p {
    font-size: .875rem;
    color: #64748b;
    font-weight: 700;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.cs-type-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.4rem;
}

.cs-type-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .855rem;
    font-weight: 800;
    color: #334155;
}

.cs-type-features li::before {
    content: "✓";
    color: #f2b138;
    font-weight: 900;
    flex: 0 0 auto;
}

.cs-type-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: .3rem;
}

.cs-type-price-from {
    font-size: .78rem;
    font-weight: 800;
    color: #94a3b8;
}

.cs-type-price-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: #003F63;
}

.cs-type-card.popular .cs-type-price-amount {
    color: #f2b138;
}

.cs-type-price-suffix {
    font-size: .85rem;
    font-weight: 800;
    color: #64748b;
}

.cs-type-note {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.cs-type-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: .85rem;
    border-radius: 14px;
    font-weight: 900;
    font-size: .95rem;
    text-decoration: none;
    transition: all .22s;
}

.cs-type-cta.outline {
    border: 2px solid #003F63;
    color: #003F63;
    background: transparent;
}

.cs-type-cta.outline:hover {
    background: #003F63;
    color: #fff;
    transform: translateY(-1px);
}

.cs-type-cta.gold {
    background: #f2b138;
    color: #0f172a;
}

.cs-type-cta.gold:hover {
    background: #e09f1f;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(242, 177, 56, .25);
}

/* PROCESSUS */
.cs-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #042b45 0%, #063f5e 55%, #084e72 100%);
    position: relative;
    overflow: hidden;
}

.cs-process::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 177, 56, .10) 0%, transparent 65%);
    pointer-events: none;
}

.cs-process-inner {
    position: relative;
    z-index: 1;
}

.cs-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
    position: relative;
}

.cs-process-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(242, 177, 56, .3), rgba(242, 177, 56, .7), rgba(242, 177, 56, .3));
    z-index: 0;
}

.cs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .7rem;
    position: relative;
    z-index: 1;
}

.cs-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003F63, #0a5a8a);
    border: 2px solid rgba(242, 177, 56, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
    flex: 0 0 56px;
}

.cs-step h4 {
    font-weight: 900;
    font-size: .9rem;
    color: #fff;
}

.cs-step p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 700;
    line-height: 1.55;
}

/* CE QU'ON LIVRE */
.cs-deliverables {
    padding: 5rem 0;
    background: #fff;
}

.cs-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.cs-del-card {
    background: #f8fafc;
    border: 1.5px solid rgba(0, 63, 99, .08);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cs-del-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003F63, #f2b138);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.cs-del-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 63, 99, .09);
    border-color: rgba(0, 63, 99, .2);
}

.cs-del-card:hover::after {
    transform: scaleX(1);
}

.cs-del-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #dff1ff, #c6e4ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 63, 99, .08);
}

.cs-del-card h4 {
    font-weight: 900;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: .45rem;
}

.cs-del-card p {
    font-size: .875rem;
    color: #64748b;
    font-weight: 700;
    line-height: 1.6;
}

.cs-del-tag {
    display: inline-block;
    background: rgba(0, 63, 99, .07);
    color: #003F63;
    font-weight: 900;
    font-size: .72rem;
    padding: .2rem .6rem;
    border-radius: 6px;
    margin-top: .5rem;
}

/* RÉALISATIONS */
.cs-portfolio {
    padding: 5rem 0;
    background: linear-gradient(180deg, #eef6ff 0%, #f8fafc 100%);
}

.cs-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.cs-portfolio-card {
    background: #fff;
    border: 1.5px solid rgba(0, 63, 99, .09);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.cs-portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 63, 99, .13);
}

.cs-portfolio-preview {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-portfolio-bar {
    background: rgba(255, 255, 255, .12);
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 .9rem;
    gap: .5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.cs-portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cs-portfolio-content {
    padding: 1.3rem;
}

.cs-portfolio-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 900;
    padding: .2rem .65rem;
    border-radius: 999px;
    margin-bottom: .6rem;
}

.cs-portfolio-card h4 {
    font-weight: 900;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: .35rem;
}

.cs-portfolio-card p {
    font-size: .845rem;
    color: #64748b;
    font-weight: 700;
    line-height: 1.55;
}

/* FAQ */
.cs-faq {
    padding: 5rem 0;
    background: #fff;
}

.cs-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.cs-faq-item {
    background: #f8fafc;
    border: 1.5px solid rgba(0, 63, 99, .08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.cs-faq-item:hover {
    border-color: rgba(0, 63, 99, .22);
    box-shadow: 0 6px 20px rgba(0, 63, 99, .07);
}

.cs-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    font-size: .95rem;
    color: #0f172a;
    user-select: none;
}

.cs-faq-q::-webkit-details-marker {
    display: none;
}

.cs-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dff1ff;
    color: #003F63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    flex: 0 0 26px;
    transition: background .2s, transform .2s;
}

.cs-faq-item[open] .cs-faq-icon {
    background: #003F63;
    color: #fff;
    transform: rotate(45deg);
}

.cs-faq-a {
    padding: .85rem 1.3rem 1.1rem;
    border-top: 1px solid rgba(0, 63, 99, .07);
    font-size: .9rem;
    color: #64748b;
    font-weight: 700;
    line-height: 1.7;
}

/* CTA */
.cs-cta {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #020d18 0%, #042b45 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cs-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 177, 56, .07) 0%, transparent 65%);
    pointer-events: none;
}

.cs-cta h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -.5px;
    position: relative;
}

.cs-cta h2 span {
    color: #f2b138;
}

.cs-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .68);
    font-weight: 700;
    max-width: 50ch;
    margin: 0 auto 2.2rem;
    line-height: 1.75;
    position: relative;
}

.cs-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cs-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cs-hero-inner {
        grid-template-columns: 1fr;
    }

    .cs-hero h1 {
        font-size: 2.2rem;
    }

    .cs-hero-visual {
        order: -1;
    }

    .cs-browser {
        max-width: 340px;
    }

    .cs-badge-float.b1 {
        display: none;
    }

    .cs-types-grid,
    .cs-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cs-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-process-steps::before {
        display: none;
    }

    .cs-faq-grid {
        grid-template-columns: 1fr;
    }

    .cs-cta h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .cs-deliverables-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cs-trust-inner {
        gap: 1rem;
    }
}

/* ===========================
   FIX NAV: avant scroll = BLEU, après scroll = ORANGE
   (pour la page "création de site")
   =========================== */

/* AVANT SCROLL (nav pas scrolled) -> bleu */
nav:not(.scrolled) .nav-link,
nav:not(.scrolled) .lang-select {
    color: var(--primary) !important;
    /* #003F63 */
}

nav:not(.scrolled) .nav-link:hover {
    background: rgba(0, 63, 99, .10) !important;
    color: var(--primary) !important;
}

nav:not(.scrolled) .dropdown-arrow {
    border-top-color: var(--primary) !important;
}

nav:not(.scrolled) .hamburger span {
    background: var(--primary) !important;
}

/* si ton logo était forcé en blanc */
nav:not(.scrolled) .logo img {
    filter: none !important;
}

/* APRÈS SCROLL (nav scrolled) -> orange */
nav.scrolled .nav-link,
nav.scrolled .lang-select {
    color: var(--accent) !important;
    /* #f2b138 */
}

nav.scrolled .nav-link:hover {
    background: rgba(242, 177, 56, .14) !important;
    color: var(--accent) !important;
}

nav.scrolled .dropdown-arrow {
    border-top-color: var(--accent) !important;
}

nav.scrolled .hamburger span {
    background: var(--accent) !important;
}

/* Optionnel: CTA cohérente quand scrolled (si tu veux) */
nav.scrolled .nav-link.cta {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

nav.scrolled .nav-link.cta:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

/* ===========================
   FIX MOBILE: la sidebar doit passer AU-DESSUS du header
   =========================== */

/* ton header est à z-index:1000, donc on met le drawer au-dessus */
.mobile-nav {
    z-index: 200000 !important;
}

/* (optionnel) si jamais un élément du header passait encore au-dessus */
.mobile-overlay,
.mobile-drawer {
    z-index: 2001 !important;
}

.pricing-card.featured {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .78rem;
    line-height: 1;
    white-space: nowrap;
    /* empêche retour ligne */
    background: rgba(242, 177, 56, .14);
    border: 1px solid rgba(242, 177, 56, .35);
    color: #b45309;
}

/* Alignements généraux */
.hero-content,
.features-grid,
.pricing-grid,
.srv-inner {
    align-items: stretch;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.8rem auto;
}

.section-header h2,
.section-header p {
    margin-left: auto;
    margin-right: auto;
}

/* Empêche la coupure des mots */
h1,
h2,
h3,
p,
li,
a,
span {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Accent Hero */
.hero-accent {
    color: #003F63;
    font-weight: 900;
}

/* Note pricing */
.pricing-note {
    text-align: center;
    margin: 0 auto 1.6rem auto;
    max-width: 720px;
    background: #f8fafc;
    border: 1px solid rgba(2, 6, 23, .08);
    color: #0f172a;
    font-weight: 700;
    font-size: .9rem;
    padding: .7rem 1rem;
    border-radius: 999px;
}

/* Cards pricing alignées */
.pricing-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

/* TTC line */
.pricing-ttc {
    font-size: .82rem;
    color: #64748b;
    font-weight: 800;
    margin-top: -6px;
    margin-bottom: 12px;
    text-align: left;
}

/* Badge Populaire en haut à droite */
.pricing-card.featured {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .78rem;
    line-height: 1;
    white-space: nowrap;
    background: rgba(242, 177, 56, .14);
    border: 1px solid rgba(242, 177, 56, .35);
    color: #b45309;
}

/* Note bas pricing */
.pricing-footnote {
    margin-top: 1.2rem;
    color: #64748b;
    font-size: .92rem;
    text-align: center;
}

/* CTA FAQ */
.faq-cta-btn {
    display: inline-flex;
    border-radius: 999px;
    padding: .9rem 2rem;
}

/* HERO aligné verticalement */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right img {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
}

/* Alignements sections */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.8rem auto;
}

.section-header h2,
.section-header p {
    margin-left: auto;
    margin-right: auto;
}

/* Empêche la coupure des mots */
h1,
h2,
h3,
p,
li,
a,
span {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Accent */
.hero-accent {
    color: #003F63;
    font-weight: 900;
}

/* Section OFFRES avec couleur différente */
.pricing-alt {
    background: #f8fafc;
    border-top: 1px solid rgba(2, 6, 23, .06);
    border-bottom: 1px solid rgba(2, 6, 23, .06);
}

/* Pricing cards alignées */
.pricing-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

/* Badge Populaire en haut à droite */
.pricing-card.featured {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .78rem;
    line-height: 1;
    white-space: nowrap;
    background: rgba(242, 177, 56, .14);
    border: 1px solid rgba(242, 177, 56, .35);
    color: #b45309;
}

/* Note bas pricing */
.pricing-footnote {
    text-align: center;
    margin-top: 1.6rem;
    font-size: .82rem;
    color: #94a3b8;
    font-weight: 700;
}

/* CTA FAQ */
.faq-cta-btn {
    display: inline-flex;
    border-radius: 999px;
    padding: .9rem 2rem;
}

/* HERO un peu plus grand (hauteur + respiration) */
.hero {
    padding: 6.5rem 0;
    /* augmente la hauteur visuelle */
}

.hero-content {
    min-height: 520px;
    /* assure une belle hauteur même si peu de texte */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.2rem;
}

/* Optionnel : texte un peu plus présent */
.hero-left h1 {
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-left p {
    font-size: 1.05rem;
    max-width: 58ch;
}

/* Optionnel : illustration un peu plus grande */
.hero-right img {
    max-width: 560px;
    width: 100%;
    height: auto;
}

/* HERO ajusté légèrement plus petit */
.hero {
    padding: 6.5rem 0;
}

.hero-content {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.2rem;
}

/* Image un peu moins grande */
.hero-right {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 100%;
    max-width: 580px;
    height: auto;
}

.hero-left {
    flex: 1;
}

/* PC : colonnes hero équilibrées */
@media (min-width: 992px) {
    .hero-left {
        flex: 1.3;
    }

    .hero-right {
        flex: 1;
    }

    .hero-right img {
        max-width: 580px;
    }
}