/* ==========================================================
   BETPRO ARENA - MASTER STYLESHEET (FINAL ORGANIZED)
   Organized page-by-page / section-by-section

   00. Theme Variables
   01. Reset & Global
   02. Header
   03. Main Wrapper
   04. Homepage Hero
   05. Sports Ticker
   06. Homepage Section Globals
   07. Match Cards
   08. Sports Categories
   09. Sports Markets
   10. How It Works
   11. Homepage Contact
   12. FAQ
   13. Footer
   14. Back To Top
   15. Scroll Animations
   16. Inner Page Global
   17. About Page
   18. Contact Page
   19. Privacy Policy
   20. Terms & Disclaimer
   21. Homepage / Global Responsive
   22. Inner Page Responsive
   23. Header / Footer Responsive Polish
========================================================== */


/* ==========================================================
   00. THEME VARIABLES
========================================================== */
:root {
    --primary: #234E70;
    --primary-dark: #183B56;
    --primary-soft: #DDE8F1;

    --accent: #D9783D;
    --accent-soft: #F2D7C5;

    --cream: #EEEAE2;
    --cream-dark: #E5DED3;

    --surface: #F8F6F1;
    --surface-secondary: #E4E8EA;

    --text: #1E2F3D;
    --text-soft: #667580;

    --border: #D4D6D4;

    --shadow:
        0 18px 55px rgba(28, 55, 50, 0.08);

    --shadow-hover:
        0 25px 65px rgba(19, 79, 73, 0.14);
}


/* =====================================================
01. RESET & GLOBAL
===================================================== */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


::selection {
    background: var(--primary);
    color: white;
}


.site-container {
    width: min(1380px, calc(100% - 40px));
    margin-inline: auto;
}


/* =====================================================
02. HEADER
===================================================== */

#siteHeader {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;

    background:
        rgba(238, 234, 226, 0.94);

    border-bottom:
        1px solid rgba(34, 55, 70, 0.08);

    backdrop-filter:
        blur(18px);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}


#siteHeader.scrolled {
    background:
        rgba(238, 234, 226, 0.985);

    box-shadow:
        0 8px 30px
        rgba(29, 49, 63, 0.07);
}


.header-inner {
    width:
        min(1380px, calc(100% - 40px));

    height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;
}


.brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-icon {
    display: grid;

    place-items: center;

    width: 46px;

    height: 46px;

    border-radius: 14px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #376F98
        );

    box-shadow:
        0 8px 24px
        rgba(35, 78, 112, 0.22);

    transition:
        transform 0.3s ease;
}


.brand:hover
.brand-icon {
    transform:
        rotate(-8deg)
        scale(1.05);
}


.brand-text strong {
    display: block;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 18px;

    font-weight: 800;

    letter-spacing:
        -0.04em;

    line-height: 1;
}


.brand-text strong span {
    color: var(--primary);
}


.brand-text small {
    display: block;

    margin-top: 5px;

    color: #71817e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        0.19em;

    text-transform:
        uppercase;
}


.desktop-nav {
    display: flex;

    align-items: center;

    gap: 32px;
}


.nav-link {
    position: relative;

    padding:
        29px 0;

    color: #425b57;

    font-size: 14px;

    font-weight: 700;

    transition:
        color 0.25s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 20px;

    width: 0;

    height: 2px;

    border-radius:
        999px;

    background:
        var(--primary);

    transform:
        translateX(-50%);

    transition:
        width 0.25s ease;
}


.nav-link:hover,
.nav-link.active {
    color:
        var(--primary);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}


.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}


.login-button,
.header-dashboard {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    height: 46px;

    padding:
        0 19px;

    border-radius: 13px;

    font-size: 13px;

    font-weight: 800;

    transition:
        all 0.25s ease;
}


.login-button {
    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,.45);
}


.login-button:hover {
    border-color:
        var(--primary);

    color:
        var(--primary);

    transform:
        translateY(-2px);
}


.header-dashboard {
    color: white;

    background:
        var(--primary);

    box-shadow:
        0 9px 25px
        rgba(35,78,112,.18);
}


.header-dashboard:hover {
    background:
        var(--primary-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 13px 32px
        rgba(35,78,112,.25);
}


.mobile-menu-button {
    display: none;

    width: 46px;

    height: 46px;

    padding: 0;

    border:
        1px solid var(--border);

    border-radius:
        13px;

    background:
        rgba(255,255,255,.4);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.mobile-menu-button span {
    width: 18px;

    height: 2px;

    border-radius:
        10px;

    background:
        var(--text);

    transition:
        .3s ease;
}


.mobile-menu-button.active
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.mobile-menu-button.active
span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-button.active
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


.mobile-navigation {
    display: none;
}


/* =====================================================
03. MAIN WRAPPER
===================================================== */

main {
    padding-top:
        82px;
}


/* ==========================================================
04. HOMEPAGE HERO - FINAL SPORTS / CASINO VERSION
========================================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            125deg,
            var(--cream) 0%,
            #E9E6E0 58%,
            #DDE5E8 100%
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image:
        radial-gradient(
            rgba(35,78,112,.15) 1px,
            transparent 1px
        );
    background-size: 25px 25px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    width: 420px;
    height: 420px;
    left: -250px;
    top: 60px;
    background: rgba(35,78,112,.10);
}

.hero-shape-two {
    width: 430px;
    height: 430px;
    right: -180px;
    bottom: -150px;
    background: rgba(217,120,61,.10);
}

/* ==========================================================
MAIN 2 COLUMN LAYOUT
========================================================== */

.hero-layout {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 40px));
    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(520px, 1.08fr);

    align-items: center;

    gap: 60px;

    padding: 38px 0 48px;
}

/* Prevent grid overflow */
.hero-content,
.hero-visual {
    min-width: 0;
}

/* ==========================================================
LEFT CONTENT
========================================================== */

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    width: fit-content;

    padding: 9px 14px;

    border:
        1px solid
        rgba(35,78,112,.16);

    border-radius: 999px;

    background:
        rgba(255,255,255,.58);

    color:
        var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    box-shadow:
        0 7px 22px
        rgba(30,47,61,.04);
}

.badge-dot {
    display: block;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background:
        var(--accent);

    box-shadow:
        0 0 0
        5px rgba(217,120,61,.13);
}

.hero-content h1 {
    max-width: 650px;

    margin:
        22px 0 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(48px,4.4vw,68px);

    font-weight: 800;

    line-height: .99;

    letter-spacing:
        -.052em;

    color:
        var(--text);
}

.hero-content h1 span {
    display: block;
    color:
        var(--primary);
}

.hero-content > p {
    max-width: 590px;

    margin:
        23px 0 0;

    color:
        var(--text-soft);

    font-size: 16px;

    line-height: 1.75;
}

/* ==========================================================
BUTTONS
========================================================== */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 29px;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding:
        0 21px;

    border-radius:
        13px;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.primary-cta {
    border:
        1px solid
        var(--primary);

    background:
        var(--primary);

    color: #fff;

    box-shadow:
        0 12px 28px
        rgba(35,78,112,.20);
}

.primary-cta:hover {
    color: #fff;

    background:
        var(--primary-dark);

    border-color:
        var(--primary-dark);

    transform:
        translateY(-3px);
}

.secondary-cta {
    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,.62);

    color:
        var(--text);
}

.secondary-cta:hover {
    border-color:
        var(--primary);

    color:
        var(--primary);

    background: #fff;

    transform:
        translateY(-3px);
}

/* ==========================================================
MINI FEATURES
========================================================== */

.hero-mini-features {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 29px;
}

.hero-mini-features > div {
    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #536965;

    font-size: 11px;

    font-weight: 700;
}

.hero-mini-features i {
    color:
        var(--primary);
}

/* ==========================================================
RIGHT VISUAL
========================================================== */

.hero-visual {
    position: relative;
    z-index: 3;

    width: 100%;

    max-width: 690px;

    justify-self: end;
}

.bet-showcase-glow {
    position: absolute;

    z-index: -1;

    width: 430px;
    height: 430px;

    right: -60px;
    top: 60px;

    border-radius: 50%;

    background:
        rgba(35,78,112,.14);

    filter:
        blur(75px);
}

/* ==========================================================
MAIN LIVE MATCH CARD
========================================================== */

.hero-live-card {
    width: 100%;

    overflow: hidden;

    border:
        1px solid
        rgba(35,78,112,.13);

    border-radius:
        24px;

    background:
        var(--surface);

    box-shadow:
        0 26px 65px
        rgba(30,47,61,.15);
}

.hero-live-image {
    position: relative;

    width: 100%;

    height: 265px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #183B56,
            #285D84
        );
}

.hero-live-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease;
}

.hero-live-card:hover
.hero-live-image img {
    transform:
        scale(1.035);
}

.hero-image-overlay {
    position: absolute;

    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(12,29,42,.08) 0%,
            rgba(12,29,42,.25) 42%,
            rgba(12,29,42,.92) 100%
        );
}

/* ==========================================================
IMAGE TOP BAR
========================================================== */

.live-image-top {
    position: absolute;

    z-index: 3;

    top: 16px;
    left: 16px;
    right: 16px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;
}

.live-now-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    border-radius:
        999px;

    background:
        rgba(11,31,45,.78);

    color: #fff;

    backdrop-filter:
        blur(8px);

    font-size: 9px;

    font-weight: 900;

    letter-spacing:
        .06em;
}

.live-now-badge > span {
    width: 7px;
    height: 7px;

    border-radius:
        50%;

    background:
        #42D989;

    box-shadow:
        0 0 0
        5px rgba(66,217,137,.16);
}

.live-league {
    display: inline-flex;

    align-items: center;

    padding:
        7px 10px;

    border-radius:
        999px;

    background:
        rgba(255,255,255,.92);

    color:
        var(--primary-dark);

    font-size: 9px;

    font-weight: 800;
}

/* ==========================================================
MATCH INFO
========================================================== */

.live-match-info {
    position: absolute;

    z-index: 3;

    left: 20px;
    right: 20px;
    bottom: 18px;

    color: #fff;
}

.match-league {
    display: block;

    margin-bottom:
        10px;

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;
}

.live-team-score {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        auto
        minmax(0,1fr);

    align-items: end;

    gap: 15px;
}

.hero-live-team {
    min-width: 0;
}

.hero-live-team strong {
    display: block;

    overflow: hidden;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    font-weight: 800;
}

.hero-live-team span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.60);

    font-size: 9px;
}

.hero-live-team.right {
    text-align: right;
}

.hero-score-box {
    text-align: center;
}

.hero-score-box strong {
    display: block;

    font-size: 27px;

    line-height: 1;

    font-weight: 900;
}

.hero-score-box strong small {
    color:
        rgba(255,255,255,.5);

    font-size: 14px;
}

.hero-score-box > span {
    display: inline-block;

    margin-top: 6px;

    padding:
        4px 8px;

    border-radius:
        999px;

    background:
        rgba(255,255,255,.13);

    font-size: 8px;

    font-weight: 800;
}

/* ==========================================================
ODDS AREA
========================================================== */

.hero-live-market {
    padding:
        15px 16px 17px;

    background:
        var(--surface);
}

.live-market-heading {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;

    margin-bottom: 11px;
}

.live-market-heading span {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;
}

.live-market-heading strong {
    display: block;

    margin-top: 2px;

    color:
        var(--text);

    font-size: 11px;

    font-weight: 800;
}

.live-market-heading i {
    color:
        var(--primary);
}

.hero-odds-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 7px;
}

.hero-odd {
    min-width: 0;

    padding:
        10px;

    border:
        1px solid
        var(--border);

    border-radius:
        11px;

    background: #fff;

    transition:
        all .22s ease;
}

.hero-odd:hover {
    border-color:
        var(--primary);

    background:
        var(--primary-soft);

    transform:
        translateY(-2px);
}

.hero-odd span {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;
}

.hero-odd small {
    display: inline-block;

    margin-top: 4px;

    color:
        var(--text-soft);

    font-size: 8px;

    font-weight: 800;
}

.hero-odd strong {
    float: right;

    margin-top: 3px;

    color:
        var(--text);

    font-size: 13px;

    font-weight: 900;
}

/* ==========================================================
SMALL SPORTS / CASINO CARDS
========================================================== */

.hero-game-row {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 9px;

    margin-top: 10px;
}

.hero-game-card {
    position: relative;

    min-width: 0;

    height: 96px;

    overflow: hidden;

    border-radius:
        15px;

    background:
        var(--primary-dark);

    box-shadow:
        0 10px 25px
        rgba(30,47,61,.09);
}

.hero-game-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.game-card-overlay {
    position: absolute;

    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18,40,56,.08),
            rgba(18,40,56,.90)
        );
}

.game-card-content {
    position: absolute;

    z-index: 2;

    left: 11px;
    right: 11px;
    bottom: 10px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #fff;
}

.game-icon {
    display: grid;

    place-items: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border-radius:
        9px;

    background:
        rgba(255,255,255,.16);

    backdrop-filter:
        blur(8px);

    font-size: 10px;
}

.game-card-content span {
    display: block;

    color:
        rgba(255,255,255,.62);

    font-size: 7px;

    font-weight: 800;

    text-transform:
        uppercase;
}

.game-card-content strong {
    display: block;

    margin-top: 1px;

    font-size: 10px;

    font-weight: 800;
}

/* ==========================================================
BOTTOM BAR
========================================================== */

.hero-live-bottom {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;

    margin-top: 10px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(35,78,112,.12);

    border-radius:
        14px;

    background:
        rgba(255,253,248,.92);

    box-shadow:
        0 10px 28px
        rgba(30,47,61,.06);
}

.hero-live-bottom > div {
    display: flex;

    align-items: center;

    gap: 9px;
}

.hero-pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #33B979;

    box-shadow:
        0 0 0
        5px rgba(51,185,121,.13);
}

.hero-live-bottom small {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;
}

.hero-live-bottom strong {
    display: block;

    margin-top: 1px;

    color:
        var(--text);

    font-size: 9px;

    font-weight: 800;
}

.hero-live-bottom > a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;

    color:
        var(--primary);

    font-size: 9px;

    font-weight: 800;
}

/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width: 1180px) {

    .hero-layout {
        grid-template-columns:
            minmax(0,.9fr)
            minmax(470px,1.1fr);

        gap: 35px;
    }

    .hero-content h1 {
        font-size:
            clamp(43px,4.6vw,60px);
    }

}

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            35px 0 45px;
    }

    .hero-content,
    .hero-visual {
        width: 100%;
        max-width: 720px;
        margin-inline: auto;
    }

    .hero-visual {
        justify-self: center;
    }
}

@media (max-width: 700px) {

    .hero-layout {
        padding:
            26px 0 38px;
    }

    .hero-content h1 {
        font-size:
            clamp(38px,11vw,54px);
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
    }

    .hero-live-image {
        height: 235px;
    }

    .hero-game-row {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .hero-game-card:last-child {
        grid-column:
            1 / -1;
    }
}

@media (max-width: 480px) {

    .hero-layout {
        padding:
            22px 0 32px;
    }

    .hero-content h1 {
        font-size:
            clamp(35px,11vw,46px);
    }

    .hero-mini-features {
        display: grid;
        grid-template-columns:
            1fr 1fr;
    }

    .hero-live-image {
        height: 220px;
    }

    .hero-live-team strong {
        font-size: 13px;
    }

    .hero-score-box strong {
        font-size: 22px;
    }

    .hero-game-row {
        grid-template-columns: 1fr;
    }

    .hero-game-card:last-child {
        grid-column: auto;
    }
}



/* ==========================================================
05. PREMIUM SPORTS / CASINO TICKER
========================================================== */

.sports-ticker {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding:
        10px 0;

    background:
        linear-gradient(
            90deg,
            #183B56 0%,
            #234E70 45%,
            #285D84 100%
        );

    border-top:
        1px solid
        rgba(255,255,255,.08);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 12px 35px
        rgba(25,54,76,.10);
}


/* Fade left/right edges */

.sports-ticker::before,
.sports-ticker::after {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    bottom: 0;

    width: 90px;

    pointer-events: none;
}


.sports-ticker::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #183B56,
            transparent
        );
}


.sports-ticker::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #285D84,
            transparent
        );
}


/* ==========================================================
MOVING TRACK
========================================================== */

.ticker-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 14px;

    padding:
        0 15px;

    animation:
        premiumTickerMove
        34s linear infinite;

    will-change:
        transform;
}


/* Pause on hover */

.sports-ticker:hover
.ticker-track {
    animation-play-state:
        paused;
}


/* ==========================================================
TICKER CARD
========================================================== */

.ticker-card {
    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 205px;

    padding:
        8px 11px 8px 8px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        14px;

    background:
        rgba(255,255,255,.07);

    color: #fff;

    backdrop-filter:
        blur(8px);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;

    flex-shrink: 0;
}


.ticker-card:hover {
    border-color:
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.13);

    transform:
        translateY(-2px);
}


/* ==========================================================
THUMBNAIL
========================================================== */

.ticker-thumb {
    position: relative;

    width: 58px;
    height: 47px;

    flex:
        0 0 58px;

    overflow: hidden;

    border-radius:
        10px;

    background:
        rgba(255,255,255,.08);
}


.ticker-thumb::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(8,25,37,.28)
        );
}


.ticker-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position:
        center;

    transition:
        transform .35s ease;
}


.ticker-card:hover
.ticker-thumb img {
    transform:
        scale(1.08);
}


/* ==========================================================
TEXT
========================================================== */

.ticker-content {
    min-width: 95px;

    flex: 1;
}


.ticker-content span {
    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 7px;

    font-weight: 700;

    letter-spacing:
        .07em;

    text-transform:
        uppercase;

    white-space:
        nowrap;
}


.ticker-content strong {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.2;

    white-space:
        nowrap;
}


/* Arrow */

.ticker-card > i {
    color:
        #F2B38D;

    font-size: 9px;

    opacity: .7;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


.ticker-card:hover > i {
    opacity: 1;

    transform:
        translate(2px,-2px);
}


/* ==========================================================
DIVIDER
========================================================== */

.ticker-divider {
    width: 5px;
    height: 5px;

    flex:
        0 0 5px;

    border-radius:
        50%;

    background:
        var(--accent);

    box-shadow:
        0 0 0
        4px rgba(217,120,61,.10);
}


/* ==========================================================
ANIMATION
========================================================== */

@keyframes premiumTickerMove {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* ==========================================================
TABLET
========================================================== */

@media (max-width: 900px) {

    .sports-ticker {
        padding:
            9px 0;
    }


    .ticker-track {
        gap: 11px;

        animation-duration:
            30s;
    }


    .ticker-card {
        min-width: 185px;

        padding:
            7px 10px 7px 7px;
    }


    .ticker-thumb {
        width: 52px;
        height: 43px;

        flex-basis:
            52px;
    }


    .ticker-content strong {
        font-size: 10px;
    }

}


/* ==========================================================
MOBILE
========================================================== */

@media (max-width: 600px) {

    .sports-ticker::before,
    .sports-ticker::after {
        width: 35px;
    }


    .ticker-track {
        gap: 9px;

        padding:
            0 8px;

        animation-duration:
            26s;
    }


    .ticker-card {
        min-width: 160px;

        gap: 8px;

        padding:
            6px 8px 6px 6px;

        border-radius:
            12px;
    }


    .ticker-thumb {
        width: 45px;
        height: 39px;

        flex-basis:
            45px;

        border-radius:
            8px;
    }


    .ticker-content {
        min-width: 78px;
    }


    .ticker-content span {
        font-size: 6px;
    }


    .ticker-content strong {
        font-size: 9px;
    }


    .ticker-card > i {
        display: none;
    }

}
/* =====================================================
06. HOMEPAGE SECTION GLOBALS
===================================================== */

.section {
    padding:
        95px 0;
}


.section-header {
    display: flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap: 30px;
}


.section-tag {
    display: inline-flex;

    color:
        var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;
}


.section-header h2,
.center-heading h2,
.markets-content h2,
.faq-heading h2,
.contact-content h2 {
    margin:
        9px 0 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(32px,4vw,50px);

    font-weight: 800;

    letter-spacing:
        -.045em;

    line-height: 1.08;
}


.section-header p,
.center-heading p,
.faq-heading p {
    max-width: 650px;

    margin:
        14px 0 0;

    color:
        var(--text-soft);

    line-height: 1.75;
}


.text-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    color:
        var(--primary);

    font-size: 13px;

    font-weight: 800;
}


.text-button i {
    transition:
        transform .25s ease;
}


.text-button:hover i {
    transform:
        translateX(4px);
}


/* ==========================================================
07. MATCH EXPLORER - FINAL UNIQUE VERSION
========================================================== */

.match-explorer-section {
    position: relative;

    padding:
        82px 0 88px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #F8F6F1 0%,
            #EEEAE2 100%
        );

    color:
        var(--text);
}


/* subtle decoration */

.match-explorer-section::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    left: -200px;
    top: 80px;

    border-radius: 50%;

    background:
        rgba(35,78,112,.055);

    pointer-events: none;
}


.match-explorer-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: 60px;

    border-radius: 50%;

    background:
        rgba(217,120,61,.06);

    pointer-events: none;
}


/* ==========================================================
HEADING
========================================================== */

.match-explorer-heading {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 34px;
}


.match-explorer-heading h2 {
    margin:
        8px 0 0;

    max-width: 620px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(38px,4vw,52px);

    line-height: 1.05;

    letter-spacing:
        -.045em;

    font-weight: 800;

    color:
        var(--text);
}


.match-explorer-heading h2 span {
    color:
        var(--primary);
}


.match-explorer-heading-right {
    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 25px;
}


.match-explorer-heading-right p {
    max-width: 460px;

    margin: 0;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


.match-view-all {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color:
        var(--primary);

    font-size: 11px;

    font-weight: 800;
}


.match-view-all i {
    transition:
        transform .22s ease;
}


.match-view-all:hover i {
    transform:
        translateX(4px);
}


/* ==========================================================
BOARD
========================================================== */

.match-explorer-board {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        175px
        minmax(0,1fr)
        285px;

    gap: 12px;

    padding: 12px;

    border:
        1px solid
        rgba(35,78,112,.12);

    border-radius:
        26px;

    background:
        rgba(255,255,255,.58);

    box-shadow:
        0 22px 65px
        rgba(35,58,76,.09);

    backdrop-filter:
        blur(14px);
}


/* ==========================================================
SPORT MENU
========================================================== */

.match-sport-menu {
    display: grid;

    align-content: start;

    gap: 7px;

    padding: 6px;
}


.match-sport-button {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 66px;

    padding:
        8px 10px;

    border: 0;

    border-radius:
        14px;

    background:
        transparent;

    color:
        var(--text);

    text-align: left;

    transition:
        .22s ease;
}


.match-sport-button:hover {
    background:
        rgba(35,78,112,.07);
}


.match-sport-button.active {
    background:
        var(--primary);

    color: #fff;

    box-shadow:
        0 10px 25px
        rgba(35,78,112,.18);
}


.match-sport-icon {
    display: grid;

    place-items: center;

    width: 37px;
    height: 37px;

    flex:
        0 0 37px;

    border-radius:
        11px;

    background:
        var(--primary-soft);

    color:
        var(--primary);

    font-size: 12px;
}


.match-sport-button.active
.match-sport-icon {
    background:
        rgba(255,255,255,.13);

    color: #fff;
}


.match-sport-button > span:last-child {
    font-size: 11px;

    font-weight: 800;
}


.match-sport-button small {
    display: block;

    margin-bottom: 2px;

    color:
        var(--text-soft);

    font-size: 7px;

    font-weight: 700;

    text-transform: uppercase;
}


.match-sport-button.active small {
    color:
        rgba(255,255,255,.55);
}


/* ==========================================================
FEATURE STAGE
========================================================== */

.match-feature-stage {
    position: relative;

    min-width: 0;

    min-height: 390px;

    overflow: hidden;

    border-radius:
        20px;

    background:
        var(--primary-dark);
}


.match-feature-content {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transform:
        scale(1.02);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .45s ease;
}


.match-feature-content.active {
    opacity: 1;

    visibility: visible;

    transform:
        scale(1);
}


.match-feature-image {
    position: relative;

    width: 100%;
    height: 100%;
}


.match-feature-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


.match-feature-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,27,40,.07) 0%,
            rgba(10,27,40,.16) 45%,
            rgba(10,27,40,.90) 100%
        );
}


/* ==========================================================
FEATURE TOP
========================================================== */

.match-feature-top {
    position: absolute;

    z-index: 3;

    top: 16px;
    left: 16px;
    right: 16px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 10px;
}


.match-feature-top > span,
.match-feature-top > small {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    min-height: 31px;

    padding:
        0 10px;

    border-radius:
        999px;

    font-size: 8px;

    font-weight: 800;
}


.match-feature-top > span {
    color: #fff;

    background:
        rgba(16,43,61,.78);

    backdrop-filter:
        blur(8px);
}


.match-feature-top > small {
    color:
        var(--primary-dark);

    background:
        rgba(255,255,255,.91);
}


/* ==========================================================
FEATURE BOTTOM
========================================================== */

.match-feature-bottom {
    position: absolute;

    z-index: 3;

    left: 20px;
    right: 20px;
    bottom: 20px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: end;

    gap: 18px;

    color: #fff;
}


.match-feature-team small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,.55);

    font-size: 8px;

    text-transform:
        uppercase;
}


.match-feature-team strong {
    display: block;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(21px,2vw,29px);

    line-height: 1.1;

    font-weight: 800;
}


.match-feature-team.right {
    text-align: right;
}


.match-feature-vs {
    display: grid;

    place-items: center;

    width: 45px;
    height: 45px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 50%;

    background:
        rgba(255,255,255,.11);

    backdrop-filter:
        blur(8px);

    font-size: 9px;

    font-weight: 900;
}


/* ==========================================================
RIGHT MARKET PANEL
========================================================== */

.match-market-panel {
    padding:
        19px 17px;

    border-radius:
        20px;

    background:
        var(--surface);

    border:
        1px solid
        rgba(35,78,112,.10);
}


.match-market-panel-head {
    display: flex;

    align-items: flex-start;

    justify-content:
        space-between;

    gap: 10px;

    padding-bottom: 15px;

    border-bottom:
        1px solid
        var(--border);
}


.match-market-panel-head small {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;
}


.match-market-panel-head strong {
    display: block;

    margin-top: 3px;

    color:
        var(--text);

    font-size: 14px;

    font-weight: 800;
}


.market-status {
    padding:
        5px 8px;

    border-radius:
        999px;

    background:
        var(--primary-soft);

    color:
        var(--primary);

    font-size: 7px;

    font-weight: 800;
}


/* ==========================================================
MARKETS
========================================================== */

.match-market-options {
    display: grid;

    gap: 7px;

    margin-top: 15px;
}


.match-market-option {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 12px;

    min-height: 48px;

    padding:
        0 12px;

    border:
        1px solid
        var(--border);

    border-radius:
        11px;

    background: #fff;

    transition:
        .22s ease;
}


.match-market-option:hover {
    border-color:
        var(--primary);

    background:
        var(--primary-soft);

    transform:
        translateX(3px);
}


.match-market-option span {
    color:
        var(--text-soft);

    font-size: 9px;

    font-weight: 700;
}


.match-market-option strong {
    color:
        var(--text);

    font-size: 13px;

    font-weight: 900;
}


.match-market-extra {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 10px;

    margin-top: 7px;

    padding:
        11px 3px;

    border-bottom:
        1px solid
        var(--border);
}


.match-market-extra span {
    display: block;

    color:
        var(--text-soft);

    font-size: 7px;
}


.match-market-extra strong {
    display: block;

    margin-top: 2px;

    font-size: 9px;

    font-weight: 800;
}


.match-market-extra > i {
    color:
        var(--primary);

    font-size: 8px;
}


.match-market-cta {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 10px;

    min-height: 45px;

    margin-top: 14px;

    padding:
        0 13px;

    border-radius:
        11px;

    background:
        var(--primary);

    color: #fff;

    font-size: 9px;

    font-weight: 800;

    transition:
        .22s ease;
}


.match-market-cta:hover {
    background:
        var(--primary-dark);

    transform:
        translateY(-2px);
}


/* ==========================================================
BOTTOM STRIP HEADING
========================================================== */

.match-strip-header {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    margin-top: 28px;
}


.match-strip-header span {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;

    text-transform: uppercase;
}


.match-strip-header strong {
    display: block;

    margin-top: 2px;

    color:
        var(--text);

    font-size: 14px;

    font-weight: 800;
}


.match-strip-controls {
    display: flex;

    gap: 6px;
}


.match-strip-controls button {
    display: grid;

    place-items: center;

    width: 37px;
    height: 37px;

    padding: 0;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    background:
        var(--surface);

    color:
        var(--primary);

    transition:
        .22s ease;
}


.match-strip-controls button:hover {
    color: #fff;

    background:
        var(--primary);

    border-color:
        var(--primary);
}


/* ==========================================================
HORIZONTAL IMAGE STRIP
========================================================== */

.match-image-strip {
    position: relative;

    z-index: 2;

    display: grid;

    grid-auto-flow: column;

    grid-auto-columns:
        minmax(230px, 1fr);

    gap: 11px;

    margin-top: 12px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    overscroll-behavior-inline:
        contain;

    scroll-snap-type:
        inline mandatory;
}


.match-image-strip::-webkit-scrollbar {
    display: none;
}


.match-image-card {
    position: relative;

    height: 155px;

    overflow: hidden;

    border-radius:
        17px;

    scroll-snap-align:
        start;

    background:
        var(--primary-dark);

    box-shadow:
        0 10px 30px
        rgba(30,47,61,.08);

    transition:
        transform .25s ease;
}


.match-image-card:hover {
    transform:
        translateY(-4px);
}


.match-image-card > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.match-image-card:hover > img {
    transform:
        scale(1.06);
}


.match-image-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(11,30,44,.05),
            rgba(11,30,44,.88)
        );
}


.match-image-card-content {
    position: absolute;

    z-index: 3;

    left: 14px;
    right: 14px;
    bottom: 13px;

    color: #fff;
}


.match-image-card-content span {
    display: block;

    color:
        #F2B38D;

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;
}


.match-image-card-content strong {
    display: block;

    margin-top: 2px;

    font-size: 14px;

    font-weight: 800;
}


.match-image-card-content small {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.58);

    font-size: 8px;
}


/* ==========================================================
TABLET
========================================================== */

@media (max-width: 1050px) {

    .match-explorer-board {
        grid-template-columns:
            145px
            minmax(0,1fr)
            245px;
    }


    .match-sport-button {
        min-height: 61px;
    }

}


/* ==========================================================
MOBILE LAYOUT
========================================================== */

@media (max-width: 900px) {

    .match-explorer-section {
        padding:
            70px 0;
    }


    .match-explorer-heading {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .match-explorer-heading-right {
        align-items:
            flex-start;
    }


    .match-explorer-board {
        grid-template-columns:
            1fr;
    }


    .match-sport-menu {
        display: flex;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .match-sport-menu::-webkit-scrollbar {
        display: none;
    }


    .match-sport-button {
        min-width: 145px;

        flex-shrink: 0;
    }


    .match-feature-stage {
        min-height: 360px;
    }


    .match-market-panel {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 12px;
    }


    .match-market-panel-head,
    .match-market-cta {
        grid-column:
            1 / -1;
    }


    .match-market-options {
        margin-top: 0;
    }

}


/* ==========================================================
PHONE
========================================================== */

@media (max-width: 650px) {

    .match-explorer-section {
        padding:
            55px 0;
    }


    .match-explorer-heading-right {
        flex-direction:
            column;

        gap: 12px;
    }


    .match-explorer-heading h2 {
        font-size:
            clamp(34px,10vw,46px);
    }


    .match-explorer-board {
        padding: 8px;

        border-radius:
            20px;
    }


    .match-feature-stage {
        min-height: 300px;
    }


    .match-feature-bottom {
        left: 14px;
        right: 14px;
        bottom: 14px;

        gap: 8px;
    }


    .match-feature-team strong {
        font-size:
            17px;
    }


    .match-feature-vs {
        width: 38px;
        height: 38px;
    }


    .match-market-panel {
        display: block;
    }


    .match-market-options {
        margin-top: 15px;
    }


    .match-image-strip {
        grid-auto-columns:
            78%;
    }

}


/* ==========================================================
SMALL PHONE
========================================================== */

@media (max-width: 430px) {

    .match-feature-stage {
        min-height: 265px;
    }


    .match-feature-team strong {
        font-size: 14px;
    }


    .match-feature-vs {
        width: 34px;
        height: 34px;

        font-size: 8px;
    }


    .match-image-strip {
        grid-auto-columns:
            86%;
    }

}

/* ==========================================================
SPORTS EXPLORE - OVERLAY IMAGE CARDS
========================================================== */

.sports-explore-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 88px;
    background: linear-gradient(180deg, #e5eaed 0%, #dde4e8 100%);
}

.sports-explore-header {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.sports-explore-header h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--text);
}

.sports-explore-header h2 span {
    color: var(--primary);
}

.sports-explore-header p {
    max-width: 670px;
    margin: 16px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.sports-image-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* CARD */

.sports-overlay-card {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 42px rgba(20, 35, 48, 0.12);
    transition: transform .35s ease, box-shadow .35s ease;
    background: #163b56;
}

.sports-overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(20, 35, 48, 0.18);
}

.sports-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .55s ease;
}

.sports-overlay-card:hover .sports-card-bg {
    transform: scale(1.06);
}

.sports-card-dark-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 28, 42, .15) 0%,
            rgba(11, 28, 42, .22) 30%,
            rgba(11, 28, 42, .58) 60%,
            rgba(11, 28, 42, .88) 100%
        );
}

/* top area */

.sports-card-top {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.sports-floating-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 17px;
    flex: 0 0 50px;
}

.sports-card-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* bottom content */

.sports-card-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    color: #fff;
}

.sports-card-label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
}

.sports-card-content h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
}

.sports-card-content p {
    margin: 12px 0 0;
    max-width: 90%;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
}

.sports-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

.sports-card-footer > span {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .03em;
}

.sports-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    transition: all .25s ease;
}

.sports-overlay-card:hover .sports-arrow {
    background: #fff;
    color: var(--primary);
    transform: translateX(4px);
}

/* responsive */

@media (max-width: 1150px) {
    .sports-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sports-overlay-card {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .sports-explore-section {
        padding: 64px 0 70px;
    }

    .sports-explore-header {
        text-align: left;
        margin: 0 0 30px;
    }

    .sports-explore-header p {
        margin-left: 0;
    }

    .sports-image-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sports-overlay-card {
        min-height: 360px;
    }

    .sports-card-content h3 {
        font-size: 28px;
    }

    .sports-card-content p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.6;
    }

    .sports-floating-icon {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sports-overlay-card {
        min-height: 330px;
        border-radius: 20px;
    }

    .sports-card-top {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .sports-card-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .sports-card-content h3 {
        font-size: 24px;
    }

    .sports-card-chip {
        min-height: 34px;
        padding: 8px 12px;
        font-size: 10px;
    }
}
/* ==========================================================
MARKETS HUB SECTION - NEW PREMIUM VERSION
========================================================== */

.markets-hub-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 94px;
    background:
        radial-gradient(circle at left top, rgba(35, 78, 112, 0.07) 0, rgba(35, 78, 112, 0.07) 180px, transparent 181px),
        radial-gradient(circle at right bottom, rgba(217, 120, 61, 0.06) 0, rgba(217, 120, 61, 0.06) 170px, transparent 171px),
        linear-gradient(180deg, #f7f5ef 0%, #f1eee8 100%);
}

.markets-hub-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 46px;
    align-items: center;
}

.markets-hub-content h2 {
    margin: 12px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--text);
    font-weight: 800;
}

.markets-hub-content h2 span {
    display: block;
    color: var(--primary);
}

.markets-hub-content p {
    max-width: 590px;
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.78;
    color: var(--text-soft);
}

.markets-hub-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.markets-hub-point {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(35, 78, 112, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.markets-hub-point:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 78, 112, 0.18);
    box-shadow: 0 12px 24px rgba(31, 47, 61, 0.07);
}

.markets-hub-point i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
}

.markets-hub-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.markets-hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: .25s ease;
}

.markets-hub-btn.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 28px rgba(35, 78, 112, 0.18);
}

.markets-hub-btn.primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    color: #fff;
}

.markets-hub-btn.secondary {
    border: 1px solid rgba(35, 78, 112, 0.15);
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
}

.markets-hub-btn.secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 78, 112, 0.24);
    background: #fff;
}


/* RIGHT BOARD */

.markets-hub-board {
    padding: 24px;
    border: 1px solid rgba(35, 78, 112, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(249,248,244,0.94) 100%);
    box-shadow: 0 20px 50px rgba(31, 47, 61, 0.10);
}

.markets-board-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.markets-board-head small {
    display: block;
    color: var(--text-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
}

.markets-board-head h3 {
    margin: 6px 0 0;
    font-size: 30px;
    line-height: 1.1;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.markets-board-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.markets-board-tabs button {
    border: 1px solid rgba(35, 78, 112, 0.14);
    background: rgba(255,255,255,0.74);
    color: var(--text);
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.markets-board-tabs button.active,
.markets-board-tabs button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.markets-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.market-compact-card {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(35, 78, 112, 0.10);
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
    box-shadow: 0 10px 24px rgba(31, 47, 61, 0.06);
    transition: .25s ease;
}

.market-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(31, 47, 61, 0.10);
}

.market-compact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.market-chip,
.market-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.market-chip {
    background: var(--primary-soft);
    color: var(--primary);
}

.market-status.live {
    background: #dff5e8;
    color: #0e8b49;
}

.market-status.today {
    background: #fde7d8;
    color: #b35a1f;
}

.market-status.upcoming {
    background: #e7eef8;
    color: #305b8a;
}

.market-compact-card h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    font-weight: 800;
}

.market-compact-card p {
    margin: 10px 0 0;
    min-height: 42px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.market-compact-odds {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    margin-top: 16px;
}

.market-compact-odds div {
    padding: 12px 10px;
    border-radius: 14px;
    border: 1px solid rgba(35, 78, 112, 0.10);
    background: #fff;
    text-align: center;
}

.market-compact-odds small {
    display: block;
    color: var(--text-soft);
    font-size: 10px;
}

.market-compact-odds strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}

.market-compact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.market-compact-card a i {
    transition: transform .2s ease;
}

.market-compact-card a:hover i {
    transform: translateX(4px);
}


/* STATS */

.markets-board-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
}

.markets-stat-box {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(35, 78, 112, 0.10);
    background: rgba(255,255,255,0.8);
    text-align: center;
}

.markets-stat-box small {
    display: block;
    color: var(--text-soft);
    font-size: 11px;
}

.markets-stat-box strong {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}


/* RESPONSIVE */

@media (max-width: 1180px) {
    .markets-hub-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .markets-hub-content {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .markets-card-grid {
        grid-template-columns: 1fr;
    }

    .markets-board-stats {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .markets-board-top {
        flex-direction: column;
    }

    .markets-board-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 650px) {
    .markets-hub-section {
        padding: 64px 0 70px;
    }

    .markets-hub-content h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .markets-hub-points {
        grid-template-columns: 1fr;
    }

    .markets-hub-actions {
        flex-direction: column;
    }

    .markets-hub-btn {
        width: 100%;
    }

    .markets-hub-board {
        padding: 18px;
        border-radius: 22px;
    }

    .markets-board-head h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .markets-board-stats {
        grid-template-columns: 1fr;
    }

    .market-compact-odds {
        grid-template-columns: 1fr;
    }

    .market-compact-card h4 {
        font-size: 20px;
    }
}

/* ==========================================================
GETTING STARTED - PREMIUM DARK FLOW
========================================================== */

.access-flow-section {
    position: relative;
    overflow: hidden;

    padding:
        90px 0 96px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(54,117,163,.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(217,120,61,.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #102A3D 0%,
            #173E59 50%,
            #102D42 100%
        );

    color: #fff;
}


/* subtle pattern */

.access-flow-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .11;

    background-image:
        radial-gradient(
            rgba(255,255,255,.16) 1px,
            transparent 1px
        );

    background-size:
        26px 26px;

    pointer-events: none;
}


/* ==========================================================
GLOWS
========================================================== */

.access-flow-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(60px);
}


.glow-one {
    width: 320px;
    height: 320px;

    top: -130px;
    left: -120px;

    background:
        rgba(51,118,163,.22);
}


.glow-two {
    width: 320px;
    height: 320px;

    right: -100px;
    bottom: -140px;

    background:
        rgba(217,120,61,.16);
}


/* ==========================================================
LAYOUT
========================================================== */

.access-flow-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,.72fr)
        minmax(580px,1.28fr);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
LEFT INTRO
========================================================== */

.access-flow-intro {
    max-width: 540px;
}


.access-flow-tag {
    display: inline-block;

    color:
        #F2B38D;

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        .16em;

    text-transform:
        uppercase;
}


.access-flow-intro h2 {
    margin:
        13px 0 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(42px,4.5vw,62px);

    line-height: 1.01;

    letter-spacing:
        -.05em;

    font-weight: 800;

    color: #fff;
}


.access-flow-intro h2 span {
    display: block;

    color:
        #F2B38D;
}


.access-flow-intro > p {
    max-width: 520px;

    margin:
        20px 0 0;

    color:
        rgba(255,255,255,.67);

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================================
SUMMARY ITEMS
========================================================== */

.access-flow-summary {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-top: 26px;
}


.access-flow-summary > div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        13px;

    background:
        rgba(255,255,255,.055);

    backdrop-filter:
        blur(8px);
}


.access-flow-summary i {
    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    flex:
        0 0 34px;

    border-radius:
        10px;

    background:
        rgba(242,179,141,.13);

    color:
        #F2B38D;

    font-size: 11px;
}


.access-flow-summary span {
    color:
        rgba(255,255,255,.54);

    font-size: 8px;

    line-height: 1.4;
}


.access-flow-summary strong {
    display: block;

    margin-bottom: 2px;

    color: #fff;

    font-size: 9px;
}


/* ==========================================================
MAIN BUTTON
========================================================== */

.access-flow-main-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    margin-top: 27px;

    padding:
        0 20px;

    border-radius:
        13px;

    color:
        #263D4B;

    background:
        #F2B38D;

    font-size: 12px;

    font-weight: 900;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.18);

    transition:
        .25s ease;
}


.access-flow-main-btn:hover {
    color:
        #183B56;

    background: #fff;

    transform:
        translateY(-3px);
}


.access-flow-main-btn i {
    transition:
        transform .2s ease;
}


.access-flow-main-btn:hover i {
    transform:
        translateX(4px);
}


/* ==========================================================
RIGHT STEPS
========================================================== */

.access-flow-steps {
    position: relative;

    display: grid;

    gap: 13px;
}


/* ==========================================================
STEP CARD
========================================================== */

.access-step-card {
    position: relative;

    display: grid;

    grid-template-columns:
        auto
        auto
        minmax(0,1fr)
        auto;

    align-items: center;

    gap: 17px;

    min-height: 138px;

    padding:
        20px 21px;

    overflow: visible;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius:
        21px;

    background:
        linear-gradient(
            100deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.045)
        );

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 15px 38px
        rgba(4,15,24,.13);

    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease;
}


.access-step-card:hover {
    transform:
        translateX(7px);

    border-color:
        rgba(242,179,141,.35);

    background:
        rgba(255,255,255,.095);
}


/* Highlight middle step */

.access-step-card.featured {
    margin-left: 40px;

    border-color:
        rgba(242,179,141,.28);

    background:
        linear-gradient(
            100deg,
            rgba(217,120,61,.15),
            rgba(255,255,255,.07)
        );
}


/* ==========================================================
CONNECTOR
========================================================== */

.access-step-line {
    position: absolute;

    left: 49px;
    bottom: -24px;

    width: 1px;
    height: 35px;

    z-index: 5;

    background:
        linear-gradient(
            180deg,
            rgba(242,179,141,.6),
            rgba(242,179,141,.08)
        );
}


/* ==========================================================
NUMBER
========================================================== */

.access-step-number {
    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    flex:
        0 0 42px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:
        12px;

    background:
        rgba(255,255,255,.055);

    color:
        rgba(255,255,255,.42);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    font-weight: 900;
}


/* ==========================================================
ICON
========================================================== */

.access-step-icon {
    display: grid;

    place-items: center;

    width: 52px;
    height: 52px;

    flex:
        0 0 52px;

    border-radius:
        15px;

    background:
        rgba(242,179,141,.13);

    color:
        #F2B38D;

    font-size: 17px;

    box-shadow:
        inset 0 0 0
        1px rgba(242,179,141,.08);
}


.access-step-card.featured
.access-step-icon {
    background:
        #F2B38D;

    color:
        #183B56;
}


/* ==========================================================
CONTENT
========================================================== */

.access-step-content > span {
    display: block;

    color:
        #F2B38D;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        .1em;

    text-transform:
        uppercase;
}


.access-step-content h3 {
    margin:
        5px 0 0;

    color: #fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 18px;

    font-weight: 800;
}


.access-step-content p {
    max-width: 460px;

    margin:
        7px 0 0;

    color:
        rgba(255,255,255,.56);

    font-size: 11px;

    line-height: 1.6;
}


/* ==========================================================
RIGHT ARROW
========================================================== */

.access-step-arrow {
    display: grid;

    place-items: center;

    width: 37px;
    height: 37px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:
        50%;

    color:
        rgba(255,255,255,.55);

    transition:
        .23s ease;
}


.access-step-card:hover
.access-step-arrow {
    color:
        #183B56;

    border-color:
        #F2B38D;

    background:
        #F2B38D;

    transform:
        translateX(3px);
}


/* ==========================================================
FINAL STATUS
========================================================== */

.access-step-status {
    display: grid;

    place-items: center;

    width: 37px;
    height: 37px;

    border-radius:
        50%;

    background:
        rgba(57,201,127,.14);

    color:
        #4ADD92;

    border:
        1px solid
        rgba(74,221,146,.18);

    font-size: 11px;
}


/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .access-flow-layout {
        grid-template-columns:
            minmax(0,.8fr)
            minmax(500px,1.2fr);

        gap: 42px;
    }


    .access-step-card.featured {
        margin-left: 20px;
    }

}


@media (max-width: 900px) {

    .access-flow-section {
        padding:
            75px 0 82px;
    }


    .access-flow-layout {
        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .access-flow-intro {
        max-width: 680px;
    }


    .access-flow-steps {
        max-width: 760px;

        width: 100%;

        margin:
            0 auto;
    }


    .access-step-card.featured {
        margin-left: 0;
    }

}


@media (max-width: 650px) {

    .access-flow-section {
        padding:
            58px 0 65px;
    }


    .access-flow-intro h2 {
        font-size:
            clamp(36px,10vw,48px);
    }


    .access-flow-summary {
        grid-template-columns:
            1fr;
    }


    .access-flow-main-btn {
        width: 100%;
    }


    .access-step-card {
        grid-template-columns:
            auto
            minmax(0,1fr)
            auto;

        gap: 12px;

        min-height: auto;

        padding:
            17px;

        border-radius:
            18px;
    }


    .access-step-number {
        display: none;
    }


    .access-step-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius:
            13px;

        font-size: 15px;
    }


    .access-step-content h3 {
        font-size: 16px;
    }


    .access-step-content p {
        font-size: 10px;
    }


    .access-step-line {
        left: 39px;

        height: 30px;

        bottom: -21px;
    }

}


@media (max-width: 430px) {

    .access-step-card {
        grid-template-columns:
            auto
            minmax(0,1fr);
    }


    .access-step-arrow,
    .access-step-status {
        display: none;
    }


    .access-step-content h3 {
        font-size: 15px;
    }

}

/* ==========================================================
CONTACT / SUPPORT - PREMIUM VERSION
========================================================== */

.support-section {
    position: relative;
    overflow: hidden;

    padding:
        88px 0;

    background:
        linear-gradient(
            135deg,
            #E5EAED 0%,
            #DDE5E8 100%
        );
}


/* ==========================================================
SHELL
========================================================== */

.support-shell {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(430px,.95fr);

    overflow: hidden;

    border:
        1px solid
        rgba(35,78,112,.12);

    border-radius:
        30px;

    background:
        #F8F6F1;

    box-shadow:
        0 25px 70px
        rgba(30,47,61,.12);
}


/* ==========================================================
LEFT
========================================================== */

.support-content {
    padding:
        65px 64px;
}


.support-content h2 {
    max-width: 650px;

    margin:
        11px 0 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(40px,4.2vw,58px);

    line-height: 1.03;

    letter-spacing:
        -.05em;

    color:
        var(--text);

    font-weight: 800;
}


.support-content h2 span {
    display: block;

    color:
        var(--primary);
}


.support-content > p {
    max-width: 590px;

    margin:
        18px 0 0;

    color:
        var(--text-soft);

    font-size: 15px;

    line-height: 1.75;
}


/* ==========================================================
CONTACT LIST
========================================================== */

.support-contact-list {
    display: grid;

    gap: 10px;

    margin-top: 30px;
}


.support-contact-item {
    display: grid;

    grid-template-columns:
        auto
        minmax(0,1fr)
        auto;

    align-items: center;

    gap: 13px;

    min-height: 78px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(35,78,112,.11);

    border-radius:
        16px;

    background:
        #EEEAE2;

    transition:
        transform .23s ease,
        border-color .23s ease,
        background .23s ease,
        box-shadow .23s ease;
}


.support-contact-item:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(35,78,112,.22);

    background:
        #fff;

    box-shadow:
        0 10px 24px
        rgba(30,47,61,.07);
}


.support-contact-item.featured {
    border-color:
        rgba(37,211,102,.25);

    background:
        linear-gradient(
            90deg,
            rgba(37,211,102,.07),
            #EEEAE2
        );
}


/* ==========================================================
ICON
========================================================== */

.support-contact-icon {
    display: grid;

    place-items: center;

    width: 50px;
    height: 50px;

    flex:
        0 0 50px;

    border-radius:
        14px;

    background:
        var(--primary);

    color: #fff;

    font-size: 16px;
}


.support-contact-icon.whatsapp {
    background:
        #25D366;
}


/* ==========================================================
TEXT
========================================================== */

.support-contact-text {
    min-width: 0;
}


.support-contact-text small {
    display: block;

    color:
        var(--text-soft);

    font-size: 8px;
}


.support-contact-text strong {
    display: block;

    margin-top: 2px;

    overflow: hidden;

    color:
        var(--text);

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    text-overflow:
        ellipsis;
}


.support-contact-text span {
    display: block;

    margin-top: 3px;

    color:
        var(--text-soft);

    font-size: 8px;
}


.support-contact-arrow {
    color:
        var(--primary);

    font-size: 10px;

    transition:
        transform .23s ease;
}


.support-contact-item:hover
.support-contact-arrow {
    transform:
        translate(2px,-2px);
}


/* ==========================================================
RIGHT PANEL
========================================================== */

.support-panel {
    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        45px 42px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #173E59 0%,
            #234E70 55%,
            #173B56 100%
        );
}


/* dots */

.support-panel::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        radial-gradient(
            rgba(255,255,255,.65) 1px,
            transparent 1px
        );

    background-size:
        24px 24px;

    pointer-events: none;
}


.support-panel-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(217,120,61,.22);

    filter:
        blur(60px);
}


/* ==========================================================
PANEL TOP
========================================================== */

.support-panel-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;
}


.support-panel-tag {
    color:
        #F2B38D;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;
}


.support-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 31px;

    padding:
        0 10px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        999px;

    background:
        rgba(255,255,255,.07);

    color:
        rgba(255,255,255,.75);

    font-size: 8px;

    font-weight: 700;
}


.support-status > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #43D98A;

    box-shadow:
        0 0 0
        5px rgba(67,217,138,.13);
}


/* ==========================================================
MAIN PANEL
========================================================== */

.support-panel-main {
    position: relative;

    z-index: 2;

    max-width: 430px;

    padding:
        50px 0 35px;
}


.support-main-icon {
    display: grid;

    place-items: center;

    width: 65px;
    height: 65px;

    border-radius:
        19px;

    color:
        #183B56;

    background:
        #F2D7C5;

    font-size: 23px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.12);
}


.support-panel-main h3 {
    margin:
        22px 0 0;

    max-width: 380px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(27px,2.5vw,37px);

    line-height: 1.08;

    letter-spacing:
        -.035em;

    font-weight: 800;
}


.support-panel-main p {
    max-width: 410px;

    margin:
        13px 0 0;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.7;
}


/* ==========================================================
WHATSAPP BUTTON
========================================================== */

.support-whatsapp-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    margin-top: 23px;

    padding:
        0 17px;

    border-radius:
        12px;

    color: #fff;

    background:
        #25D366;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 12px 30px
        rgba(37,211,102,.18);

    transition:
        .23s ease;
}


.support-whatsapp-btn:hover {
    color: #fff;

    background:
        #1DBE5A;

    transform:
        translateY(-3px);
}


.support-whatsapp-btn
.fa-brands {
    font-size: 16px;
}


.support-whatsapp-btn
.fa-arrow-right {
    margin-left: 3px;

    transition:
        transform .2s ease;
}


.support-whatsapp-btn:hover
.fa-arrow-right {
    transform:
        translateX(4px);
}


/* ==========================================================
BOTTOM INFO
========================================================== */

.support-panel-info {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 8px;
}


.support-panel-info > div {
    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 0;

    padding:
        10px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius:
        12px;

    background:
        rgba(255,255,255,.055);
}


.support-panel-info i {
    color:
        #F2B38D;

    font-size: 11px;
}


.support-panel-info span {
    min-width: 0;
}


.support-panel-info small {
    display: block;

    color:
        rgba(255,255,255,.43);

    font-size: 6px;
}


.support-panel-info strong {
    display: block;

    margin-top: 1px;

    overflow: hidden;

    color: #fff;

    font-size: 8px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width: 1050px) {

    .support-shell {
        grid-template-columns:
            1fr 1fr;
    }


    .support-content {
        padding:
            48px 40px;
    }


    .support-panel {
        padding:
            40px 32px;
    }

}


@media (max-width: 850px) {

    .support-shell {
        grid-template-columns:
            1fr;
    }


    .support-panel {
        min-height: 500px;
    }

}


@media (max-width: 600px) {

    .support-section {
        padding:
            58px 0;
    }


    .support-shell {
        border-radius:
            22px;
    }


    .support-content {
        padding:
            35px 22px;
    }


    .support-content h2 {
        font-size:
            clamp(34px,10vw,45px);
    }


    .support-content > p {
        font-size: 14px;
    }


    .support-contact-item {
        min-height: 72px;

        padding:
            10px 11px;
    }


    .support-contact-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;
    }


    .support-panel {
        min-height: auto;

        padding:
            32px 22px;
    }


    .support-panel-main {
        padding:
            40px 0;
    }


    .support-whatsapp-btn {
        width: 100%;
    }


    .support-panel-info {
        grid-template-columns:
            1fr;
    }

}

/* =====================================================
12. FAQ
===================================================== */

.faq-layout {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 75px;

    align-items:
        flex-start;
}


.faq-list {
    display: grid;

    gap: 10px;
}


.faq-item {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        var(--surface);
}


.faq-question {
    width: 100%;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 20px;

    padding: 19px;

    border: 0;

    background: none;

    color:
        var(--text);

    text-align: left;

    font-weight: 800;
}


.faq-question i {
    color:
        var(--primary);

    transition:
        transform .25s ease;
}


.faq-item.active
.faq-question i {
    transform:
        rotate(45deg);
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding:
        0 19px;

    transition:
        max-height .35s ease,
        padding .35s ease;
}


.faq-answer p {
    margin: 0;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.75;
}


.faq-item.active
.faq-answer {
    max-height: 200px;

    padding:
        0 19px 19px;
}


/* =====================================================
13. FOOTER
===================================================== */

.site-footer {
    position: relative;
    padding: 72px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(217,120,61,.12), transparent 30%),
        radial-gradient(circle at 92% 85%, rgba(79,126,159,.16), transparent 32%),
        linear-gradient(135deg, #203A4D 0%, #294A60 52%, #203A4D 100%);
    color: #F7F4EE;
    border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.site-footer .site-container {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.55fr repeat(4,1fr);
    gap: 46px;
}

.footer-brand .brand {
    color: #F7F4EE;
}

.footer-brand .brand-icon {
    background: linear-gradient(145deg, var(--accent), #B85B2F);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.footer-brand .brand-text strong {
    color: #FFFFFF;
}

.footer-brand .brand-text strong span {
    color: #F2B38D;
}

.footer-brand .brand-text small {
    color: rgba(255,255,255,.56);
}

.footer-brand > p {
    max-width: 330px;
    margin-top: 21px;
    color: rgba(255,255,255,.67);
    font-size: 13px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    color: #F7F4EE;
    transition: all .25s ease;
}

.footer-socials a:hover {
    color: #203A4D;
    border-color: var(--accent-soft);
    background: var(--accent-soft);
    transform: translateY(-3px);
}

.footer-main h3 {
    margin: 0;
    color: #FFFFFF;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
    margin-top: 19px;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.55;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #F2B38D;
    transform: translateX(3px);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    width: 18px;
    color: #F2B38D;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    padding: 24px 0 27px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.52);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.footer-bottom a {
    color: rgba(255,255,255,.58);
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: #F2B38D;
}


/* ==========================================================
FLOATING WHATSAPP BUTTON
========================================================== */

.whatsapp-float {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 999;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    border-radius: 18px;

    background: #25D366;
    color: #fff;

    font-size: 28px;

    box-shadow:
        0 14px 35px
        rgba(37, 211, 102, .28);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.whatsapp-float:hover {
    color: #fff;

    background: #1EBE5D;

    transform:
        translateY(-5px)
        scale(1.04);

    box-shadow:
        0 18px 40px
        rgba(37, 211, 102, .38);
}

.whatsapp-float i {
    line-height: 1;
}


/* Small pulse effect */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -6px;

    border-radius: 22px;

    border:
        1px solid
        rgba(37, 211, 102, .35);

    animation:
        whatsappPulse
        2s infinite;

    pointer-events: none;
}

@keyframes whatsappPulse {

    0% {
        opacity: .8;
        transform: scale(.92);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}


/* Mobile */

@media (max-width: 700px) {

    .whatsapp-float {
        right: 16px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 25px;
    }

}

/* =====================================================
15. SCROLL ANIMATIONS
===================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .75s ease,
        transform .75s
        cubic-bezier(.22,1,.36,1);
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.delay-1 {
    transition-delay:
        .1s;
}


.delay-2 {
    transition-delay:
        .2s;
}


.delay-3 {
    transition-delay:
        .3s;
}


/* ==========================================================
   16. INNER PAGE GLOBAL
========================================================== */

.inner-page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 95px;
    background:
        linear-gradient(
            135deg,
            #EEEAE2 0%,
            #eee5d6 100%
        );
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.26;
    background-image:
        radial-gradient(
            rgba(35, 78, 112, 0.16) 1px,
            transparent 1px
        );
    background-size: 25px 25px;
    pointer-events: none;
}

.inner-page-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.inner-page-shape.shape-left {
    width: 430px;
    height: 430px;
    left: -250px;
    top: -130px;
    background: rgba(35, 78, 112, 0.11);
}

.inner-page-shape.shape-right {
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -180px;
    background: rgba(217, 120, 61, 0.13);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.page-label {
    display: inline-flex;
    padding: 9px 14px;
    border: 1px solid rgba(35, 78, 112, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.inner-hero-content h1 {
    margin: 24px 0 0;
    max-width: 850px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 5.5vw, 75px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.inner-hero-content h1 span {
    color: var(--primary);
}

.inner-hero-content > p {
    max-width: 690px;
    margin: 23px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    color: #73817f;
    font-size: 11px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 8px;
}

.inner-section {
    padding: 95px 0;
}

.soft-section {
    background: var(--surface-secondary);
}


/* ==========================================================
   17. ABOUT PAGE
========================================================== */

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #0e625e,
            #16847c
        );
    color: white;
    box-shadow: 0 30px 75px rgba(35, 78, 112, 0.18);
}

.about-main-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -120px;
    top: -120px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-main-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -65px;
    top: -65px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-icon-large {
    position: absolute;
    top: 40px;
    left: 40px;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 27px;
}

.about-main-card > span {
    position: relative;
    z-index: 2;
    color: var(--accent-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-main-card h2 {
    position: relative;
    z-index: 2;
    margin: 10px 0 0;
    max-width: 410px;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-main-card p {
    position: relative;
    z-index: 2;
    max-width: 410px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 13px;
}

.about-floating-card {
    position: absolute;
    right: -35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--surface);
    box-shadow: var(--shadow);
    animation: pageFloat 4s ease-in-out infinite;
}

@keyframes pageFloat {
    50% {
        transform: translateY(-9px);
    }
}

.about-floating-card > i {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
}

.about-floating-card strong,
.about-floating-card span {
    display: block;
}

.about-floating-card strong {
    font-size: 12px;
}

.about-floating-card span {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 9px;
}

.about-content h2,
.values-content h2 {
    margin: 10px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.07;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.about-content > p,
.values-content > p {
    margin: 18px 0 0;
    color: var(--text-soft);
    line-height: 1.85;
    font-size: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 27px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    font-size: 12px;
    font-weight: 700;
}

.about-points i {
    color: var(--primary);
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.about-service-card {
    position: relative;
    min-height: 300px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition: 0.3s ease;
}

.about-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(35, 78, 112, 0.38);
    box-shadow: var(--shadow-hover);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(35, 78, 112, 0.08);
    font-size: 39px;
    font-weight: 900;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--primary);
    color: white;
    font-size: 19px;
}

.about-service-card h3 {
    margin: 29px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.about-service-card p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.value-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: flex-start;
}

.values-list {
    display: grid;
    gap: 13px;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    transition: 0.25s ease;
}

.value-item:hover {
    transform: translateX(5px);
    border-color: rgba(35, 78, 112, 0.35);
}

.value-icon {
    display: grid;
    place-items: center;
    width: 51px;
    height: 51px;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary);
}

.value-item h3 {
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 800;
}

.value-item p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.inner-cta-section {
    padding: 0 0 95px;
}

.inner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    border-radius: 26px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #168078
        );
}

.inner-cta span {
    color: var(--accent-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inner-cta h2 {
    margin: 7px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    font-weight: 800;
}

.inner-cta p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.67);
}

.inner-cta > a {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 13px;
    background: var(--accent-soft);
    color: #654807;
    font-size: 12px;
    font-weight: 800;
    transition: 0.25s ease;
}

.inner-cta > a:hover {
    transform: translateY(-3px);
}


/* ==========================================================
   18. CONTACT PAGE
========================================================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: start;
}

.contact-information h2 {
    margin: 9px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.contact-information > p {
    margin: 15px 0 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-detail-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
    transition: 0.27s ease;
}

.contact-detail-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-detail-icon {
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 17px;
}

.contact-detail-card span,
.contact-detail-card strong,
.contact-detail-card small {
    display: block;
}

.contact-detail-card span {
    color: var(--text-soft);
    font-size: 9px;
}

.contact-detail-card strong {
    margin-top: 3px;
    font-size: 13px;
}

.contact-detail-card small {
    margin-top: 3px;
    color: #8a9694;
    font-size: 9px;
}

.contact-arrow {
    color: var(--primary);
    font-size: 11px;
    transition: transform 0.25s ease;
}

.contact-detail-card:hover .contact-arrow {
    transform: translateX(4px);
}

.contact-note {
    display: flex;
    gap: 11px;
    margin-top: 22px;
    padding: 15px;
    border: 1px solid #dfd2b8;
    border-radius: 14px;
    background: var(--accent-soft);
}

.contact-note i {
    margin-top: 4px;
    color: #805b14;
}

.contact-note p {
    margin: 0;
    color: #765b28;
    font-size: 11px;
    line-height: 1.65;
}

.contact-form-card {
    padding: clamp(25px, 4vw, 40px);
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.contact-form-header > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-form-header h2 {
    margin: 8px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.contact-form-header p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form {
    margin-top: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: none;
    background: var(--cream);
    color: var(--text);
    transition:
        border 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group input,
.form-group select {
    height: 49px;
    padding: 0 14px;
}

.form-group textarea {
    padding: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(35, 78, 112, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca5a3;
}

.submit-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 51px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 800;
    transition: 0.25s ease;
}

.submit-contact:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 13px 30px rgba(35, 78, 112, 0.2);
}

.form-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.success-alert {
    border: 1px solid #add4c9;
    background: #e6f4ef;
    color: #176552;
}

.error-alert {
    border: 1px solid #e2b7aa;
    background: #faeae5;
    color: #8d4432;
}


/* ==========================================================
   19. PRIVACY POLICY PAGE
   Classes: .policy-*
========================================================== */

.policy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.policy-sidebar {
    min-width: 0;
}

.policy-sidebar-inner {
    position: sticky;
    top: 108px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(30, 47, 61, 0.06);
}

.policy-sidebar-inner > span {
    display: inline-flex;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.policy-sidebar-inner h3 {
    margin: 7px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--text);
}

.policy-sidebar-inner > p {
    margin: 7px 0 0;
    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.6;
}

.policy-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 22px;
}

.policy-sidebar nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.policy-sidebar nav a:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateX(3px);
}

.policy-content {
    min-width: 0;
    max-width: 900px;
}

.policy-block {
    scroll-margin-top: 115px;
    position: relative;
    padding: 0 0 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid var(--border);
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-number {
    display: inline-flex;
    color: var(--primary);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.policy-block h2 {
    margin: 8px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--text);
}

.policy-block h3 {
    margin: 22px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}

.policy-block p {
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.9;
}

.policy-block ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.policy-block li {
    position: relative;
    padding-left: 25px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.75;
}

.policy-block li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
}

.policy-contact-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    margin-top: 10px;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 18px 44px rgba(30, 59, 86, 0.16);
}

.policy-contact-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 17px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    font-size: 21px;
}

.policy-contact-box span {
    color: var(--accent-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.policy-contact-box h2 {
    margin: 6px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(21px, 3vw, 27px);
    font-weight: 800;
}

.policy-contact-box p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    font-size: 12px;
}

.policy-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.policy-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.policy-contact-links a:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
}


/* ==========================================================
   20. LEGAL PAGES - TERMS & DISCLAIMER
   Classes: .legal-*
========================================================== */

.legal-page {
    background: var(--cream);
    color: var(--text);
}

/* Prevent double header spacing if legal-page is accidentally a nested <main>.
   Preferred HTML remains <div class="legal-page"> inside header.php's <main>. */
main.legal-page {
    padding-top: 0;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 70px;
    background:
        radial-gradient(circle at 88% 15%, rgba(217,120,61,.12), transparent 30%),
        radial-gradient(circle at 8% 82%, rgba(35,78,112,.09), transparent 34%),
        linear-gradient(135deg, var(--cream) 0%, var(--surface-secondary) 100%);
}

.legal-hero::before,
.legal-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero::before {
    width: 260px;
    height: 260px;
    right: -85px;
    top: -75px;
    border: 1px solid rgba(35,78,112,.13);
}

.legal-hero::after {
    width: 175px;
    height: 175px;
    left: -70px;
    bottom: -80px;
    border: 1px solid rgba(217,120,61,.18);
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.legal-hero h1 {
    margin: 18px 0 16px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 800;
    color: var(--text);
}

.legal-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(35,78,112,.14);
    border-radius: 999px;
    background: rgba(248,246,241,.7);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-badge i {
    color: var(--accent);
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(30,47,61,.10);
    border-radius: 11px;
    background: rgba(248,246,241,.58);
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
}

.legal-meta i {
    color: var(--primary);
}

.legal-content-section {
    padding: 64px 0 88px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 42px;
}

.legal-sidebar {
    position: sticky;
    top: 108px;
}

.legal-sidebar-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 12px 36px rgba(30,47,61,.055);
}

.legal-sidebar-card h3 {
    margin: 0 0 16px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.legal-nav {
    display: grid;
    gap: 5px;
}

.legal-nav a {
    position: relative;
    display: block;
    padding: 10px 11px 10px 17px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.legal-nav a::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.legal-nav a:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateX(3px);
}

.legal-main {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.legal-card {
    scroll-margin-top: 115px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(30,47,61,.04);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.legal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(35,78,112,.28);
    box-shadow: 0 18px 42px rgba(30,47,61,.08);
}

.legal-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
    color: var(--primary);
    font-size: 18px;
}

.legal-card h2 {
    margin: 2px 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.25;
    font-weight: 800;
    color: var(--text);
}

.legal-card p {
    margin: 0 0 13px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-list {
    display: grid;
    gap: 10px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.legal-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
}

.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 17px;
    border-left: 4px solid var(--accent);
    border-radius: 13px;
    background: var(--accent-soft);
}

.legal-notice i {
    margin-top: 4px;
    color: var(--accent);
}

.legal-notice p {
    margin: 0;
    color: var(--text);
}

.legal-contact-card {
    background:
        linear-gradient(135deg, rgba(35,78,112,.04), rgba(217,120,61,.05)),
        var(--surface);
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 19px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--cream);
    color: var(--text);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.legal-contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(35,78,112,.35);
    background: var(--primary-soft);
}

.legal-contact-item > i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
}

.legal-contact-item span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 11px;
    font-weight: 800;
}

.legal-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
}

.legal-bottom-cta {
    padding: 0 0 88px;
}

.legal-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background:
        radial-gradient(circle at right top, rgba(217,120,61,.16), transparent 38%),
        var(--surface-secondary);
}

.legal-cta-box h2 {
    margin: 13px 0 9px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
}

.legal-cta-box p {
    max-width: 620px;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.legal-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.legal-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 47px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.legal-page .btn:hover {
    transform: translateY(-2px);
}

.legal-page .btn-primary {
    background: var(--primary);
    color: #fff;
}

.legal-page .btn-primary:hover {
    background: var(--primary-dark);
}

.legal-page .btn-outline {
    border: 1px solid rgba(35,78,112,.28);
    background: rgba(248,246,241,.45);
    color: var(--primary);
}

.legal-page .btn-outline:hover {
    background: var(--primary-soft);
}


/* =====================================================
21. HOMEPAGE / GLOBAL RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }


    .hero-layout {
        gap: 35px;
    }


    .category-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .footer-main {
        grid-template-columns:
            repeat(3,1fr);
    }


    .footer-brand {
        grid-column:
            span 3;
    }

}


@media (max-width: 900px) {

    .desktop-nav,
    .header-actions {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .mobile-navigation {
        position: fixed;

        top: 82px;

        left: 15px;

        right: 15px;

        display: flex;

        flex-direction:
            column;

        gap: 3px;

        padding: 13px;

        border:
            1px solid var(--border);

        border-radius:
            18px;

        background:
            rgba(255,253,248,.98);

        box-shadow:
            0 25px 60px
            rgba(31,54,70,.15);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px);

        transition:
            all .3s ease;
    }


    .mobile-navigation.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .mobile-navigation a {
        padding:
            12px 13px;

        border-radius:
            10px;

        color:
            var(--text);

        font-size: 13px;

        font-weight: 700;
    }


    .mobile-navigation a:hover {
        background:
            var(--primary-soft);

        color:
            var(--primary);
    }


    .mobile-navigation
    .mobile-dashboard {
        margin-top: 6px;

        color: white;

        background:
            var(--primary);
    }


    .hero {
        min-height: auto;
    }


    .hero-layout {
        grid-template-columns:
            1fr;

        gap: 65px;

        padding:
            75px 0;
    }


    .hero-content {
        max-width: 760px;
    }


    .hero-visual {
        max-width: 680px;

        width: 100%;

        margin: auto;
    }


    .matches-grid {
        grid-template-columns:
            1fr;
    }


    .markets-layout {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .steps-grid {
        grid-template-columns:
            1fr;
    }


    .step-line {
        display: none;
    }


    .contact-card {
        grid-template-columns:
            1fr;
    }


    .faq-layout {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

}


@media (max-width: 700px) {

    .site-container,
    .header-inner {
        width:
            min(100% - 28px,1380px);
    }


    .section {
        padding:
            70px 0;
    }


    .hero-content h1 {
        font-size:
            clamp(43px,13vw,60px);
    }


    .hero-content > p {
        font-size: 15px;
    }


    .hero-actions {
        flex-direction:
            column;
    }


    .primary-cta,
    .secondary-cta {
        width: 100%;
    }


    .hero-mini-features {
        gap: 13px;
    }


    .floating-sport {
        display: none;
    }


    .sports-display {
        padding: 20px;

        border-radius: 23px;
    }


    .hero-card-decoration {
        display: none;
    }


    .featured-match {
        padding: 18px;
    }


    .team-circle {
        width: 54px;

        height: 54px;

        border-radius: 15px;
    }


    .quick-markets {
        grid-template-columns:
            1fr;
    }


    .section-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .category-grid {
        grid-template-columns:
            1fr;
    }


    .category-card {
        min-height: 280px;
    }


    .benefit-list {
        grid-template-columns:
            1fr;
    }


    .contact-visual {
        min-height: 340px;
    }


    .footer-main {
        grid-template-columns:
            repeat(2,1fr);
    }


    .footer-brand {
        grid-column:
            span 2;
    }


    .footer-bottom {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


@media (max-width: 480px) {

    .header-inner {
        height: 74px;
    }


    main {
        padding-top: 74px;
    }


    .mobile-navigation {
        top: 74px;
    }


    .brand-icon {
        width: 42px;

        height: 42px;
    }


    .brand-text strong {
        font-size: 16px;
    }


    .brand-text small {
        font-size: 8px;
    }


    .hero-layout {
        padding:
            58px 0 65px;
    }


    .hero-mini-features {
        display: grid;

        grid-template-columns:
            1fr 1fr;
    }


    .featured-match {
        gap: 8px;
    }


    .team-circle {
        width: 47px;

        height: 47px;
    }


    .market-row {
        grid-template-columns:
            1fr;
    }


    .footer-main {
        grid-template-columns:
            1fr;
    }


    .footer-brand {
        grid-column: auto;
    }

}


/* ==========================================================
   22. INNER PAGE RESPONSIVE
========================================================== */

@media (max-width: 1000px) {
    .about-intro-grid,
    .value-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-visual {
        max-width: 650px;
    }

    .about-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-layout,
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .policy-sidebar-inner,
    .legal-sidebar {
        position: static;
    }

    .policy-sidebar nav,
    .legal-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-contact-grid {
        grid-template-columns: 1fr;
    }

    .legal-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .inner-page-hero {
        padding: 75px 0 70px;
    }

    .inner-section {
        padding: 70px 0;
    }

    .about-service-grid,
    .policy-sidebar nav,
    .legal-nav {
        grid-template-columns: 1fr;
    }

    .policy-contact-box {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .policy-contact-icon {
        width: 54px;
        height: 54px;
    }

    .legal-hero {
        padding: 82px 0 58px;
    }

    .legal-hero p {
        font-size: 14px;
    }

    .legal-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-meta span {
        width: 100%;
    }

    .legal-content-section {
        padding: 55px 0 68px;
    }

    .legal-card {
        grid-template-columns: 1fr;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .legal-icon {
        width: 48px;
        height: 48px;
    }

    .legal-cta-box {
        padding: 27px 21px;
        border-radius: 20px;
    }

    .legal-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .legal-cta-actions .btn {
        width: 100%;
    }
}


/* =====================================================
23. HEADER / FOOTER RESPONSIVE POLISH
===================================================== */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 38px 44px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding-top: 55px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-bottom div {
        gap: 12px 16px;
    }
}

/* ==========================================================
   24. LEGAL / POLICY FINAL SAFETY FIXES
   Keeps Terms, Disclaimer and Privacy aligned on all screens.
========================================================== */

main.legal-page {
    padding-top: 0 !important;
}

.legal-page .site-container,
.legal-page .container,
.policy-layout,
.legal-layout {
    min-width: 0;
}

@media (max-width: 991px) {
    .legal-hero {
        padding: 66px 0 58px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    main.legal-page {
        padding-top: 0 !important;
    }

    .legal-hero {
        padding: 52px 0 50px;
    }

    .legal-hero h1 {
        margin: 14px 0 12px;
        font-size: clamp(34px, 11vw, 48px);
    }

    .legal-hero p {
        font-size: 14px;
        line-height: 1.75;
    }

    .legal-meta {
        margin-top: 20px;
    }

    .legal-content-section {
        padding: 48px 0 65px;
    }

    .legal-nav {
        grid-template-columns: 1fr;
    }

    .policy-layout {
        gap: 26px;
    }

    .policy-block {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    main.legal-page {
        padding-top: 0 !important;
    }

    .legal-card {
        padding: 20px 18px;
    }

    .legal-meta span {
        font-size: 10px;
    }

    .policy-sidebar-inner {
        padding: 19px;
    }
}

/* ==========================================================
   25. HEADER NAV ACTIVE STATE FIX
   Only current page gets an underline on inner pages.
   Home section links remain available for homepage scroll-spy.
========================================================== */

.desktop-nav .nav-link::after {
    width: 0;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 20px;
}

/* On inner pages, never let homepage section links stay active. */
body:not(.page-home) .desktop-nav .nav-link.section-nav.active {
    color: #425b57;
}

body:not(.page-home) .desktop-nav .nav-link.section-nav.active::after {
    width: 0 !important;
}

/* Current standalone page can still show one clean underline. */
body:not(.page-home) .desktop-nav .nav-link.page-nav.active::after {
    width: 20px;
}

/* Prevent accidental multi-active state from JS on inner pages. */
body:not(.page-home) .desktop-nav .section-nav::after {
    width: 0 !important;
}


/* ==========================================================
   26. TERMS + DISCLAIMER FINAL LAYOUT FIX
========================================================== */

/* header.php already opens <main>; nested legal main must not add top spacing */
main > main.legal-page,
main.legal-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Legal hero must sit directly below the fixed-header main offset. */
.legal-page {
    margin: 0;
    padding: 0;
}

.legal-page .legal-hero {
    min-height: 0;
    margin: 0;
    padding: 64px 0 58px;
    display: block;
}

/* Use the same content width system as the rest of the website. */
.legal-page .legal-hero > .container,
.legal-page .legal-content-section > .container,
.legal-page .legal-bottom-cta > .container {
    width: min(1380px, calc(100% - 40px));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

/* Hero content should never remain invisible because of reveal/observer state. */
.legal-hero .legal-hero-content.reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.legal-hero-content {
    max-width: 820px;
}

.legal-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(42px, 4.6vw, 62px);
}

.legal-hero p {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.75;
}

.legal-content-section {
    margin: 0;
    padding: 58px 0 84px;
}

.legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
}

.legal-sidebar {
    top: 102px;
}

.legal-sidebar-card {
    border-radius: 18px;
}

.legal-card {
    padding: 26px;
    border-radius: 20px;
}

.legal-card h2 {
    font-size: clamp(20px, 2.2vw, 25px);
}

@media (max-width: 991px) {
    .legal-page .legal-hero {
        padding: 52px 0 48px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .legal-page .legal-hero > .container,
    .legal-page .legal-content-section > .container,
    .legal-page .legal-bottom-cta > .container {
        width: min(100% - 28px, 1380px);
    }

    .legal-page .legal-hero {
        padding: 42px 0 40px;
    }

    .legal-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .legal-content-section {
        padding: 42px 0 64px;
    }
}
