/* roulang page: index */
/* ========== 设计变量 ========== */
        :root {
            --primary: #2d5016;
            --primary-dark: #1e3a0e;
            --primary-light: #5a8a3e;
            --accent: #c8a96a;
            --accent-light: #e8d5a3;
            --bg: #f7f5f0;
            --white: #ffffff;
            --text: #1a1a1a;
            --text-light: #6b6b6b;
            --text-muted: #9a9a9a;
            --border: #e8e3d9;
            --radius: 14px;
            --radius-sm: 8px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
            --transition: all 0.3s ease;
            --font-main: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Helvetica Neue', Arial, sans-serif;
        }

        /* ========== Reset / Base ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            list-style: none;
        }
        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        /* ========== 容器 ========== */
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
            margin: 0 auto;
        }

        /* ========== 导航 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        .site-header .navbar {
            padding: 14px 0;
        }
        .navbar-brand {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary) !important;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .navbar-brand i {
            color: var(--accent);
            font-size: 1.3rem;
        }
        .navbar-nav {
            gap: 6px;
        }
        .navbar-nav .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text) !important;
            padding: 8px 18px !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
            background: rgba(45, 80, 22, 0.08);
        }
        .btn-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff !important;
            border: none;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
        }
        .btn-brand:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(45, 80, 22, 0.30);
        }
        .btn-brand:active {
            transform: translateY(0);
        }
        .btn-brand:focus-visible,
        .btn-outline:focus-visible,
        a:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--primary) !important;
            border: 2px solid var(--primary);
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff !important;
        }
        .btn-outline:active {
            transform: scale(0.97);
        }

        /* ========== Hero ========== */
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(30, 58, 14, 0.88), rgba(0, 0, 0, 0.55)), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            min-height: 92vh;
            display: flex;
            align-items: center;
            padding: 60px 0 100px;
            color: #fff;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: #fff;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }
        .hero-badge i {
            color: var(--accent);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: 1px;
        }
        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.90);
            max-width: 640px;
            margin-bottom: 32px;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 40px;
        }
        .hero-btns .btn-brand {
            background: var(--accent);
            color: var(--primary-dark) !important;
            font-weight: 700;
        }
        .hero-btns .btn-brand:hover {
            background: var(--accent-light);
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.40);
        }
        .hero-btns .btn-outline {
            color: #fff !important;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .hero-btns .btn-outline:hover {
            background: #fff;
            color: var(--primary) !important;
            border-color: #fff;
        }
        .hero-stats-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            padding: 22px 0;
            box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
        }
        .hero-stats-bar .stat-item {
            text-align: center;
            padding: 8px 4px;
        }
        .hero-stats-bar .stat-num {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .hero-stats-bar .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .hero-stats-bar .stat-divider {
            border-left: 1px solid var(--border);
            height: 50%;
            align-self: center;
        }

        /* ========== 通用板块 ========== */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--white);
        }
        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(45, 80, 22, 0.08);
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 16px;
            border-radius: 50px;
            margin-bottom: 14px;
        }
        .section-head h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-head p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ========== 优惠阶梯 ========== */
        .tier-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            height: 100%;
        }
        .tier-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .tier-card.popular {
            border: 2px solid var(--accent);
            position: relative;
        }
        .tier-card.popular::before {
            content: '最受欢迎';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
        }
        .tier-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.6rem;
            background: rgba(45, 80, 22, 0.08);
            color: var(--primary);
        }
        .tier-card.popular .tier-icon {
            background: var(--accent);
            color: var(--primary-dark);
        }
        .tier-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
        .tier-price {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        .tier-price span {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }
        .tier-list {
            text-align: left;
            margin-bottom: 24px;
        }
        .tier-list li {
            padding: 6px 0;
            font-size: 0.92rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tier-list li i {
            color: var(--primary-light);
            font-size: 0.8rem;
        }
        .tier-card .btn-brand {
            width: 100%;
            justify-content: center;
        }
        .tier-card.popular .btn-brand {
            background: var(--accent);
            color: var(--primary-dark) !important;
        }
        .tier-card.popular .btn-brand:hover {
            background: var(--accent-light);
        }

        /* ========== 套餐对比 ========== */
        .compare-table {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .compare-table .table {
            margin: 0;
            --bs-table-bg: transparent;
            --bs-table-hover-bg: rgba(45, 80, 22, 0.03);
            --bs-table-color: var(--text);
        }
        .compare-table .table th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            border: none;
            padding: 16px 20px;
            white-space: nowrap;
        }
        .compare-table .table th:first-child {
            border-top-left-radius: var(--radius);
            border-bottom-left-radius: 0;
        }
        .compare-table .table th:last-child {
            border-top-right-radius: var(--radius);
            border-bottom-right-radius: 0;
        }
        .compare-table .table td {
            padding: 14px 20px;
            border-color: var(--border);
            vertical-align: middle;
            font-size: 0.92rem;
        }
        .compare-table .table td:first-child {
            font-weight: 600;
            color: var(--text);
        }
        .compare-table .table tbody tr:hover td {
            background: rgba(45, 80, 22, 0.03);
        }
        .compare-cta a {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            background: var(--primary);
            color: #fff;
        }
        .compare-cta a:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(45, 80, 22, 0.25);
        }
        .compare-feature i {
            color: var(--primary-light);
            font-size: 1rem;
            margin-right: 4px;
        }
        .compare-feature i.fa-xmark {
            color: var(--text-muted);
        }

        /* ========== 保障条 ========== */
        .guarantee-section {
            background: var(--primary);
            background-image: linear-gradient(135deg, rgba(30, 58, 14, 0.9), rgba(45, 80, 22, 0.85)), url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
        }
        .guarantee-section .section-head h2 {
            color: #fff;
        }
        .guarantee-section .section-head p {
            color: rgba(255, 255, 255, 0.75);
        }
        .guarantee-card {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        .guarantee-card:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-4px);
        }
        .guarantee-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--primary-dark);
            font-size: 1.3rem;
        }
        .guarantee-card h5 {
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .guarantee-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* ========== 用户口碑 ========== */
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            height: 100%;
            transition: var(--transition);
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .testimonial-stars {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 14px;
        }
        .testimonial-card p {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .testimonial-user .name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
        }
        .testimonial-user .region {
            font-size: 0.82rem;
            color: var(--text-light);
        }

        /* ========== 资讯区 ========== */
        .news-card {
            display: flex;
            gap: 18px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 18px;
            transition: var(--transition);
            align-items: center;
        }
        .news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .news-thumb {
            width: 120px;
            height: 90px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-body h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-body h5 a {
            color: inherit;
        }
        .news-body h5 a:hover {
            color: var(--primary);
        }
        .news-meta {
            font-size: 0.82rem;
            color: var(--text-light);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .news-meta i {
            margin-right: 4px;
        }
        .news-sidebar {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }
        .sidebar-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-list li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(232, 227, 217, 0.6);
        }
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        .sidebar-list a {
            font-size: 0.9rem;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .sidebar-list a:hover {
            color: var(--primary);
        }
        .sidebar-list a span {
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud .tag {
            background: rgba(45, 80, 22, 0.06);
            color: var(--primary);
            font-size: 0.82rem;
            padding: 4px 14px;
            border-radius: 20px;
            transition: var(--transition);
            cursor: pointer;
        }
        .tag-cloud .tag:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ========== 限时入口 ========== */
        .promo-section {
            background: linear-gradient(135deg, #2d5016, #1e3a0e);
            color: #fff;
            padding: 80px 0;
        }
        .promo-section .section-head h2 {
            color: #fff;
        }
        .promo-section .section-head p {
            color: rgba(255, 255, 255, 0.8);
        }
        .promo-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        .promo-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }
        .promo-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .promo-card h5 {
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }
        .promo-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.6;
        }
        .promo-btn {
            display: inline-block;
            margin-top: 16px;
            padding: 8px 24px;
            border-radius: 50px;
            background: var(--accent);
            color: var(--primary-dark) !important;
            font-weight: 600;
            font-size: 0.88rem;
            transition: var(--transition);
        }
        .promo-btn:hover {
            background: #fff;
            transform: translateY(-2px);
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-lg);
        }
        .faq-question {
            padding: 18px 22px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text);
            font-size: 0.98rem;
        }
        .faq-question i {
            color: var(--primary);
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .faq-question[aria-expanded="true"] i {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 22px 18px;
            color: var(--text-light);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ========== CTA 表单 ========== */
        .contact-section {
            background: var(--white);
            padding: 80px 0;
        }
        .contact-wrapper {
            background: var(--bg);
            border-radius: 24px;
            padding: 44px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .contact-info {
            padding-right: 20px;
        }
        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .contact-info p {
            color: var(--text-light);
            margin-bottom: 24px;
        }
        .contact-info-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--text);
            font-size: 0.93rem;
        }
        .contact-info-list li i {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }
        .contact-form .form-control {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            font-size: 0.93rem;
            background: #fff;
            transition: var(--transition);
        }
        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.10);
        }
        .contact-form .form-label {
            font-weight: 600;
            color: var(--text);
            font-size: 0.92rem;
        }
        .contact-form .btn-brand {
            width: 100%;
            justify-content: center;
            padding: 12px;
            border-radius: var(--radius-sm);
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 50px 0 20px;
        }
        .site-footer .footer-brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer .footer-brand i {
            color: var(--accent);
        }
        .site-footer p {
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .site-footer h6 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            font-size: 0.98rem;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========== 移动端底部Tab ========== */
        .bottom-tab {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
            display: none;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1000;
            border-top: 1px solid var(--border);
        }
        .bottom-tab .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-light);
            padding: 4px 8px;
            transition: var(--transition);
        }
        .bottom-tab .tab-item i {
            font-size: 18px;
            margin-bottom: 2px;
        }
        .bottom-tab .tab-item.active,
        .bottom-tab .tab-item:hover {
            color: var(--primary);
        }

        /* ========== 响应式断点 ========== */
        @media (max-width: 991.98px) {
            .hero {
                min-height: 80vh;
                padding: 40px 0 120px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .section {
                padding: 60px 0;
            }
            .section-head h2 {
                font-size: 1.6rem;
            }
            .hero-stats-bar .stat-num {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 767.98px) {
            .navbar-brand {
                font-size: 1rem;
            }
            .navbar-brand span {
                display: none;
            }
            .hero {
                min-height: auto;
                padding: 60px 0 110px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero-desc {
                font-size: 0.88rem;
                margin-bottom: 24px;
            }
            .hero-btns .btn-brand,
            .hero-btns .btn-outline {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .section {
                padding: 48px 0;
            }
            .section-head {
                margin-bottom: 36px;
            }
            .section-head h2 {
                font-size: 1.35rem;
            }
            .news-thumb {
                width: 90px;
                height: 70px;
            }
            .news-card {
                flex-direction: column;
                padding: 14px;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .contact-wrapper {
                padding: 24px;
            }
            .contact-info {
                padding-right: 0;
                margin-bottom: 30px;
            }
            .bottom-tab {
                display: flex;
            }
            body {
                padding-bottom: 64px;
            }
            .tier-card,
            .guarantee-card,
            .testimonial-card,
            .promo-card {
                height: auto;
                margin-bottom: 20px;
            }
            .compare-table {
                overflow-x: auto;
            }
            .compare-table .table {
                min-width: 540px;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-stats-bar .stat-num {
                font-size: 1.1rem;
            }
            .hero-stats-bar .stat-label {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 380px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero-btns {
                flex-direction: column;
            }
            .hero-btns .btn-brand,
            .hero-btns .btn-outline {
                width: 100%;
                justify-content: center;
            }
        }
