/* ============================================
   FICHIER CSS UNIQUE POUR TOUTES LES PAGES
   ONSFMCI - Ordre National des Sages-Femmes et Maïeuticiens de Côte d'Ivoire
   ============================================ */

/* --------------------------------------------
   1. TOKENS & VARIABLES
-------------------------------------------- */
:root {
    --vc: #a04e98;
    --vf: #652682;
    --vh: #4a1570;
    --mv: #c0c3e4;
    --mp: #ede9f6;
    --nr: #1d1d1b;
    --gc: #f7f5fb;
    --or: #c9952a;
    --oc: #f0d080;
    --mu: #6b6880;
    --bd: #ddd8ec;
    --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------
   2. RESET & BASE
-------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--nr);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

svg {
    flex-shrink: 0;
}

/* --------------------------------------------
   3. ALERT BAND (commun à toutes pages)
-------------------------------------------- */
.alert-band {
    background: var(--vf);
    color: #fff;
    font-size: 12px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;
    z-index: 120;
}
.alert-band a {
    color: var(--oc);
    font-weight: 700;
    text-decoration: underline;
}

/* --------------------------------------------
   4. TOP BAR
-------------------------------------------- */
.top-bar {
    background: var(--gc);
    border-bottom: 1px solid var(--bd);
    font-size: 12px;
    color: var(--mu);
    padding: 6px 0;
    display: none;
}
@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}
.tbi {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tbi-info {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tbi-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tbi-soc {
    display: flex;
    gap: 8px;
}
.tbi-soc a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--vc);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.tbi-soc a:hover {
    background: var(--vf);
}
.tbi-soc svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* --------------------------------------------
   5. HEADER / NAVIGATION PRINCIPALE
-------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 14px rgba(101, 38, 130, 0.1);
    border-bottom: 3px solid var(--vc);
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
@media (min-width: 768px) {
    .nav-inner {
        padding: 0 24px;
        height: 72px;
    }
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--vf);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .logo-badge {
        width: 48px;
        height: 48px;
    }
}
.logo-badge svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 1.6;
    fill: none;
}
.logo-text .abbr {
    font-size: 14px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
}
@media (min-width: 768px) {
    .logo-text .abbr {
        font-size: 16px;
    }
}
.logo-text .full {
    font-size: 9px;
    color: var(--mu);
    line-height: 1.3;
    max-width: 155px;
    display: none;
}
@media (min-width: 900px) {
    .logo-text .full {
        display: block;
    }
}
.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2px;
}
@media (min-width: 960px) {
    .nav-menu {
        display: flex;
    }
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nr);
    transition: var(--tr);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: var(--mp);
    color: var(--vf);
}
.chev {
    transition: transform 0.2s;
    display: inline-block;
}
.nav-menu li:hover .chev {
    transform: rotate(180deg);
}
.dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid var(--bd);
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(101, 38, 130, 0.13);
    min-width: 205px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--tr);
    z-index: 200;
}
.nav-menu li:hover .dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dd a {
    display: block;
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 12.5px;
    color: var(--mu);
    transition: var(--tr);
}
.dd a:hover {
    background: var(--mp);
    color: var(--vf);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-cnx {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--vf);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
}
@media (min-width: 768px) {
    .btn-cnx {
        padding: 9px 18px;
        font-size: 13px;
    }
}
.btn-cnx:hover {
    background: var(--vh);
    box-shadow: 0 6px 18px rgba(101, 38, 130, 0.28);
}
.btn-cnx svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.ham {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 4px;
}
@media (min-width: 960px) {
    .ham {
        display: none;
    }
}
.ham span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--vf);
    border-radius: 2px;
    transition: var(--tr);
}
.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ham.open span:nth-child(2) {
    opacity: 0;
}
.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------
   6. DRAWER MOBILE
-------------------------------------------- */
.drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(74, 21, 112, 0.55);
    backdrop-filter: blur(4px);
}
.drawer.open {
    display: block;
}
.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(290px, 85vw);
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--bd);
}
.drawer-head .abbr {
    font-weight: 800;
    font-size: 14px;
    color: var(--vf);
}
.drawer-close {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: none;
    background: var(--gc);
    display: flex;
    align-items: center;
    justify-content: center;
}
.drawer-close svg {
    width: 17px;
    height: 17px;
    stroke: var(--nr);
    stroke-width: 2;
    fill: none;
}
.drawer-links {
    padding: 10px 10px 24px;
    flex: 1;
}
.drawer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--nr);
    transition: var(--tr);
}
.drawer-links a:hover {
    background: var(--mp);
    color: var(--vf);
}
.drawer-links .sub {
    padding-left: 12px;
    border-left: 2px solid var(--bd);
    margin: 2px 0 7px;
}
.drawer-links .sub a {
    font-size: 12.5px;
    color: var(--mu);
    padding: 7px 11px;
}
.drawer-links .d-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 11px;
    border-radius: 8px;
    background: var(--vf);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
}
.drawer-links .d-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* --------------------------------------------
   7. MINI NAV (pour pages auth)
-------------------------------------------- */
.mini-nav {
    background: #fff;
    border-bottom: 3px solid var(--vc);
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px rgba(101, 38, 130, 0.08);
}
.mn-logo {
    display: flex;
    align-items: center;
    gap: 9px;
}
.mn-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vf);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mn-badge svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 1.7;
    fill: none;
}
.mn-text .abbr {
    font-size: 13px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
}
.mn-text .full {
    font-size: 9px;
    color: var(--mu);
    display: none;
}
@media (min-width: 480px) {
    .mn-text .full {
        display: block;
    }
}
.mn-back {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mu);
    transition: var(--tr);
}
.mn-back:hover {
    color: var(--vf);
}
.mn-back svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* --------------------------------------------
   8. LAYOUT & UTILITAIRES
-------------------------------------------- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}
.section {
    padding: 52px 0;
}
@media (min-width: 768px) {
    .section {
        padding: 72px 0;
    }
}
.section-sm {
    padding: 40px 0;
}
.ey {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vc);
    margin-bottom: 8px;
}
.dvd {
    width: 42px;
    height: 3px;
    background: var(--vc);
    border-radius: 2px;
    margin: 12px auto;
}
.sh {
    text-align: center;
    margin-bottom: 40px;
}
.sh h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(23px, 3.5vw, 35px);
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 10px;
}
.sh p {
    color: var(--mu);
    font-size: 14.5px;
    max-width: 500px;
    margin: 0 auto;
}
.divider {
    height: 1px;
    background: var(--bd);
    margin: 20px 0;
}
.card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 14px;
    overflow: hidden;
}

/* --------------------------------------------
   9. BOUTONS & COMPOSANTS COURANTS
-------------------------------------------- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--or);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
}
.btn-gold:hover {
    background: #a87820;
    box-shadow: 0 8px 22px rgba(201, 149, 42, 0.38);
}
.btn-gold svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-ow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: var(--tr);
}
.btn-ow:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.btn-v {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 16px;
    border-radius: 7px;
    background: var(--vf);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    width: fit-content;
}
.btn-v svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-v:hover {
    background: var(--vh);
}
.btn-ov {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: 7px;
    border: 1.5px solid var(--vf);
    color: var(--vf);
    font-size: 12px;
    font-weight: 700;
    transition: var(--tr);
}
.btn-ov svg {
    width: 12px;
    height: 12px;
    stroke: var(--vf);
    stroke-width: 2.5;
    fill: none;
}
.btn-ov:hover {
    background: var(--vf);
    color: #fff;
}
.btn-ov:hover svg {
    stroke: #fff;
}
.btn-ov-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 13px;
    border-radius: 7px;
    border: 1.5px solid var(--vf);
    color: var(--vf);
    font-size: 12px;
    font-weight: 700;
    transition: var(--tr);
}
.btn-ov-sm:hover {
    background: var(--vf);
    color: #fff;
}
.btn-or {
    width: 100%;
    padding: 11px;
    border-radius: 7px;
    background: var(--or);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.btn-or:hover {
    background: #a87820;
}
.btn-or svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* --------------------------------------------
   10. PAGE HERO (générique)
-------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--vh) 0%, var(--vf) 55%, var(--vc) 100%);
    padding: 48px 0 52px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20h4v4h-4zm-4-4h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 768px) {
    .page-hero {
        padding: 64px 0 72px;
    }
}
.ph-inner {
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}
.breadcrumb .cur {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.ph-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 5vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}
.ph-inner .lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.65;
}
@media (min-width: 768px) {
    .ph-inner .lead {
        font-size: 16px;
    }
}

/* --------------------------------------------
   11. PAGE ACTUALITÉS (spécifique)
-------------------------------------------- */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
}
.hs-item {
    flex: 1;
    min-width: 120px;
    padding: 14px 18px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hs-item:last-child {
    border-right: none;
}
.hs-item .n {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hs-item .l {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}
.featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--bd);
    background: #fff;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .featured {
        grid-template-columns: 1fr 1fr;
    }
}
.feat-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .feat-img {
        height: auto;
        min-height: 300px;
    }
}
.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--or);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
}
.feat-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .feat-body {
        padding: 32px 30px;
    }
}
.feat-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mp);
    color: var(--vf);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 99px;
    margin-bottom: 12px;
    width: fit-content;
}
.feat-cat svg {
    width: 11px;
    height: 11px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.feat-body h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 10px;
    line-height: 1.3;
}
.feat-body p {
    font-size: 13.5px;
    color: var(--mu);
    line-height: 1.7;
    margin-bottom: 18px;
}
.feat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.feat-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--mu);
}
.feat-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.feat-info svg {
    width: 12px;
    height: 12px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.filters-section {
    background: var(--gc);
    border-radius: 12px;
    padding: 18px 16px;
    margin-bottom: 28px;
}
@media (min-width: 768px) {
    .filters-section {
        padding: 20px 24px;
    }
}
.filters-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.filters-top h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    display: flex;
    align-items: center;
    gap: 6px;
}
.filters-top h3 svg {
    width: 15px;
    height: 15px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.search-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 8px;
    overflow: hidden;
    min-width: 200px;
    max-width: 280px;
    flex: 1;
}
@media (min-width: 640px) {
    .search-wrap {
        flex: none;
    }
}
.search-wrap svg {
    width: 15px;
    height: 15px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
    margin-left: 11px;
    flex-shrink: 0;
}
.search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 10px;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: var(--nr);
    background: transparent;
}
.search-wrap input::placeholder {
    color: var(--mu);
}
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--bd);
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mu);
    cursor: pointer;
    transition: var(--tr);
}
.fp:hover {
    border-color: var(--vc);
    color: var(--vf);
}
.fp.active {
    background: var(--vf);
    border-color: var(--vf);
    color: #fff;
}
.fp svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.results-count {
    font-size: 13px;
    color: var(--mu);
}
.results-count strong {
    color: var(--nr);
}
.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--mu);
}
.sort-wrap select {
    padding: 6px 10px;
    border: 1.5px solid var(--bd);
    border-radius: 7px;
    font-family: "Nunito", sans-serif;
    font-size: 12.5px;
    outline: none;
    color: var(--nr);
    background: #fff;
    cursor: pointer;
}
.sort-wrap select:focus {
    border-color: var(--vc);
}
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.ac {
    border-radius: 13px;
    overflow: hidden;
    border: 1.5px solid var(--bd);
    background: #fff;
    transition: var(--tr);
    display: flex;
    flex-direction: column;
}
.ac:hover {
    box-shadow: 0 12px 32px rgba(101, 38, 130, 0.12);
    transform: translateY(-4px);
}
.ac.hidden {
    display: none;
}
.ac-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.ac-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}
.ac:hover .ac-thumb img {
    transform: scale(1.05);
}
.ac-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ac-ph.c {
    background: linear-gradient(135deg, #ede9f6, #c0c3e4);
}
.ac-ph.e {
    background: linear-gradient(135deg, #e3f0ff, #bfdbfe);
}
.ac-ph.f {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}
.ac-ph.s {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}
.ac-ph svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    fill: none;
}
.ac-thumb-label {
    position: absolute;
    top: 12px;
    right: 12px;
}
.ac-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cat-c {
    background: var(--mp);
    color: var(--vf);
}
.cat-e {
    background: #e3f0ff;
    color: #1565c0;
}
.cat-f {
    background: #fff7ed;
    color: #c2410c;
}
.cat-s {
    background: #fce4ec;
    color: #880e4f;
}
.cat-r {
    background: #f0fdf4;
    color: #166534;
}
.ac-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ac-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    flex-wrap: wrap;
    gap: 6px;
}
.ac-date {
    font-size: 11px;
    color: var(--mu);
    display: flex;
    align-items: center;
    gap: 4px;
}
.ac-date svg {
    width: 11px;
    height: 11px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.ac-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 7px;
    line-height: 1.4;
}
.ac-body p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.65;
    flex: 1;
}
.ac-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    flex-wrap: wrap;
    gap: 8px;
}
.ac-author {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: var(--mu);
}
.ac-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--vf);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ac.large {
    grid-column: 1/-1;
}
@media (min-width: 600px) {
    .ac.large {
        flex-direction: row;
    }
    .ac.large .ac-thumb {
        width: 46%;
        height: auto;
        min-height: 220px;
        flex-shrink: 0;
    }
    .ac.large .ac-body {
        padding: 22px 24px;
    }
    .ac.large .ac-body h3 {
        font-size: 18px;
    }
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.pg-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--bd);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--mu);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    cursor: pointer;
}
.pg-btn:hover {
    border-color: var(--vc);
    color: var(--vf);
}
.pg-btn.active {
    background: var(--vf);
    border-color: var(--vf);
    color: #fff;
}
.pg-btn.wide {
    width: auto;
    padding: 0 14px;
    gap: 5px;
}
.pg-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr 300px;
        gap: 36px;
    }
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.widget {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 13px;
    overflow: hidden;
}
.widget-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget-head h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
}
.widget-head svg {
    width: 16px;
    height: 16px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.widget-body {
    padding: 16px 18px;
}
.cat-list {
    list-style: none;
}
.cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--bd);
    font-size: 13px;
    color: var(--mu);
    transition: var(--tr);
}
.cat-list li:last-child a {
    border-bottom: none;
}
.cat-list li a:hover {
    color: var(--vf);
}
.cat-list li a:hover .cat-count {
    background: var(--vf);
    color: #fff;
}
.cat-count {
    background: var(--gc);
    color: var(--mu);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    transition: var(--tr);
}
.pop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pop-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}
.pop-num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--mp);
    color: var(--vf);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pop-item h5 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nr);
    line-height: 1.4;
    margin-bottom: 3px;
}
.pop-item .pop-meta {
    font-size: 11px;
    color: var(--mu);
    display: flex;
    align-items: center;
    gap: 4px;
}
.pop-item .pop-meta svg {
    width: 10px;
    height: 10px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.nl-widget {
    background: linear-gradient(135deg, var(--vh), var(--vc));
    border: none;
}
.nl-widget .widget-head {
    border-color: rgba(255, 255, 255, 0.15);
}
.nl-widget .widget-head h4 {
    color: #fff;
}
.nl-widget .widget-head svg {
    stroke: #fff;
}
.nl-body {
    padding: 16px 18px;
}
.nl-body p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
    line-height: 1.6;
}
.nl-body input {
    width: 100%;
    padding: 9px 12px;
    border-radius: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 12.5px;
    outline: none;
    margin-bottom: 9px;
}
.nl-body input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.nl-body input:focus {
    border-color: var(--oc);
}
.nl-note {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 9px;
}
.communique-band {
    background: var(--gc);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border: 1.5px solid var(--bd);
    margin-bottom: 28px;
}
.cb-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cb-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.8;
    fill: none;
}
.cb-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 3px;
}
.cb-text p {
    font-size: 12.5px;
    color: var(--mu);
}
.cb-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* --------------------------------------------
   12. PAGE CONTACT
-------------------------------------------- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 0;
}
@media (min-width: 480px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}
.info-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 13px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: var(--tr);
}
.info-card:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 24px rgba(101, 38, 130, 0.1);
    transform: translateY(-3px);
}
.ic-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ic-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.8;
    fill: none;
}
.ic-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 2px;
}
.ic-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
    line-height: 1.4;
}
.ic-sub {
    font-size: 12px;
    color: var(--mu);
    margin-top: 2px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 400px;
        gap: 36px;
    }
}
.form-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 14px;
    padding: 28px 22px;
}
@media (min-width: 600px) {
    .form-card {
        padding: 36px 32px;
    }
}
.form-card h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 6px;
}
.form-card .fc-lead {
    font-size: 13.5px;
    color: var(--mu);
    margin-bottom: 26px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 500px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fg.full {
    grid-column: 1/-1;
}
.fg label {
    font-size: 12px;
    font-weight: 700;
    color: var(--nr);
    letter-spacing: 0.3px;
}
.fg label span {
    color: #ef4444;
    margin-left: 2px;
}
.fg input,
.fg select,
.fg textarea {
    padding: 10px 13px;
    border-radius: 8px;
    border: 1.5px solid var(--bd);
    font-family: "Nunito", sans-serif;
    font-size: 13.5px;
    color: var(--nr);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    resize: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--vc);
}
.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--mu);
}
.fg .hint {
    font-size: 11px;
    color: var(--mu);
}
.fg textarea {
    min-height: 120px;
}
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.form-note {
    font-size: 12px;
    color: var(--mu);
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-note svg {
    width: 13px;
    height: 13px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.btn-submit {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 28px;
    border-radius: 8px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    cursor: pointer;
}
.btn-submit:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-submit svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.success-msg {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 16px;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #166534;
}
.success-msg svg {
    width: 20px;
    height: 20px;
    stroke: #166534;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}
.subject-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.stab {
    padding: 7px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--bd);
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mu);
    cursor: pointer;
    transition: var(--tr);
}
.stab:hover {
    border-color: var(--vc);
    color: var(--vf);
}
.stab.active {
    background: var(--vf);
    border-color: var(--vf);
    color: #fff;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hours-card {
    background: var(--gc);
    border-radius: 13px;
    padding: 22px 18px;
    border: 1.5px solid var(--bd);
}
.hours-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.hours-card h4 svg {
    width: 16px;
    height: 16px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.hl-day {
    color: var(--mu);
}
.hl-time {
    font-weight: 700;
    color: var(--nr);
}
.hl-item.closed .hl-time {
    color: #ef4444;
}
.hl-divider {
    height: 1px;
    background: var(--bd);
    margin: 4px 0;
}
.sections-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 13px;
    overflow: hidden;
}
.sc-head {
    padding: 16px 18px;
    background: var(--mp);
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 7px;
}
.sc-head h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--vf);
}
.sc-head svg {
    width: 16px;
    height: 16px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.sc-list {
    list-style: none;
}
.sc-item {
    padding: 11px 18px;
    border-bottom: 1px solid var(--bd);
    font-size: 13px;
    color: var(--mu);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--tr);
}
.sc-item:last-child {
    border-bottom: none;
}
.sc-item:hover {
    background: var(--gc);
    color: var(--vf);
}
.sc-item .sc-n {
    font-weight: 700;
    color: var(--nr);
}
.sc-count {
    font-size: 11px;
    background: var(--gc);
    color: var(--mu);
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 700;
}
.social-card {
    background: linear-gradient(135deg, var(--vh), var(--vf));
    border-radius: 13px;
    padding: 22px 18px;
}
.social-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.social-card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sl-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    transition: var(--tr);
}
.sl-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}
.sl-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.map-section {
    background: var(--gc);
    padding: 0;
}
.map-wrap {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--gc);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 600px) {
    .map-wrap {
        height: 360px;
    }
}
.map-placeholder-inner {
    text-align: center;
    padding: 20px;
}
.map-placeholder-inner svg {
    width: 44px;
    height: 44px;
    stroke: var(--mu);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto 12px;
}
.map-placeholder-inner h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--nr);
    margin-bottom: 6px;
}
.map-placeholder-inner p {
    font-size: 13px;
    color: var(--mu);
    margin-bottom: 14px;
}
.map-address {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1.5px solid var(--bd);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--nr);
}
.map-address svg {
    width: 13px;
    height: 13px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.faq-section {
    background: #fff;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
.faq-item {
    background: var(--gc);
    border-radius: 10px;
    border: 1.5px solid var(--bd);
    overflow: hidden;
    transition: var(--tr);
}
.faq-item.open {
    border-color: var(--vc);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    gap: 12px;
}
.faq-q span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    line-height: 1.4;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #fff;
    border: 1.5px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}
.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--vf);
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon {
    background: var(--vf);
    border-color: var(--vf);
}
.faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 16px 16px;
}
.faq-a p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.7;
}

/* --------------------------------------------
   13. PAGE AUTH (login, forgot, verify)
-------------------------------------------- */
.auth-page {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 60px);
}
@media (min-width: 900px) {
    .auth-page {
        grid-template-columns: 1fr 1fr;
    }
}
.auth-brand {
    display: none;
    background: linear-gradient(135deg, var(--vh) 0%, var(--vf) 60%, var(--vc) 100%);
    padding: 48px 44px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
@media (min-width: 900px) {
    .auth-brand {
        display: flex;
    }
}
.auth-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.brand-top {
    position: relative;
    z-index: 2;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 52px;
}
.brand-logo-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo-badge svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}
.brand-logo-text .abbr {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.brand-logo-text .full {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 180px;
    line-height: 1.4;
}
.brand-headline {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.brand-headline em {
    color: var(--oc);
    font-style: italic;
}
.brand-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 36px;
}
.recovery-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.rs-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rs-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    transition: var(--tr);
}
.rs-num.done {
    background: #fff;
    border-color: #fff;
    color: var(--vf);
}
.rs-num.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}
.rs-info .rs-title {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}
.rs-num.active ~ .rs-info .rs-title,
.rs-num.done ~ .rs-info .rs-title {
    color: #fff;
}
.rs-info .rs-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
}
.rs-num.active ~ .rs-info .rs-sub {
    color: rgba(255, 255, 255, 0.65);
}
.rs-connector {
    width: 2px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    margin-left: 17px;
}
.brand-bottom {
    position: relative;
    z-index: 2;
}
.security-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
}
.sn-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-ico svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.sn-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}
.sn-text strong {
    color: #fff;
}
.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: var(--gc);
}
@media (min-width: 600px) {
    .auth-form-panel {
        padding: 40px 32px;
    }
}
.auth-box {
    width: 100%;
    max-width: 440px;
}
.auth-box-head {
    text-align: center;
    margin-bottom: 26px;
}
.auth-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.auth-icon.phone {
    background: var(--mp);
}
.auth-icon.phone svg {
    width: 28px;
    height: 28px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.auth-icon.sms {
    background: linear-gradient(135deg, rgba(201, 149, 42, 0.15), rgba(240, 208, 128, 0.2));
}
.auth-icon.sms svg {
    width: 28px;
    height: 28px;
    stroke: var(--or);
    stroke-width: 1.7;
    fill: none;
}
.auth-icon.success {
    background: #dcfce7;
}
.auth-icon.success svg {
    width: 28px;
    height: 28px;
    stroke: #166534;
    stroke-width: 2;
    fill: none;
}
.auth-box-head h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--nr);
    margin-bottom: 6px;
}
.auth-box-head p {
    font-size: 13.5px;
    color: var(--mu);
    line-height: 1.6;
}
.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--mp);
    border: 1.5px solid var(--mv);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--vf);
    margin-top: 8px;
    font-family: monospace;
}
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--gc);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}
.at-btn {
    padding: 9px;
    border-radius: 7px;
    border: none;
    background: transparent;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--mu);
    transition: var(--tr);
    cursor: pointer;
}
.at-btn.active {
    background: #fff;
    color: var(--vf);
    box-shadow: 0 2px 8px rgba(101, 38, 130, 0.12);
}
.input-wrap {
    position: relative;
}
.input-wrap input {
    width: 100%;
    padding: 11px 40px 11px 40px;
    border-radius: 9px;
    border: 1.5px solid var(--bd);
    font-family: "Nunito", sans-serif;
    font-size: 13.5px;
    color: var(--nr);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.input-wrap input:focus {
    border-color: var(--vc);
    box-shadow: 0 0 0 3px rgba(160, 78, 152, 0.12);
}
.input-wrap input::placeholder {
    color: var(--mu);
}
.input-wrap input.error {
    border-color: #ef4444;
}
.iw-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.iw-ico svg {
    width: 16px;
    height: 16px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.iw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    display: flex;
}
.iw-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.field-error {
    font-size: 11.5px;
    color: #ef4444;
    margin-top: 4px;
    display: none;
    align-items: center;
    gap: 4px;
}
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.remember {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--mu);
    cursor: pointer;
}
.remember input {
    width: 15px;
    height: 15px;
    accent-color: var(--vf);
}
.forgot-link {
    font-size: 12.5px;
    color: var(--vc);
    font-weight: 600;
}
.forgot-link:hover {
    color: var(--vf);
}
.btn-login {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.btn-login:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-login svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-login.loading {
    opacity: 0.75;
    pointer-events: none;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.auth-divider span {
    font-size: 12px;
    color: var(--mu);
    white-space: nowrap;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bd);
}
.btn-mm {
    width: 100%;
    padding: 11px;
    border-radius: 9px;
    border: 1.5px solid var(--bd);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: var(--tr);
    margin-bottom: 10px;
}
.btn-mm:hover {
    border-color: var(--vc);
    background: var(--mp);
}
.mm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mm-orange {
    background: #ff6200;
}
.mm-yellow {
    background: #ffcc00;
}
.mm-blue {
    background: #003087;
}
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--mu);
}
.auth-footer a {
    color: var(--vf);
    font-weight: 700;
}
.auth-alert {
    display: none;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 13px;
    margin-bottom: 16px;
    align-items: center;
    gap: 10px;
}
.auth-alert.error {
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    color: #991b1b;
}
.auth-alert.success {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    color: #166534;
}
.auth-alert svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--mu);
    margin-top: 14px;
}
.security-badge svg {
    width: 13px;
    height: 13px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.pw-strength {
    margin-top: 6px;
}
.pw-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}
.pw-bar {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: var(--bd);
    transition: background 0.3s;
}
.pw-bar.w {
    background: #ef4444;
}
.pw-bar.m {
    background: var(--or);
}
.pw-bar.s {
    background: #22c55e;
}
.pw-label {
    font-size: 11px;
    color: var(--mu);
}
.num-hint {
    font-size: 11px;
    color: var(--mu);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.num-hint svg {
    width: 11px;
    height: 11px;
    stroke: var(--vc);
    stroke-width: 2;
    fill: none;
}
.method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
.method-opt {
    border: 2px solid var(--bd);
    border-radius: 11px;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--tr);
    position: relative;
}
.method-opt:hover {
    border-color: var(--vc);
    background: var(--mp);
}
.method-opt.selected {
    border-color: var(--vf);
    background: var(--mp);
}
.method-opt input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.mo-ico {
    font-size: 26px;
    margin-bottom: 8px;
}
.mo-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 2px;
}
.mo-sub {
    font-size: 11px;
    color: var(--mu);
}
.mo-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--vf);
    display: none;
    align-items: center;
    justify-content: center;
}
.method-opt.selected .mo-check {
    display: flex;
}
.mo-check svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}
.info-box {
    background: var(--mp);
    border: 1.5px solid var(--mv);
    border-radius: 10px;
    padding: 13px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 12.5px;
    color: var(--vf);
}
.info-box svg {
    width: 15px;
    height: 15px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 1px;
}
.btn-send {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}
.btn-send:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-send svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-send.loading {
    opacity: 0.75;
    pointer-events: none;
}

/* OTP spécifique */
.mobile-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
@media (min-width: 900px) {
    .mobile-steps {
        display: none;
    }
}
.ms-step {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--bd);
    transition: var(--tr);
}
.ms-step.active {
    background: var(--vf);
    width: 48px;
}
.ms-step.done {
    background: var(--vc);
}
.otp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.otp-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--nr);
    letter-spacing: 0.3px;
    align-self: flex-start;
}
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
}
@media (min-width: 380px) {
    .otp-inputs {
        gap: 12px;
    }
}
.otp-digit {
    width: 52px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid var(--bd);
    background: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--vf);
    text-align: center;
    outline: none;
    transition: var(--tr);
    caret-color: var(--vf);
    -moz-appearance: textfield;
}
.otp-digit::-webkit-outer-spin-button,
.otp-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-digit:focus {
    border-color: var(--vf);
    box-shadow: 0 0 0 3px rgba(101, 38, 130, 0.15);
    background: #fff;
}
.otp-digit.filled {
    border-color: var(--vc);
    background: var(--mp);
}
.otp-digit.error-digit {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.4s ease;
}
.otp-digit.success-digit {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}
.otp-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
}
.op-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bd);
    transition: background 0.2s;
}
.op-dot.filled {
    background: var(--vf);
}
.otp-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gc);
    border-radius: 9px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.cd-left {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--mu);
}
.cd-left svg {
    width: 14px;
    height: 14px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
#otp-timer {
    font-weight: 800;
    color: var(--vf);
    font-family: monospace;
    font-size: 14px;
}
#otp-timer.warn {
    color: #ef4444;
}
.resend-btn {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vc);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--tr);
}
.resend-btn:disabled {
    color: var(--mu);
    cursor: not-allowed;
}
.resend-btn:not(:disabled):hover {
    color: var(--vf);
}
.btn-verify {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.btn-verify:hover:not(:disabled) {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-verify.loading {
    opacity: 0.75;
    pointer-events: none;
}
.attempts-info {
    text-align: center;
    font-size: 12px;
    color: var(--mu);
}
.attempts-info span {
    font-weight: 700;
    color: var(--nr);
}
.pw-input-wrap {
    position: relative;
    margin-bottom: 14px;
}
.pw-input-wrap input {
    width: 100%;
    padding: 11px 44px 11px 44px;
    border-radius: 9px;
    border: 1.5px solid var(--bd);
    font-family: "Nunito", sans-serif;
    font-size: 13.5px;
    color: var(--nr);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pw-input-wrap input:focus {
    border-color: var(--vc);
    box-shadow: 0 0 0 3px rgba(160, 78, 152, 0.12);
}
.pw-input-wrap input::placeholder {
    color: var(--mu);
}
.pw-input-wrap label {
    font-size: 12px;
    font-weight: 700;
    color: var(--nr);
    display: block;
    margin-bottom: 5px;
}
.pw-iw-ico {
    position: absolute;
    left: 13px;
    top: calc(50% + 10px);
    transform: translateY(-50%);
}
.pw-iw-ico svg {
    width: 17px;
    height: 17px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.pw-toggle {
    position: absolute;
    right: 13px;
    top: calc(50% + 10px);
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    display: flex;
}
.pw-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--mu);
    stroke-width: 2;
    fill: none;
}
.pw-reqs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}
.pw-req {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--mu);
}
.pw-req.ok {
    color: #166534;
}
.req-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gc);
    border: 1.5px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}
.pw-req.ok .req-dot {
    background: #dcfce7;
    border-color: #bbf7d0;
}
.req-dot svg {
    width: 10px;
    height: 10px;
    stroke: var(--mu);
    stroke-width: 2.5;
    fill: none;
}
.pw-req.ok .req-dot svg {
    stroke: #166534;
}
.pw-match {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}
.pw-match.ok {
    color: #166534;
}
.pw-match.no {
    color: #ef4444;
}
.pw-match svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.btn-reset {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.btn-reset:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-reset:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.success-panel {
    text-align: center;
    padding: 12px 0;
}
.sp-ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.sp-ico svg {
    width: 38px;
    height: 38px;
    stroke: #166534;
    stroke-width: 2;
    fill: none;
}
.sp-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 800;
    color: var(--nr);
    margin-bottom: 10px;
}
.sp-lead {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.btn-login-now {
    width: 100%;
    padding: 13px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-login-now:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}

/* --------------------------------------------
   14. PAGE INSCRIPTION (multistep)
-------------------------------------------- */
.insc-page {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 60px);
}
@media (min-width: 960px) {
    .insc-page {
        grid-template-columns: 320px 1fr;
    }
}
.insc-sidebar {
    background: linear-gradient(160deg, var(--vh) 0%, var(--vf) 70%, var(--vc) 100%);
    padding: 36px 28px;
    display: none;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}
@media (min-width: 960px) {
    .insc-sidebar {
        display: flex;
    }
}
.insc-sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20h4v4h-4zm-4-4h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.sb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.sb-logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sb-logo-badge svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 1.6;
    fill: none;
}
.sb-logo-text .abbr {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
.sb-logo-text .full {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 160px;
    line-height: 1.4;
}
.sb-steps {
    position: relative;
    z-index: 2;
    flex: 1;
}
.sb-steps h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 22px;
}
.sb-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    position: relative;
}
.sb-step::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 44px;
    width: 2px;
    height: calc(100% - 20px);
    background: rgba(255, 255, 255, 0.15);
}
.sb-step:last-child::after {
    display: none;
}
.sb-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: var(--tr);
}
.sb-step.active .sb-step-num {
    background: #fff;
    border-color: #fff;
    color: var(--vf);
}
.sb-step.done .sb-step-num {
    background: rgba(134, 239, 172, 0.2);
    border-color: rgba(134, 239, 172, 0.5);
}
.sb-step.done .sb-step-num svg {
    display: block;
}
.sb-step-num svg {
    width: 14px;
    height: 14px;
    stroke: var(--vf);
    stroke-width: 2.5;
    fill: none;
    display: none;
}
.sb-step-info {
    padding-top: 4px;
}
.sb-step-title {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 3px;
    transition: var(--tr);
}
.sb-step.active .sb-step-title {
    color: #fff;
}
.sb-step.done .sb-step-title {
    color: rgba(255, 255, 255, 0.7);
}
.sb-step-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}
.sb-step.active .sb-step-sub {
    color: rgba(255, 255, 255, 0.6);
}
.sb-bottom {
    position: relative;
    z-index: 2;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sb-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}
.sb-note strong {
    color: rgba(255, 255, 255, 0.8);
}
.insc-form-area {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-progress {
    background: #fff;
    border-bottom: 1px solid var(--bd);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (min-width: 960px) {
    .mobile-progress {
        display: none;
    }
}
.mp-steps {
    display: flex;
    gap: 6px;
    flex: 1;
}
.mp-step {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--bd);
    transition: background 0.4s;
}
.mp-step.active,
.mp-step.done {
    background: var(--vf);
}
.mp-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--vf);
    white-space: nowrap;
}
.form-container {
    flex: 1;
    padding: 28px 16px;
}
@media (min-width: 600px) {
    .form-container {
        padding: 36px 40px;
    }
}
@media (min-width: 768px) {
    .form-container {
        padding: 44px 56px;
    }
}
.step-panel {
    display: none;
}
.step-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}
.step-header {
    margin-bottom: 28px;
}
.step-num-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mp);
    color: var(--vf);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 10px;
}
.step-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 6px;
}
.step-header p {
    font-size: 13.5px;
    color: var(--mu);
}
.form-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bd);
}
.form-card h4 svg {
    width: 16px;
    height: 16px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.input-group {
    display: flex;
    gap: 0;
}
.input-group .prefix {
    padding: 10px 12px;
    background: var(--gc);
    border: 1.5px solid var(--bd);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    color: var(--mu);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.input-group input {
    border-radius: 0 8px 8px 0;
}
.upload-zone {
    border: 2px dashed var(--bd);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--tr);
    position: relative;
}
.upload-zone:hover,
.upload-zone.drag {
    border-color: var(--vc);
    background: var(--mp);
}
.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.uz-ico {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.uz-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.8;
    fill: none;
}
.uz-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 4px;
}
.uz-sub {
    font-size: 11.5px;
    color: var(--mu);
}
.uz-sub strong {
    color: var(--vf);
}
.upload-preview {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--gc);
    border-radius: 7px;
    margin-top: 10px;
}
.up-ico {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.up-ico svg {
    width: 16px;
    height: 16px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.up-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nr);
    flex: 1;
}
.up-size {
    font-size: 11px;
    color: var(--mu);
}
.up-del {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.up-del svg {
    width: 13px;
    height: 13px;
    stroke: #ef4444;
    stroke-width: 2;
    fill: none;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px;
    border-radius: 8px;
    border: 1.5px solid var(--bd);
    cursor: pointer;
    transition: var(--tr);
}
.check-item:hover {
    border-color: var(--vc);
    background: var(--mp);
}
.check-item input {
    width: 16px;
    height: 16px;
    accent-color: var(--vf);
    flex-shrink: 0;
    margin-top: 1px;
}
.check-item span {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.55;
}
.check-item span strong {
    color: var(--nr);
    font-weight: 700;
}
.recap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 500px) {
    .recap-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.recap-item {
    background: var(--gc);
    border-radius: 9px;
    padding: 13px 14px;
}
.recap-item .rl {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--mu);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.recap-item .rv {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
}
.recap-amount {
    background: linear-gradient(135deg, var(--mp), rgba(192, 195, 228, 0.3));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1.5px solid var(--mv);
}
.recap-amount .label {
    font-size: 12px;
    color: var(--mu);
    margin-bottom: 6px;
}
.recap-amount .amount {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--vf);
}
.recap-amount .currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--vf);
}
.recap-amount .note {
    font-size: 11.5px;
    color: var(--mu);
    margin-top: 6px;
}
.payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 500px) {
    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}
.pm-option {
    border: 2px solid var(--bd);
    border-radius: 11px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--tr);
    position: relative;
}
.pm-option:hover {
    border-color: var(--vc);
}
.pm-option.selected {
    border-color: var(--vf);
    background: var(--mp);
}
.pm-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.pm-ico {
    font-size: 24px;
    margin-bottom: 8px;
}
.pm-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 2px;
}
.pm-sub {
    font-size: 11px;
    color: var(--mu);
}
.pm-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--vf);
    display: none;
    align-items: center;
    justify-content: center;
}
.pm-option.selected .pm-check {
    display: flex;
}
.pm-check svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    flex-wrap: wrap;
}
.btn-prev {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 9px;
    border: 1.5px solid var(--bd);
    background: #fff;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mu);
    transition: var(--tr);
}
.btn-prev:hover {
    border-color: var(--vc);
    color: var(--vf);
}
.btn-prev svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.btn-next {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 26px;
    border-radius: 9px;
    background: var(--vf);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
}
.btn-next:hover {
    background: var(--vh);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.3);
}
.btn-next svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.btn-next.btn-submit-final {
    background: var(--or);
}
.btn-next.btn-submit-final:hover {
    background: #a87820;
}
.success-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto 32px;
    text-align: left;
}
@media (min-width: 480px) {
    .success-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}
.ss-item {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.ss-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
.ss-ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.ss-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 2px;
}
.ss-sub {
    font-size: 11px;
    color: var(--mu);
}
.form-footer-link {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: var(--mu);
}
.form-footer-link a {
    color: var(--vf);
    font-weight: 700;
}

/* --------------------------------------------
   15. PAGE PROFESSION
-------------------------------------------- */
.intro-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
@media (min-width: 768px) {
    .intro-layout {
        grid-template-columns: 1fr 1fr;
        gap: 52px;
    }
}
.intro-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3.5vw, 32px);
    margin-bottom: 12px;
}
.intro-text p {
    color: var(--mu);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
}
.badge-green {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.badge-gold {
    background: rgba(201, 149, 42, 0.12);
    color: var(--or);
    border: 1px solid rgba(201, 149, 42, 0.3);
}
.badge-muted {
    background: var(--gc);
    color: var(--mu);
    border: 1px solid var(--bd);
}
.badge svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.spec-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .spec-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.spec-card {
    border-radius: 14px;
    padding: 26px 22px;
    border: 2px solid var(--bd);
    transition: var(--tr);
}
.spec-card.sf {
    border-color: rgba(160, 78, 152, 0.25);
    background: linear-gradient(135deg, rgba(237, 233, 246, 0.8), rgba(192, 195, 228, 0.2));
}
.spec-card.ma {
    border-color: rgba(101, 38, 130, 0.2);
    background: linear-gradient(135deg, rgba(74, 21, 112, 0.06), rgba(101, 38, 130, 0.08));
}
.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(101, 38, 130, 0.13);
}
.spec-icon {
    font-size: 36px;
    margin-bottom: 14px;
}
.spec-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: var(--nr);
    margin-bottom: 8px;
}
.spec-card > p {
    font-size: 13.5px;
    color: var(--mu);
    margin-bottom: 14px;
    line-height: 1.65;
}
.spec-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.spec-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--mu);
}
.spec-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vc);
    flex-shrink: 0;
    margin-top: 6px;
}
.formation-section {
    background: var(--gc);
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}
@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.step {
    padding: 28px 22px;
    background: #fff;
    border: 1.5px solid var(--bd);
    position: relative;
    transition: var(--tr);
}
@media (min-width: 600px) {
    .step:nth-child(odd) {
        border-right: none;
    }
    .step:nth-child(1),
    .step:nth-child(2) {
        border-bottom: none;
    }
}
@media (min-width: 900px) {
    .step {
        border-right: none;
        border-bottom: none;
    }
    .step:last-child {
        border-right: 1.5px solid var(--bd);
    }
}
.step:hover {
    background: var(--mp);
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vf);
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 7px;
}
.step p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.65;
}
.step.last .step-num {
    background: var(--or);
}
.cond-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 600px) {
    .cond-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .cond-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
.cond-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 13px;
    align-items: flex-start;
    transition: var(--tr);
}
.cond-card:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 22px rgba(101, 38, 130, 0.1);
}
.cond-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cond-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.cond-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 4px;
}
.cond-card p {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.6;
}
.photo-banner {
    height: 200px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 600px) {
    .photo-banner {
        height: 240px;
    }
}
.photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.photo-banner-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(74, 21, 112, 0.7) 0%, rgba(74, 21, 112, 0.1) 100%);
    display: flex;
    align-items: center;
    padding: 0 24px;
}
@media (min-width: 768px) {
    .photo-banner-ov {
        padding: 0 48px;
    }
}
.photo-banner-ov h3 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 700;
    max-width: 480px;
    line-height: 1.3;
}
.photo-banner-ov h3 em {
    color: var(--oc);
    font-style: italic;
}
.deonto-section {
    background: linear-gradient(135deg, var(--vh) 0%, var(--vf) 70%, var(--vc) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.deonto-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
    pointer-events: none;
}
.deonto-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 768px) {
    .deonto-layout {
        grid-template-columns: 1fr 1fr;
        gap: 52px;
    }
}
.deonto-content h2 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: clamp(24px, 3.5vw, 34px);
    margin-bottom: 12px;
}
.deonto-content > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.deonto-principles {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dp-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.dp-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dp-ico svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}
.dp-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.dp-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}
.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--or);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    margin-top: 24px;
}
.btn-gold-sm:hover {
    background: #a87820;
}
.btn-gold-sm svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.deonto-chips {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.deonto-chips h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}
.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.chip svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.deonto-rev {
    margin-top: 18px;
    padding: 16px;
    background: rgba(216, 27, 138, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(216, 27, 138, 0.2);
    text-align: center;
}
.deonto-rev .rev-label {
    color: var(--oc);
    font-size: 11.5px;
    font-weight: 700;
}
.deonto-rev .rev-date {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}
.deonto-rev .rev-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-top: 3px;
}
.droits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .droits-layout {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}
.droits-box {
    border-radius: 14px;
    padding: 26px 22px;
    border: 1.5px solid var(--bd);
}
.droits-box.green {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.8), rgba(187, 247, 208, 0.2));
    border-color: #bbf7d0;
}
.droits-box.red {
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.8), rgba(254, 202, 202, 0.2));
    border-color: #fecaca;
}
.droits-box h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.droits-box.green h3 {
    color: #166534;
}
.droits-box.red h3 {
    color: #991b1b;
}
.droits-box h3 svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.droits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.droits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--mu);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bd);
}
.droits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.dl-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.droits-box.green .dl-ico {
    background: #dcfce7;
}
.droits-box.red .dl-ico {
    background: #fee2e2;
}
.dl-ico svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    fill: none;
}
.droits-box.green .dl-ico svg {
    stroke: #166534;
}
.droits-box.red .dl-ico svg {
    stroke: #991b1b;
}

/* --------------------------------------------
   16. PAGE ORDRE
-------------------------------------------- */
.anchor-nav {
    display: flex;
    gap: 0;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}
.an-item {
    flex: 1;
    min-width: 120px;
    padding: 11px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: var(--tr);
}
.an-item:last-child {
    border-right: none;
}
.an-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
@media (max-width: 480px) {
    .an-item {
        min-width: 50%;
    }
    .an-item:nth-child(2n) {
        border-right: none;
    }
    .an-item:nth-child(1),
    .an-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}
.history-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 768px) {
    .history-layout {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}
.timeline {
    position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--bd);
    border-radius: 2px;
}
.tl-item {
    position: relative;
    margin-bottom: 28px;
}
.tl-item:last-child {
    margin-bottom: 0;
}
.tl-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--vc);
    box-shadow: 0 0 0 3px var(--mp);
    z-index: 1;
}
.tl-dot.active {
    background: var(--or);
    box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.25);
}
.tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--vc);
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.tl-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 4px;
}
.tl-item p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.65;
}
.stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.stat-card {
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
}
.stat-card.purple {
    background: var(--mp);
}
.stat-card.gold {
    background: linear-gradient(135deg, rgba(201, 149, 42, 0.15), rgba(240, 208, 128, 0.25));
    border: 1px solid rgba(201, 149, 42, 0.2);
}
.stat-card .n {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
}
.stat-card.gold .n {
    color: var(--or);
}
.stat-card .l {
    font-size: 11px;
    color: var(--mu);
    margin-top: 4px;
}
.history-img {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}
@media (min-width: 768px) {
    .history-img {
        height: 360px;
    }
}
.history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.missions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px) {
    .missions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .missions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.mc {
    background: #fff;
    border-radius: 13px;
    padding: 24px 22px;
    border: 1.5px solid var(--bd);
    transition: var(--tr);
}
.mc:hover {
    border-color: var(--vc);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(101, 38, 130, 0.12);
}
.mc-ico {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.mc-ico svg {
    width: 24px;
    height: 24px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.mc h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--nr);
}
.mc p {
    color: var(--mu);
    font-size: 13px;
    line-height: 1.7;
}
.org-section {
    background: var(--gc);
}
.org-chart {
    max-width: 760px;
    margin: 0 auto;
}
.org-top {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}
.org-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    position: relative;
    transition: var(--tr);
}
.org-card:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 24px rgba(101, 38, 130, 0.12);
}
.org-card.head {
    background: linear-gradient(135deg, var(--vh), var(--vf));
    border-color: transparent;
    min-width: 220px;
}
.org-card.head .role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}
.org-card.head .name {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.org-card.head .sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}
.org-card .role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vc);
    margin-bottom: 3px;
}
.org-card .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
}
.org-card .sub {
    font-size: 11px;
    color: var(--mu);
    margin-top: 2px;
}
.org-connector {
    width: 2px;
    height: 28px;
    background: var(--bd);
    margin: 0 auto;
}
.org-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.org-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.org-branch-line {
    width: 2px;
    height: 20px;
    background: var(--bd);
}
.com-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 130px;
    transition: var(--tr);
}
.com-card:hover {
    border-color: var(--vc);
}
.com-card .cr {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 3px;
}
.com-card .cn {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
}
.council-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
}
@media (min-width: 600px) {
    .council-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.council-card {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    transition: var(--tr);
}
.council-card:hover {
    border-color: var(--vc);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(101, 38, 130, 0.1);
}
.c-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
}
.c-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 3px;
}
.c-role {
    font-size: 11px;
    color: var(--vc);
    font-weight: 600;
}
.textes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 600px) {
    .textes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .textes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
.tc {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--tr);
}
.tc:hover {
    border-color: var(--vc);
    box-shadow: 0 8px 24px rgba(101, 38, 130, 0.1);
}
.tc-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tc-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--vf);
    stroke-width: 1.7;
    fill: none;
}
.tc h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
    margin-bottom: 5px;
    line-height: 1.4;
}
.tc p {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.6;
    margin-bottom: 10px;
}
.dl-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vf);
}
.dl-link svg {
    width: 13px;
    height: 13px;
    stroke: var(--vf);
    stroke-width: 2;
    fill: none;
}
.dl-link:hover {
    color: var(--vc);
}

/* --------------------------------------------
   17. PAGE REPERTOIRE
-------------------------------------------- */
.search-hero {
    background: linear-gradient(135deg, var(--vh) 0%, var(--vf) 55%, var(--vc) 100%);
    padding: 48px 0 0;
    position: relative;
    overflow: hidden;
}
.search-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20h4v4h-4zm-4-4h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 768px) {
    .search-hero {
        padding: 64px 0 0;
    }
}
.sh-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}
@media (min-width: 768px) {
    .sh-inner {
        padding-bottom: 52px;
    }
}
.search-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .search-panel {
        padding: 24px 28px;
    }
}
.sp-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 600px) {
    .sp-row {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 900px) {
    .sp-row {
        grid-template-columns: 2fr 1fr 1fr 1fr auto;
    }
}
.sp-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sp-group label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}
.sp-group input,
.sp-group select {
    padding: 9px 12px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    outline: none;
    width: 100%;
}
.sp-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.sp-group select option {
    background: var(--vf);
    color: #fff;
}
.sp-group input:focus,
.sp-group select:focus {
    border-color: var(--oc);
}
.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--or);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    transition: var(--tr);
    white-space: nowrap;
    height: 100%;
    align-self: flex-end;
}
.btn-search:hover {
    background: #a87820;
    box-shadow: 0 6px 18px rgba(201, 149, 42, 0.35);
}
.btn-search svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.hero-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 140px;
    overflow: hidden;
}
@media (min-width: 600px) {
    .hero-strip {
        height: 180px;
    }
}
.hs-cell {
    position: relative;
    overflow: hidden;
}
.hs-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hs-cell:hover img {
    transform: scale(1.06);
}
.hs-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 21, 112, 0.75), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 10px 12px;
}
.hs-ov span {
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
@media (min-width: 600px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
.stat-mini {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 11px;
    padding: 16px 14px;
    text-align: center;
    transition: var(--tr);
}
.stat-mini:hover {
    border-color: var(--vc);
}
.stat-mini .n {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--vf);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-mini .l {
    font-size: 11px;
    color: var(--mu);
}
.verify-tool {
    background: var(--gc);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    border: 1.5px solid var(--bd);
    margin-bottom: 28px;
}
@media (min-width: 768px) {
    .verify-tool {
        padding: 18px 22px;
    }
}
.vt-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--mp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vt-ico svg {
    width: 20px;
    height: 20px;
    stroke: var(--vf);
    stroke-width: 1.8;
    fill: none;
}
.vt-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--nr);
    white-space: nowrap;
}
.vt-wrap {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--bd);
    background: #fff;
    min-width: 200px;
}
.vt-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 9px 12px;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    color: var(--nr);
    font-family: monospace;
}
.vt-wrap input::placeholder {
    color: var(--mu);
    font-family: "Nunito", sans-serif;
}
.vt-btn {
    padding: 9px 16px;
    background: var(--vf);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    white-space: nowrap;
    transition: var(--tr);
}
.vt-btn:hover {
    background: var(--vh);
}
#vt-res {
    font-size: 12.5px;
    min-width: 180px;
}
.table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--bd);
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.members-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.members-table thead {
    background: var(--gc);
}
.members-table th {
    padding: 11px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--mu);
    text-align: left;
    border-bottom: 1.5px solid var(--bd);
    white-space: nowrap;
}
.members-table td {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--mu);
    border-bottom: 1px solid var(--bd);
    vertical-align: middle;
}
.members-table tbody tr:last-child td {
    border-bottom: none;
}
.members-table tbody tr:hover {
    background: var(--gc);
}
.member-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.m-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.m-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--nr);
}
.m-spec {
    font-size: 11px;
    color: var(--mu);
}
.order-num {
    font-family: monospace;
    font-size: 12px;
    background: var(--gc);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--vf);
    font-weight: 600;
    border: 1px solid var(--bd);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 700;
}
.status-active {
    background: #dcfce7;
    color: #166534;
}
.status-ret {
    background: #fef9c3;
    color: #854d0e;
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.status-active .status-dot {
    background: #166534;
}
.status-ret .status-dot {
    background: #854d0e;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    border: 1.5px solid var(--bd);
    color: var(--mu);
    background: #fff;
    transition: var(--tr);
}
.action-btn:hover {
    border-color: var(--vc);
    color: var(--vf);
}
.action-btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.member-cards {
    display: none;
}
@media (max-width: 640px) {
    .table-wrap {
        display: none;
    }
    .member-cards {
        display: grid;
        gap: 12px;
    }
}
.mcard {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 12px;
    padding: 16px;
    transition: var(--tr);
}
.mcard:hover {
    border-color: var(--vc);
    box-shadow: 0 6px 18px rgba(101, 38, 130, 0.1);
}
.mcard-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.mcard-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.mcard-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr);
}
.mcard-spec {
    font-size: 11.5px;
    color: var(--mu);
}
.mcard-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.mf {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mf-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--mu);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.mf-val {
    font-size: 12.5px;
    color: var(--nr);
    font-weight: 600;
}
.mcard-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.map-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 768px) {
    .map-layout {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        align-items: start;
    }
}
.map-placeholder {
    background: #fff;
    border: 1.5px solid var(--bd);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
}
.map-placeholder svg.map-ico {
    width: 52px;
    height: 52px;
    stroke: var(--vf);
    stroke-width: 1.2;
    fill: none;
    margin: 0 auto 14px;
}
.map-placeholder h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: var(--nr);
    margin-bottom: 6px;
}
.map-placeholder p {
    font-size: 13px;
    color: var(--mu);
    margin-bottom: 16px;
}
.map-chips {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.map-chip {
    font-size: 11.5px;
    padding: 5px 12px;
    border-radius: 99px;
    font-weight: 700;
}
.map-chip.primary {
    background: var(--vf);
    color: #fff;
}
.map-chip.muted {
    background: var(--gc);
    color: var(--mu);
    border: 1px solid var(--bd);
}
.map-iframe {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    border: 1.5px solid var(--bd);
    overflow: hidden;
}
@media (min-width: 768px) {
    .map-iframe {
        height: 380px;
    }
}
.regions-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 18px;
}
.region-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--bd);
}
.region-row:last-child {
    border-bottom: none;
}
.region-name {
    font-size: 13px;
    color: var(--mu);
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.region-name svg {
    width: 13px;
    height: 13px;
    stroke: var(--vc);
    stroke-width: 2;
    fill: none;
}
.bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--gc);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(to right, var(--vf), var(--vc));
    transition: width 0.8s ease;
}
.region-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--vf);
    min-width: 48px;
    text-align: right;
}
.verify-band {
    background: linear-gradient(135deg, var(--vh), var(--vc));
    padding: 48px 0;
}
.vb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
@media (min-width: 768px) {
    .vb-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }
}
.vb-grid h2 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 8px;
}
.vb-lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
}
.vb-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 13px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.vb-panel label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.vb-panel input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    outline: none;
    margin-bottom: 10px;
}
.vb-panel input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: "Nunito", sans-serif;
}
.vb-panel input:focus {
    border-color: var(--oc);
}
#vb-res {
    margin-top: 9px;
    font-size: 12.5px;
}

/* --------------------------------------------
   18. PAGES STATIQUES (mentions, politique)
-------------------------------------------- */
.page-hero-content {
    position: relative;
    z-index: 2;
}
.mb-16 {
    margin-bottom: 16px;
}
.current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* --------------------------------------------
   19. CTA BAND & FOOTER (générique)
-------------------------------------------- */
.cta-band {
    background: var(--vh);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -40px;
    pointer-events: none;
}
.cta-band h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 4vw, 36px);
    color: #fff;
    margin-bottom: 9px;
}
.cta-lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    max-width: 420px;
    margin: 0 auto 24px;
}
.cta-acts {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.footer {
    background: var(--nr);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}
.ft {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 16px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 600px) {
    .ft {
        grid-template-columns: repeat(2, 1fr);
        padding: 44px 24px 32px;
    }
}
@media (min-width: 960px) {
    .ft {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.fb .abbr {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.fb .desc {
    font-size: 12px;
    line-height: 1.7;
    margin: 9px 0 16px;
}
.fsoc {
    display: flex;
    gap: 7px;
}
.fsoc a {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}
.fsoc a:hover {
    background: var(--vc);
}
.fsoc svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.fc h5 {
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.fc a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12.5px;
    transition: color 0.2s;
}
.fc a:hover {
    color: var(--vc);
}
.fbot {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 11.5px;
}
@media (min-width: 600px) {
    .fbot {
        padding: 14px 24px;
    }
}

/* --------------------------------------------
   20. ANIMATIONS & UTILITAIRES
-------------------------------------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-5px);
    }
    40%,
    80% {
        transform: translateX(5px);
    }
}
@keyframes pop {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.au {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.au.vis {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.08s !important;
}
.d2 {
    transition-delay: 0.16s !important;
}
.d3 {
    transition-delay: 0.24s !important;
}
.d4 {
    transition-delay: 0.32s !important;
}
/* Réinitialisation des compteurs pour les inputs number */
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
