        :root {
            --navy-900: #0a1428;
            --navy-800: #0f1d35;
            --navy-700: #16294a;
            --navy-600: #1d3761;
            --navy-500: #274a7a;
            --orange-500: #ff6b35;
            --orange-400: #ff8c42;
            --orange-300: #ffab6e;
            --cyan-500: #00b4d8;
            --cyan-400: #2ec4d6;
            --bg-light: #f7f9fc;
            --bg-white: #ffffff;
            --text-dark: #0f1626;
            --text-mid: #3a4a5f;
            --text-light: #6b7d93;
            --border-light: #e3e8f0;
            --shadow-sm: 0 2px 12px rgba(10, 20, 40, 0.06);
            --shadow-md: 0 8px 30px rgba(10, 20, 40, 0.1);
            --shadow-lg: 0 20px 60px rgba(10, 20, 40, 0.15);
            --radius-sm: 10px;
            --radius-md: 18px;
            --radius-lg: 26px;
            --radius-xl: 36px;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.65;
            font-size: 16px;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--orange-500);
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul,
        ol {
            list-style: none;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        .wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* 顶部信息栏 */
        .topbar {
            background: var(--navy-900);
            color: #b8c7dd;
            font-size: 13.5px;
            padding: 9px 0;
            letter-spacing: 0.03em;
            border-bottom: 1px solid rgba(255, 107, 53, 0.25);
        }
        .topbar .wrap {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .topbar .tb-dot {
            color: var(--orange-400);
            font-weight: 700;
            margin-right: 4px;
        }
        .tb-sep {
            color: var(--orange-500);
            opacity: 0.6;
            font-size: 10px;
        }
        .topbar a {
            color: var(--orange-300);
            font-weight: 600;
            border-bottom: 1px dashed rgba(255, 171, 110, 0.4);
        }
        .topbar a:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        /* 导航栏 */
        .masthead {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 8px rgba(10, 20, 40, 0.04);
        }
        .masthead .wrap {
            display: flex;
            align-items: center;
            gap: 18px;
            height: 72px;
        }
        .wordmark {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .wm-mark {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 3px 12px rgba(10, 20, 40, 0.2);
        }
        .wm-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }
        .wm-name {
            font-weight: 800;
            font-size: 22px;
            color: var(--navy-900);
            letter-spacing: -0.02em;
        }
        .wm-sub {
            font-size: 11px;
            color: var(--orange-500);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-left: auto;
            flex-wrap: wrap;
        }
        .nav-wrap>a,
        .dd>button {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 10px 14px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-mid);
            border-radius: 8px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-wrap>a:hover,
        .dd>button:hover {
            color: var(--orange-500);
            background: #fff4ef;
        }
        .nav-wrap>a.on {
            color: var(--orange-500);
            background: #fff4ef;
            box-shadow: inset 0 -2px 0 var(--orange-500);
        }
        .dd {
            position: relative;
        }
        .dd-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            background: #fff;
            border-radius: 14px;
            box-shadow: var(--shadow-md);
            padding: 8px 0;
            min-width: 190px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all var(--transition);
            border: 1px solid var(--border-light);
            z-index: 50;
        }
        .dd:hover .dd-menu,
        .dd:focus-within .dd-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dd-menu a {
            display: block;
            padding: 9px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-mid);
            border-radius: 6px;
            transition: all 0.2s;
        }
        .dd-menu a:hover {
            background: #fff4ef;
            color: var(--orange-500);
            padding-left: 22px;
        }
        .nav-cta {
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 22px rgba(255, 107, 53, 0.45);
            color: #fff;
        }
        .nav-toggle-input {
            display: none;
        }
        .nav-toggle-label {
            display: none;
            font-size: 26px;
            color: var(--navy-900);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            user-select: none;
        }
        @media (max-width: 860px) {
            .nav-wrap {
                position: fixed;
                top: 72px;
                right: 0;
                width: 300px;
                max-width: 85vw;
                height: calc(100vh - 72px);
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 16px 20px 40px;
                box-shadow: -8px 0 40px rgba(10,20,40,0.12);
                transform: translateX(110%);
                transition: transform var(--transition);
                overflow-y: auto;
                border-left: 1px solid var(--border-light);
            }
            .nav-toggle-label {
                display: block;
                margin-left: auto;
            }
            .nav-toggle-input:checked~.nav-wrap {
                transform: translateX(0);
            }
            .nav-wrap>a,
            .dd>button {
                padding: 13px 16px;
                font-size: 16px;
                width: 100%;
                border-radius: 10px;
            }
            .dd-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                padding: 0 0 8px 20px;
                min-width: auto;
            }
            .dd-menu a {
                padding: 8px 14px;
                font-size: 14px;
            }
            .nav-cta {
                margin-top: 12px;
                text-align: center;
                justify-content: center;
                border-radius: 12px;
            }
            .masthead .wrap {
                height: 64px;
            }
        }

        /* 跑马灯 */
        .marquee {
            background: linear-gradient(90deg, var(--navy-900), var(--navy-700), var(--navy-900));
            overflow: hidden;
            padding: 10px 0;
            border-bottom: 2px solid var(--orange-500);
        }
        .marquee-inner {
            display: flex;
            align-items: center;
            gap: 28px;
            white-space: nowrap;
            animation: marquee-scroll 30s linear infinite;
            width: max-content;
            color: #cdd9ea;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
        }
        .marquee-inner i {
            color: var(--orange-400);
            font-style: normal;
            font-size: 10px;
        }
        @keyframes marquee-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Hero 订阅套餐 */
        .hero-plan {
            background: linear-gradient(155deg, #0a1428 0%, #0f1d35 30%, #1d3761 70%, #16294a 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0 90px;
            color: #fff;
        }
        .hero-plan::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-plan .wrap {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 50px;
            align-items: center;
        }
        .plan-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 180, 216, 0.12);
            border: 1px solid rgba(0, 180, 216, 0.35);
            padding: 7px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #7dd8e8;
            margin-bottom: 22px;
            letter-spacing: 0.04em;
        }
        .plan-pill .member-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cyan-400);
            animation: ping-ring 1.8s ease-out infinite;
        }
        @keyframes ping-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5);
            }
            100% {
                box-shadow: 0 0 0 12px rgba(0, 180, 216, 0);
            }
        }
        .hero-plan h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.03em;
            margin-bottom: 18px;
            color: #fff;
        }
        .hero-plan h1 .plan-hl {
            background: linear-gradient(135deg, var(--orange-400), var(--cyan-400));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .plan-sub {
            font-size: 16.5px;
            color: #b8c7dd;
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 32px;
        }
        .plan-sub strong {
            color: #fff;
            font-weight: 700;
        }
        .plan-hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 15.5px;
            transition: all var(--transition);
            letter-spacing: 0.02em;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
            color: #fff;
            box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(255, 107, 53, 0.5);
            color: #fff;
        }
        .btn-ghost {
            background: rgba(255, 255, 255, 0.08);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            backdrop-filter: blur(6px);
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--orange-500);
            color: var(--orange-500);
            font-weight: 600;
        }
        .btn-outline:hover {
            background: var(--orange-500);
            color: #fff;
        }
        .plan-trust {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #9aafc8;
            font-weight: 500;
        }
        .plan-trust span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .plan-trust span::before {
            content: '✓';
            color: var(--cyan-400);
            font-weight: 800;
            font-size: 14px;
        }

        .plan-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .plan-visual svg {
            width: 100%;
            max-width: 460px;
            height: auto;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
        }
        @media (max-width: 900px) {
            .hero-plan .wrap {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .plan-sub {
                margin-left: auto;
                margin-right: auto;
            }
            .plan-hero-cta {
                justify-content: center;
            }
            .plan-trust {
                justify-content: center;
            }
            .plan-visual {
                order: -1;
            }
            .hero-plan {
                padding: 50px 0 60px;
            }
        }

        /* 价格卡片区 */
        .pricing-section {
            padding: 80px 0;
            background: var(--bg-light);
        }
        .pricing-toggle {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 40px;
            background: #fff;
            padding: 6px;
            border-radius: 30px;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }
        .pricing-toggle button {
            padding: 10px 22px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-mid);
            transition: all var(--transition);
            flex: 1;
            text-align: center;
        }
        .pricing-toggle button.active {
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .price-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            border: 1.5px solid var(--border-light);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: #b9c9dd;
        }
        .price-card.popular {
            border-color: var(--orange-400);
            box-shadow: var(--shadow-md);
        }
        .price-card.popular::before {
            content: '🌟 最受欢迎';
            position: absolute;
            top: 18px;
            right: -32px;
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            padding: 5px 36px;
            transform: rotate(45deg);
            letter-spacing: 0.06em;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
        }
        .price-card .plan-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--navy-900);
            margin-bottom: 4px;
        }
        .price-card .plan-desc {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 18px;
            min-height: 40px;
        }
        .price-card .plan-price {
            font-size: 42px;
            font-weight: 900;
            color: var(--navy-900);
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .price-card .plan-price .currency {
            font-size: 20px;
            font-weight: 700;
            vertical-align: super;
            margin-right: 2px;
        }
        .price-card .plan-price .period {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-light);
            margin-left: 4px;
        }
        .price-card .plan-features {
            margin: 18px 0 24px;
            flex: 1;
        }
        .price-card .plan-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: var(--text-mid);
            padding: 5px 0;
            font-weight: 500;
        }
        .price-card .plan-features li::before {
            content: '✓';
            color: var(--cyan-500);
            font-weight: 800;
            font-size: 14px;
            flex-shrink: 0;
        }
        .price-card .btn-block {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 15px;
            transition: all var(--transition);
        }
        .price-card .btn-outline-block {
            background: transparent;
            border: 2px solid var(--orange-500);
            color: var(--orange-500);
        }
        .price-card .btn-outline-block:hover {
            background: var(--orange-500);
            color: #fff;
        }
        .price-card .btn-primary-block {
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
            color: #fff;
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
        }
        .price-card .btn-primary-block:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
            color: #fff;
        }
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }
        }

        /* 权益对比表格 */
        .compare-section {
            padding: 80px 0;
        }
        .compare-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .compare-table {
            width: 100%;
            min-width: 700px;
            border-collapse: collapse;
            font-size: 14px;
        }
        .compare-table th,
        .compare-table td {
            padding: 16px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        .compare-table th:first-child,
        .compare-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--navy-900);
        }
        .compare-table thead th {
            background: var(--navy-900);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .compare-table thead th:first-child {
            border-radius: var(--radius-md) 0 0 0;
        }
        .compare-table thead th:last-child {
            border-radius: 0 var(--radius-md) 0 0;
        }
        .compare-table tbody tr:hover {
            background: var(--bg-light);
        }
        .compare-table .check-yes {
            color: var(--cyan-500);
            font-weight: 800;
            font-size: 18px;
        }
        .compare-table .check-no {
            color: #c3cede;
            font-size: 18px;
        }
        .compare-table .check-num {
            font-weight: 700;
            color: var(--navy-900);
        }

        /* 支付与保障 */
        .payment-section {
            padding: 80px 0;
            background: var(--bg-light);
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        .payment-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 26px 18px;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .payment-card:hover {
            border-color: var(--cyan-400);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .payment-card .pm-icon {
            font-size: 34px;
            margin-bottom: 10px;
        }
        .payment-card h3 {
            font-size: 15.5px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 6px;
        }
        .payment-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }
        @media (max-width: 900px) {
            .payment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
            .payment-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ */
        .faq-group details {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-group details:hover {
            border-color: #c9d4e3;
        }
        .faq-group summary {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 15px;
            color: var(--navy-900);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
        }
        .faq-group summary::-webkit-details-marker {
            display: none;
        }
        .faq-group summary::after {
            content: '+';
            font-size: 22px;
            color: var(--cyan-500);
            font-weight: 700;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-group details[open] summary::after {
            transform: rotate(45deg);
        }
        .faq-a {
            padding: 0 22px 20px;
            font-size: 14.5px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        /* CTA 横幅 */
        .cta-band {
            background: linear-gradient(135deg, var(--orange-500), var(--orange-400), var(--cyan-500));
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
            animation: cta-glow 5s ease-in-out infinite;
        }
        @keyframes cta-glow {
            0%,
            100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
        }
        .cta-band h2 {
            font-size: clamp(1.6rem, 3vw, 2.3rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
        .cta-band p {
            font-size: 16px;
            opacity: 0.95;
            margin: 8px 0 26px;
            position: relative;
            z-index: 1;
        }
        .cta-band .btn {
            position: relative;
            z-index: 1;
            background: var(--navy-900);
            color: #fff;
            box-shadow: 0 8px 24px rgba(10, 20, 40, 0.3);
        }
        .cta-band .btn:hover {
            background: var(--navy-800);
            transform: translateY(-2px);
        }

        /* Footer */
        .mastfoot {
            background: var(--navy-900);
            color: #a0b1c6;
            padding: 50px 0 24px;
            border-top: 3px solid var(--orange-500);
        }
        .mf-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .mf-brand .wordmark {
            margin-bottom: 14px;
        }
        .mf-brand .wm-name {
            color: #fff;
        }
        .mf-brand .wm-sub {
            color: var(--orange-400);
        }
        .mf-brand p {
            font-size: 13.5px;
            color: #8a9bb5;
            max-width: 300px;
            line-height: 1.7;
        }
        .mf-col h4 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }
        .mf-col a {
            display: block;
            font-size: 13.5px;
            color: #8a9bb5;
            padding: 5px 0;
            transition: all 0.25s;
        }
        .mf-col a:hover {
            color: var(--orange-400);
            padding-left: 6px;
        }
        .foot-line {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            font-size: 12.5px;
            color: #6b7d93;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        @media (max-width: 800px) {
            .mf-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 500px) {
            .mf-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 600px) {
            .section,
            .pricing-section,
            .compare-section,
            .payment-section {
                padding: 48px 0;
            }
            .wrap {
                padding: 0 18px;
            }
            .hero-plan h1 {
                font-size: 1.8rem;
            }
            .plan-sub {
                font-size: 15px;
            }
            .btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }