.pricing-hero {
    padding: 160px 0 60px;
    position: relative;
}

.pricing-hero-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(200, 24, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
}

    .pricing-hero-content .pricing-badge-hero,
    .pricing-hero-content .pricing-hero-title,
    .pricing-hero-content .pricing-hero-subtitle {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        animation: heroCopyFadeUp 0.8s var(--ease-smooth) forwards;
        will-change: opacity, transform;
    }

    .pricing-hero-content .pricing-badge-hero {
        animation-delay: 0.12s;
    }

    .pricing-hero-content .pricing-hero-title {
        animation-delay: 0.24s;
    }

    .pricing-hero-content .pricing-hero-subtitle {
        animation-delay: 0.38s;
    }

.pricing-badge-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 40px -24px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: visible;
    animation: none;
    will-change: auto;
    font-family: var(--font-primary);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

    .pricing-badge-hero::before,
    .pricing-badge-hero::after {
        content: none;
    }

.pricing-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.pricing-hero-subtitle {
    margin-bottom: 0;
}

.pricing-text-highlight {
    color: var(--color-accent-bright);
}

.pricing-section {
    padding: 0 0 100px;
}

.pricing-grid-wrapper {
    margin-top: 200px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top center, rgba(255, 62, 156, 0.16) 0%, transparent 36%), rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease-smooth);
}

    .modal-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-backdrop.is-closing {
        opacity: 0;
        pointer-events: none;
    }

.modal-card {
    width: min(100%, 560px);
    border-radius: 24px;
    padding: 36px 30px 32px;
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
    transition: opacity 0.28s var(--ease-smooth), transform 0.32s var(--ease-smooth), box-shadow 0.32s var(--ease-smooth), border-color 0.32s var(--ease-smooth);
}

.modal-backdrop.is-open .modal-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.modal-backdrop.is-closing .modal-card {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
}

.concierge-modal-card {
    position: relative;
    overflow: hidden;
    max-width: 560px;
    background: rgba(10, 10, 11, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 90px -40px rgba(0, 0, 0, 0.92), 0 18px 50px -30px rgba(255, 62, 156, 0.32);
}

    .concierge-modal-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top center, rgba(255, 62, 156, 0.14) 0%, transparent 52%);
        pointer-events: none;
    }

.modal-backdrop.is-open .concierge-modal-card:hover {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 90px -40px rgba(0, 0, 0, 0.92), 0 18px 50px -30px rgba(255, 62, 156, 0.32);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.24s var(--ease-smooth), background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

    .modal-close svg {
        width: 18px;
        height: 18px;
        display: block;
    }

    .modal-close path {
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }

    .modal-close:hover {
        transform: rotate(90deg) scale(1.04);
        background: rgba(255, 62, 156, 0.1);
        border-color: rgba(255, 62, 156, 0.28);
        color: var(--color-white);
    }

.modal-icon-wrapper {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.concierge-modal-icon-wrapper {
    position: relative;
    color: var(--color-text-secondary);
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px -24px rgba(255, 62, 156, 0.42);
}

.concierge-modal-emoji {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 8px 22px rgba(255, 62, 156, 0.16));
}

.modal-title {
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
}

.modal-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
}

.modal-text-intro {
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.modal-text-description {
    margin-bottom: 34px;
    font-size: 0.98rem;
    color: var(--color-text-muted);
}

.modal-actions {
    display: flex;
    justify-content: center;
}

.btn-modal-cancel {
    min-width: 180px;
}

@media (max-width: 768px) {
    .modal-backdrop {
        padding: 18px;
    }

    .modal-card {
        padding: 28px 22px 24px;
    }

    .modal-close {
        top: 14px;
        right: 14px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-text-intro {
        font-size: 1rem;
    }

    .modal-text-description {
        font-size: 0.94rem;
        margin-bottom: 28px;
    }

    .btn-modal-cancel {
        width: 100%;
    }
}
