        :root {
            --g-dark: #1a5c2a;
            --g-mid: #256b34;
            --g-bright: #3aaa4c;
            --g-light: #e6f4ea;
            --g-pale: #f3faf5;
            --gray-dark: #111827;
            --gray-mid: #4b5563;
            --gray-light: #9ca3af;
            --gray-bg: #f9fafb;
            --gray-line: #e5e7eb;
            --white: #ffffff;
            --radius: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, .09);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .13);
        }

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

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--gray-dark);
            background: var(--white);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased
        }

        /* ─── TYPO ─── */
        h1,
        h2,
        h3,
        h4,
        .bb {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            letter-spacing: .04em;
        }

        /* ═══════════ NAV ═══════════ */
        nav {
            position: sticky;
            top: 0;
            z-index: 300;
            background: rgba(255, 255, 255, .97);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--gray-line);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            height: 74px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-decoration: none;
            border: none;
            background: none;
            flex-shrink: 0
        }

        .nav-logo svg {
            flex-shrink: 0;
            width: 34px;
            height: 26px
        }

        .nav-logo-text {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 22px;
            letter-spacing: .1em;
            color: var(--gray-dark)
        }

        .nav-logo-text span {
            color: var(--g-dark)
        }

        .nav-tabs {
            display: flex;
            gap: 2px
        }

        .nav-tab {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            color: var(--gray-mid);
            transition: all .17s;
            border: none;
            background: none;
            font-family: 'Outfit', sans-serif;
        }

        .nav-tab:hover {
            color: var(--g-dark);
            background: var(--g-pale)
        }

        .nav-tab.active {
            background: var(--g-light);
            color: var(--g-dark)
        }

        .nav-actions {
            display: flex;
            gap: 10px;
            align-items: center
        }

        a {
            text-decoration-line: none !important;
        }

        .btn-outline {
            padding: 9px 20px;
            border: 1.5px solid var(--g-dark);
            border-radius: 8px;
            color: var(--g-dark);
            font-size: 13px;
            font-weight: 700;
            background: none;
            cursor: pointer;
            transition: all .17s;
            font-family: 'Outfit', sans-serif;
            /* text-decoration: none; */
        }

        .btn-outline:hover {
            background: var(--g-light)
        }

        .btn-solid {
            padding: 9px 20px;
            background: var(--g-dark);
            border: 1.5px solid var(--g-dark);
            border-radius: 8px;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all .17s;
            font-family: 'Outfit', sans-serif;
        }

        .btn-solid:hover {
            background: var(--g-mid);
            transform: translateY(-1px)
        }

        /* ═══════════ SECTIONS ═══════════ */
        .section {
            /* display: none; */
            animation: fadeIn .28s ease
        }

        .section.active {
            display: block
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px)
            }

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

        /* ══════════════════════════════════
   ACCUEIL
══════════════════════════════════ */

        /* HERO */
        .hero {
            display: grid;
            grid-template-columns: 56% 44%;
            min-height: 560px;
        }

        .hero-left {
            padding: 64px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 22px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--g-light);
            color: var(--g-dark);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            width: fit-content;
        }

        .hero-eyebrow-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--g-bright);
            animation: pulse 2s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .5;
                transform: scale(.85)
            }
        }

        .hero-title {
            font-size: clamp(52px, 7vw, 88px);
            line-height: .93;
            color: var(--gray-dark);
        }

        .hero-title .accent {
            color: var(--g-dark)
        }

        .hero-sub {
            font-size: 17px;
            color: var(--gray-mid);
            line-height: 1.65;
            max-width: 430px
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap
        }

        .btn-hero {
            padding: 14px 32px;
            background: var(--g-dark);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
            font-family: 'Outfit', sans-serif;
        }

        .btn-hero:hover {
            background: var(--g-mid);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 92, 42, .28)
        }

        .btn-ghost {
            padding: 14px 32px;
            border: 2px solid var(--gray-line);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            background: none;
            color: var(--gray-dark);
            transition: all .2s;
            font-family: 'Outfit', sans-serif;
        }

        .btn-ghost:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            padding-top: 10px;
            border-top: 1px solid var(--gray-line);
            margin-top: 4px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px
        }

        .stat-num {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 32px;
            color: var(--g-dark);
            line-height: 1
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-light);
            font-weight: 500
        }

        .hero-right {
            background: transparent;
            position: relative;
            min-height: 560px;
            overflow: hidden
        }

        .hero-right::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 130px;
            z-index: 2;
            background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
            display: block;
            position: absolute;
            inset: 0
        }

        .hero-badge {
            position: absolute;
            bottom: 32px;
            left: 24px;
            background: #fff;
            border-radius: 14px;
            padding: 13px 18px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .badge-stars {
            color: #f59e0b;
            font-size: 14px;
            margin-bottom: 2px
        }

        .badge-meta strong {
            font-size: 15px;
            font-weight: 700;
            display: block
        }

        .badge-meta span {
            font-size: 12px;
            color: var(--gray-light)
        }

        .hero-badge2 {
            position: absolute;
            top: 28px;
            right: 24px;
            background: var(--g-dark);
            color: #fff;
            border-radius: 14px;
            padding: 15px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
            text-align: center;
        }

        .badge2-num {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 30px;
            line-height: 1;
            color: #fff
        }

        .badge2-sub {
            font-size: 11px;
            opacity: .8;
            font-weight: 500
        }

        /* WHY */
        .why-section {
            padding: 88px 64px;
            background: #fff
        }

        .section-eyebrow {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--g-dark);
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(40px, 5vw, 60px);
            line-height: 1.02;
            margin-bottom: 12px
        }

        .section-sub {
            font-size: 16px;
            color: var(--gray-mid);
            max-width: 500px;
            line-height: 1.65;
            margin-bottom: 48px
        }

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

        .feature-card {
            border-radius: var(--radius);
            padding: 30px;
            transition: all .2s
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md)
        }

        .fc-border {
            border: 1.5px solid var(--gray-line);
            background: #fff
        }

        .fc-green {
            background: var(--g-light)
        }

        .fc-dark {
            background: var(--g-dark);
            color: #fff
        }

        .fc-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .fc-icon-light {
            background: var(--g-light)
        }

        .fc-icon-pale {
            background: rgba(255, 255, 255, .15)
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif
        }

        .feature-card p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--gray-mid)
        }

        .fc-dark p {
            color: rgba(255, 255, 255, .75)
        }

        /* STEPS 4 */
        .steps-section {
            padding: 88px 64px;
            background: var(--g-pale)
        }

        .timeline-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            position: relative;
            margin-top: 52px;
        }

        .tl-line {
            position: absolute;
            top: 30px;
            left: calc(12.5%);
            right: calc(12.5%);
            height: 2px;
            background: var(--g-dark);
            z-index: 0;
        }

        .tl-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .tl-bubble {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 3px solid var(--g-pale);
            box-shadow: 0 0 0 3px var(--g-dark);
        }

        .tl-step h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif
        }

        .tl-step p {
            font-size: 13px;
            color: var(--gray-mid);
            line-height: 1.6
        }

        /* CTA BANNER */
        .cta-banner {
            background: var(--g-dark);
            padding: 72px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-banner h2 {
            font-size: clamp(38px, 4.5vw, 56px);
            color: #fff;
            line-height: 1.02;
            margin-bottom: 10px
        }

        .cta-banner p {
            color: rgba(255, 255, 255, .75);
            font-size: 16px;
            max-width: 440px
        }

        .btn-white {
            padding: 15px 38px;
            background: #fff;
            color: var(--g-dark);
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: all .2s;
            font-family: 'Outfit', sans-serif;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .22)
        }

        /* ══════════════════════════════════
   NOS SERVICES
══════════════════════════════════ */
        .page-hero {
            background: var(--g-dark);
            padding: 72px 64px;
            color: #fff
        }

        .page-hero .section-eyebrow {
            color: rgba(255, 255, 255, .5)
        }

        .page-hero .section-title {
            color: #fff;
            margin-bottom: 12px
        }

        .page-hero .section-sub {
            color: rgba(255, 255, 255, .72);
            margin-bottom: 0
        }

        .services-body {
            padding: 72px 64px
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 48px
        }

        .service-card {
            border-radius: var(--radius);
            border: 1.5px solid var(--gray-line);
            overflow: hidden;
            transition: all .2s
        }

        .service-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px)
        }

        .sc-head {
            padding: 22px 26px;
            background: var(--g-light)
        }

        .sc-level {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 28px;
            color: var(--g-dark);
            margin-bottom: 6px
        }

        .sc-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 100px;
            background: #fff;
            color: var(--g-dark);
        }

        .sc-badge-en {
            background: #fef3c7;
            color: #92400e
        }

        .sc-body {
            padding: 22px 26px
        }

        .sc-body h4 {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gray-light);
            margin-bottom: 8px;
        }

        .matiere-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-bottom: 14px
        }

        .mtag {
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 6px;
            background: var(--gray-bg);
            color: var(--gray-dark)
        }

        .sc-note {
            font-size: 13px;
            color: var(--gray-mid);
            display: flex;
            gap: 6px;
            align-items: flex-start;
            line-height: 1.5
        }

        /* ZOOM SECTION */
        .zoom-section {
            background: var(--g-dark);
            padding: 72px 64px;
            color: #fff
        }

        .zoom-section .section-eyebrow {
            color: rgba(255, 255, 255, .5)
        }

        .zoom-section .section-title {
            color: #fff;
            margin-bottom: 12px
        }

        .zoom-section .section-sub {
            color: rgba(255, 255, 255, .72);
            max-width: 550px;
            margin-bottom: 52px
        }

        .zoom-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .zoom-card {
            background: rgba(255, 255, 255, .1);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, .12)
        }

        .zoom-card-icon {
            font-size: 28px;
            margin-bottom: 14px
        }

        .zoom-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif
        }

        .zoom-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            line-height: 1.65
        }

        .zoom-feature-strip {
            margin-top: 36px;
            background: rgba(255, 255, 255, .07);
            border-radius: 12px;
            padding: 24px 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

        .zoom-feat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, .85);
            font-weight: 600
        }

        .zoom-feat::before {
            content: '✓';
            color: var(--g-bright);
            font-weight: 700
        }

        /* PROTOCOLE */
        .protocol-band {
            padding: 72px 64px;
            background: var(--g-pale)
        }

        .protocol-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 40px
        }

        .proto-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px;
            border-top: 4px solid var(--g-dark);
            box-shadow: var(--shadow-sm)
        }

        .proto-label {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 22px;
            color: var(--g-dark);
            margin-bottom: 16px
        }

        .proto-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .proto-card ul li {
            font-size: 14px;
            color: var(--gray-mid);
            line-height: 1.55;
            display: flex;
            gap: 10px
        }

        .proto-card ul li::before {
            content: '✓';
            color: var(--g-dark);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px
        }

        /* ENGAGEMENTS */
        .engagements-band {
            background: #fff;
            padding: 72px 64px
        }

        .eng-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 44px
        }

        .eng-item {
            background: var(--gray-bg);
            border-radius: var(--radius);
            padding: 26px 22px;
            text-align: center;
            transition: all .2s;
        }

        .eng-item:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px)
        }

        .eng-icon {
            font-size: 28px;
            margin-bottom: 12px
        }

        .eng-item h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 7px;
            font-family: 'Outfit', sans-serif
        }

        .eng-item p {
            font-size: 13px;
            color: var(--gray-mid);
            line-height: 1.55
        }

        /* INTERVENANTS */
        .interv-band {
            padding: 72px 64px;
            background: var(--g-pale)
        }

        .interv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 44px
        }

        .interv-card {
            text-align: center;
            padding: 36px 22px;
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow-sm)
        }

        .interv-av {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: var(--g-light);
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        .interv-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            font-family: 'Outfit', sans-serif
        }

        .interv-school {
            font-size: 13px;
            color: var(--g-dark);
            font-weight: 600;
            margin-bottom: 9px
        }

        .interv-card p {
            font-size: 13px;
            color: var(--gray-mid);
            line-height: 1.55
        }

        /* ══════════════════════════════════
   TARIFS
══════════════════════════════════ */
        .tarifs-hero {
            background: var(--g-pale);
            padding: 64px 64px 0
        }

        .tarifs-hero-inner {
            max-width: 820px;
            padding-bottom: 44px
        }

        .tarifs-hero h1 {
            font-size: clamp(48px, 6vw, 70px);
            margin-bottom: 12px
        }

        .tarifs-hero p {
            font-size: 17px;
            color: var(--gray-mid);
            line-height: 1.6;
            margin-bottom: 32px
        }

        .toggle-bar {
            display: inline-flex;
            align-items: center;
            gap: 0;
            background: #fff;
            border-radius: 10px;
            padding: 4px;
            border: 1.5px solid var(--gray-line);
        }

        .toggle-opt {
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all .17s;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-mid);
            background: none;
        }

        .toggle-opt.active {
            background: var(--g-dark);
            color: #fff
        }

        .tarifs-body {
            padding: 44px 64px 72px
        }

        .tarifs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 48px
        }

        .tarif-card {
            border-radius: var(--radius);
            border: 1.5px solid var(--gray-line);
            overflow: hidden;
            transition: all .2s;
        }

        .tarif-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: var(--g-dark)
        }

        .tc-head {
            padding: 20px 24px;
            background: var(--g-pale);
            border-bottom: 1.5px solid var(--gray-line)
        }

        .tc-level {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 26px;
            color: var(--gray-dark);
            margin-bottom: 6px
        }

        .tc-format {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
        }

        .tf-presentiel {
            background: #dbeafe;
            color: #1d4ed8
        }

        .tf-enligne {
            background: #fef3c7;
            color: #92400e
        }

        .tc-body {
            padding: 20px 24px
        }

        .tc-price-main {
            display: flex;
            align-items: baseline;
            gap: 3px;
            margin-bottom: 6px
        }

        .tc-amount {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 48px;
            color: var(--g-dark);
            line-height: 1
        }

        .tc-eur {
            font-size: 20px;
            font-weight: 700;
            color: var(--g-dark);
            margin-right: 2px
        }

        .tc-period {
            font-size: 12px;
            color: var(--gray-light);
            align-self: flex-end;
            padding-bottom: 4px
        }

        .tc-hourly {
            font-size: 13px;
            color: var(--gray-dark);
            font-weight: 700;
            background: var(--g-light);
            padding: 4px 12px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 7px;
        }

        .tc-split {
            font-size: 13px;
            color: var(--gray-mid);
            margin-bottom: 18px
        }

        .tc-split span {
            font-weight: 700;
            color: var(--gray-dark)
        }

        .btn-tc {
            width: 100%;
            padding: 11px;
            border: 1.5px solid var(--g-dark);
            border-radius: 8px;
            color: var(--g-dark);
            font-weight: 700;
            font-size: 14px;
            background: none;
            cursor: pointer;
            transition: all .2s;
            font-family: 'Outfit', sans-serif;
        }

        .btn-tc:hover {
            background: var(--g-dark);
            color: #fff
        }

        /* REMISES */
        .remises-band {
            background: var(--g-light);
            border-radius: var(--radius);
            padding: 36px 44px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-bottom: 52px;
        }

        .remise-item h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--g-dark);
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif
        }

        .remise-item p {
            font-size: 14px;
            color: var(--gray-mid);
            line-height: 1.65
        }

        .remise-badge {
            display: inline-block;
            background: var(--g-dark);
            color: #fff;
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 20px;
            padding: 4px 14px;
            border-radius: 6px;
            margin-bottom: 8px;
        }

        /* SIMULATEUR */
        .sim-wrapper {
            background: var(--gray-bg);
            border-radius: var(--radius);
            padding: 44px
        }

        .sim-wrapper>h2 {
            font-size: 36px;
            margin-bottom: 6px
        }

        .sim-wrapper>p {
            font-size: 15px;
            color: var(--gray-mid);
            margin-bottom: 28px
        }

        .sim-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 28px;
            align-items: start
        }

        .sim-left {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .sim-enfants-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap
        }

        .enf-tab {
            padding: 8px 18px;
            border-radius: 8px;
            border: 1.5px solid var(--gray-line);
            background: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all .15s;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-mid);
        }

        .enf-tab.active {
            border-color: var(--g-dark);
            background: var(--g-light);
            color: var(--g-dark)
        }

        .enf-tab.del-tab {
            border-color: #fca5a5;
            color: #dc2626;
            background: none;
            padding: 8px 12px
        }

        .enf-tab.del-tab:hover {
            background: #fee2e2
        }

        .enf-form-panel {
            background: #fff;
            border-radius: 12px;
            padding: 26px;
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .form-row2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .fgroup {
            display: flex;
            flex-direction: column;
            gap: 5px
        }

        .fgroup label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gray-light)
        }

        .fgroup input,
        .fgroup select {
            padding: 10px 14px;
            border: 1.5px solid var(--gray-line);
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-dark);
            outline: none;
            transition: border-color .14s;
            background: #fff;
        }

        .fgroup input:focus,
        .fgroup select:focus {
            border-color: var(--g-dark)
        }

        .fgroup select:disabled {
            opacity: .4;
            cursor: not-allowed
        }

        .matiere-boxes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px
        }

        .mcb {
            display: none
        }

        .mcb-label {
            padding: 6px 13px;
            border: 1.5px solid var(--gray-line);
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: all .14s;
            user-select: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
        }

        .mcb:checked+.mcb-label {
            border-color: var(--g-dark);
            background: var(--g-light);
            color: var(--g-dark);
            font-weight: 700
        }

        .mcb:disabled+.mcb-label {
            opacity: .35;
            cursor: not-allowed;
            pointer-events: none
        }

        .vac-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer
        }

        .vac-row input[type=checkbox] {
            width: 16px;
            height: 16px;
            accent-color: var(--g-dark)
        }

        .add-enf-btn {
            padding: 11px;
            border: 2px dashed #d1d5db;
            border-radius: 10px;
            background: none;
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-light);
            cursor: pointer;
            transition: all .14s;
            font-family: 'Outfit', sans-serif;
        }

        .add-enf-btn:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .sim-result {
            background: #fff;
            border-radius: 12px;
            padding: 26px;
            position: sticky;
            top: 82px;
            box-shadow: var(--shadow-sm);
        }

        .sim-result-title {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 22px;
            margin-bottom: 18px
        }

        .sim-lines {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 14px
        }

        .sim-line {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 14px;
            color: var(--gray-mid);
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-line);
        }

        .sim-line:last-child {
            border-bottom: none
        }

        .sim-line.is-discount {
            color: var(--g-dark)
        }

        .sim-line.is-total {
            font-weight: 700;
            color: var(--gray-dark);
            font-size: 16px;
            border-top: 2px solid var(--gray-line);
            padding-top: 12px;
            margin-top: 4px;
        }

        .sim-line .val {
            font-weight: 600
        }

        .pay-toggle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--gray-bg);
            border-radius: 8px;
            padding: 4px;
            margin: 14px 0
        }

        .pay-opt {
            padding: 9px;
            border-radius: 6px;
            border: none;
            background: none;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            color: var(--gray-mid);
            transition: all .14s;
            font-family: 'Outfit', sans-serif;
        }

        .pay-opt.active {
            background: #fff;
            color: var(--g-dark);
            box-shadow: 0 1px 4px rgba(0, 0, 0, .1)
        }

        .sim-per-versement {
            font-size: 12px;
            color: var(--gray-light);
            text-align: center;
            margin-bottom: 12px
        }

        .sim-cta-btn {
            width: 100%;
            padding: 13px;
            background: var(--g-dark);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
            font-family: 'Outfit', sans-serif;
        }

        .sim-cta-btn:hover {
            background: var(--g-mid)
        }

        .sim-empty {
            text-align: center;
            padding: 28px 0;
            color: var(--gray-light);
            font-size: 14px
        }

        /* ══════════════════════════════════
   NOS CENTRES
══════════════════════════════════ */
        .centres-body {
            padding: 60px
        }

        .centres-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
            align-items: start;
            margin-bottom: 52px;
        }

        .centres-text h1 {
            font-size: clamp(42px, 5.5vw, 64px);
            line-height: 1;
            margin-bottom: 14px
        }

        .centres-text h1 .accent {
            color: var(--g-dark)
        }

        .centres-text p {
            font-size: 16px;
            color: var(--gray-mid);
            line-height: 1.65
        }

        .map-visual {
            background: var(--g-light);
            border-radius: var(--radius);
            height: 320px;
            position: relative;
            overflow: hidden;
        }

        .map-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(26, 92, 42, .05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(26, 92, 42, .05) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .map-pin {
            position: absolute;
            transform: translate(-50%, -100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer
        }

        .pin-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--g-dark);
            box-shadow: 0 0 0 6px rgba(26, 92, 42, .18);
            border: 2.5px solid #fff
        }

        .pin-label {
            font-size: 10px;
            font-weight: 700;
            background: var(--g-dark);
            color: #fff;
            padding: 3px 9px;
            border-radius: 4px;
            margin-bottom: 4px;
            white-space: nowrap
        }

        .map-footer {
            position: absolute;
            bottom: 14px;
            left: 14px;
            background: #fff;
            border-radius: 10px;
            padding: 10px 16px;
            box-shadow: var(--shadow-sm);
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 7px
        }

        .online-pin {
            background: var(--g-dark);
            color: #fff;
            border-radius: 10px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            position: absolute;
            bottom: 14px;
            right: 14px;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .centres-list {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .centre-card {
            border: 1.5px solid var(--gray-line);
            border-radius: var(--radius);
            padding: 24px;
            cursor: pointer;
            transition: all .2s
        }

        .centre-card:hover,
        .centre-card.active {
            border-color: var(--g-dark);
            background: var(--g-pale)
        }

        .centre-card.active {
            border-left: 4px solid var(--g-dark)
        }

        .cc-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 6px
        }

        .cc-name {
            font-size: 17px;
            font-weight: 700
        }

        .cc-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 100px;
            background: var(--g-light);
            color: var(--g-dark)
        }

        .cc-address {
            font-size: 14px;
            color: var(--gray-mid);
            margin-bottom: 14px
        }

        .cc-jours {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 14px
        }

        .jour {
            padding: 5px 13px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700
        }

        .j-mer {
            background: #dbeafe;
            color: #1d4ed8
        }

        .j-ven {
            background: #ede9fe;
            color: #6d28d9
        }

        .j-sam {
            background: #fef3c7;
            color: #92400e
        }

        .cc-salles {
            border-top: 1px solid var(--gray-line);
            padding-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .salle-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--gray-mid)
        }

        .salle-pill {
            padding: 3px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700
        }

        .sp-complet {
            background: #fee2e2;
            color: #dc2626
        }

        .sp-dispo {
            background: #dcfce7;
            color: #16a34a
        }

        .sp-almost {
            background: #fef3c7;
            color: #b45309
        }

        .creneaux-block {
            margin-top: 52px
        }

        .creneaux-block h2 {
            font-size: clamp(34px, 4vw, 50px);
            margin-bottom: 28px
        }

        .cren-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--radius);
            overflow: hidden
        }

        .cren-table th {
            background: var(--g-dark);
            color: #fff;
            padding: 13px 18px;
            text-align: left;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em
        }

        .cren-table td {
            padding: 13px 18px;
            border-bottom: 1px solid var(--gray-line);
            font-size: 14px
        }

        .cren-table tr:last-child td {
            border-bottom: none
        }

        .cren-table tr:nth-child(even) td {
            background: var(--g-pale)
        }

        .pill {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700
        }

        .p-complet {
            background: #fee2e2;
            color: #dc2626
        }

        .p-1 {
            background: #fef3c7;
            color: #b45309
        }

        .p-2,
        .p-3 {
            background: #dcfce7;
            color: #16a34a
        }

        /* RICH FOOTER */
        footer {
            background: #0d1f13;
            padding: 56px 64px 28px;
            color: rgba(255, 255, 255, .5);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            margin-bottom: 28px;
        }

        .footer-brand {}

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px
        }

        .footer-brand-name {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 20px;
            letter-spacing: .1em;
            color: #fff
        }

        .footer-brand-name span {
            color: var(--g-bright)
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.65;
            color: rgba(255, 255, 255, .5);
            max-width: 260px;
            margin-bottom: 18px
        }

        .footer-socials {
            display: flex;
            gap: 10px
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            cursor: pointer;
            transition: all .17s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--g-dark);
            border-color: var(--g-dark)
        }

        .footer-col h5 {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: rgba(255, 255, 255, .35);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px
        }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            transition: color .15s;
        }

        .footer-col ul li a:hover {
            color: #fff
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, .3);
            flex-wrap: wrap;
            gap: 10px;
        }

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

        .footer-bottom-links a {
            color: rgba(255, 255, 255, .3);
            text-decoration: none;
            transition: color .15s
        }

        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, .6)
        }

        /* ═══ CONNECTED SPACES CSS ═══ */
        .nav-role-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 4px 11px;
            border-radius: 100px;
            background: var(--g-dark);
            color: #fff;
            font-family: 'Outfit', sans-serif
        }

        .nav-user-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px 5px 7px;
            border-radius: 100px;
            background: var(--g-light);
            cursor: default
        }

        .nav-av {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            flex-shrink: 0
        }

        #nav-user-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--g-dark);
            font-family: 'Outfit', sans-serif
        }

        /* AUTH */
        .auth-wrap {
            display: grid;
            grid-template-columns: 360px 1fr;
            min-height: calc(100vh - 74px)
        }

        .auth-left {
            background: var(--g-dark);
            padding: 56px 40px;
            display: flex;
            flex-direction: column;
            gap: 36px;
            position: relative;
            overflow: hidden
        }

        .auth-left::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(58, 170, 76, .12);
            pointer-events: none
        }

        .auth-brand-name {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 24px;
            color: #fff;
            letter-spacing: .1em
        }

        .auth-tagline {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: clamp(34px, 4vw, 48px);
            color: #fff;
            line-height: .96;
            position: relative;
            z-index: 1
        }

        .auth-tagline span {
            color: #3aaa4c
        }

        .auth-feats {
            display: flex;
            flex-direction: column;
            gap: 11px;
            position: relative;
            z-index: 1
        }

        .auth-feat {
            display: flex;
            align-items: center;
            gap: 11px;
            font-size: 13px;
            color: rgba(255, 255, 255, .8)
        }

        .auth-feat-ic {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            background: rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0
        }

        .auth-feat strong {
            font-weight: 700;
            color: #fff;
            font-size: 13px;
            display: block;
            margin-bottom: 1px
        }

        .auth-feat small {
            font-size: 11px;
            color: rgba(255, 255, 255, .5)
        }

        .auth-right {
            background: var(--gray-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 44px 36px
        }

        .auth-panel {
            background: #fff;
            border-radius: 22px;
            padding: 40px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .1)
        }

        .aview {
            display: none
        }

        .aview.active {
            display: block
        }

        .auth-panel h2 {
            font-size: 28px;
            margin-bottom: 4px
        }

        .auth-intro {
            font-size: 13px;
            color: var(--gray-mid);
            margin-bottom: 24px
        }

        .auth-intro button {
            border: none;
            background: none;
            color: var(--g-dark);
            font-weight: 700;
            cursor: pointer;
            font-size: 13px;
            font-family: 'Outfit', sans-serif;
            padding: 0
        }

        .auth-intro button:hover {
            text-decoration: underline
        }

        .role-toggle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
            background: var(--gray-bg);
            padding: 4px;
            border-radius: 11px;
            margin-bottom: 24px
        }

        .role-btn {
            padding: 10px;
            border: none;
            border-radius: 8px;
            background: none;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-mid);
            transition: all .18s
        }

        .role-btn.active {
            background: #fff;
            color: var(--g-dark);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
        }

        .af {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 13px
        }

        .af label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gray-light)
        }

        .af input,
        .af select,
        .af textarea {
            padding: 10px 14px;
            border: 1.5px solid var(--gray-line);
            border-radius: 9px;
            font-size: 13px;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-dark);
            outline: none;
            transition: border-color .13s;
            background: #fff
        }

        .af input:focus,
        .af select:focus,
        .af textarea:focus {
            border-color: var(--g-dark);
            box-shadow: 0 0 0 3px rgba(26, 92, 42, .08)
        }

        .af input::placeholder {
            color: var(--gray-light)
        }

        .af input.is-invalid,
        .af select.is-invalid,
        .af textarea.is-invalid {
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, .08)
        }

        .af .invalid-feedback {
            font-size: 11px;
            color: #dc2626;
            font-weight: 600;
            margin-top: 2px
        }

        .af input.is-valid,
        .af select.is-valid,
        .af textarea.is-valid {
            border-color: var(--g-bright)
        }

        .pw-wrap {
            position: relative;
            display: flex;
            align-items: center
        }

        .pw-wrap input {
            flex: 1;
            padding-right: 42px !important
        }

        .pw-eye {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: var(--gray-light);
            padding: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color .15s
        }

        .pw-eye:hover {
            color: var(--gray-dark)
        }

        .af-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px
        }

        .af-row .af {
            margin-bottom: 0
        }

        .fgt-row {
            text-align: right;
            margin: -4px 0 12px
        }

        .fgt-row button {
            border: none;
            background: none;
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-mid);
            cursor: pointer;
            font-family: 'Outfit', sans-serif
        }

        .fgt-row button:hover {
            color: var(--g-dark)
        }

        .btn-auth {
            width: 100%;
            padding: 12px;
            background: var(--g-dark);
            color: #fff;
            border: none;
            border-radius: 9px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all .18s
        }

        .btn-auth:hover {
            background: var(--g-mid);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(26, 92, 42, .24)
        }

        .auth-div {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 14px 0;
            font-size: 11px;
            color: var(--gray-light);
            font-weight: 600
        }

        .auth-div::before,
        .auth-div::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--gray-line)
        }

        .btn-auth-sec {
            width: 100%;
            padding: 11px;
            border: 1.5px solid var(--gray-line);
            border-radius: 9px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            color: var(--gray-mid);
            background: #fff;
            font-family: 'Outfit', sans-serif;
            transition: all .14s
        }

        .btn-auth-sec:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .back-btn {
            border: none;
            background: none;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-mid);
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            margin-bottom: 18px;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 4px
        }

        .back-btn:hover {
            color: var(--g-dark)
        }

        /* ── Reset password steps ── */
        .reset-steps {
            display: flex;
            align-items: center;
            gap: 0;
            margin: 20px 0 24px;
        }

        .reset-step {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rs-num {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--gray-line);
            color: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            transition: all .3s;
        }

        .rs-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-light);
            transition: color .3s;
        }

        .reset-step.active .rs-num {
            background: var(--g-dark);
            color: #fff;
        }

        .reset-step.active .rs-label {
            color: var(--g-dark);
        }

        .reset-step.done .rs-num {
            background: var(--g-bright);
            color: transparent;
            font-size: 0;
            position: relative;
        }

        .reset-step.done .rs-num::after {
            content: '\2713';
            font-size: 14px;
            color: #fff;
            position: absolute;
        }

        .reset-step.done .rs-label {
            color: var(--g-bright);
        }

        .rs-line {
            flex: 1;
            height: 2px;
            background: var(--gray-line);
            margin: 0 10px;
            transition: background .3s;
        }

        .rs-line.done {
            background: var(--g-bright);
        }

        .reset-panel {
            display: none;
        }

        .reset-panel.active {
            display: block;
        }

        /* ── Loader ── */
        .reset-loader {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 40px 0;
        }

        .reset-loader p {
            font-size: 13px;
            color: var(--gray-mid);
            margin: 0;
        }

        .reset-spinner {
            width: 36px;
            height: 36px;
            border: 3px solid var(--gray-line);
            border-top-color: var(--g-dark);
            border-radius: 50%;
            animation: spin .7s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ── Code digit inputs ── */
        .code-inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }

        .code-digit {
            width: 48px;
            height: 56px;
            text-align: center;
            font-size: 24px;
            font-weight: 800;
            border: 2px solid var(--gray-line);
            border-radius: 10px;
            outline: none;
            transition: border-color .2s;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-dark);
        }

        .code-digit:focus {
            border-color: var(--g-dark);
            box-shadow: 0 0 0 3px rgba(26, 92, 42, .1);
        }

        .resend-row {
            text-align: center;
            font-size: 12px;
            color: var(--gray-mid);
            margin-top: 16px;
        }

        .resend-row button {
            border: none;
            background: none;
            color: var(--g-dark);
            font-weight: 700;
            cursor: pointer;
            font-size: 12px;
            padding: 0;
        }

        .resend-row button:disabled {
            color: var(--gray-light);
            cursor: default;
        }

        .resend-row button:not(:disabled):hover {
            text-decoration: underline;
        }

        /* MODALS */
        .mo {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 600;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        .mo.open {
            display: flex
        }

        .mb {
            background: #fff;
            border-radius: 22px;
            width: 100%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
            animation: mIn .24s ease
        }

        @keyframes mIn {
            from {
                opacity: 0;
                transform: scale(.96)
            }

            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        .mh {
            padding: 26px 34px 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start
        }

        .mh h2 {
            font-size: 24px;
            margin-bottom: 3px
        }

        .mh p {
            font-size: 12px;
            color: var(--gray-mid)
        }

        .mx {
            border: none;
            background: var(--gray-bg);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 17px;
            cursor: pointer;
            color: var(--gray-mid);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 10px;
            transition: all .13s
        }

        .mx:hover {
            background: var(--gray-line)
        }

        .sbar {
            padding: 18px 34px;
            display: flex;
            align-items: center
        }

        .si {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
            position: relative
        }

        .si:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 13px;
            left: calc(50% + 13px);
            right: calc(-50% + 13px);
            height: 2px;
            background: var(--gray-line);
            transition: background .22s
        }

        .si.done:not(:last-child)::after {
            background: var(--g-dark)
        }

        .sdot {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--gray-bg);
            border: 2px solid var(--gray-line);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-light);
            z-index: 1;
            position: relative;
            transition: all .22s;
            font-family: 'Outfit', sans-serif
        }

        .si.active .sdot {
            border-color: var(--g-dark);
            background: var(--g-dark);
            color: #fff
        }

        .si.done .sdot {
            border-color: var(--g-bright);
            background: var(--g-bright);
            color: #fff
        }

        .slbl {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-light);
            text-align: center;
            transition: color .22s
        }

        .si.active .slbl,
        .si.done .slbl {
            color: var(--g-dark)
        }

        .sbody {
            padding: 0 34px 34px;
            display: none
        }

        .sbody.active {
            display: block
        }

        .snav {
            display: flex;
            gap: 8px;
            margin-top: 22px
        }

        .sback {
            padding: 10px 18px;
            border: 1.5px solid var(--gray-line);
            border-radius: 9px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            color: var(--gray-mid);
            background: #fff;
            font-family: 'Outfit', sans-serif;
            transition: all .13s
        }

        .sback:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .snext {
            flex: 1;
            padding: 11px;
            background: var(--g-dark);
            color: #fff;
            border: none;
            border-radius: 9px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all .17s
        }

        .snext:hover {
            background: var(--g-mid)
        }

        .snext:disabled {
            opacity: .7;
            cursor: not-allowed
        }

        .ins-spinner {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255,255,255,.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: ins-spin .6s linear infinite;
            vertical-align: middle;
            margin-right: 4px
        }

        @keyframes ins-spin {
            to { transform: rotate(360deg) }
        }

        .cchild {
            border: 1.5px solid var(--gray-line);
            border-radius: 11px;
            padding: 18px;
            margin-bottom: 9px;
            position: relative
        }

        .cchild.ok {
            border-color: var(--g-dark)
        }

        .crm {
            position: absolute;
            top: 9px;
            right: 9px;
            border: none;
            background: none;
            font-size: 16px;
            cursor: pointer;
            color: var(--gray-light);
            width: 24px;
            height: 24px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .crm:hover {
            background: #fee2e2;
            color: #dc2626
        }

        .add-c {
            width: 100%;
            padding: 10px;
            border: 2px dashed var(--gray-line);
            border-radius: 9px;
            background: none;
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-mid);
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all .13s
        }

        .add-c:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .cr-slots {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px
        }

        .cr-slot {
            border: 1.5px solid var(--gray-line);
            border-radius: 10px;
            padding: 13px 15px;
            cursor: pointer;
            transition: all .16s
        }

        .cr-slot:hover {
            border-color: var(--g-dark);
            background: var(--g-pale)
        }

        .cr-slot.sel {
            border-color: var(--g-dark);
            background: var(--g-light)
        }

        .cr-slot.full {
            opacity: .5;
            pointer-events: none
        }

        .cr-day {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--gray-light);
            margin-bottom: 2px
        }

        .cr-time {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 19px;
            color: var(--g-dark);
            line-height: 1;
            margin-bottom: 3px
        }

        .cr-meta {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .cr-pl {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 100px;
            margin-top: 4px;
            display: inline-block
        }

        .pl-ok {
            background: #dcfce7;
            color: #166534
        }

        .pl-w {
            background: #fef9c3;
            color: #854d0e
        }

        .pl-f {
            background: #fee2e2;
            color: #991b1b
        }

        .cr-centre {
            font-size: 11px;
            color: var(--g-dark);
            font-weight: 600;
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 4px
        }

        .cr-day-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--gray-light);
            margin-bottom: 8px
        }

        .cr-day-group {
            display: none
        }

        .sblock {
            background: var(--gray-bg);
            border-radius: 11px;
            padding: 18px;
            margin-bottom: 12px
        }

        .sh {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 14px
        }

        .sl {
            background: #635bff;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 7px;
            border-radius: 4px;
            font-family: 'Outfit', sans-serif
        }

        .sbdg {
            border: 1.5px solid var(--gray-line);
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-mid);
            background: #fff
        }

        .rbox {
            background: var(--g-pale);
            border: 1.5px solid var(--g-light);
            border-radius: 10px;
            padding: 14px 18px;
            margin-bottom: 14px
        }

        .rl {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 5px
        }

        .rl:last-child {
            margin: 0;
            padding-top: 7px;
            border-top: 1.5px solid var(--g-light);
            font-weight: 700;
            font-size: 14px;
            color: var(--g-dark)
        }

        .pmo {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 13px;
            border: 1.5px solid var(--gray-line);
            border-radius: 9px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            transition: all .13s
        }

        .pmo:hover {
            border-color: var(--g-dark);
            background: var(--g-pale)
        }

        .pmo input[type=radio] {
            accent-color: var(--g-dark);
            width: 14px;
            height: 14px
        }

        /* SPACES */
        .sp-wrap {
            display: grid;
            grid-template-columns: 242px 1fr;
            min-height: calc(100vh - 74px)
        }

        .sbar2 {
            background: #fff;
            border-right: 1px solid var(--gray-line);
            padding: 18px 0;
            position: sticky;
            top: 74px;
            height: calc(100vh - 74px);
            overflow-y: auto;
            display: flex;
            flex-direction: column
        }

        .sbar2-head {
            padding: 0 16px 16px;
            border-bottom: 1px solid var(--gray-line);
            margin-bottom: 8px
        }

        .sbar2-av {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            margin-bottom: 8px
        }

        .sbar2-name {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px
        }

        .sbar2-role {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--g-dark)
        }

        .sbar2-nav {
            flex: 1;
            padding: 0 9px;
            display: flex;
            flex-direction: column
        }

        .slabel {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--gray-light);
            padding: 11px 9px 4px;
            display: block
        }

        .stab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 10px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            color: var(--gray-mid);
            transition: all .14s;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-family: 'Outfit', sans-serif;
            margin-bottom: 1px
        }

        .stab:hover {
            background: var(--gray-bg);
            color: var(--gray-dark)
        }

        .stab.active {
            background: var(--g-light);
            color: var(--g-dark)
        }

        .stab .ti {
            font-size: 14px;
            width: 18px;
            text-align: center;
            flex-shrink: 0
        }

        .stab .tbdg {
            margin-left: auto;
            background: var(--g-dark);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 1px 6px;
            border-radius: 100px
        }

        .stab .tbdg.red {
            background: #dc2626
        }

        .sbar2-foot {
            padding: 12px 16px;
            border-top: 1px solid var(--gray-line);
            margin-top: auto
        }

        .sbar2-foot p {
            font-size: 11px;
            color: var(--gray-light);
            line-height: 1.5
        }

        .sp-main {
            background: var(--gray-bg);
            padding: 30px 34px;
            overflow-y: auto
        }

        .tpane {
            display: none;
            animation: fadeIn .2s ease
        }

        .tpane.active {
            display: block
        }

        .pgh {
            margin-bottom: 24px
        }

        .pgh h1 {
            font-size: clamp(32px, 3.5vw, 44px);
            margin-bottom: 3px
        }

        .pgh p {
            font-size: 13px;
            color: var(--gray-mid)
        }

        .pghr {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 24px
        }

        .srow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 20px
        }

        .sc2 {
            background: #fff;
            border-radius: 13px;
            padding: 18px;
            border: 1.5px solid var(--gray-line)
        }

        .sc2.gn {
            background: var(--g-dark);
            border-color: var(--g-dark)
        }

        .sc2-l {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gray-light);
            margin-bottom: 6px
        }

        .sc2.gn .sc2-l {
            color: rgba(255, 255, 255, .6)
        }

        .sc2-n {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 36px;
            color: var(--gray-dark);
            line-height: 1;
            margin-bottom: 2px
        }

        .sc2.gn .sc2-n {
            color: #fff
        }

        .sc2-s {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .sc2.gn .sc2-s {
            color: rgba(255, 255, 255, .55)
        }

        .g2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px
        }

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

        .bx {
            background: #fff;
            border-radius: 13px;
            border: 1.5px solid var(--gray-line);
            overflow: hidden
        }

        .bx-h {
            padding: 14px 18px;
            border-bottom: 1px solid var(--gray-line);
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .bx-h h3 {
            font-size: 13px;
            font-weight: 700
        }

        .bx-a {
            font-size: 11px;
            font-weight: 700;
            color: var(--g-dark);
            border: none;
            background: none;
            cursor: pointer;
            font-family: 'Outfit', sans-serif
        }

        .bx-a:hover {
            text-decoration: underline
        }

        .bx-b {
            padding: 16px 18px
        }

        .slist {
            display: flex;
            flex-direction: column;
            gap: 8px
        }

        .si2 {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 11px 13px;
            border-radius: 10px;
            background: var(--gray-bg)
        }

        .si2:hover {
            background: var(--g-pale)
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0
        }

        .db {
            background: #3b82f6
        }

        .dg {
            background: #22c55e
        }

        .do {
            background: #f59e0b
        }

        .dgy {
            background: #d1d5db
        }

        .si2-i {
            flex: 1
        }

        .si2-i strong {
            font-size: 13px;
            font-weight: 700;
            display: block;
            margin-bottom: 1px
        }

        .si2-i span {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .bdg {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 100px
        }

        .bup {
            background: #dbeafe;
            color: #1d4ed8
        }

        .bdn {
            background: var(--g-light);
            color: var(--g-dark)
        }

        .bcx {
            background: #fee2e2;
            color: #991b1b
        }

        .bpd {
            background: #fef9c3;
            color: #854d0e
        }

        .dt {
            width: 100%;
            border-collapse: collapse
        }

        .dt th {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            color: var(--gray-light);
            padding: 0 13px 8px;
            text-align: left;
            border-bottom: 1.5px solid var(--gray-line)
        }

        .dt td {
            padding: 11px 13px;
            font-size: 13px;
            border-bottom: 1px solid var(--gray-line);
            vertical-align: middle
        }

        .dt tr:last-child td {
            border-bottom: none
        }

        .dt tr:hover td {
            background: var(--g-pale)
        }

        .crcard {
            border: 1.5px solid var(--gray-line);
            border-radius: 13px;
            padding: 18px;
            margin-bottom: 10px
        }

        .crh {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 9px
        }

        .crt {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 2px
        }

        .crm2 {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .crs {
            color: #f59e0b;
            font-size: 13px;
            margin-bottom: 6px
        }

        .crtx {
            font-size: 12px;
            color: var(--gray-mid);
            line-height: 1.65
        }

        .crtags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 9px
        }

        .ctag {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 5px;
            background: var(--gray-bg);
            color: var(--gray-dark)
        }

        .ml {
            display: grid;
            grid-template-columns: 245px 1fr;
            border-radius: 13px;
            overflow: hidden;
            border: 1.5px solid var(--gray-line);
            height: calc(100vh - 240px);
            min-height: 360px
        }

        .mlist {
            background: #fff;
            border-right: 1px solid var(--gray-line);
            overflow-y: auto
        }

        .mi {
            padding: 12px 15px;
            border-bottom: 1px solid var(--gray-line);
            cursor: pointer;
            transition: background .12s
        }

        .mi:hover {
            background: var(--gray-bg)
        }

        .mi.active {
            background: var(--g-pale);
            border-left: 3px solid var(--g-dark)
        }

        .mi-nm {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 1px
        }

        .mi-pr {
            font-size: 11px;
            color: var(--gray-mid);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .mu .mi-nm::after {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--g-bright);
            margin-left: 5px;
            vertical-align: middle
        }

        .mwin {
            display: flex;
            flex-direction: column;
            background: var(--gray-bg)
        }

        .mwh {
            padding: 13px 18px;
            background: #fff;
            border-bottom: 1px solid var(--gray-line);
            display: flex;
            align-items: center;
            gap: 9px
        }

        .mwav {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--g-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            flex-shrink: 0
        }

        .mwnm {
            font-size: 13px;
            font-weight: 700
        }

        .mwr {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .mbb {
            flex: 1;
            overflow-y: auto;
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 9px
        }

        .bbl {
            max-width: 70%;
            padding: 10px 13px;
            border-radius: 12px;
            font-size: 12px;
            line-height: 1.55
        }

        .bin {
            background: #fff;
            border-radius: 3px 12px 12px 12px;
            align-self: flex-start;
            border: 1px solid var(--gray-line)
        }

        .bout {
            background: var(--g-dark);
            color: #fff;
            border-radius: 12px 3px 12px 12px;
            align-self: flex-end
        }

        .btm {
            font-size: 10px;
            opacity: .55;
            margin-top: 3px
        }

        .mbar {
            padding: 12px 14px;
            background: #fff;
            border-top: 1px solid var(--gray-line);
            display: flex;
            gap: 7px
        }

        .minp {
            flex: 1;
            padding: 9px 13px;
            border: 1.5px solid var(--gray-line);
            border-radius: 8px;
            font-size: 12px;
            font-family: 'Outfit', sans-serif;
            outline: none;
            transition: border-color .12s
        }

        .minp:focus {
            border-color: var(--g-dark)
        }

        .msnd {
            padding: 9px 16px;
            background: var(--g-dark);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Outfit', sans-serif
        }

        .msnd:hover {
            background: var(--g-mid)
        }

        .psec {
            background: #fff;
            border-radius: 13px;
            border: 1.5px solid var(--gray-line);
            margin-bottom: 14px;
            overflow: hidden
        }

        .psh {
            padding: 14px 20px;
            border-bottom: 1px solid var(--gray-line);
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .psh h3 {
            font-size: 13px;
            font-weight: 700
        }

        .ped {
            padding: 5px 12px;
            border: 1.5px solid var(--gray-line);
            border-radius: 7px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            color: var(--gray-mid);
            background: none;
            font-family: 'Outfit', sans-serif;
            transition: all .12s
        }

        .ped:hover {
            border-color: var(--g-dark);
            color: var(--g-dark)
        }

        .pbody {
            padding: 0 20px
        }

        .pr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-line);
            font-size: 13px
        }

        .pr:last-child {
            border-bottom: none
        }

        .prl {
            color: var(--gray-mid);
            font-weight: 600
        }

        .prv {
            font-weight: 700
        }

        .tgl {
            width: 40px;
            height: 21px;
            border-radius: 100px;
            background: var(--gray-line);
            position: relative;
            cursor: pointer;
            border: none;
            transition: background .17s
        }

        .tgl.on {
            background: var(--g-bright)
        }

        .tgk {
            position: absolute;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #fff;
            top: 3px;
            left: 3px;
            transition: left .17s;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
        }

        .tgl.on .tgk {
            left: 22px
        }

        .nitem {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--gray-line)
        }

        .nitem:hover,
        .nitem.unread {
            background: var(--g-pale)
        }

        .nic {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0
        }

        .ng {
            background: var(--g-light)
        }

        .nb {
            background: #dbeafe
        }

        .no {
            background: #fef3c7
        }

        .nr {
            background: #fee2e2
        }

        .ntxt strong {
            font-size: 13px;
            font-weight: 700;
            display: block;
            margin-bottom: 2px
        }

        .ntxt p {
            font-size: 12px;
            color: var(--gray-mid);
            line-height: 1.5
        }

        .ntm {
            font-size: 10px;
            color: var(--gray-light);
            white-space: nowrap;
            flex-shrink: 0
        }

        .ndot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--g-bright);
            flex-shrink: 0;
            margin-top: 4px
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-line)
        }

        .faq-q {
            width: 100%;
            padding: 13px 16px;
            border: none;
            background: none;
            text-align: left;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: 'Outfit', sans-serif;
            color: var(--gray-dark);
            transition: background .12s
        }

        .faq-q:hover {
            background: var(--g-pale)
        }

        .faq-q.open {
            color: var(--g-dark)
        }

        .farr {
            font-size: 11px;
            transition: transform .3s ease, color .3s ease;
            color: var(--gray-light)
        }

        .faq-q.open .farr {
            transform: rotate(90deg);
            color: var(--g-dark)
        }

        .fans {
            max-height: 0;
            overflow: hidden;
            padding: 0 16px;
            font-size: 12px;
            color: var(--gray-mid);
            line-height: 1.65;
            transition: max-height .35s ease, padding .25s ease;
        }

        .fans.open {
            padding: 0 16px 13px;
            max-height: 500px;
        }

        .grpc {
            border: 1.5px solid var(--gray-line);
            border-radius: 13px;
            overflow: hidden;
            margin-bottom: 12px
        }

        .grph {
            padding: 14px 18px;
            background: var(--g-pale);
            border-bottom: 1px solid var(--gray-line)
        }

        .grphr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 3px
        }

        .grpn {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 19px;
            color: var(--g-dark)
        }

        .grppl {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 100px
        }

        .gpok {
            background: var(--g-light);
            color: var(--g-dark)
        }

        .gpf {
            background: #fef9c3;
            color: #854d0e
        }

        .grpm {
            font-size: 11px;
            color: var(--gray-mid);
            display: flex;
            gap: 10px
        }

        .grpb {
            padding: 14px 18px
        }

        .erow {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-line)
        }

        .erow:last-child {
            border-bottom: none
        }

        .eav {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--g-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0
        }

        .enm {
            font-size: 13px;
            font-weight: 700;
            flex: 1
        }

        .elvl {
            font-size: 11px;
            color: var(--gray-mid)
        }

        .rem-s {
            background: var(--g-dark);
            border-radius: 13px;
            padding: 22px 26px;
            color: #fff;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 18px
        }

        .rl2 {
            font-size: 10px;
            color: rgba(255, 255, 255, .6);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-bottom: 5px
        }

        .rv {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 34px;
            color: #fff;
            line-height: 1
        }

        .rs {
            font-size: 11px;
            color: rgba(255, 255, 255, .5);
            margin-top: 2px
        }

        .strow {
            display: flex;
            gap: 6px;
            margin-bottom: 3px
        }

        .sstar {
            font-size: 21px;
            color: #d1d5db;
            background: none;
            border: none;
            cursor: pointer;
            transition: color .1s;
            line-height: 1;
            padding: 0
        }

        .sstar.lit {
            color: #f59e0b
        }

        .abox {
            padding: 11px 15px;
            border-radius: 9px;
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: 12px
        }

        .ai {
            background: #dbeafe;
            border: 1px solid #bfdbfe;
            color: #1e40af
        }

        .ao {
            background: #fef9c3;
            border: 1px solid #fde047;
            color: #854d0e
        }

        .ag {
            background: var(--g-light);
            border: 1px solid var(--g-bright);
            color: var(--g-dark)
        }

        .nchk {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer
        }

        .nchk input {
            accent-color: var(--g-dark)
        }

        .ch {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 100px
        }

        .cb {
            background: #dbeafe;
            color: #1d4ed8
        }

        .cg {
            background: var(--g-light);
            color: var(--g-dark)
        }

        .co {
            background: #fef3c7;
            color: #92400e
        }

        .cr2 {
            background: #fee2e2;
            color: #991b1b
        }

        .fw7 {
            font-weight: 700
        }

        .mt8 {
            margin-top: 8px
        }

        .mt12 {
            margin-top: 12px
        }

        .mt16 {
            margin-top: 16px
        }

        .mt20 {
            margin-top: 20px
        }

        .mt24 {
            margin-top: 24px
        }

        .mb8 {
            margin-bottom: 8px
        }

        .mb12 {
            margin-bottom: 12px
        }

        .mb16 {
            margin-bottom: 16px
        }

        .mb20 {
            margin-bottom: 20px
        }

        /* ══════════════════════════════════
   PUBLIC LAYOUT — NAV, FOOTER, BRAND
══════════════════════════════════ */

        .site-shell {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .site-main {
            flex: 1;
        }

        /* ─── Brand link (nav + footer) ─── */
        .brand-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .brand-link img {
            height: 36px;
            width: auto;
        }

        .brand-meta {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-word {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-size: 20px;
            letter-spacing: .1em;
            color: var(--gray-dark);
        }

        .brand-subtitle {
            font-size: 11px;
            color: var(--gray-light);
            font-weight: 500;
        }

        /* ─── Nav pills ─── */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 300;
            background: rgba(255, 255, 255, .97);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--gray-line);
            padding: 0 24px;
            height: 68px;
            display: flex;
            align-items: center;
        }

        .site-nav .container {
            width: 100%;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .nav-link-pill {
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--gray-mid);
            transition: all .17s;
            white-space: nowrap;
        }

        .nav-link-pill:hover {
            color: var(--g-dark);
            background: var(--g-pale);
        }

        .nav-link-pill.active {
            background: var(--g-light);
            color: var(--g-dark);
        }

        /* ─── Nav buttons ─── */
        .brand-btn {
            padding: 8px 18px;
            background: var(--g-dark);
            border: 1.5px solid var(--g-dark);
            border-radius: 8px;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all .17s;
            font-family: 'Outfit', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .brand-btn:hover {
            background: var(--g-mid);
            transform: translateY(-1px);
        }

        .brand-btn-outline {
            padding: 8px 18px;
            border: 1.5px solid var(--g-dark);
            border-radius: 8px;
            color: var(--g-dark);
            font-size: 13px;
            font-weight: 700;
            background: none;
            cursor: pointer;
            transition: all .17s;
            font-family: 'Outfit', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .brand-btn-outline:hover {
            background: var(--g-light);
        }

        /* ─── Nav user chip ─── */
        .nav-user-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px 4px 4px;
            border-radius: 40px;
            background: var(--gray-bg);
            border: 1px solid var(--gray-line);
        }

        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        /* ─── Mobile nav ─── */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--gray-dark);
            cursor: pointer;
        }

        .mobile-drawer {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 16px 24px 24px;
            background: #fff;
            border-bottom: 1px solid var(--gray-line);
            position: sticky;
            top: 68px;
            z-index: 299;
        }

        .mobile-drawer.open {
            display: flex;
        }

        @media (max-width: 991px) {
            .nav-toggle {
                display: block;
            }
        }

        /* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
        .site-footer {
            background: var(--gray-dark);
            color: rgba(255, 255, 255, .7);
            padding: 56px 0 32px;
            font-size: 14px;
            line-height: 1.6;
            margin-top: auto;
        }

        .site-footer a {
            color: rgba(255, 255, 255, .7);
            transition: color .15s;
        }

        .site-footer a:hover {
            color: #fff;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand .brand-link {
            margin-bottom: 16px;
        }

        .footer-brand .brand-link img {
            height: 32px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .5);
            font-size: 13px;
            max-width: 360px;
            margin: 0;
        }

        .footer-heading {
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links span {
            color: rgba(255, 255, 255, .4);
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, .1);
            margin-bottom: 20px;
        }

        .footer-copy {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, .35);
        }

        @media (max-width: 767px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-copy {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ══════════════════════════════════
   FAQ PAGE
══════════════════════════════════ */
        .faq-body {
            padding: 72px 64px;
        }

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

        .faq-grid .grpc {
            margin-bottom: 0;
            overflow: hidden;
            transition: box-shadow .2s, transform .2s;
        }

        .faq-grid .grpc:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .faq-grid .faq-q {
            font-size: 14px;
            padding: 16px 20px;
            white-space: normal;
            text-align: left;
        }

        .faq-grid .fans {
            padding: 0 20px;
            font-size: 13px;
            word-wrap: break-word;
        }

        .faq-grid .fans.open {
            padding: 0 20px 16px;
        }

        .faq-extra {
            padding: 72px 64px;
            background: var(--gray-bg);
        }

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

        .step-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1.5px solid var(--gray-line);
            transition: all .2s;
        }

        .step-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--g-dark);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
            margin-bottom: 16px;
            font-family: 'Outfit', sans-serif;
        }

        .step-card h4 {
            font-size: 16px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 8px;
            color: var(--gray-dark);
        }

        .step-card p {
            font-size: 13px;
            color: var(--gray-mid);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 991px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-body,
            .faq-extra {
                padding: 48px 24px;
            }
        }

        @media (max-width: 575px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
        .contact-body {
            padding: 72px 64px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 36px;
            align-items: start;
        }

        .contact-form-card {
            background: #fff;
            border: 1.5px solid var(--gray-line);
            border-radius: var(--radius);
            padding: 36px;
        }

        .contact-card-title {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0;
            color: var(--gray-dark);
            margin-bottom: 6px;
        }

        .contact-card-sub {
            font-size: 14px;
            color: var(--gray-mid);
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .contact-form .af {
            margin-bottom: 16px;
        }

        .contact-form .af-row {
            margin-bottom: 0;
        }

        .contact-form .af-row .af {
            margin-bottom: 16px;
        }

        .contact-submit {
            width: 100%;
            padding: 14px 24px;
            font-size: 15px;
            margin-top: 8px;
        }

        .contact-submit:disabled {
            opacity: .6;
            cursor: not-allowed;
        }

        .contact-success {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 48px 24px;
            gap: 12px;
        }

        .contact-success-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--g-light);
            color: var(--g-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .contact-success h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0;
            color: var(--gray-dark);
        }

        .contact-success p {
            font-size: 14px;
            color: var(--gray-mid);
            max-width: 340px;
        }

        /* ─── Info sidebar ─── */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-info-card {
            background: var(--g-pale);
            border-radius: var(--radius);
            padding: 24px 28px;
            border: 1.5px solid var(--g-light);
            transition: all .2s;
        }

        .contact-info-card:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .contact-info-icon {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .contact-info-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0;
            color: var(--gray-dark);
            margin-bottom: 4px;
        }

        .contact-info-card p {
            font-size: 13px;
            color: var(--gray-mid);
            line-height: 1.55;
            margin-bottom: 8px;
        }

        .contact-info-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--g-dark);
        }

        .contact-info-link:hover {
            color: var(--g-mid);
        }

        /* ─── Not a robot check ─── */
        .not-robot-check {
            margin: 16px 0 8px;
        }

        .not-robot-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            border: 1.5px solid var(--gray-line);
            border-radius: 10px;
            cursor: pointer;
            transition: border-color .2s, background .2s;
            user-select: none;
            width: 100%;
        }

        .not-robot-label:hover {
            border-color: var(--g-bright);
            background: var(--g-pale);
        }

        .not-robot-label input[type="checkbox"] {
            display: none;
        }

        .not-robot-box {
            width: 24px;
            height: 24px;
            border: 2px solid var(--gray-line);
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s;
            background: #fff;
        }

        .not-robot-label input:checked ~ .not-robot-box {
            background: var(--g-dark);
            border-color: var(--g-dark);
        }

        .not-robot-label input:checked ~ .not-robot-box::after {
            content: '\2713';
            color: #fff;
            font-size: 14px;
            font-weight: 800;
        }

        .not-robot-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-dark);
        }

        @media (max-width: 991px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-body {
                padding: 48px 24px;
            }
        }

        /* ─── Toast wrap ─── */
        .ajax-toast-wrap {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }