    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html {
        scroll-behavior: smooth
    }

    :root {
        --bg: rgba(0,0,0,0.08);
        --bg2: #F3F0EA;
        --bg3: #EAE6DE;
        --red: #BF2438;
        --red2: #9B1B2D;
        --red-light: #FEF2F4;
        --red-mid: #FACDD4;
        --gold1: #B47A0C;
        --gold-bg: #FDF6EB;
        --ink: #1A1714;
        --ink2: #3A3835;
        --muted: #726E6A;
        --border: #E0DBD4;
        --border2: #C8C3BB;
        --white: #FFFFFF;
        --gold: #C9A84C;
        --gold-light: #E8C97A;
        --dark: #0A0A0A;
        --dark2: #111111;
        --dark3: #181818;
        --dark4: #222222;
        --mid: #2E2E2E;
        --text: #F0F0F0;
        --muted: #888888;
        --white: #FFFFFF;
        --radius: 12px;
    }

    body {
        font-family: 'DM Sans',sans-serif;
        background: var(--bg);
        color: var(--ink);
        line-height: 1.65;
        overflow-x: hidden
    }

    a {
        color: inherit;
        text-decoration: none
    }

    img {
        max-width: 100%
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit
    }

    /* ─── DISCLAIMER BANNER ─── */
    .disc-bar {
        background: var(--red);
        color: #fff;
        text-align: center;
        padding: 0.45rem 1rem;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        position: relative;
        z-index: 300
    }

        .disc-bar strong {
            font-weight: 700
        }

    /* ─── MAIN NAV ─── */
    .sub-nav {
        position: relative;
        z-index: 250;
        background: rgba(250,250,247,0.95);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 0 3rem;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 2rem
    }

    .nav-links {
        display: flex;
        gap: 1.5rem;
        font-size: 0.83rem;
        color: var(--muted)
    }

        .nav-links a:hover {
            color: var(--ink)
        }


    /* ─── HERO SLIDER ─── */

 

    /* ─── STATS BAND ─── */
    .stats-band {
        background: var(--red);
        padding: 2.5rem 3rem;
        display: flex;
        flex-wrap: wrap
    }

    .stat-col {
        flex: 1;
        min-width: 200px;
        padding: 0 2.5rem;
        border-right: 1px solid rgba(255,255,255,0.2)
    }

        .stat-col:first-child {
            padding-left: 0
        }

        .stat-col:last-child {
            border-right: none
        }

    .stat-big {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 3.2rem;
        color: #fff;
        line-height: 1;
        margin-bottom: 0.3rem
    }

    .stat-text {
        font-size: 0.79rem;
        color: rgba(255,255,255,0.76);
        line-height: 1.55
    }

        .stat-text strong {
            color: #fff
        }

    /* ─── SECTION SHARED ─── */
    .section {
        padding: 5.5rem 3rem;
        background: var(--bg);
    }

    .section-inner {
        max-width: 1100px;
        margin: 0 auto
    }

    .s-alt {
        background: var(--bg2)
    }

    .s-white {
        background: var(--white)
    }

    .eyebrow {
        display: inline-block;
        font-size: 0.71rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.85rem
    }

    .sh {
        font-family: 'Bebas Neue',sans-serif;
        font-size: clamp(2.3rem,4.5vw,3.6rem);
        letter-spacing: 0.02em;
        color: var(--ink);
        line-height: 1;
        margin-bottom: 1.1rem
    }

    .slead {
        font-size: 0.96rem;
        color: var(--muted);
        line-height: 1.75;
        max-width: 540px
    }

    .two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start
    }

    .three-col {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem
    }

    .four-col {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 1.2rem
    }

    .body-txt {
        font-size: 0.97rem;
        color: var(--ink2);
        line-height: 1.75;
        margin-bottom: 1.3rem
    }

    /* ─── ICON SYSTEM ─── */
    .icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg2);
        border: 1.5px solid var(--border);
        color: var(--ink);
        transition: color 0.25s ease,background 0.25s ease,border-color 0.25s ease,transform 0.25s ease;
        flex-shrink: 0
    }

        .icon svg {
            width: 22px;
            height: 22px;
            stroke-width: 1.5;
            stroke: currentColor;
            fill: none
        }

    .card:hover .icon, .feat-card:hover .icon, .who-item:hover .icon, .social-card:hover .icon, .cab-li:hover .icon, .salon-item:hover .icon, .partner-card:hover .icon {
        color: var(--red);
        background: var(--red-light);
        border-color: var(--red-mid);
        transform: scale(1.05)
    }
    /* Small icon variant */
    .icon-sm {
        width: 38px;
        height: 38px;
        border-radius: 9px
    }

        .icon-sm svg {
            width: 17px;
            height: 17px
        }

    /* ─── CARDS ─── */
    .card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.8rem;
        transition: border-color 0.2s,transform 0.2s,box-shadow 0.2s
    }

        .card:hover {
            border-color: var(--border2);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.07)
        }

        .card h3 {
            font-size: 0.97rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.5rem;
            margin-top: 1rem
        }

        .card p {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.6
        }

    /* ─── HERO FIVE STEPS ─── */
    .five-steps-box {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05)
    }

    .five-steps-label {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 1.1rem;
        letter-spacing: 0.07em;
        color: var(--muted);
        margin-bottom: 1.2rem
    }

    .five-steps {
        list-style: none
    }

        .five-steps li {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.84rem;
            color: var(--ink2);
            line-height: 1.5
        }

            .five-steps li:last-child {
                border-bottom: none
            }

    .sn {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 1.4rem;
        color: var(--red);
        line-height: 1;
        min-width: 22px;
        opacity: 0.4
    }

    .chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        margin-top: 1.4rem
    }

    .chip {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.7rem;
        text-align: left
    }

        .chip strong {
            display: block;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink)
        }

        .chip span {
            font-size: 0.69rem;
            color: var(--muted)
        }

    /* ─── FACT PILLS ─── */
    .fact-pills {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.8rem
    }

    .pill {
        font-size: 0.84rem;
        color: var(--ink2);
        display: flex;
        align-items: center;
        gap: 0.6rem
    }

        .pill::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red);
            flex-shrink: 0
        }

        .pill strong {
            color: var(--ink)
        }

    /* ─── FEAT CARD ─── */
    .feat-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.2rem 1.4rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        transition: border-color 0.2s,background 0.2s
    }

        .feat-card:hover {
            background: var(--white);
            border-color: var(--border2)
        }

        .feat-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.25rem
        }

        .feat-card p {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.55
        }

    /* ─── WHO BOX ─── */
    .who-box {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2rem
    }

    .who-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.9rem;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        cursor: default;
        transition: border-color 0.2s,transform 0.2s
    }

        .who-item:hover {
            border-color: var(--red-mid);
            transform: translateX(3px)
        }

        .who-item h5 {
            font-weight: 600;
            font-size: 0.87rem;
            color: var(--ink);
            margin-bottom: 0.1rem
        }

        .who-item p {
            font-size: 0.75rem;
            color: var(--muted)
        }

    /* ─── NETWORKING ─── */
    .net-hero {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2.5rem;
        margin-bottom: 2.5rem
    }

        .net-hero h3 {
            font-family: 'Bebas Neue',sans-serif;
            font-size: 2rem;
            letter-spacing: 0.02em;
            color: var(--ink);
            margin-bottom: 0.7rem
        }

        .net-hero p {
            font-size: 0.97rem;
            color: var(--ink2);
            line-height: 1.75
        }

    .social-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.4rem;
        transition: border-color 0.2s,transform 0.2s
    }

        .social-card:hover {
            border-color: var(--border2);
            transform: translateY(-2px)
        }

        .social-card h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.35rem;
            margin-top: 0.9rem
        }

        .social-card p {
            font-size: 0.79rem;
            color: var(--muted);
            line-height: 1.5
        }

    /* ─── VENUE TABS ─── */
    .venue-lede {
        font-size: 1rem;
        color: var(--ink2);
        line-height: 1.75;
        margin-bottom: 2rem;
        padding: 1.3rem 1.8rem;
        border-left: 3px solid var(--red);
        background: var(--red-light);
        border-radius: 0 10px 10px 0;
        max-width: 620px
    }

    .vtab-bar {
        display: flex;
        border-bottom: 2px solid var(--border);
        margin-bottom: 0
    }

    .vtab {
        padding: 0.8rem 1.6rem;
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--muted);
        cursor: pointer;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        transition: all 0.18s;
        white-space: nowrap
    }

        .vtab.active {
            color: var(--red);
            border-bottom-color: var(--red)
        }

        .vtab:hover:not(.active) {
            color: var(--ink)
        }

    .vpanel {
        display: none;
        padding-top: 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem
    }

        .vpanel.active {
            display: grid
        }

    .vcard {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.4rem;
        transition: background 0.2s,border-color 0.2s
    }

        .vcard:hover {
            background: var(--white);
            border-color: var(--border2)
        }

        .vcard h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.35rem
        }

        .vcard p {
            font-size: 0.81rem;
            color: var(--muted);
            line-height: 1.55
        }

    /* ─── CAB DRIVER ─── */
    .cab-li {
        display: flex;
        gap: 1.1rem;
        align-items: flex-start;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.2rem 1.4rem;
        transition: border-color 0.2s,transform 0.2s
    }

        .cab-li:hover {
            border-color: var(--border2);
            transform: translateX(3px)
        }

        .cab-li h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.2rem
        }

        .cab-li p {
            font-size: 0.81rem;
            color: var(--muted);
            line-height: 1.5
        }

    .commit-box {
        background: var(--gold-bg);
        border: 1px solid #E6C46A;
        border-radius: 14px;
        padding: 2rem
    }

        .commit-box h4 {
            font-family: 'Bebas Neue',sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.04em;
            color: var(--ink);
            margin-bottom: 0.6rem
        }

        .commit-box p {
            font-size: 0.88rem;
            color: var(--ink2);
            line-height: 1.65
        }

    .italic-tag {
        font-family: 'Lora',serif;
        font-style: italic;
        color: var(--gold);
        margin-top: 1rem;
        font-size: 1.1rem
    }

    .sos-box {
        background: var(--red-light);
        border: 1px solid var(--red-mid);
        border-radius: 14px;
        padding: 2rem;
        margin-top: 1.5rem
    }

        .sos-box h4 {
            font-size: 0.87rem;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 0.5rem
        }

        .sos-box p {
            font-size: 0.84rem;
            color: var(--ink2);
            line-height: 1.65
        }

    /* ─── SALON ─── */
    .salon-item {
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.2rem 1.4rem;
        transition: border-color 0.2s,transform 0.2s
    }

        .salon-item:hover {
            border-color: var(--border2);
            transform: translateX(3px)
        }

        .salon-item h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.2rem
        }

        .salon-item p {
            font-size: 0.81rem;
            color: var(--muted);
            line-height: 1.5
        }

    .salon-right {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2rem
    }

    .treat-item {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.9rem 1rem;
        display: flex;
        gap: 0.9rem;
        align-items: center;
        margin-bottom: 0.75rem
    }

        .treat-item h5 {
            font-weight: 600;
            font-size: 0.86rem;
            color: var(--ink);
            margin-bottom: 0.1rem
        }

        .treat-item p {
            font-size: 0.76rem;
            color: var(--muted)
        }

    .partner-path {
        background: var(--gold-bg);
        border: 1px solid #E6C46A;
        border-radius: 10px;
        padding: 1.1rem;
        margin-top: 1rem
    }

        .partner-path h5 {
            font-weight: 700;
            font-size: 0.83rem;
            color: var(--gold);
            margin-bottom: 0.3rem
        }

        .partner-path p {
            font-size: 0.8rem;
            color: var(--ink2);
            line-height: 1.6
        }

    /* ─── PRICING ─── */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 1.2rem;
        margin-top: 3rem
    }

    .pricing-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 16px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
        transition: border-color 0.2s,transform 0.2s,box-shadow 0.2s
    }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--border)
        }

        .pricing-card.featured::before {
            background: var(--red)
        }

        .pricing-card.featured {
            border-color: var(--red-mid)
        }

        .pricing-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08)
        }

    .pricing-badge {
        position: absolute;
        top: 7px;
        right: 7px;
        background: var(--red);
        color: #fff;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.25rem 0.6rem;
        border-radius: 100px
    }

        .pricing-badge.gold {
            background: var(--gold)
        }

    .plan-name {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.6rem
    }

    .plan-price {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 3.5rem;
        color: var(--ink);
        line-height: 1
    }

        .plan-price sup {
            font-size: 1.5rem;
            vertical-align: 10px;
            margin-top: 0.5rem
        }

    .plan-period {
        font-size: 0.78rem;
        color: var(--muted);
        margin-bottom: 1.4rem
    }

    .plan-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.6rem;
        min-height: 110px
    }

        .plan-features li {
            font-size: 0.82rem;
            color: var(--ink2);
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
            line-height: 1.4
        }

            .plan-features li::before {
                content: '';
                width: 16px;
                height: 16px;
                min-width: 16px;
                border-radius: 50%;
                background: var(--red-light);
                border: 1.5px solid var(--red-mid);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top: 0.1rem;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23BF2438' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 10px
            }

    .btn-plan {
        display: block;
        width: 100%;
        padding: 0.75rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.87rem;
        text-align: center;
        transition: all 0.18s
    }

    .btn-plan-outline {
        border: 1.5px solid var(--border2);
        color: var(--ink)
    }

        .btn-plan-outline:hover {
            border-color: var(--red);
            color: var(--red)
        }

    .btn-plan-red {
        background: var(--red);
        color: #fff
    }

        .btn-plan-red:hover {
            background: var(--red2)
        }

    /* ─── TESTIMONIALS ─── */
    .testi-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1.4rem;
        margin-top: 2.5rem
    }

    .testi-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.8rem;
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .testi-quote {
        font-size: 0.87rem;
        color: var(--ink2);
        line-height: 1.7;
        flex: 1;
        margin-bottom: 1.2rem;
        font-style: italic
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 0.9rem
    }

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Bebas Neue',sans-serif;
        font-size: 1.1rem;
        letter-spacing: 0.05em;
        flex-shrink: 0
    }

    .av-red {
        background: var(--red);
        color: #fff
    }

    .av-ink {
        background: var(--ink);
        color: #fff
    }

    .av-gold {
        background: var(--gold);
        color: #fff
    }

    .testi-name {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--ink)
    }

    .testi-role {
        font-size: 0.75rem;
        color: var(--muted)
    }

    .testi-card:hover {
        border-color: var(--border2);
        box-shadow: 0 6px 24px rgba(0,0,0,0.06)
    }

    /* ─── PROFILE CARDS ─── */
    .profile-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1.5rem;
        margin-top: 2.5rem
    }

    .profile-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.2s,box-shadow 0.2s
    }

        .profile-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(0,0,0,0.08)
        }

    .profile-img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
        background: var(--bg2)
    }

    .profile-img-placeholder {
        width: 100%;
        height: 160px;
        background: linear-gradient(135deg,var(--bg2),var(--bg3));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem
    }

    .profile-body {
        padding: 1.4rem
    }

    .profile-name {
        font-weight: 700;
        font-size: 1rem;
        color: var(--ink);
        margin-bottom: 0.25rem
    }

    .profile-loc {
        font-size: 0.8rem;
        color: var(--muted);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.35rem
    }

    .btn-profile {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--red-light);
        color: var(--red);
        border: 1px solid var(--red-mid);
        padding: 0.5rem 1rem;
        border-radius: 7px;
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.18s
    }

        .btn-profile:hover {
            background: var(--red);
            color: #fff
        }

    /* ─── FAQ ACCORDION ─── */
    .faq-list {
        max-width: 820px;
        margin-top: 2.5rem
    }

    .faq-item {
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 0.75rem;
        overflow: hidden;
        transition: border-color 0.2s
    }

        .faq-item.open {
            border-color: var(--red-mid)
        }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.5rem;
        cursor: pointer;
        gap: 1rem;
        background: var(--white);
        transition: background 0.18s
    }

        .faq-q:hover {
            background: var(--bg2)
        }

    .faq-item.open .faq-q {
        background: var(--red-light)
    }

    .faq-q-text {
        font-size: 0.93rem;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.4
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg2);
        border: 1.5px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.25s;
        color: var(--ink)
    }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            transition: transform 0.3s ease
        }

    .faq-item.open .faq-icon {
        background: var(--red);
        border-color: var(--red);
        color: #fff
    }

        .faq-item.open .faq-icon svg {
            transform: rotate(45deg)
        }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease,padding 0.3s ease;
        background: var(--white)
    }

    .faq-a-inner {
        padding: 0 1.5rem 0;
        font-size: 0.86rem;
        color: var(--muted);
        line-height: 1.75
    }

    .faq-item.open .faq-a {
        max-height: 600px
    }

    .faq-item.open .faq-a-inner {
        padding: 1rem 1.5rem 1.3rem
    }

    /* ─── FOOTER CTA ─── */
    .footer-cta {
        background: var(--ink);
        padding: 6rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden
    }

        .footer-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 60%,rgba(191,36,56,0.2) 0%,transparent 65%)
        }

        .footer-cta h2 {
            font-family: 'Bebas Neue',sans-serif;
            font-size: clamp(2.5rem,6vw,5rem);
            color: #fff;
            letter-spacing: 0.02em;
            position: relative;
            margin-bottom: 1rem
        }

        .footer-cta p {
            color: rgba(255,255,255,0.6);
            font-size: 0.97rem;
            max-width: 480px;
            margin: 0 auto 2.2rem;
            position: relative;
            line-height: 1.7
        }

    .btn-footer {
        background: var(--red);
        color: #fff;
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
        position: relative;
        display: inline-block;
        transition: all 0.18s
    }

        .btn-footer:hover {
            background: var(--red2);
            transform: scale(1.04)
        }

    /* ─── FOOTER ─── */
    footer {
        background: #0E0C0B;
        padding: 2.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.2rem
    }

    .f-logo {
        font-family: 'Bebas Neue',sans-serif;
        font-size: 1.2rem;
        color: #fff
    }

        .f-logo span {
            color: var(--red)
        }

    .f-copy {
        font-size: 0.71rem;
        color: #45433F;
        margin-top: 0.35rem
    }

    .f-disc {
        font-size: 0.69rem;
        color: #4E4C48;
        max-width: 500px;
        line-height: 1.6
    }

    /* ─── PARTNER CARDS ─── */
    .partner-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 2rem;
        transition: border-color 0.2s,transform 0.2s
    }

        .partner-card:hover {
            border-color: rgba(180,122,12,0.3);
            transform: translateY(-2px)
        }

        .partner-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.8rem;
            margin-top: 1.1rem
        }

        .partner-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.55rem
        }

        .partner-card li {
            font-size: 0.81rem;
            color: var(--muted);
            padding-left: 1rem;
            position: relative;
            line-height: 1.5
        }

            .partner-card li::before {
                content: '•';
                color: var(--gold);
                position: absolute;
                left: 0
            }

    /* ─── RESPONSIVE ─── */
    @@media(max-width:1000px) {
        .main-nav {
            padding: 0 1.5rem
        }

        .nav-links {
            display: none
        }

        .sticky-links {
            gap: 0;
            overflow-x: auto
        }

            .sticky-links a {
                padding: 0 0.65rem;
                font-size: 0.73rem
            }

        .sticky-nav {
            padding: 0 1rem
        }

        .section {
            padding: 4rem 1.5rem
        }

        .stats-band {
            padding: 2rem 1.5rem
        }

        .stat-col {
            padding: 0.9rem 0;
            border-right: none;
            border-bottom: 1px solid rgba(255,255,255,0.15)
        }

            .stat-col:last-child {
                border-bottom: none
            }

        .two-col {
            grid-template-columns: 1fr
        }

        .three-col {
            grid-template-columns: 1fr 1fr
        }

        .four-col {
            grid-template-columns: 1fr 1fr
        }

        .pricing-grid {
            grid-template-columns: 1fr 1fr
        }

        .testi-grid {
            grid-template-columns: 1fr 1fr
        }

        .profile-grid {
            grid-template-columns: 1fr 1fr
        }

        .vpanel.active {
            grid-template-columns: 1fr
        }

        .vtab-bar {
            flex-wrap: wrap
        }

        footer {
            flex-direction: column;
            align-items: flex-start;
            padding: 2rem 1.5rem
        }

        .hero-slider {
            height: auto;
            min-height: 100svh
        }

        .slide-counter {
            display: none
        }
    }

    @@media(max-width:640px) {
        .three-col, .four-col, .pricing-grid, .testi-grid, .profile-grid {
            grid-template-columns: 1fr
        }

        .chips {
            grid-template-columns: 1fr 1fr
        }
        .logo{height:40px;}
      /*  .slide {
            padding: 0 1.5rem
        }*/

        .slider-prev {
            left: 0.5rem
        }

        .slider-next {
            right: 0.5rem
        }
    }
