.pricing-page {
    min-height: 140vh;
    background: #050505;
    color: #fafafa;
    position: relative;
    overflow-x: hidden;
}

.pricing-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    z-index: 0;
}

.pricing-container {
    min-height: 140vh;
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.pricing-main {
    padding-top: 190px;
}

.pricing-hero {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #dcdcdc;
    font-weight: 700;
    font-size: 0.82rem;
}

.pricing-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.pricing-hero p {
    margin: 0 auto;
    max-width: 620px;
    color: #d2d2d2;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(22, 22, 22, 0.9);
}

.pricing-card h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.pricing-price {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-desc {
    margin-top: 14px;
    color: #bdbdbd;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pricing-card li {
    color: #e8e8e8;
}

.pricing-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    background: #ffffff;
    vertical-align: middle;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    border-radius: 14px;
    background: #ffffff;
    color: #050505;
    text-decoration: none;
    font-weight: 800;
}

.pricing-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-btn:hover {
    filter: brightness(1.05);
}

@media (max-width: 760px) {
    .pricing-main {
        padding-top: 220px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: auto;
    }
}
