        /* ── 이 페이지(요금제)에서만 쓰는 스타일. style.css의 변수/애니메이션(xz-fade-up 등)을 그대로 상속 ── */
        .xz-body { background: var(--bg); color: var(--text-main); }
        .pc-nav-item > a.active,
        .nav-link.active { color: var(--primary) !important; }

        .xz-page-head { background: var(--card-bg); border-bottom: 1px solid var(--border); padding: 46px 20px 34px; text-align: center; }
        .xz-page-head h1 { font-size: 2rem; font-weight: 700; color: var(--text-main); margin: 0 0 10px; }
        .xz-page-head p { color: var(--text-muted); font-size: 1rem; margin: 0; }
        .xz-crumb { margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }
        .xz-crumb a { color: var(--text-muted); text-decoration: none; }
        .xz-crumb a:hover { color: var(--primary); }
        /* 페이지 헤드 진입 애니메이션: style.css의 xz-fade-up 키프레임을 그대로 상속 */
        .xz-page-head h1, .xz-page-head p, .xz-page-head .xz-crumb { opacity: 0; animation: xz-fade-up 0.6s ease both; }
        .xz-page-head p { animation-delay: .12s; }
        .xz-page-head .xz-crumb { animation-delay: .22s; }

        .xz-section { padding: 20px 0 50px 0; }
        .xz-wrap { max-width: var(--site-width); margin: 0 auto; }
        .xz-section-title { text-align: center; font-size: 2.2rem !important; font-weight: 700; color: var(--text-main); margin: 0 0 12px; }
        .xz-section-sub { text-align: center; color: var(--text-muted); font-size: 1rem; max-width: 640px; margin: 0 auto 44px; line-height: 1.6; }

        .xz-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; border: 1px solid transparent; cursor: pointer; }
        .xz-btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(29,92,159,0.35); }
        .xz-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,92,159,0.45); }
        .xz-btn-outline { background: transparent; color: var(--text-main); border-color: var(--border); }
        .xz-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
        .xz-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

        /* 요금제 카드 (3단) */
        .xz-pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 820px; margin: 0 auto; }
        .xz-pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
        .xz-price-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 34px 30px; display: flex; flex-direction: column; }
        .xz-price-card.featured { border-color: var(--primary); box-shadow: 0 16px 34px rgba(29,92,159,0.18); position: relative; animation: xzFloat 4.5s ease-in-out infinite; }
        @keyframes xzFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
        .xz-price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 5px 16px; border-radius: 20px; }
        .xz-price-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin: 0 0 6px; }
        .xz-price-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
        .xz-price-amount { font-size: 2.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
        .xz-price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
        .xz-price-unit { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 26px; }
        .xz-price-list { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
        .xz-price-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.92rem; color: var(--text-main); padding: 8px 0; border-bottom: 1px dashed var(--border); }
        .xz-price-list li:last-child { border-bottom: none; }
        .xz-price-list i { color: var(--primary); margin-top: 3px; }

        .xz-biz-banner { margin-top: 50px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 36px 30px; text-align: center; }
        .xz-biz-banner h3 { font-size: 1.6rem !important; color: var(--text-main); margin: 0 0 10px; }
        .xz-biz-banner p { color: var(--text-muted); margin: 0 0 22px; line-height: 1.7; word-break: keep-all; }

        /* CTA 마무리 섹션 (어느 레이아웃 틀 안에 들어가도 100vw로 뚫고 나오게 처리) */
        .xz-cta {
            position: relative;
            width: 100vw;
            left: 50%;
            right: 50%;
            margin:80px -50vw 0px -50vw !important;
            box-sizing: border-box;
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-size: 200% 200%;
            animation: xzGradientShift 10s ease infinite;
        }
        @keyframes xzGradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        .xz-cta h2 { color: #fff !important; font-size: 1.8rem; margin: 0 0 14px; }
        .xz-cta p { color: rgba(255,255,255,0.88); margin: 0 0 30px; }
        .xz-cta .xz-btn-primary { background: #fff; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
        .xz-cta .xz-btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
        .xz-cta .xz-btn-outline:hover { border-color: #fff; color: #fff; }

        /* 스크롤 reveal: style.css에 이미 정의된 .reveal/.reveal.visible을 그대로 상속 (여기서는 재정의하지 않음) */
        .xz-pricing-grid > .reveal:nth-child(1) { transition-delay: 0s; }
        .xz-pricing-grid > .reveal:nth-child(2) { transition-delay: 0.14s; }
        .xz-pricing-grid > .reveal:nth-child(3) { transition-delay: 0.28s; }

        @media (prefers-reduced-motion: reduce) {
            .reveal, .xz-page-head h1, .xz-page-head p, .xz-page-head .xz-crumb, .xz-price-card.featured {
                animation: none !important; opacity: 1 !important; transform: none !important;
            }
        }

        @media (max-width: 900px) {
            .xz-pricing-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .xz-page-head { padding: 34px 16px 26px; }
            .xz-page-head h1 { font-size: 1.5rem; }
            .xz-section { padding: 50px 16px; }
            .xz-section-title { font-size: 1.4rem; }
            .xz-cta h2 { font-size: 1.4rem; }
        }