.pricing-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
            gap: 24px;
            margin-bottom: 32px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 26px;
            background:
                radial-gradient(circle at top left, rgba(255, 186, 115, 0.24), transparent 34%),
                radial-gradient(circle at bottom right, rgba(42, 121, 233, 0.18), transparent 28%),
                linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
        }
        .pricing-hero h2 {
            margin-top: 0;
        }
        .pricing-hero p {
            margin: 14px 0 0;
            max-width: 720px;
            color: rgba(255,255,255,0.76);
            line-height: 1.65;
            font-size: 1.03rem;
        }
        .pricing-note {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
            padding: 22px;
            border-radius: 22px;
        }
        .pricing-note-label {
            display: inline-flex;
            width: fit-content;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 186, 115, 0.16);
            border: 1px solid rgba(255, 186, 115, 0.24);
            color: #ffe0b8;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .pricing-note strong {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
        }
        .pricing-note p {
            margin: 0;
            color: rgba(255,255,255,0.72);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }
        .pricing-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 26px;
            border-radius: 24px;
        }
        .pricing-card-header {
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }
        .pricing-card h3 {
            margin: 0;
            font-size: 1.45rem;
            color: #fff;
        }
        .pricing-card p {
            margin: 8px 0 0;
            color: rgba(255,255,255,0.68);
            line-height: 1.55;
        }
        .pricing-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 56px;
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
            color: #fff;
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.10);
        }
        .pricing-card--retouch .pricing-badge {
            background: rgba(121, 186, 255, 0.18);
            border-color: rgba(121, 186, 255, 0.22);
            color: #dcecff;
        }
        .pricing-card--ai .pricing-badge {
            background: rgba(255, 186, 115, 0.16);
            border-color: rgba(255, 186, 115, 0.24);
            color: #ffe0b8;
        }
        .pricing-card .service-list {
            margin: 0;
            padding: 0;
            background: transparent;
            border-radius: 0;
            list-style: none;
        }
        .pricing-card .service-list li {
            margin: 0;
            padding: 14px 0 14px 28px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.84);
            background: none;
            position: relative;
            transform: none;
        }
        .pricing-card .service-list li:last-child {
            border-bottom: none;
        }
        .pricing-card .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 21px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, #79baff, #ffba73);
            box-shadow: 0 0 0 5px rgba(255,255,255,0.04);
        }
        .pricing-card .service-list li:hover {
            background: none;
            transform: none;
        }
        .pricing-disclaimer {
            margin-top: 24px;
            padding: 20px 22px;
            border-radius: 22px;
            border: 1px solid rgba(212, 175, 55, 0.18);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255,255,255,0.03));
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
        }
        .pricing-disclaimer h2 {
            margin: 0 0 10px;
            border: none;
            padding: 0;
        }
        .pricing-disclaimer p {
            margin: 0;
            color: rgba(255,255,255,0.72);
            line-height: 1.7;
        }
        @media (max-width: 900px) {
            .pricing-hero {
                grid-template-columns: 1fr;
                padding: 22px 18px;
                border-radius: 22px;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card {
                padding: 20px 18px;
            }
            .pricing-card-header {
                flex-direction: column;
                align-items: start;
            }
        }
