/* =========================
   Pricing section
   ========================= */

.pricing {
    background: linear-gradient(180deg, var(--light-2) 0%, var(--white) 100%);
}

.pricing-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 36px 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.price-amount span {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.85;
}

.price-description {
    font-size: 16px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.pricing-body {
    padding: 36px 48px;
}

/* We use divs instead of <li>, so we style the items directly */
.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    padding: 14px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature:hover {
    padding-left: 8px;
    color: var(--primary);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

/* Button in pricing card – reuse hero style */
.pricing-body .btn-primary {
    margin-top: 28px;
}

.pricing-body .btn-primary > .wp-block-button__link {
    justify-content: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .pricing-header,
    .pricing-body {
        padding: 32px 28px;
    }

    .price-amount {
        font-size: 48px;
    }
}
