/* roulang page: index */
:root {
            --color-primary: #1e293b;
            --color-primary-light: #334155;
            --color-accent: #d97706;
            --color-accent-hover: #b45309;
            --color-accent-soft: #fef3c7;
            --color-bg: #fafaf9;
            --color-bg-dark: #1e293b;
            --color-text: #1e293b;
            --color-text-light: #64748b;
            --color-text-lighter: #94a3b8;
            --color-border: #e2e8f0;
            --color-white: #ffffff;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 48px rgba(0,0,0,0.16);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
            border: none;
        }

        button {
            cursor: pointer;
            background: none;
        }

        :focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===== Header / Navigation ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            transition: var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
            transition: var(--transition);
        }

        .nav-brand:hover {
            color: var(--color-accent);
        }

        .nav-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--color-accent), #f59e0b);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-links li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-light);
            transition: var(--transition);
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--color-primary);
            background: var(--color-accent-soft);
        }

        .nav-links li a.active {
            color: var(--color-accent);
            background: var(--color-accent-soft);
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .nav-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            background: #f1f5f9;
            font-size: 0.88rem;
            color: var(--color-text-light);
            font-weight: 500;
            white-space: nowrap;
            transition: var(--transition);
            cursor: pointer;
        }

        .nav-location:hover {
            background: #e2e8f0;
            color: var(--color-primary);
        }

        .nav-location .location-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            background: var(--color-accent);
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
        }

        .nav-cta:hover {
            background: var(--color-accent-hover);
            box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 0.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            background: #f1f5f9;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 0.25rem;
            padding: 0.75rem 0 1rem;
            border-top: 1px solid var(--color-border);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            color: var(--color-text-light);
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            background: var(--color-accent-soft);
            color: var(--color-primary);
        }

        .mobile-menu a.active {
            background: var(--color-accent-soft);
            color: var(--color-accent);
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.65) 40%, rgba(217, 119, 6, 0.35) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4.5rem 0;
            max-width: 720px;
            color: #fff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            font-size: 0.85rem;
            font-weight: 500;
            color: #fef3c7;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .hero-badge .badge-dot {
            width: 6px;
            height: 6px;
            background: #fbbf24;
            border-radius: 50%;
        }

        .hero h1 {
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: 0.01em;
            margin-bottom: 1.25rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            max-width: 620px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.8rem;
            border-radius: 10px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
        }

        .btn-primary:hover {
            background: var(--color-accent-hover);
            box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.8rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .hero-trust-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.88rem;
            font-weight: 400;
        }

        .trust-item i {
            color: #fbbf24;
            font-size: 1rem;
        }

        /* ===== Countdown ===== */
        .countdown-section {
            background: var(--color-primary);
            padding: 2.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .countdown-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -5%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(217,119,6,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .countdown-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .countdown-text {
            color: #fff;
        }

        .countdown-text h2 {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .countdown-text p {
            color: rgba(255,255,255,0.65);
            font-size: 0.92rem;
        }

        .countdown-timer {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .countdown-timer .time-block {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 0.7rem 1rem;
            min-width: 68px;
            text-align: center;
            backdrop-filter: blur(8px);
        }

        .countdown-timer .time-block .time-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            display: block;
            line-height: 1.2;
        }

        .countdown-timer .time-block .time-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.6);
            letter-spacing: 0.08em;
        }

        .countdown-timer .time-sep {
            color: rgba(255,255,255,0.4);
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* ===== Highlights Wall ===== */
        .highlights-section {
            padding: 4.5rem 0;
            background: var(--color-bg);
        }

        .section-header {
            margin-bottom: 2.5rem;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--color-accent);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--color-accent);
        }

        .section-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.35;
            margin-bottom: 0.75rem;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--color-text-light);
            max-width: 680px;
            line-height: 1.8;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.25rem;
        }

        .highlight-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 240px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            cursor: pointer;
            grid-column: span 4;
        }

        .highlight-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .highlight-card.card-wide {
            grid-column: span 6;
        }

        .highlight-card.card-tall {
            grid-column: span 6;
            min-height: 300px;
        }

        .highlight-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .highlight-card:hover img {
            transform: scale(1.05);
        }

        .highlight-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.2) 60%, rgba(15,23,42,0.05) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            z-index: 2;
        }

        .highlight-card .card-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 999px;
            background: rgba(217, 119, 6, 0.85);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 0.6rem;
            width: fit-content;
        }

        .highlight-card .card-title {
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .highlight-card .card-desc {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.88rem;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ===== Pricing / Tickets ===== */
        .pricing-section {
            padding: 4.5rem 0;
            background: #fff;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .pricing-card {
            background: var(--color-bg);
            border: 2px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: 2rem 1.75rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .pricing-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .pricing-card.featured {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-lg);
            transform: scale(1.02);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 999px;
            letter-spacing: 0.05em;
            box-shadow: 0 2px 8px rgba(217,119,6,0.4);
        }

        .pricing-card .plan-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--color-text-light);
        }

        .pricing-card.featured .plan-name {
            color: #fbbf24;
        }

        .pricing-card .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 0.25rem;
        }

        .pricing-card.featured .plan-price {
            color: #fff;
        }

        .pricing-card .plan-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-light);
        }

        .pricing-card.featured .plan-price span {
            color: rgba(255,255,255,0.6);
        }

        .pricing-card .plan-desc {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .pricing-card.featured .plan-desc {
            color: rgba(255,255,255,0.7);
        }

        .pricing-card .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .pricing-card .plan-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--color-text-light);
        }

        .pricing-card.featured .plan-features li {
            color: rgba(255,255,255,0.8);
        }

        .pricing-card .plan-features li i {
            color: #10b981;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .pricing-card.featured .plan-features li i {
            color: #fbbf24;
        }

        .pricing-card .btn-plan {
            display: block;
            width: 100%;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .pricing-card .btn-plan:hover {
            background: var(--color-primary-light);
            transform: translateY(-1px);
        }

        .pricing-card.featured .btn-plan {
            background: var(--color-accent);
        }

        .pricing-card.featured .btn-plan:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
        }

        /* ===== Stats Bar ===== */
        .stats-section {
            padding: 3.5rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fbbf24;
            display: block;
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }

        .stat-item .stat-label {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.65);
        }

        /* ===== News / Info List ===== */
        .news-section {
            padding: 4.5rem 0;
            background: var(--color-bg);
        }

        .news-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0.75rem;
            border-bottom: 1px solid var(--color-border);
            transition: var(--transition);
            border-radius: 8px;
            cursor: pointer;
        }

        .news-item:hover {
            background: #fff;
            box-shadow: var(--shadow-sm);
            transform: translateX(4px);
        }

        .news-item .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 56px;
            padding: 0.4rem 0.5rem;
            background: #f1f5f9;
            border-radius: 8px;
            text-align: center;
            flex-shrink: 0;
        }

        .news-item .news-date .day {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.2;
        }

        .news-item .news-date .month {
            font-size: 0.75rem;
            color: var(--color-text-light);
        }

        .news-item .news-info {
            flex: 1;
            min-width: 0;
        }

        .news-item .news-info .news-category {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--color-accent);
            background: var(--color-accent-soft);
            padding: 0.15rem 0.6rem;
            border-radius: 999px;
            margin-bottom: 0.3rem;
        }

        .news-item .news-info h3 {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--color-primary);
            line-height: 1.5;
            margin-bottom: 0.2rem;
            transition: var(--transition);
        }

        .news-item:hover .news-info h3 {
            color: var(--color-accent);
        }

        .news-item .news-info p {
            font-size: 0.82rem;
            color: var(--color-text-lighter);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .news-sidebar-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid var(--color-border);
        }

        .news-sidebar-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .news-sidebar-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .news-sidebar-card .sidebar-card-body {
            padding: 1.25rem;
        }

        .news-sidebar-card .sidebar-card-tag {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--color-accent);
            background: var(--color-accent-soft);
            padding: 0.15rem 0.6rem;
            border-radius: 999px;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .news-sidebar-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1.5;
            margin-bottom: 0.4rem;
        }

        .news-sidebar-card p {
            font-size: 0.85rem;
            color: var(--color-text-light);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-sidebar .sidebar-heading {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-primary);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--color-accent);
            display: inline-block;
        }

        /* ===== Brand Story ===== */
        .story-section {
            position: relative;
            padding: 5rem 0;
            background-image: url('/assets/images/backpic/back-3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        .story-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.75) 100%);
        }

        .story-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            color: #fff;
        }

        .story-content .story-label {
            color: #fbbf24;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 0.8rem;
        }

        .story-content h2 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 1.25rem;
        }

        .story-content p {
            font-size: 1.02rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.75rem;
        }

        .story-content .btn-story {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.8rem;
            border-radius: 10px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
        }

        .story-content .btn-story:hover {
            background: var(--color-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 4.5rem 0;
            background: linear-gradient(135deg, var(--color-accent) 0%, #f59e0b 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .cta-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-wrapper h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .cta-wrapper p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-wrapper .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            background: var(--color-primary);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 6px 24px rgba(15, 23, 42, 0.35);
        }

        .cta-wrapper .btn-cta:hover {
            background: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(15, 23, 42, 0.45);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 4.5rem 0;
            background: #fff;
        }

        .faq-list {
            max-width: 800px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .faq-item {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: #cbd5e1;
        }

        .faq-item.open {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.15rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--color-primary);
            transition: var(--transition);
            user-select: none;
            list-style: none;
        }

        .faq-question:hover {
            color: var(--color-accent);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: var(--transition);
            color: var(--color-text-light);
        }

        .faq-item.open .faq-icon {
            background: var(--color-accent);
            color: #fff;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
            padding: 0 1.5rem;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 1.25rem;
        }

        .faq-answer p {
            font-size: 0.92rem;
            color: var(--color-text-light);
            line-height: 1.8;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--color-primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 3.5rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.55);
            max-width: 340px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col ul li a {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fbbf24;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-contact .contact-item i {
            color: #fbbf24;
            width: 16px;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
        }

        .footer-bottom .copyright {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-bottom .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom .footer-links a {
            color: rgba(255, 255, 255, 0.45);
            transition: var(--transition);
        }

        .footer-bottom .footer-links a:hover {
            color: #fbbf24;
        }

        /* ===== Fixed Bottom CTA (Mobile) ===== */
        .fixed-bottom-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 90;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--color-border);
            padding: 0.7rem 1rem;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        }

        .fixed-bottom-cta .cta-inner {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .fixed-bottom-cta .cta-text {
            flex: 1;
            font-size: 0.85rem;
            color: var(--color-text-light);
            line-height: 1.4;
        }

        .fixed-bottom-cta .cta-text strong {
            display: block;
            color: var(--color-primary);
            font-size: 0.95rem;
        }

        .fixed-bottom-cta .btn-fixed-cta {
            padding: 0.6rem 1.3rem;
            border-radius: 8px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
        }

        .fixed-bottom-cta .btn-fixed-cta:hover {
            background: var(--color-accent-hover);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .news-sidebar {
                flex-direction: row;
            }

            .news-sidebar-card {
                flex: 1;
            }
        }

        @media (max-width: 768px) {
            .nav-wrapper {
                flex-wrap: nowrap;
            }

            .nav-links {
                display: none;
            }

            .nav-location {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-cta {
                display: none;
            }

            .hero {
                min-height: 520px;
            }

            .hero h1 {
                font-size: 1.7rem;
                line-height: 1.4;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 0.75rem;
            }

            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-trust-bar {
                flex-direction: column;
                gap: 0.6rem;
            }

            .countdown-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.25rem;
            }

            .countdown-timer {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .countdown-timer .time-block {
                min-width: 56px;
                padding: 0.5rem 0.7rem;
            }

            .countdown-timer .time-block .time-value {
                font-size: 1.4rem;
            }

            .countdown-timer .time-sep {
                font-size: 1.2rem;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .highlight-card,
            .highlight-card.card-wide,
            .highlight-card.card-tall {
                grid-column: span 1;
                min-height: 180px;
            }

            .highlight-card.card-wide {
                grid-column: span 2;
                min-height: 200px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-3px);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }

            .stat-item .stat-number {
                font-size: 1.7rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .story-content h2 {
                font-size: 1.5rem;
            }

            .story-section {
                background-attachment: scroll;
            }

            .cta-wrapper h2 {
                font-size: 1.6rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }

            .fixed-bottom-cta {
                display: block;
            }

            .news-sidebar {
                flex-direction: column;
            }

            .container {
                padding: 0 1rem;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .highlights-section,
            .pricing-section,
            .news-section,
            .story-section,
            .cta-section,
            .faq-section {
                padding: 3rem 0;
            }

            .countdown-section {
                padding: 1.75rem 0;
            }

            .stats-section {
                padding: 2.5rem 0;
            }

            .mobile-menu a {
                font-size: 0.95rem;
            }

            .news-item {
                padding: 0.85rem 0.5rem;
                gap: 0.75rem;
            }

            .news-item .news-date {
                min-width: 48px;
            }

            .faq-question {
                padding: 1rem 1.1rem;
                font-size: 0.92rem;
            }

            .faq-answer {
                padding: 0 1.1rem;
            }

            .faq-item.open .faq-answer {
                padding-bottom: 1rem;
            }
        }

        @media (max-width: 520px) {
            .hero h1 {
                font-size: 1.35rem;
            }

            .hero-subtitle {
                font-size: 0.88rem;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .highlight-card,
            .highlight-card.card-wide,
            .highlight-card.card-tall {
                grid-column: span 1;
                min-height: 160px;
            }

            .pricing-card {
                padding: 1.5rem 1.25rem;
            }

            .pricing-card .plan-price {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .stat-item .stat-number {
                font-size: 1.5rem;
            }

            .countdown-timer .time-block {
                min-width: 48px;
                padding: 0.4rem 0.55rem;
            }

            .countdown-timer .time-block .time-value {
                font-size: 1.2rem;
            }

            .countdown-timer .time-sep {
                font-size: 1rem;
            }

            .countdown-timer {
                gap: 0.35rem;
            }

            .news-item .news-info h3 {
                font-size: 0.9rem;
            }

            .fixed-bottom-cta .btn-fixed-cta {
                padding: 0.5rem 0.9rem;
                font-size: 0.82rem;
            }
        }
