:root {
            --primary: #1e3a8a;
            --primary-light: #3b82f6;
            --primary-dark: #0f1e4e;
            --accent: #c8a96a;
            --accent-light: #e5c88f;
            --accent-dark: #a4874a;
            --dark-bg: #0a0f1f;
            --dark-bg-2: #111a33;
            --dark-card: rgba(17, 28, 54, 0.75);
            --glass-bg: rgba(255, 255, 255, 0.06);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-light: #f0f4fa;
            --text-muted: #a2b3d4;
            --text-dim: #7a8aa8;
            --border-light: rgba(200, 169, 106, 0.25);
            --radius-lg: 22px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 10px 32px rgba(0, 0, 0, 0.28);
            --shadow-glow: 0 0 24px rgba(59, 130, 246, 0.25);
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 10%, rgba(30, 58, 138, 0.45) 0%, transparent 55%),
                radial-gradient(circle at 90% 30%, rgba(200, 169, 106, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 60% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
                linear-gradient(145deg, #0a0f1f 0%, #0e1628 50%, #0a0f1f 100%);
            pointer-events: none;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.04;
            pointer-events: none;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
        }

        a {
            text-decoration: none;
            color: var(--accent-light);
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        .container-custom {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .text-gold {
            color: var(--accent-light);
        }

        .bg-gold-gradient {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
        }

        /* ===== Header & Navigation ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 15, 31, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition);
        }

        .site-header .navbar {
            padding: 14px 0;
        }

        .site-header .navbar-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .site-header .navbar-brand:hover {
            color: var(--accent-light);
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(200, 169, 106, 0.2), rgba(200, 169, 106, 0.1));
            border: 1px solid rgba(200, 169, 106, 0.3);
            border-radius: 12px;
            color: var(--accent-light);
            font-size: 1.1rem;
        }

        .site-header .nav-link {
            color: var(--text-muted);
            font-weight: 500;
            padding: 8px 18px !important;
            border-radius: 40px;
            transition: var(--transition);
        }

        .site-header .nav-link:hover,
        .site-header .nav-link.active {
            color: var(--text-light);
            background: rgba(255, 255, 255, 0.06);
        }

        .header-cta {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #0a0f1f !important;
            border: none;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 14px rgba(200, 169, 106, 0.25);
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
            color: #0a0f1f !important;
        }

        .header-countdown {
            font-size: 0.8rem;
            color: var(--text-muted);
            border: 1px solid rgba(200, 169, 106, 0.2);
            padding: 4px 12px;
            border-radius: 40px;
            background: rgba(200, 169, 106, 0.06);
            white-space: nowrap;
        }

        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 6px 10px;
            border-radius: 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler i {
            color: var(--text-light);
            font-size: 1.2rem;
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            padding: 70px 0 80px;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-section .container-custom {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 169, 106, 0.12);
            border: 1px solid rgba(200, 169, 106, 0.25);
            color: var(--accent-light);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-light);
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .hero-title .text-gold {
            font-weight: 800;
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 520px;
            margin-bottom: 28px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 32px;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: #0a0f1f;
            font-weight: 600;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(200, 169, 106, 0.25);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            color: #0a0f1f;
            box-shadow: 0 10px 30px rgba(200, 169, 106, 0.4);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--accent-light);
            border: 1.5px solid rgba(200, 169, 106, 0.4);
            font-weight: 500;
            padding: 11px 26px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .btn-outline-gold:hover {
            background: rgba(200, 169, 106, 0.1);
            color: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(200, 169, 106, 0.15);
        }

        .hero-kpi {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .kpi-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 12px 22px;
            backdrop-filter: blur(8px);
        }

        .kpi-item .kpi-num {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.2;
        }

        .kpi-item .kpi-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.3;
        }

        .hero-card-wrap {
            position: relative;
        }

        .hero-glass-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 22px;
            padding: 28px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .hero-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-card-title i {
            color: var(--accent-light);
        }

        .hero-card-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hero-card-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .hero-card-list li:last-child {
            border-bottom: none;
        }

        .hero-card-list li i {
            color: var(--accent);
            margin-top: 4px;
            font-size: 0.85rem;
        }

        .hero-card-footer {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: var(--text-dim);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ===== Section Common ===== */
        .section-wrapper {
            padding: 70px 0;
        }

        .section-head {
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-light);
            background: rgba(200, 169, 106, 0.1);
            border: 1px solid rgba(200, 169, 106, 0.2);
            padding: 4px 14px;
            border-radius: 40px;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 0.94rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.8;
        }

        /* ===== Metrics Dashboard ===== */
        .metrics-dashboard {
            background: linear-gradient(180deg, rgba(17, 26, 51, 0.3) 0%, rgba(10, 15, 31, 0.6) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .metric-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .metric-card:hover {
            border-color: rgba(200, 169, 106, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
        }

        .metric-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.2rem;
            background: rgba(200, 169, 106, 0.15);
            color: var(--accent-light);
            border: 1px solid rgba(200, 169, 106, 0.2);
        }

        .metric-num {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--text-light);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .metric-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ===== Service Matrix ===== */
        .service-matrix {
            position: relative;
        }

        .service-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(200, 169, 106, 0.35);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
        }

        .service-img-wrap {
            position: relative;
            overflow: hidden;
            height: 190px;
        }

        .service-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img-wrap img {
            transform: scale(1.04);
        }

        .service-img-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 31, 0.6) 100%);
        }

        .service-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 1;
            background: rgba(10, 15, 31, 0.85);
            backdrop-filter: blur(6px);
            color: var(--accent-light);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 40px;
            border: 1px solid rgba(200, 169, 106, 0.25);
        }

        .service-body {
            padding: 24px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-title i {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .service-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 14px;
            flex: 1;
        }

        .service-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .service-meta span {
            font-size: 0.72rem;
            color: var(--text-dim);
            background: rgba(255, 255, 255, 0.05);
            padding: 3px 10px;
            border-radius: 30px;
        }

        /* ===== Flow Steps ===== */
        .flow-steps-section {
            background: rgba(17, 26, 51, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .step-card {
            position: relative;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            height: 100%;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            text-align: center;
        }

        .step-card:hover {
            border-color: rgba(200, 169, 106, 0.3);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #0a0f1f;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            box-shadow: 0 6px 16px rgba(200, 169, 106, 0.3);
        }

        .step-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .step-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== Info List / News ===== */
        .news-line-section {
            position: relative;
        }

        .news-list {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 20px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition);
            border-radius: 10px;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .news-cate {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--accent-light);
            background: rgba(200, 169, 106, 0.1);
            padding: 3px 12px;
            border-radius: 30px;
            border: 1px solid rgba(200, 169, 106, 0.15);
            white-space: nowrap;
        }

        .news-title {
            flex: 1;
            font-size: 0.92rem;
            color: var(--text-light);
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .news-title a {
            color: var(--text-light);
        }

        .news-title a:hover {
            color: var(--accent-light);
        }

        .news-date {
            font-size: 0.78rem;
            color: var(--text-dim);
            white-space: nowrap;
        }

        .sidebar-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 24px;
            margin-bottom: 20px;
        }

        .sidebar-card:last-child {
            margin-bottom: 0;
        }

        .sidebar-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-title i {
            color: var(--accent);
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
            font-size: 0.88rem;
        }

        .sidebar-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .sidebar-list li a {
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .sidebar-list li a:hover {
            color: var(--accent-light);
        }

        .sidebar-list li a .count {
            background: rgba(255, 255, 255, 0.06);
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 20px;
            color: var(--text-dim);
        }

        /* ===== Testimonials / Social Proof ===== */
        .testimonial-section {
            background: rgba(17, 26, 51, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 24px;
            height: 100%;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: rgba(200, 169, 106, 0.25);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: var(--accent-light);
            font-size: 0.8rem;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
            font-style: italic;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(200, 169, 106, 0.4), rgba(200, 169, 106, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-light);
            font-size: 1rem;
        }

        .testimonial-name {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: var(--text-dim);
        }

        /* ===== FAQ ===== */
        .faq-section {
            position: relative;
        }

        .faq-accordion .accordion-item {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md) !important;
            margin-bottom: 14px;
            overflow: hidden;
        }

        .faq-accordion .accordion-button {
            background: transparent;
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 600;
            padding: 20px 22px;
            border: none;
            box-shadow: none;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(200, 169, 106, 0.06);
            color: var(--accent-light);
        }

        .faq-accordion .accordion-button:focus {
            border: none;
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            color: var(--accent-light);
            filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg);
        }

        .faq-accordion .accordion-body {
            padding: 0 22px 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.8;
        }

        /* ===== CTA / Lead Form ===== */
        .cta-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 15, 31, 0.92) 0%, rgba(17, 26, 51, 0.85) 100%);
        }

        .cta-section .container-custom {
            position: relative;
            z-index: 1;
        }

        .cta-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 26px;
            padding: 45px 40px;
            max-width: 850px;
            margin: 0 auto;
        }

        .cta-card h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .cta-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

        .form-control-custom {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 12px 22px;
            color: var(--text-light);
            font-size: 0.9rem;
            transition: var(--transition);
            width: 100%;
        }

        .form-control-custom:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
            color: var(--text-light);
        }

        .form-control-custom::placeholder {
            color: var(--text-dim);
        }

        .cta-form-btn {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: #0a0f1f;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            padding: 12px 32px;
            width: 100%;
            transition: var(--transition);
        }

        .cta-form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(200, 169, 106, 0.35);
        }

        .cta-phone-display {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-light);
            letter-spacing: 1.5px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: rgba(10, 15, 31, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 50px 0 30px;
        }

        .footer-brand {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links li a {
            color: var(--text-muted);
            font-size: 0.88rem;
            transition: var(--transition);
        }

        .footer-links li a:hover {
            color: var(--accent-light);
            padding-left: 4px;
        }

        .footer-contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 12px;
        }

        .footer-contact-list li i {
            color: var(--accent);
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            margin-top: 40px;
            text-align: center;
            color: var(--text-dim);
            font-size: 0.8rem;
        }

        /* ===== Floating CTA ===== */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: #0a0f1f;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 14px 26px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(200, 169, 106, 0.4);
            transition: var(--transition);
        }

        .floating-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 14px 40px rgba(200, 169, 106, 0.5);
            color: #0a0f1f;
        }

        .floating-cta i {
            font-size: 1.1rem;
        }

        /* ===== Responsive ===== */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 50px 0 60px;
            }

            .hero-title {
                font-size: 2.1rem;
            }

            .hero-card-wrap {
                margin-top: 40px;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .navbar-collapse {
                background: rgba(10, 15, 31, 0.98);
                border-radius: var(--radius-md);
                padding: 14px;
                margin-top: 10px;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }

            .header-countdown {
                margin: 10px 0;
            }
        }

        @media (max-width: 767.98px) {
            .container-custom {
                padding: 0 20px;
            }

            .section-wrapper {
                padding: 50px 0;
            }

            .hero-section {
                padding: 40px 0 50px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn {
                justify-content: center;
                text-align: center;
                width: 100%;
            }

            .hero-kpi {
                flex-direction: column;
                gap: 12px;
            }

            .kpi-item {
                justify-content: flex-start;
            }

            .metric-num {
                font-size: 1.5rem;
            }

            .cta-card {
                padding: 30px 20px;
            }

            .cta-card h2 {
                font-size: 1.3rem;
            }

            .news-item {
                flex-wrap: wrap;
                gap: 8px;
            }

            .news-cate {
                font-size: 0.68rem;
                padding: 2px 8px;
            }

            .news-title {
                font-size: 0.85rem;
                white-space: normal;
                flex: 0 0 100%;
                order: 3;
            }

            .news-date {
                font-size: 0.7rem;
                margin-left: auto;
            }

            .floating-cta {
                bottom: 16px;
                right: 16px;
                padding: 12px 20px;
                font-size: 0.8rem;
            }

            .footer-brand {
                font-size: 1rem;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .hero-glass-card {
                padding: 18px;
            }

            .hero-card-list li {
                font-size: 0.85rem;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 4px 12px;
            }
        }
