/* ============================================================
   VENDORA — custom.css
   Ordre : Variables → Reset → Utilitaires → Typo → Boutons
           → Header → Banner → Sections → Footer → Responsive
   ============================================================ */


/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
    /* Couleurs principales */
    --yellow: #F5A623;
    --yellow-dk: #D4881A;
    --yellow-lt: #FFF8EC;
    --blue: #012D82;
    --blue-mid: #0A3FA8;
    --blue-lt: #E8EDFF;

    /* Neutres */
    --white: #FFFFFF;
    --grey: #6B7280;
    --grey-lt: #F4F6FA;
    --dark: #0D0D1A;
    --border: #E2E8F0;

    /* Typographie */
    --ff-ar: 'Cairo', sans-serif;
    --ff-body: 'Inter', sans-serif;

    /* Ombres */
    --shadow: 0 4px 24px rgba(1, 45, 130, .08);
    --shadow-md: 0 8px 40px rgba(1, 45, 130, .13);
}


/* ── 2. RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: #1e2a40;
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ── 3. UTILITAIRES ───────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── 4. TYPOGRAPHIE SECTIONS ──────────────────────────────── */
.sec-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: .6rem;
}

.sec-title {
    font-family: var(--ff-ar);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
    letter-spacing: -.4px;
}

.sec-title span {
    color: var(--yellow);
}

.sec-sub {
    color: var(--grey);
    font-size: .97rem;
    max-width: 560px;
    margin-top: .7rem;
    line-height: 1.7;
}

.text-center .sec-sub {
    margin-left: auto;
    margin-right: auto;
}


/* ── 5. BOUTONS GLOBAUX ───────────────────────────────────── */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--yellow);
    color: white;
    padding: .72rem 1.9rem;
    border-radius: 7px;
    font-family: var(--ff-ar);
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-yellow:hover {
    background: var(--yellow-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 166, 35, .35);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: transparent;
    color: var(--white);
    padding: .72rem 1.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: .9rem;
    border: 1.5px solid rgba(255, 255, 255, .35);
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .09);
    color: white;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--blue);
    color: var(--white);
    padding: .8rem 2rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: .9rem;
    transition: background .2s, transform .2s;
}

.btn-blue:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}


/* ── 6. HEADER ────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    height: 80px;
    transition: box-shadow .3s;
    padding-top: 20px;
    padding-bottom: 5px;
}

.header.scrolled {
    box-shadow: 0 4px 28px rgba(1, 45, 130, .12);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
}


/*Logo */
img.header-logo {
    width: 45%;
}

img.footer-logo {
    width: 40%;
    max-height: fit-content;
}

/* Navigation */
.primary-menu {
    margin-left: auto;
}

#mobile-menu-toggler {
    display: none;
    font-size: 1.6rem;
    color: var(--blue);
    padding: .4rem .5rem;
    cursor: pointer;
}

.primary-menu>ul {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.primary-menu>ul>li>a {
    padding: .45rem .95rem;
    color: var(--blue);
    font-size: .875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.primary-menu>ul>li>a:hover,
.primary-menu>ul>li.current-menu-item>a {
    color: var(--blue);
    background: transparent;
}

/* Boutons header */
.btn-nav-login {
    display: inline-block;
    background: transparent !important;
    color: var(--blue) !important;
    border: 1.5px solid var(--blue) !important;
    padding: .42rem 1.15rem !important;
    border-radius: 7px !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
    transition: background .2s, color .2s !important;
}

.btn-nav-login:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.btn-nav-register {
    display: inline-block;
    background: var(--yellow) !important;
    color: white !important;
    padding: .45rem 1.2rem !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
    font-size: .875rem !important;
    border: none !important;
    margin-left: .35rem;
    transition: background .2s, transform .2s !important;
}

.btn-nav-register:hover {
    background: var(--yellow-dk) !important;
    transform: translateY(-1px);
}


/* ── 7. BANNER / HERO ─────────────────────────────────────── */
.banner {
    min-height: 100vh;
    background: var(--blue);
    padding-top: 70px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.banner-glow-y {
    position: absolute;
    bottom: -60px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, .22) 0%, transparent 65%);
    filter: blur(50px);
}

.banner-glow-b {
    position: absolute;
    top: -80px;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 63, 168, .4) 0%, transparent 65%);
    filter: blur(40px);
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5% 0;
}

/* Tagline pill */
.ban-tagline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245, 166, 35, .13);
    border: 1px solid rgba(245, 166, 35, .3);
    color: var(--yellow);
    padding: .32rem 1rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    letter-spacing: .5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    display: inline-block;
    animation: blink 1.6s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Titre */
.ban-title {
    font-family: var(--ff-ar);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 1.1rem;
}

.ban-title .highlight {
    color: var(--yellow);
}

.ban-sub {
    color: rgba(255, 255, 255, .68);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ban-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Stats */
.ban-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.ban-stat-num {
    font-family: var(--ff-ar);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--yellow);
}

.ban-stat-lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: .1rem;
}

/* Dashboard widget */
.dash-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 1.6rem;
    backdrop-filter: blur(12px);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.dash-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.2rem;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-label {
    margin-left: auto;
    color: rgba(255, 255, 255, .4);
    font-size: .74rem;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: .9rem;
}

.kpi-box {
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 1rem;
}

.kpi-val {
    font-family: var(--ff-ar);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.kpi-lbl {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .15rem;
}

.kpi-up {
    font-size: .68rem;
    color: #4ADE80;
    margin-top: .25rem;
}

.chart-wrap {
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: .8rem;
    margin-bottom: .9rem;
}

.chart-lbl {
    font-size: .68rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .45rem;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 55px;
}

.bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(255, 255, 255, .12);
}

.bar.y {
    background: var(--yellow);
}

.bar.b {
    background: var(--blue-mid);
}

.order-list .order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: .45rem .75rem;
    margin-bottom: .35rem;
    font-size: .74rem;
}

.o-id {
    color: rgba(255, 255, 255, .7);
}

.o-city {
    color: rgba(255, 255, 255, .35);
    font-size: .68rem;
}

.badge {
    padding: .12rem .45rem;
    border-radius: 100px;
    font-size: .66rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(74, 222, 128, .15);
    color: #4ADE80;
}

.badge-yellow {
    background: rgba(245, 166, 35, .2);
    color: var(--yellow);
}

.badge-blue {
    background: rgba(99, 179, 237, .15);
    color: #63B3ED;
}


/* ── 8. SECTION OVERVIEW ──────────────────────────────────── */
.overview {
    padding: 90px 0;
    background: var(--grey-lt);
}

.overview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.icon-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform .3s, box-shadow .3s;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ib-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--yellow-lt);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .9rem;
    transition: background .3s, color .3s;
}

.icon-box:hover .ib-icon {
    background: var(--yellow);
    color: var(--blue);
}

.icon-box h5 {
    font-family: var(--ff-ar);
    font-size: .92rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: .35rem;
}

.icon-box p {
    font-size: .8rem;
    color: var(--grey);
    line-height: 1.55;
}


/* ── 9. SECTION FEATURES ──────────────────────────────────── */
.features {
    padding: 90px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--yellow-lt);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto .9rem;
    transition: background .3s, color .3s;
}

.feat-card:hover .feat-ico {
    background: var(--yellow);
    color: var(--blue);
}

.feat-card h6 {
    font-family: var(--ff-ar);
    font-size: .84rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: .35rem;
}

.feat-card p {
    font-size: .76rem;
    color: var(--grey);
    line-height: 1.5;
}


/* ── 10. SECTIONS SPLIT (boutique / affilié) ──────────────── */
.home-send {
    padding: 90px 0;
    background: var(--grey-lt);
}

.home-recv {
    padding: 90px 0;
    background: var(--white);
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tagline-bar {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .7rem;
}

.tagline-bar::before {
    content: '';
    display: block;
    width: 22px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.split-text p {
    color: var(--grey);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.check-list {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.check-list li {
    font-size: .88rem;
    color: #1e2a40;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}

.check-list li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 800;
    flex-shrink: 0;
}

/* Visual boxes */
.visual-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
}

.visual-box.dark-v {
    background: var(--blue);
    border-color: transparent;
}

/* Mini shop */
.mini-shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.shop-item {
    background: var(--grey-lt);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow .2s;
}

.shop-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.shop-img {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.bg1 {
    background: #FFF8EC;
}

.bg2 {
    background: #EEF2FF;
}

.bg3 {
    background: #F0FDF4;
}

.bg4 {
    background: #FEF2F2;
}

.shop-info {
    padding: .6rem .7rem;
}

.shop-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: .2rem;
}

.shop-price {
    font-size: .78rem;
    color: var(--yellow);
    font-weight: 700;
}

.shop-badge {
    font-size: .65rem;
    background: var(--yellow-lt);
    color: var(--yellow-dk);
    padding: .1rem .4rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: .2rem;
}

/* Widget affilié */
.aff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.aff-title {
    font-family: var(--ff-ar);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.aff-badge {
    background: var(--yellow);
    color: var(--blue);
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 100px;
}

.aff-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: .7rem 1rem;
    margin-bottom: .5rem;
}

.aff-user {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.aff-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue);
}

.aff-name {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
}

.aff-earn {
    font-size: .8rem;
    font-weight: 700;
    color: var(--yellow);
}

.aff-total {
    background: rgb(255 255 255 / 15%);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-top: .8rem;
}

.aff-total-val {
    font-family: var(--ff-ar);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yellow);
}

.aff-total-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .2rem;
}


/* ── 11. SECTION SPÉCIALITÉS ──────────────────────────────── */
.speciality {
    padding: 90px 0;
    background: var(--grey-lt);
}

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.spec-ico {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--yellow-lt);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.1rem;
    transition: background .3s, color .3s;
}

.spec-card:hover .spec-ico {
    background: var(--yellow);
    color: var(--blue);
}

.spec-card h5 {
    font-family: var(--ff-ar);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: .5rem;
}

.spec-card p {
    font-size: .84rem;
    color: var(--grey);
    line-height: 1.6;
}


/* ── 12. SECTION PRICING ──────────────────────────────────── */
.pricing-section {
    padding: 90px 0;
    background: var(--white);
}

/* Toggle période */
.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 2rem auto 0;
    background: var(--grey-lt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .3rem;
    width: fit-content;
}

.toggle-btn {
    padding: .55rem 1.4rem;
    border-radius: 7px;
    font-family: var(--ff-ar);
    font-size: .85rem;
    font-weight: 600;
    color: var(--grey);
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all .25s;
}

.toggle-btn.active {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(1, 45, 130, .2);
}

.toggle-btn .economy {
    display: inline-block;
    background: var(--yellow);
    color: var(--blue);
    font-size: .62rem;
    font-weight: 800;
    padding: .08rem .35rem;
    border-radius: 4px;
    margin-left: .3rem;
    vertical-align: middle;
}

/* Grille cartes */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px var(--yellow);
}

.price-card-top {
    padding: 2rem 2rem 1.5rem;
}

.price-card-bottom {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--yellow);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: .9rem;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.plan-name {
    font-family: var(--ff-ar);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue);
}

.plan-tag {
    font-size: .78rem;
    color: var(--grey);
    margin-top: .2rem;
    margin-bottom: 1.5rem;
}

/* Bloc prix */
.plan-price-block {
    background: var(--grey-lt);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.4rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: .25rem;
}

.price-amt {
    font-family: var(--ff-ar);
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.price-curr {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    padding-bottom: .3rem;
}

.price-per {
    font-size: .82rem;
    color: var(--grey);
    margin-left: .15rem;
}

.price-alts {
    margin-top: .8rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.price-alt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
}

.price-alt-period {
    color: var(--grey);
}

.price-alt-val {
    font-weight: 700;
    color: var(--blue);
}

.price-alt-economy {
    font-size: .7rem;
    background: rgba(245, 166, 35, .15);
    color: var(--yellow-dk);
    padding: .08rem .4rem;
    border-radius: 4px;
    font-weight: 700;
}

.price-alt-row.hidden {
    display: none;
}

/* Bouton plan */
.plan-btn {
    display: block;
    text-align: center;
    padding: .8rem;
    margin: 0 2rem 1.5rem;
    border-radius: 9px;
    font-family: var(--ff-ar);
    font-weight: 700;
    font-size: .9rem;
    background: var(--blue-lt);
    color: var(--blue);
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
}

.plan-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
}

.price-card.featured .plan-btn {
    background: var(--yellow);
    color: var(--blue);
}

.price-card.featured .plan-btn:hover {
    background: var(--yellow-dk);
}

/* Features liste */
.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.2rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.plan-features li {
    font-size: .83rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.plan-features li i {
    color: var(--yellow);
    font-size: .7rem;
    flex-shrink: 0;
}

.plan-features li strong {
    color: var(--blue);
}


/* ── 13. SECTION TÉMOIGNAGES ──────────────────────────────── */
.testimonial {
    padding: 90px 0;
    background: var(--grey-lt);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    transition: box-shadow .3s, transform .3s;
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testi-stars {
    color: var(--yellow);
    font-size: .85rem;
    margin-bottom: .9rem;
}

.testi-quote {
    font-size: .88rem;
    line-height: 1.7;
    color: #1e2a40;
    font-style: italic;
    margin-bottom: 1.3rem;
    padding-left: .8rem;
    border-left: 3px solid var(--yellow);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-ar);
    font-weight: 700;
    font-size: .85rem;
}

.testi-name {
    font-family: var(--ff-ar);
    font-size: .88rem;
    font-weight: 700;
    color: var(--blue);
}

.testi-role {
    font-size: .75rem;
    color: var(--grey);
}


/* ── 14. SECTION CTA FINAL ────────────────────────────────── */
.cta-final {
    padding: 90px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-final h2 {
    font-family: var(--ff-ar);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-final h2 span {
    color: var(--yellow);
}

.cta-final p {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.cta-final-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── 15. FOOTER ───────────────────────────────────────────── */
.site-footer {
    background: var(--blue);
    font-family: var(--ff-body);
}

.foo-top {
    padding: 64px 0 44px;
}

.foo-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.foo-grid {
    display: grid;
    grid-template-columns: 3.2fr 2fr 2fr;
    gap: 3rem;
}

ol,
ul {
    padding-left: 0rem;
}

/* Logo footer */
.foo-logo {
    font-family: var(--ff-ar);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .8rem;
}

.foo-logo-crown {
    color: var(--yellow);
    font-size: 1rem;
}

.foo-logo span {
    color: var(--yellow);
}

.foo-desc {
    font-size: .82rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

/* Réseaux sociaux */
.foo-social {
    display: flex;
    gap: .55rem;
}

.foo-social a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: background .2s, color .2s, transform .2s;
}

.foo-social a:hover {
    background: var(--yellow);
    color: var(--blue);
    transform: translateY(-2px);
}

/* Colonnes navigation */
.widget h5 {
    color: var(--white);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.widget ul li {
    margin-bottom: .5rem;
}

.widget ul li a {
    color: white;
    font-size: .82rem;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}

.widget ul li a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

/* Colonne contact */
.foo-address address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: .3rem;
}

.foo-address address a {
    color: white;
    font-size: .82rem;
    transition: color .2s;
}

.foo-address address a:hover {
    color: var(--yellow);
}

.foo-address address:last-of-type {
    color: white;
    font-size: .78rem;
}

.foo-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .25);
    color: #25D366 !important;
    padding: .4rem .9rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    transition: background .2s !important;
}

.foo-whatsapp:hover {
    background: rgba(37, 211, 102, .22) !important;
}

/* Barre de bas de page */
.foo-btm {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
}

.foo-btm-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.foo-btm-links {
    display: flex;
    gap: 1.6rem;
}

.foo-btm-links a {
    color: white;
    font-size: .78rem;
    transition: color .2s;
}

.foo-btm-links a:hover {
    color: var(--yellow);
}

.foo-copyright {
    font-size: .78rem;
    color: white;
}

.foo-copyright strong {
    color: var(--yellow);
}


/* Page inscription */
/* ══════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════ */
.reg-page {
    min-height: 100vh;
    background: var(--grey-lt);
    padding: 100px 24px 60px;
}

.reg-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Titre page */
.reg-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reg-page-header h1 {
    font-family: var(--ff-ar);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: .4rem;
}

.reg-page-header p {
    color: var(--grey);
    font-size: .92rem;
}

/* Alerte */
.reg-alert {
    border-radius: 12px;
    padding: 1rem 1.4rem;
    font-size: .875rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    line-height: 1.6;
}

.reg-alert.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
}

.reg-alert.warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.reg-alert.danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

/* ══════════════════════════════════════════
   LAYOUT 2 COLONNES
══════════════════════════════════════════ */
.reg-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ══════════════════════════════════════════
   COLONNE GAUCHE — sticky
══════════════════════════════════════════ */
.reg-left {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Toggle période ── */
.period-toggle {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}

.period-toggle-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .7rem;
}

.period-btns {
    display: flex;
    background: var(--grey-lt);
    border-radius: 9px;
    padding: .2rem;
    gap: 0;
}

.period-btn {
    flex: 1;
    padding: .55rem .4rem;
    border: none;
    background: transparent;
    color: var(--grey);
    font-family: var(--ff-ar);
    font-size: .8rem;
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
    transition: all .22s;
    text-align: center;
    line-height: 1.25;
}

.period-btn.active {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(1, 45, 130, .2);
}

.period-btn .eco {
    display: block;
    font-size: .63rem;
    opacity: .8;
    font-weight: 700;
}

/* ── Cartes pack ── */
.packs-wrapper {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pack-option {
    position: relative;
}

.pack-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pack-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: border-color .22s, box-shadow .22s, background .22s;
    position: relative;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border);
    transition: background .22s;
}

.pack-card:hover {
    border-color: rgba(1, 45, 130, .25);
    box-shadow: 0 4px 16px rgba(1, 45, 130, .08);
}

.pack-option input:checked+.pack-card {
    border-color: var(--blue);
    background: var(--blue-lt);
    box-shadow: 0 4px 20px rgba(1, 45, 130, .12);
}

.pack-option input:checked+.pack-card::before {
    background: var(--blue);
}

/* Badge populaire */
.pack-popular {
    position: absolute;
    top: 10px;
    right: 12px;
    background: var(--yellow);
    color: var(--blue);
    font-size: .6rem;
    font-weight: 800;
    padding: .15rem .55rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pack-info {
    flex: 1;
    padding-left: .2rem;
}

.pack-name {
    font-family: var(--ff-ar);
    font-size: .95rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: .15rem;
}

.pack-features {
    font-size: .72rem;
    color: var(--grey);
    line-height: 1.4;
}

.pack-price-col {
    text-align: right;
    flex-shrink: 0;
}

.pack-price-amt {
    font-family: var(--ff-ar);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.pack-price-amt .curr {
    font-size: .75rem;
    font-weight: 700;
    vertical-align: super;
}

.pack-price-period {
    font-size: .68rem;
    color: var(--grey);
    margin-top: .1rem;
}

.pack-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
}

.pack-option input:checked+.pack-card .pack-radio-circle {
    background: var(--blue);
    border-color: var(--blue);
}

.pack-radio-circle::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity .2s;
}

.pack-option input:checked+.pack-card .pack-radio-circle::after {
    opacity: 1;
}

/* ── Paiement ── */
.payment-box {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
}

.payment-box-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .8rem;
}

.payment-opts {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.payment-opt {
    position: relative;
}

.payment-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-opt-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: var(--grey-lt);
}

.payment-opt-card:hover {
    border-color: rgba(1, 45, 130, .25);
    background: var(--white);
}

.payment-opt input:checked+.payment-opt-card {
    border-color: var(--blue);
    background: var(--blue-lt);
}

.payment-opt-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--blue);
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.payment-opt input:checked+.payment-opt-card .payment-opt-icon {
    background: var(--blue);
    color: var(--white);
}

.payment-opt-info {
    flex: 1;
}

.payment-opt-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--blue);
}

.payment-opt-desc {
    font-size: .72rem;
    color: var(--grey);
    margin-top: .05rem;
}

.payment-opt-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    transition: all .2s;
    position: relative;
}

.payment-opt input:checked+.payment-opt-card .payment-opt-radio {
    border-color: var(--blue);
    background: var(--blue);
}

.payment-opt input:checked+.payment-opt-card .payment-opt-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
}

/* ══════════════════════════════════════════
   COLONNE DROITE — formulaire
══════════════════════════════════════════ */
.reg-right {
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem 2.4rem;
    box-shadow: var(--shadow);
}

.reg-form-title {
    font-family: var(--ff-ar);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: .3rem;
}

.reg-form-sub {
    font-size: .82rem;
    color: var(--grey);
    margin-bottom: 1.8rem;
}

/* Séparateur de section */
.form-section-title {
    font-size: .72rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 1.4rem 0 .8rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Grille champs */
.fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: .8rem;
}

.fg.full {
    grid-template-columns: 1fr;
}

.ff {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.fl {
    font-size: .74rem;
    font-weight: 600;
    color: var(--blue);
}

.fi {
    height: 44px;
    background: var(--grey-lt);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0 13px;
    font-size: .875rem;
    color: #1e2a40;
    font-family: var(--ff-body);
    width: 100%;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.fi:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(1, 45, 130, .07);
    background: var(--white);
}

.fi.is-invalid {
    border-color: #ef4444;
    background: #fff5f5;
}

.fi.is-valid {
    border-color: #22c55e;
}

select.fi {
    cursor: pointer;
}

/* Password */
.pw-wrap {
    position: relative;
}

.pw-wrap .fi {
    padding-right: 42px;
}

.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--grey);
    cursor: pointer;
    font-size: .85rem;
    padding: 0;
}

/* Sous-domaine */
.sd-wrap {
    display: flex;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--grey-lt);
    transition: border-color .2s, box-shadow .2s;
}

.sd-wrap:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(1, 45, 130, .07);
    background: var(--white);
}

.sd-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 12px;
    font-size: .875rem;
    color: #1e2a40;
    font-family: var(--ff-body);
}

.sd-input:focus {
    outline: none;
}

.sd-suffix {
    background: var(--yellow);
    color: var(--white);
    padding: 0 13px;
    font-size: .76rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Récap */
.recap-box {
    background: var(--blue-lt);
    border: 1.5px solid var(--blue-lt);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1.4rem 0 1rem;
}

.recap-rows {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: .8rem;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
}

.recap-lbl {
    color: var(--grey);
}

.recap-val {
    font-weight: 700;
    color: var(--blue);
}

.recap-divider {
    height: 1px;
    background: rgba(1, 45, 130, .12);
    margin-bottom: .8rem;
}

.recap-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.recap-total-lbl {
    font-weight: 700;
    color: var(--blue);
    font-size: .88rem;
}

.recap-total-amt {
    font-family: var(--ff-ar);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue);
}

.recap-ttc {
    font-size: .7rem;
    color: var(--grey);
    text-align: right;
    margin-top: .2rem;
}

/* CGU */
.cgu-row {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .8rem;
    color: var(--grey);
    margin-bottom: 1.2rem;
}

.cgu-row input {
    width: 15px;
    height: 15px;
    accent-color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.cgu-row a {
    color: var(--blue);
    font-weight: 600;
}

/* Submit */
.btn-reg {
    width: 100%;
    padding: .95rem;
    background: var(--yellow);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--ff-ar);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-reg:hover {
    background: var(--yellow-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, .3);
}

.login-link {
    text-align: center;
    font-size: .8rem;
    color: var(--grey);
    margin-top: 1rem;
}

.login-link a {
    color: var(--blue);
    font-weight: 600;
}


/* === DELIVERY PARTNERS SLIDER === */
.delivery-partners {
    background: #F9FAFB;
    padding: 72px 0;
    overflow: hidden;
}

.sliders-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 2.5rem 0;
}

.slider-row {
    position: relative;
    overflow: hidden;
}

.slider-row::before,
.slider-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.slider-row::before {
    left: 0;
    background: linear-gradient(to right, #F9FAFB, transparent);
}

.slider-row::after {
    right: 0;
    background: linear-gradient(to left, #F9FAFB, transparent);
}

.slider-track {
    display: flex;
    gap: 14px;
    width: max-content;
}

.row-left {
    animation: slide-left 32s linear infinite;
}

.row-right {
    animation: slide-right 28s linear infinite;
}

.row-left2 {
    animation: slide-left 36s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* RTL : géré dynamiquement par JS selon la largeur réelle */
@keyframes slide-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 14px;
    width: 148px;
    height: 75px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    transition: border-color .2s, box-shadow .2s;
}

.logo-card:hover {
    border-color: #F5A623;
    box-shadow: 0 2px 14px rgba(245, 166, 35, .2);
}

.logo-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    transition: filter .2s;
}

.logo-card:hover img {
    filter: grayscale(0%);
}

.delivery-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 auto;
}

.dfeat-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
}

.dfeat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(11, 31, 79, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #0B1F4F;
}

.dfeat-card h6 {
    font-size: .88rem;
    font-weight: 700;
    color: #0B1F4F;
    margin: 0 0 5px;
}

.dfeat-card p {
    font-size: .78rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .delivery-feats {
        grid-template-columns: 1fr;
    }
}

/* ── 16. RESPONSIVE ───────────────────────────────────────── */

/* Tablette large */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .foo-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .foo-brand-col {
        grid-column: 1 / -1;
    }

    .reg-layout {
        grid-template-columns: 380px 1fr;
    }
}

@media (max-width: 860px) {
    .reg-layout {
        grid-template-columns: 1fr;
    }

    .reg-left {
        position: static;
    }
}

@media (max-width: 560px) {
    .reg-right {
        padding: 1.6rem 1.4rem;
    }

    .fg {
        grid-template-columns: 1fr;
    }
}

/* Mobile header */
@media (max-width: 768px) {


    #mobile-menu-toggler {
        display: inline-block;
    }

    .primary-menu>ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem 2.5rem 2.5rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
        z-index: 9998;
        gap: 1.2rem;
    }

    .primary-menu>ul.open {
        display: flex;
    }

    .btn-nav-register {
        margin-left: 0 !important;
        margin-top: .3rem;
        display: block !important;
        text-align: center;
    }

    img.header-logo {
        width: 38%;
    }

    .ban-stats {
        display: none;
    }

    .ban-visual {
        display: none;
    }

    .banner-inner {
        grid-template-columns: 1fr;
    }

    img.header-logo {
        width: 40%;
    }

    .banner {
        min-height: 65vh;
    }

    .features {
        padding: 30px 0;
    }

    .home-recv {
        padding: 30px 0;
    }

    .pricing-section {
        padding: 30px 0;
    }

    .testimonial {
        padding: 30px 0;
    }
}


/* Mobile */
@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speciality-grid,
    .test-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Petit mobile footer */
@media (max-width: 640px) {
    .foo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .foo-btm-inner {
        flex-direction: column;
        text-align: center;
    }

    .foo-btm-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .foo-grid {
        grid-template-columns: 1fr;
    }
}