:root {
        --primary: #BF9A6B;
        --primary-dark: #9A7B4F;
        --primary-light: #D4B896;
        --dark: #0E1B22;
        --dark-gray: #14252D;
        --light: #F8F5F0;
        --white: #FFFFFF;
        --text: #1E1E1E;
        --text-secondary: #5C6369;
        --border: #E5DDD2;
        --radius: 12px;
        --radius-lg: 20px;
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, .08);
        --shadow-lg: 0 16px 50px rgba(0, 0, 0, .12);
        --transition: all .3s ease;
        --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
        --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    }
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--font-sans);
        background: var(--light);
        color: var(--text);
        line-height: 1.7;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }
    img {
        max-width: 100%;
        display: block;
        height: auto;
    }
    ul, ol {
        list-style: none;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .grid-x {
        display: flex;
        flex-wrap: wrap;
    }
    .cell {
        flex: 0 0 auto;
    }
    .large-7 { width: 58.3333%; }
    .large-5 { width: 41.6667%; }
    .large-4 { width: 33.3333%; }
    .large-8 { width: 66.6667%; }
    .large-3 { width: 25%; }
    .large-6 { width: 50%; }
    .medium-6 { width: 50%; }
    @media (max-width: 1024px) {
        .large-7, .large-5, .large-4, .large-8, .large-3 { width: 100%; }
        .medium-6 { width: 100%; }
    }
    @media (max-width: 768px) {
        .medium-6 { width: 100%; }
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 34px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: .5px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: var(--transition);
        line-height: 1.4;
    }
    .btn-primary {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }
    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(191, 154, 107, .35);
    }
    .btn-outline {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, .7);
    }
    .btn-outline:hover {
        background: rgba(255, 255, 255, .12);
        border-color: #fff;
        transform: translateY(-2px);
    }
    .btn-deal {
        background: var(--primary);
        color: #fff;
        width: 100%;
        padding: 12px 24px;
    }
    .btn-deal:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(191, 154, 107, .4);
    }
    .btn-cta {
        background: #fff;
        color: var(--primary-dark);
        border-color: #fff;
        font-size: 17px;
        padding: 16px 48px;
    }
    .btn-cta:hover {
        background: var(--light);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    }
    .btn-ghost-light {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, .6);
        margin-left: 16px;
    }
    .btn-ghost-light:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, .1);
    }
    .section {
        padding: 90px 0;
    }
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary);
        background: rgba(191, 154, 107, .1);
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 18px;
    }
    .section-title {
        font-family: var(--font-serif);
        font-size: 38px;
        font-weight: 700;
        line-height: 1.3;
        color: var(--text);
        margin-bottom: 12px;
    }
    .section-desc {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 640px;
        line-height: 1.8;
        margin-bottom: 48px;
    }
    .section-dark {
        background: var(--dark);
    }
    .section-dark .section-title {
        color: #fff;
    }
    .section-dark .section-desc {
        color: rgba(255, 255, 255, .65);
    }
    .section-light {
        background: var(--light);
    }
    .section-white {
        background: #fff;
    }
    /* ===== Header ===== */
    .site-header {
        background: var(--dark);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    }
    .brand-bar {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 14px 0;
    }
    .brand-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .site-logo {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .site-logo i {
        color: var(--primary);
        font-size: 24px;
    }
    .site-logo:hover {
        color: var(--primary-light);
    }
    .brand-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .header-hotline {
        color: rgba(255, 255, 255, .8);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .header-hotline i {
        color: var(--primary);
    }
    .header-search {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, .08);
        border-radius: 40px;
        padding: 6px 16px;
        border: 1px solid rgba(255, 255, 255, .06);
    }
    .header-search input {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 14px;
        width: 150px;
        outline: none;
    }
    .header-search input::placeholder {
        color: rgba(255, 255, 255, .4);
    }
    .header-search i {
        color: rgba(255, 255, 255, .5);
    }
    .nav-bar {
        background: var(--dark-gray);
    }
    .nav-inner {
        display: flex;
        align-items: center;
        gap: 32px;
        min-height: 48px;
    }
    .nav-link {
        color: rgba(255, 255, 255, .75);
        font-size: 15px;
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 3px solid transparent;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }
    .nav-link:hover {
        color: #fff;
    }
    .nav-link.active {
        color: var(--primary-light);
        border-bottom-color: var(--primary);
    }
    /* ===== Hero ===== */
    .hero {
        position: relative;
        background: var(--dark);
        overflow: hidden;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/assets/images/backpic/back-1.webp');
        background-size: cover;
        background-position: center;
        opacity: .35;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(14, 27, 34, .92) 0%, rgba(14, 27, 34, .75) 50%, rgba(14, 27, 34, .6) 100%);
    }
    .flash-bar {
        position: relative;
        z-index: 5;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 10px 0;
        font-size: 14px;
    }
    .flash-inner {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .flash-icon {
        font-size: 18px;
        animation: pulse 1.2s infinite;
    }
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }
    .flash-text {
        font-weight: 600;
    }
    .flash-countdown {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
    }
    .countdown-box {
        background: var(--dark);
        color: #fff;
        border-radius: 6px;
        padding: 2px 8px;
        font-size: 16px;
        min-width: 34px;
        text-align: center;
        font-variant-numeric: tabular-nums;
    }
    .flash-cta {
        margin-left: auto;
        background: var(--dark);
        color: var(--primary-light);
        padding: 6px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 13px;
        transition: var(--transition);
    }
    .flash-cta:hover {
        background: #000;
        transform: translateY(-1px);
    }
    .hero-content {
        position: relative;
        z-index: 5;
        padding: 80px 0 80px;
        align-items: center;
    }
    .hero-tag {
        display: inline-block;
        background: rgba(191, 154, 107, .18);
        border: 1px solid rgba(191, 154, 107, .4);
        color: var(--primary-light);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 22px;
    }
    .hero h1 {
        font-family: var(--font-serif);
        font-size: 42px;
        font-weight: 800;
        line-height: 1.25;
        color: #fff;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .hero-desc {
        color: rgba(255, 255, 255, .7);
        font-size: 16px;
        max-width: 540px;
        line-height: 1.8;
        margin-bottom: 32px;
    }
    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 44px;
    }
    .hero-stats {
        display: flex;
        gap: 44px;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: 28px;
    }
    .stat-item {
        text-align: left;
    }
    .stat-item .num {
        font-family: var(--font-serif);
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-light);
        display: block;
        line-height: 1.2;
    }
    .stat-item .label {
        font-size: 13px;
        color: rgba(255, 255, 255, .6);
        margin-top: 4px;
    }
    /* Hero Deal Card */
    .deal-card {
        background: #fff;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        max-width: 400px;
        margin-left: auto;
        position: relative;
        transition: var(--transition);
    }
    .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    }
    .deal-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .deal-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--primary);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 30px;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(191, 154, 107, .4);
    }
    .deal-body {
        padding: 24px;
    }
    .deal-body h3 {
        font-family: var(--font-serif);
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .deal-body p {
        color: var(--text-secondary);
        font-size: 14px;
        margin-bottom: 16px;
    }
    .deal-price {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 18px;
    }
    .price-now {
        font-family: var(--font-serif);
        font-size: 30px;
        font-weight: 800;
        color: var(--primary-dark);
    }
    .price-origin {
        font-size: 16px;
        color: #aaa;
        text-decoration: line-through;
    }
    /* ===== Features ===== */
    .feature-card {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
        transition: var(--transition);
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary);
        opacity: 0;
        transition: var(--transition);
    }
    .feature-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-6px);
    }
    .feature-card:hover::before {
        opacity: 1;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(191, 154, 107, .15), rgba(191, 154, 107, .05));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 22px;
    }
    .feature-card h3 {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .feature-card p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.7;
    }
    /* ===== How To ===== */
    .step-wrap {
        position: relative;
    }
    .step-wrap::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: var(--border);
    }
    .step-card {
        text-align: center;
        padding: 20px;
        position: relative;
    }
    .step-number {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: var(--dark);
        color: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 28px;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(14, 27, 34, .2);
        position: relative;
        z-index: 2;
    }
    .step-card h3 {
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .step-card p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.7;
    }
    /* ===== Rewards ===== */
    .reward-card {
        background: var(--dark-gray);
        border-radius: var(--radius-lg);
        padding: 40px 30px;
        border: 1px solid rgba(255, 255, 255, .06);
        transition: var(--transition);
        height: 100%;
        text-align: center;
    }
    .reward-card:hover {
        border-color: rgba(191, 154, 107, .3);
        transform: translateY(-4px);
    }
    .reward-icon {
        font-size: 36px;
        color: var(--primary-light);
        margin-bottom: 18px;
    }
    .reward-card h3 {
        color: #fff;
        font-family: var(--font-serif);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .reward-card p {
        color: rgba(255, 255, 255, .6);
        font-size: 14px;
        line-height: 1.7;
    }
    /* ===== Progress ===== */
    .progress-panel {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 44px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
    }
    .progress-item {
        margin-bottom: 28px;
    }
    .progress-item:last-child {
        margin-bottom: 0;
    }
    .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    .progress-title {
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .progress-title i {
        color: var(--primary);
    }
    .progress-value {
        font-weight: 700;
        color: var(--primary-dark);
        font-size: 16px;
    }
    .progress-track {
        height: 8px;
        background: #f0ecE6;
        border-radius: 10px;
        overflow: hidden;
    }
    .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-light), var(--primary));
        border-radius: 10px;
        transition: width 1.2s ease;
        position: relative;
    }
    /* ===== Scenarios ===== */
    .scenario-scroll {
        display: flex;
        gap: 28px;
        overflow-x: auto;
        padding: 10px 4px 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .scenario-scroll::-webkit-scrollbar {
        height: 6px;
    }
    .scenario-scroll::-webkit-scrollbar-track {
        background: #f0eCe6;
        border-radius: 10px;
    }
    .scenario-scroll::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    .scenario-card {
        flex: 0 0 340px;
        scroll-snap-align: start;
        background: #fff;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
        transition: var(--transition);
    }
    .scenario-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }
    .scenario-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }
    .scenario-body {
        padding: 24px;
    }
    .scenario-body h3 {
        font-family: var(--font-serif);
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .scenario-body p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.7;
    }
    .scenario-tag {
        display: inline-block;
        background: rgba(191, 154, 107, .12);
        color: var(--primary-dark);
        font-size: 12px;
        font-weight: 600;
        padding: 3px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
    }
    /* ===== News ===== */
    .news-list {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
    }
    .news-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid #f0ece6;
        gap: 20px;
    }
    .news-item:last-child {
        border-bottom: none;
    }
    .news-item:hover .news-title {
        color: var(--primary);
    }
    .news-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .news-title {
        font-weight: 600;
        font-size: 15px;
        transition: var(--transition);
    }
    .news-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: #8a8a8a;
    }
    .news-date {
        background: var(--light);
        padding: 2px 10px;
        border-radius: 20px;
        font-size: 12px;
        color: var(--text-secondary);
        white-space: nowrap;
    }
    .news-tag {
        color: var(--primary-dark);
        font-weight: 600;
    }
    .sidebar-card {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 28px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
        margin-bottom: 24px;
    }
    .sidebar-card h3 {
        font-family: var(--font-serif);
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary);
        display: inline-block;
    }
    .hot-topic {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 0;
        border-bottom: 1px solid #f5f2ec;
    }
    .hot-topic:last-child {
        border-bottom: none;
    }
    .hot-topic:hover .hot-title {
        color: var(--primary);
    }
    .hot-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 16px;
        flex-shrink: 0;
    }
    .hot-title {
        font-size: 14px;
        font-weight: 600;
        transition: var(--transition);
    }
    /* ===== Testimonials ===== */
    .testimonial-quote {
        background: var(--dark-gray);
        border-radius: var(--radius-lg);
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, .06);
        position: relative;
    }
    .testimonial-quote::before {
        content: '\201C';
        font-family: var(--font-serif);
        font-size: 96px;
        color: var(--primary);
        position: absolute;
        top: 4px;
        left: 24px;
        opacity: .4;
    }
    .testimonial-quote p {
        color: rgba(255, 255, 255, .8);
        font-size: 18px;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 16px;
        padding-left: 36px;
    }
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, .5);
        font-size: 14px;
        padding-left: 36px;
    }
    .testimonial-author .stars {
        color: #E8C37C;
        letter-spacing: 2px;
    }
    /* ===== FAQ ===== */
    .faq-wrap {
        max-width: 800px;
        margin: 0 auto;
    }
    .accordion-item {
        background: #fff;
        border-radius: var(--radius);
        margin-bottom: 16px;
        border: 1px solid var(--border);
        overflow: hidden;
        transition: var(--transition);
    }
    .accordion-item:hover {
        border-color: rgba(191, 154, 107, .4);
    }
    .accordion-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        background: #fff;
        color: var(--text);
    }
    .accordion-title:hover {
        color: var(--primary-dark);
    }
    .accordion-title::after {
        content: '+';
        font-size: 24px;
        color: var(--primary);
        line-height: 1;
    }
    .accordion-item.is-active .accordion-title::after {
        content: '−';
    }
    .accordion-content {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, padding .2s ease;
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.8;
    }
    .accordion-item.is-active .accordion-content {
        padding: 0 24px 24px;
        max-height: 400px;
    }
    /* ===== CTA ===== */
    .cta-section {
        background: var(--primary);
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
    }
    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: 20%;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .08);
    }
    .cta-content {
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }
    .cta-content h2 {
        font-family: var(--font-serif);
        font-size: 36px;
        color: #fff;
        font-weight: 800;
        margin-bottom: 16px;
    }
    .cta-content p {
        color: rgba(255, 255, 255, .85);
        font-size: 16px;
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.8;
    }
    /* ===== Footer ===== */
    .site-footer {
        background: var(--dark);
        color: rgba(255, 255, 255, .6);
        padding: 70px 0 30px;
    }
    .footer-brand {
        font-family: var(--font-serif);
        font-size: 22px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .footer-brand i {
        color: var(--primary);
    }
    .footer-about {
        font-size: 14px;
        line-height: 1.8;
        max-width: 360px;
    }
    .footer-title {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--primary);
    }
    .footer-links li {
        margin-bottom: 10px;
    }
    .footer-links a {
        font-size: 14px;
        color: rgba(255, 255, 255, .6);
        transition: var(--transition);
    }
    .footer-links a:hover {
        color: var(--primary-light);
        padding-left: 4px;
    }
    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 14px;
    }
    .footer-contact i {
        color: var(--primary);
        width: 18px;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .08);
        margin-top: 50px;
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 13px;
        color: rgba(255, 255, 255, .35);
    }
    .footer-bottom a {
        color: rgba(255, 255, 255, .4);
    }
    .footer-bottom a:hover {
        color: var(--primary-light);
    }
    /* ===== Floating CTA ===== */
    .floating-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(14, 27, 34, .95);
        backdrop-filter: blur(12px);
        z-index: 999;
        padding: 12px 0;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
        transform: translateY(0);
        transition: transform .4s ease;
    }
    .floating-cta.hidden {
        transform: translateY(100%);
    }
    .floating-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }
    .floating-text {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }
    .floating-text span {
        color: var(--primary-light);
    }
    .floating-btn {
        background: var(--primary);
        color: #fff;
        padding: 10px 30px;
        border-radius: 40px;
        font-weight: 700;
        font-size: 14px;
        transition: var(--transition);
    }
    .floating-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    .floating-phone {
        color: rgba(255, 255, 255, .7);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .floating-phone i {
        color: var(--primary);
    }
    @media (max-width: 1024px) {
        .hero-content {
            padding: 60px 0;
        }
        .deal-card {
            margin: 0 auto;
            max-width: 420px;
        }
        .section {
            padding: 70px 0;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }
    @media (max-width: 768px) {
        body {
            font-size: 15px;
        }
        .brand-bar-inner {
            flex-wrap: wrap;
            gap: 10px;
        }
        .header-search {
            display: none;
        }
        .hero h1 {
            font-size: 30px;
        }
        .section-title {
            font-size: 28px;
        }
        .hero-stats {
            gap: 24px;
        }
        .stat-item .num {
            font-size: 22px;
        }
        .floating-phone {
            display: none;
        }
        .floating-cta {
            padding: 10px 0;
        }
        .flash-inner {
            gap: 8px;
        }
        .flash-text {
            font-size: 13px;
        }
        .flash-countdown {
            font-size: 13px;
        }
        .news-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
        .news-date {
            align-self: flex-start;
        }
    }
    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .hero-actions .btn {
            width: 100%;
            margin-bottom: 8px;
        }
        .btn + .btn {
            margin-left: 0;
        }
        .hero-stats {
            gap: 16px;
            flex-wrap: wrap;
        }
        .step-wrap::before {
            display: none;
        }
        .scenario-card {
            flex-basis: 280px;
        }
        .progress-panel {
            padding: 24px;
        }
        .testimonial-quote {
            padding: 28px;
        }
        .cta-content h2 {
            font-size: 26px;
        }
    }
