/* roulang page: index */
:root {
            --primary: #0b1a30;
            --primary-light: #132842;
            --primary-medium: #1a3558;
            --accent: #d4a745;
            --accent-light: #e8c565;
            --accent-glow: #f5d98b;
            --bg: #f6f7fa;
            --bg-white: #ffffff;
            --bg-light: #eef0f4;
            --text: #1a1d28;
            --text-secondary: #5a5f6e;
            --text-light: #8b8f9a;
            --border: #e2e5ec;
            --border-light: #eef0f5;
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 12px 44px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.13);
            --transition-fast: 0.18s ease;
            --transition: 0.3s ease;
            --transition-slow: 0.45s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* ========== NAVBAR ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-light);
            padding: 0 0;
            height: 62px;
            display: flex;
            align-items: center;
            transition: all var(--transition);
            box-shadow: var(--shadow-xs);
        }

        .site-navbar.scrolled {
            box-shadow: var(--shadow);
            background: rgba(255, 255, 255, 0.97);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
        }

        .navbar-brand-custom {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color var(--transition-fast);
        }
        .navbar-brand-custom:hover {
            color: var(--accent);
        }
        .navbar-brand-custom .brand-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-link-custom {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
            padding: 6px 4px;
            position: relative;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width var(--transition);
        }
        .nav-link-custom:hover::after,
        .nav-link-custom.active::after {
            width: 100%;
        }
        .nav-link-custom.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-link-custom:hover {
            color: var(--accent);
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 9px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.01em;
            box-shadow: 0 2px 10px rgba(212, 167, 69, 0.3);
        }
        .btn-nav-cta:hover {
            background: #c8963a;
            color: #fff;
            box-shadow: 0 4px 18px rgba(212, 167, 69, 0.45);
            transform: translateY(-1px);
        }
        .btn-nav-cta:active {
            transform: scale(0.97);
        }

        .navbar-toggler-custom {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            transition: color var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            color: var(--accent);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 62px;
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            flex-direction: column;
            gap: 12px;
            z-index: 1040;
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
            opacity: 0;
            transition: all var(--transition);
            pointer-events: none;
        }
        .mobile-menu.open {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 768px) {
            .navbar-right {
                display: none;
            }
            .navbar-toggler-custom {
                display: block;
            }
            .navbar-brand-custom {
                font-size: 1rem;
            }
            .navbar-brand-custom .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
        }

        @media (min-width: 769px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu .nav-link-custom {
            font-size: 1rem;
            padding: 8px 0;
            display: block;
            border-bottom: 1px solid var(--border-light);
        }
        .mobile-menu .btn-nav-cta {
            width: 100%;
            justify-content: center;
            margin-top: 4px;
        }

        /* ========== HERO ========== */
        .hero-section {
            padding-top: 100px;
            padding-bottom: 60px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -180px;
            width: 620px;
            height: 620px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 167, 69, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(11, 26, 48, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-row {
            display: flex;
            align-items: center;
            gap: 48px;
            position: relative;
            z-index: 1;
        }
        .hero-text-col {
            flex: 1 1 52%;
        }
        .hero-visual-col {
            flex: 1 1 48%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fef9ee;
            border: 1px solid #f0d89d;
            color: #b8861e;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 0.01em;
        }
        .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #e53935;
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
            }
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }
        .hero-title .highlight {
            color: var(--accent);
            position: relative;
        }
        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 480px;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
            box-shadow: 0 4px 20px rgba(212, 167, 69, 0.35);
        }
        .btn-hero-primary:hover {
            background: #c8963a;
            color: #fff;
            box-shadow: 0 8px 30px rgba(212, 167, 69, 0.5);
            transform: translateY(-2px);
        }
        .btn-hero-primary:active {
            transform: scale(0.96);
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--border);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
        }
        .btn-hero-outline:hover {
            border-color: var(--primary);
            background: var(--primary);
            color: #fff;
        }

        .hero-live-card {
            background: #0d1b2e;
            border-radius: var(--radius-lg);
            padding: 0;
            width: 100%;
            max-width: 460px;
            aspect-ratio: 16 / 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            cursor: pointer;
            transition: all var(--transition-slow);
        }
        .hero-live-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
        }
        .hero-live-card .live-top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 14px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }
        .hero-live-card .live-tag {
            background: #e53935;
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 4px;
            letter-spacing: 0.04em;
            animation: pulse-live 2s infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .hero-live-card .match-info-top {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            font-weight: 500;
        }
        .hero-live-card .play-btn-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            transition: all var(--transition);
            backdrop-filter: blur(4px);
            z-index: 1;
        }
        .hero-live-card:hover .play-btn-circle {
            background: var(--accent);
            transform: scale(1.08);
            box-shadow: 0 0 40px rgba(212, 167, 69, 0.5);
        }
        .hero-live-card .live-bottom-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 14px 18px;
            display: flex;
            justify-content: center;
            gap: 24px;
            z-index: 2;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
        }
        .hero-live-card .score-item {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.05em;
        }
        .hero-live-card .score-vs {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .hero-live-card .card-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 167, 69, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        @media (max-width: 992px) {
            .hero-row {
                flex-direction: column;
                gap: 36px;
                text-align: center;
            }
            .hero-text-col {
                flex: 1 1 100%;
            }
            .hero-visual-col {
                flex: 1 1 100%;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-btns {
                justify-content: center;
            }
            .hero-live-card {
                max-width: 380px;
                aspect-ratio: 16 / 9;
            }
            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-desc {
                font-size: 1rem;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
                padding: 12px 24px;
                font-size: 0.95rem;
            }
            .hero-live-card {
                max-width: 100%;
                aspect-ratio: 16 / 9;
            }
            .hero-live-card .play-btn-circle {
                width: 56px;
                height: 56px;
                font-size: 1.4rem;
            }
            .hero-live-card .score-item {
                font-size: 1.1rem;
            }
            .hero-section {
                padding-top: 80px;
                padding-bottom: 40px;
                min-height: auto;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-padding {
            padding: 80px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .section-header {
                margin-bottom: 34px;
            }
            .section-subtitle {
                font-size: 0.95rem;
            }
        }

        /* ========== FEATURES ========== */
        .features-section {
            background: var(--bg);
        }
        .feature-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 32px 26px 26px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-light);
        }
        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 18px;
            flex-shrink: 0;
        }
        .feature-icon-wrap.icon-blue {
            background: #e8f0fd;
            color: #2563eb;
        }
        .feature-icon-wrap.icon-green {
            background: #e6f7ee;
            color: #16a34a;
        }
        .feature-icon-wrap.icon-orange {
            background: #fef5e7;
            color: #ea8c1e;
        }
        .feature-icon-wrap.icon-purple {
            background: #f1e9fc;
            color: #7c3aed;
        }
        .feature-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 8px;
            font-family: var(--font-heading);
        }
        .feature-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin: 0;
        }

        /* ========== MATCHES ========== */
        .matches-section {
            background: var(--bg-white);
        }
        .match-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 18px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .match-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            border-color: #d5d8e0;
        }
        .match-date {
            font-size: 0.82rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        .match-teams {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.02em;
            font-family: var(--font-heading);
        }
        .match-time {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 600;
        }
        .match-status {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .match-status.upcoming {
            background: #eef2ff;
            color: #4f6ef7;
        }
        .match-status.live-now {
            background: #fdecea;
            color: #e53935;
            animation: pulse-live 2s infinite;
        }
        .btn-match-watch {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
        }
        .btn-match-watch:hover {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 16px rgba(212, 167, 69, 0.4);
        }

        /* ========== STATS ========== */
        .stats-section {
            background: var(--primary);
            color: #fff;
            padding: 60px 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px 10px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent-light);
            letter-spacing: -0.02em;
            font-family: var(--font-heading);
            line-height: 1.1;
        }
        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.85rem;
            }
        }

        /* ========== GUIDE ========== */
        .guide-section {
            background: var(--bg);
        }
        .guide-step-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 28px 22px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid transparent;
            height: 100%;
        }
        .guide-step-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            border-color: var(--border-light);
        }
        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            font-family: var(--font-heading);
        }
        .step-content h5 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--primary);
            margin-bottom: 4px;
            font-family: var(--font-heading);
        }
        .step-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* ========== HIGHLIGHT ========== */
        .highlight-section {
            background: var(--bg-white);
        }
        .highlight-row {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .highlight-img-box {
            flex: 1 1 45%;
            background: linear-gradient(135deg, #0d1b2e 0%, #1a3558 100%);
            border-radius: var(--radius-lg);
            aspect-ratio: 16 / 10;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .highlight-img-box .glow-ring {
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 2px solid rgba(212, 167, 69, 0.3);
            animation: spin-slow 20s linear infinite;
        }
        @keyframes spin-slow {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        .highlight-text-col {
            flex: 1 1 55%;
        }
        .highlight-text-col h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .highlight-text-col p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .highlight-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text);
            border-bottom: 1px solid var(--border-light);
        }
        .highlight-list li:last-child {
            border-bottom: none;
        }
        .highlight-list li i {
            color: var(--accent);
            margin-top: 3px;
            flex-shrink: 0;
        }
        @media (max-width: 992px) {
            .highlight-row {
                flex-direction: column;
                gap: 30px;
            }
            .highlight-img-box {
                aspect-ratio: 16 / 9;
                width: 100%;
            }
            .highlight-text-col h3 {
                font-size: 1.5rem;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: var(--bg);
        }
        .faq-wrap {
            max-width: 760px;
            margin: 0 auto;
        }
        .accordion-custom .accordion-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-xs);
            transition: all var(--transition-fast);
        }
        .accordion-custom .accordion-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .accordion-custom .accordion-button {
            font-weight: 600;
            font-size: 1rem;
            color: var(--primary);
            background: #fff;
            padding: 18px 22px;
            border-radius: var(--radius) !important;
            box-shadow: none !important;
            transition: all var(--transition-fast);
            font-family: var(--font-heading);
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            color: var(--accent);
            background: #fffefb;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(212, 167, 69, 0.2) !important;
            border-color: var(--accent);
        }
        .accordion-custom .accordion-button::after {
            background-image: none;
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.9rem;
            transition: transform var(--transition);
        }
        .accordion-custom .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .accordion-custom .accordion-body {
            padding: 16px 22px 22px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.75;
            background: #fffefb;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(160deg, var(--primary) 0%, #0f2240 100%);
            color: #fff;
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 167, 69, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .cta-section p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.03em;
            box-shadow: 0 6px 28px rgba(212, 167, 69, 0.4);
        }
        .btn-cta-large:hover {
            background: #e0b850;
            color: #fff;
            box-shadow: 0 10px 36px rgba(212, 167, 69, 0.55);
            transform: translateY(-3px);
        }
        .btn-cta-large:active {
            transform: scale(0.96);
        }
        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 1.5rem;
            }
            .cta-section p {
                font-size: 0.95rem;
            }
            .btn-cta-large {
                padding: 14px 28px;
                font-size: 1rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0a1324;
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 24px;
            font-size: 0.9rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-brand-col {
            flex: 1 1 250px;
            min-width: 200px;
        }
        .footer-brand-name {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }
        .footer-links-col {
            flex: 1 1 160px;
            min-width: 130px;
        }
        .footer-links-col h6 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer-links-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links-col ul li {
            margin-bottom: 8px;
        }
        .footer-links-col ul li a {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-links-col ul li a:hover {
            color: var(--accent-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }
        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                gap: 24px;
            }
            .site-footer {
                padding: 36px 0 20px;
            }
        }

        /* ========== UTILS ========== */
        .text-accent {
            color: var(--accent) !important;
        }
        .bg-soft {
            background: var(--bg);
        }
        .bg-white-soft {
            background: var(--bg-white);
        }
        .mt-section {
            margin-top: 0;
        }
