:root {
            --primary: #1e293b;
            --primary-light: #334155;
            --accent: #c9a96e;
            --accent-hover: #b8955a;
            --bg: #faf7f4;
            --surface: #ffffff;
            --text: #1e293b;
            --text-muted: #6b7280;
            --border: #e8e0d8;
            --radius-sm: 8px;
            --radius: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 1rem;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== Header ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
            border-bottom: 1px solid transparent;
        }
        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            border-bottom-color: var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 18px 0;
        }
        .nav-left {
            position: absolute;
            left: 0;
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-right {
            position: absolute;
            right: 0;
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-left a,
        .nav-right a {
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            position: relative;
            padding: 4px 0;
        }
        .nav-left a::after,
        .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-left a:hover,
        .nav-right a:hover {
            color: #fff;
        }
        .nav-left a:hover::after,
        .nav-right a:hover::after {
            width: 100%;
        }
        .site-header.scrolled .nav-left a,
        .site-header.scrolled .nav-right a {
            color: var(--text);
        }
        .site-header.scrolled .nav-left a:hover,
        .site-header.scrolled .nav-right a:hover {
            color: var(--accent);
        }
        .site-logo {
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.03em;
            white-space: nowrap;
            transition: var(--transition);
        }
        .site-header.scrolled .site-logo {
            color: var(--text);
        }
        .btn-nav {
            background: var(--accent);
            color: #fff !important;
            padding: 8px 22px !important;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem !important;
            transition: var(--transition);
        }
        .btn-nav:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
        }
        .btn-nav::after {
            display: none !important;
        }
        .menu-toggle {
            display: none;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.1rem;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 1100;
        }
        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .site-header.scrolled .menu-toggle {
            background: var(--bg);
            border-color: var(--border);
            color: var(--text);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            padding: 80px 24px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
            z-index: 1050;
            border-bottom: 1px solid var(--border);
            transform: translateY(-100%);
            transition: transform 0.35s ease;
        }
        .mobile-nav.open {
            transform: translateY(0);
        }
        .mobile-nav a {
            display: block;
            padding: 14px 0;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text);
            border-bottom: 1px solid var(--border);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .mobile-nav a:hover {
            color: var(--accent);
        }

        /* ===== Buttons ===== */
        .btn-accent,
        .btn-ghost,
        .btn-light-custom,
        .btn-outline-light-custom {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            text-align: center;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
        }
        .btn-ghost {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.6);
        }
        .btn-ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: translateY(-3px);
        }
        .btn-light-custom {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .btn-light-custom:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        }
        .btn-outline-light-custom {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.7);
        }
        .btn-outline-light-custom:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: translateY(-3px);
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            min-height: 92vh;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.45)), url('/assets/images/backpic/back-1.jpg') center center / cover no-repeat;
            display: flex;
            align-items: center;
            padding: 160px 0 120px;
        }
        .hero-content {
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
            color: #fff;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 6px 18px;
            border-radius: 50px;
            letter-spacing: 0.04em;
            margin-bottom: 24px;
            backdrop-filter: blur(6px);
        }
        .hero-content h1 {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 24px;
            letter-spacing: 0.02em;
            color: #fff;
        }
        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 36px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .hero-metrics {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .hero-metrics span {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-metrics strong {
            font-size: 1.4rem;
            color: #fff;
            font-weight: 700;
        }
        .hero-cats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 16px 0;
            z-index: 10;
        }
        .hero-cats .container {
            display: flex;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap;
        }
        .hero-cats a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.92rem;
            transition: var(--transition);
            position: relative;
            padding: 4px 2px;
        }
        .hero-cats a:hover {
            color: #fff;
        }
        .hero-cats a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .hero-cats a:hover::after {
            width: 100%;
        }

        /* ===== Section Common ===== */
        .section-padding {
            padding: 90px 0;
        }
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 56px;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(201, 169, 110, 0.12);
            padding: 4px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== Compare Table ===== */
        .compare-section {
            background: var(--surface);
        }
        .compare-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 0;
        }
        .compare-table thead th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 18px 20px;
            border: none;
            text-align: center;
        }
        .compare-table thead th:first-child {
            text-align: left;
            background: var(--primary);
        }
        .compare-table tbody td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            text-align: center;
            font-size: 0.95rem;
            color: var(--text);
            background: var(--surface);
        }
        .compare-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--primary);
            background: #faf8f5;
        }
        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }
        .compare-table tbody tr:hover td {
            background: #faf8f5;
        }
        .compare-table tbody tr:hover td:first-child {
            background: #f5f0ea;
        }
        .compare-table .feature-check {
            color: var(--accent);
            font-weight: 700;
        }
        .compare-note {
            text-align: center;
            margin-top: 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ===== Recommended Cards ===== */
        .recommend-section {
            background: var(--bg);
        }
        .recommend-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .recommend-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .recommend-card .card-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .recommend-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .recommend-card:hover .card-img img {
            transform: scale(1.04);
        }
        .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        .recommend-card .card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .recommend-card .card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
        .recommend-card .card-body p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            flex: 1;
        }
        .card-tags {
            display: flex;
            gap: 8px;
            margin-top: 14px;
            flex-wrap: wrap;
        }
        .card-tags span {
            background: rgba(201, 169, 110, 0.1);
            color: var(--accent);
            font-size: 0.78rem;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* ===== Stats ===== */
        .stats-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.08);
        }
        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.05);
        }
        .stats-wrap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }
        .stat-item {
            text-align: center;
            padding: 24px 16px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(201, 169, 110, 0.3);
            transform: translateY(-4px);
        }
        .stat-num {
            display: block;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ===== Services ===== */
        .services-section {
            background: var(--surface);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-item {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid var(--border);
            transition: var(--transition);
            text-align: left;
        }
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: rgba(201, 169, 110, 0.3);
            background: var(--surface);
        }
        .service-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 16px;
            display: inline-block;
        }
        .service-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
        .service-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ===== News ===== */
        .news-section {
            background: var(--bg);
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border);
            display: block;
        }
        .news-item:hover {
            box-shadow: var(--shadow);
            transform: translateX(5px);
            border-color: rgba(201, 169, 110, 0.3);
        }
        .news-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .news-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.5;
            transition: var(--transition);
        }
        .news-item:hover h3 {
            color: var(--accent);
        }
        .news-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .sidebar-block {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        .sidebar-block h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            position: relative;
        }
        .sidebar-block h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud span {
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.82rem;
            padding: 4px 12px;
            border-radius: 50px;
            transition: var(--transition);
            cursor: default;
        }
        .tag-cloud span:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .comment-item {
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 3px solid var(--accent);
        }
        .comment-item:last-child {
            margin-bottom: 0;
        }
        .comment-item p {
            font-size: 0.88rem;
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 4px;
            font-style: italic;
        }
        .comment-item span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== Reviews ===== */
        .reviews-section {
            background: var(--surface);
        }
        .review-card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            height: 100%;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .review-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }
        .review-stars {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .review-card p {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }
        .review-author {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6)), url('/assets/images/backpic/back-2.jpg') center center / cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        .cta-wrap {
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
            color: #fff;
        }
        .cta-wrap h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-wrap p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            line-height: 1.8;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg);
        }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 28px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            transition: var(--transition);
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-question i {
            color: var(--accent);
            font-size: 0.9rem;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer-inner {
            padding: 0 28px 22px;
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.75;
            border-top: 1px dashed var(--border);
            margin: 0 28px;
            padding: 18px 0;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 0;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
        }
        .footer-brand {
            max-width: 400px;
        }
        .footer-brand h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .footer-brand p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }
        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Responsive ===== */
        @media (max-width: 991.98px) {
            .nav-left,
            .nav-right {
                display: none !important;
            }
            .menu-toggle {
                display: flex;
            }
            .header-inner {
                justify-content: center;
            }
            .site-logo {
                font-size: 1.1rem;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-wrap {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .section-padding {
                padding: 70px 0;
            }
            .footer-inner {
                flex-direction: column;
                gap: 32px;
            }
        }
        @media (max-width: 767.98px) {
            .hero-section {
                min-height: 80vh;
                padding: 140px 0 140px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .hero-desc {
                font-size: 0.9rem;
                line-height: 1.65;
            }
            .hero-metrics {
                gap: 20px;
                flex-direction: column;
            }
            .hero-cats .container {
                gap: 16px;
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
            }
            .hero-cats a {
                font-size: 0.82rem;
                white-space: nowrap;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .stats-wrap {
                grid-template-columns: 1fr 1fr;
            }
            .stat-num {
                font-size: 1.6rem;
            }
            .compare-table {
                font-size: 0.85rem;
            }
            .compare-table thead th,
            .compare-table tbody td {
                padding: 12px 10px;
                font-size: 0.85rem;
            }
            .cta-wrap h2 {
                font-size: 1.5rem;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-accent,
            .btn-ghost,
            .btn-light-custom,
            .btn-outline-light-custom {
                width: 100%;
                max-width: 300px;
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 520px) {
            .site-logo {
                font-size: 0.95rem;
                white-space: nowrap;
            }
            .menu-toggle {
                width: 38px;
                height: 38px;
            }
            .hero-content h1 {
                font-size: 1.25rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 4px 12px;
            }
            .hero-desc {
                font-size: 0.86rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .hero-actions .btn-accent,
            .hero-actions .btn-ghost {
                width: 100%;
                max-width: 260px;
            }
            .hero-metrics strong {
                font-size: 1.1rem;
            }
            .hero-metrics span {
                font-size: 0.85rem;
            }
            .section-padding {
                padding: 56px 0;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .section-header p {
                font-size: 0.88rem;
            }
            .stats-wrap {
                grid-template-columns: 1fr;
            }
            .stat-num {
                font-size: 1.8rem;
            }
            .news-item {
                padding: 18px 20px;
            }
            .news-item h3 {
                font-size: 0.95rem;
            }
            .news-item p {
                font-size: 0.84rem;
            }
            .review-card {
                padding: 22px 18px;
            }
            .faq-question {
                padding: 16px 18px;
                font-size: 0.9rem;
            }
            .faq-answer-inner {
                font-size: 0.85rem;
            }
            .footer-brand h3 {
                font-size: 1rem;
            }
            .footer-brand p {
                font-size: 0.82rem;
            }
            .footer-links a {
                font-size: 0.85rem;
            }
        }
