    /* ===== PAGE HERO / BANNER ===== */
    .page-hero {
        background: #1A8A90;
        padding: 64px 0 56px;
        position: relative;
        overflow: hidden;
    }
    .page-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border: 1px solid rgba(197,169,106,0.1);
        border-radius: 50%;
    }
    .page-hero::after {
        content: '';
        position: absolute;
        bottom: -120px;
        left: -80px;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(255,255,255,0.04);
        border-radius: 50%;
    }
    .page-hero-content {
        position: relative;
        z-index: 2;
    }
    .page-hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: #FFFFFF;
        margin-bottom: 16px;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.6);
    }
    .breadcrumb a {
        color: rgba(255,255,255,0.6);
    }
    .breadcrumb a:hover {
        color: #C5A96A;
    }
    .breadcrumb .separator {
        color: rgba(255,255,255,0.3);
    }
    .breadcrumb .current {
        color: #C5A96A;
        font-weight: 500;
    }
    .page-hero-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #C5A96A 0%, #1A8A90 50%, #C5A96A 100%);
        z-index: 10;
    }

    /* ===== PRICE LIST INTRO ===== */
    .price-intro {
        padding: 56px 0 32px;
        background: #FAF9F5;
    }
    .price-intro-inner {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: #FFFFFF;
        border: 1px solid #eee;
        padding: 28px 32px;
        border-radius: 0;
        position: relative;
    }
    .price-intro-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #1A8A90, #C5A96A);
    }
    .price-intro-icon {
        width: 44px;
        height: 44px;
        background: rgba(26,138,144,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .price-intro-icon svg { width: 22px; height: 22px; color: #1A8A90; }
    .price-intro-text {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.7;
    }
    .price-intro-text strong { color: #1a3a3c; }

    /* ===== PRICE NAVIGATION (JUMP LINKS) ===== */
    .price-nav {
        padding: 0 0 48px;
        background: #FAF9F5;
    }
    .price-nav-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .price-nav-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: #FFFFFF;
        border: 1px solid #eee;
        font-size: 0.82rem;
        font-weight: 600;
        color: #1a3a3c;
        transition: border-color 0.3s, background 0.3s, color 0.3s;
        border-radius: 0;
    }
    .price-nav-link:hover {
        border-color: #1A8A90;
        background: #1A8A90;
        color: #FFFFFF;
    }
    .price-nav-link svg { width: 14px; height: 14px; }

    /* ===== PRICE SECTIONS ===== */
    .price-section {
        padding: 0 0 56px;
        background: #FAF9F5;
    }
    .price-section:last-of-type {
        padding-bottom: 80px;
    }
    .price-section-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #C5A96A;
    }
    .price-section-number {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #FFFFFF;
        background: #1A8A90;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .price-section-header h2 {
        font-size: 1.4rem;
        color: #1a3a3c;
    }

    /* ===== PRICE TABLE ===== */
    .price-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .price-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 500px;
    }
    .price-table thead th {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #1A8A90;
        text-align: left;
        padding: 12px 20px;
        border-bottom: 1px solid #ddd;
        background: #FFFFFF;
    }
    .price-table thead th:last-child {
        text-align: right;
    }
    .price-table tbody tr {
        transition: background 0.2s;
    }
    .price-table tbody tr:nth-child(odd) {
        background: #FFFFFF;
    }
    .price-table tbody tr:nth-child(even) {
        background: #FAF9F5;
    }
    .price-table tbody tr:hover {
        background: rgba(26,138,144,0.04);
    }
    .price-table td {
        padding: 14px 20px;
        font-size: 0.92rem;
        color: #333;
        border-bottom: 1px solid #eee;
        vertical-align: top;
    }
    .price-table td:last-child {
        text-align: right;
        font-weight: 600;
        white-space: nowrap;
        color: #1a3a3c;
    }
    .price-table td .item-note {
        display: block;
        font-size: 0.8rem;
        color: #888;
        margin-top: 2px;
        font-weight: 400;
    }

    /* Badges */
    .badge-zp {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 3px 10px;
        background: rgba(34,139,34,0.08);
        color: #228B22;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        border: 1px solid rgba(34,139,34,0.15);
        border-radius: 0;
    }
    .badge-zp svg { width: 12px; height: 12px; }
    .badge-free {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 3px 10px;
        background: rgba(197,169,106,0.1);
        color: #8a7340;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        border: 1px solid rgba(197,169,106,0.2);
        border-radius: 0;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
        padding: 80px 0;
        background: #157075;
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border: 1px solid rgba(197,169,106,0.1);
        border-radius: 50%;
    }
    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(26,138,144,0.1);
        border-radius: 50%;
    }
    .cta-inner {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .cta-inner h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        color: #FFFFFF;
        margin-bottom: 16px;
    }
    .cta-inner p {
        color: rgba(255,255,255,0.65);
        font-size: 1.05rem;
        max-width: 560px;
        margin: 0 auto 36px;
        line-height: 1.7;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .cta-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #C5A96A;
        color: #1a3a3c;
        padding: 16px 36px;
        font-weight: 700;
        font-size: 0.92rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 0;
        transition: background 0.3s;
    }
    .cta-btn-primary:hover { background: #d4bc82; }
    .cta-btn-primary svg { width: 18px; height: 18px; }
    .cta-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: #FFFFFF;
        padding: 16px 36px;
        font-weight: 600;
        font-size: 0.92rem;
        letter-spacing: 1px;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 0;
        transition: border-color 0.3s, color 0.3s;
    }
    .cta-btn-secondary:hover { border-color: #C5A96A; color: #C5A96A; }
    .cta-btn-secondary svg { width: 18px; height: 18px; }

    /* ===== RESPONSIVE (page-specific) ===== */
    @media (max-width: 1024px) {
        .price-nav-inner { gap: 8px; }
    }

    @media (max-width: 768px) {
        .page-hero { padding: 48px 0 40px; }
        .page-hero h1 { font-size: 1.8rem; }
        .price-intro-inner { flex-direction: column; padding: 24px 20px; }
        .price-section-header h2 { font-size: 1.2rem; }
        .price-table { min-width: 460px; }
        .price-table td { padding: 12px 14px; font-size: 0.85rem; }
        .price-table thead th { padding: 10px 14px; font-size: 0.7rem; }
        .price-nav-link { padding: 6px 12px; font-size: 0.78rem; }
        .cta-inner h2 { font-size: 1.5rem; }
        .cta-btn-primary, .cta-btn-secondary { padding: 14px 28px; font-size: 0.85rem; }
    }

    @media (max-width: 480px) {
        .price-intro-inner { padding: 20px 16px; }
        .price-section-header { gap: 12px; }
        .price-section-number { width: 32px; height: 32px; font-size: 0.7rem; }
    }
