/* Pricing Teaser Advanced Styles */

.pricing-teaser-section {
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, var(--bg-dark) 70%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.pricing-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.pricing-card-advanced {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card-advanced:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card-advanced:hover::before {
    opacity: 1;
}

/* Featured Card (Center) */
.pricing-card-advanced.featured {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.pricing-card-advanced.featured:hover {
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
}

/* Icons */
.pricing-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card-advanced:hover .pricing-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-trial {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.icon-monthly {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.icon-lifetime {
    color: #ff00ea;
    text-shadow: 0 0 15px rgba(255, 0, 234, 0.5);
    background: radial-gradient(circle, rgba(255, 0, 234, 0.1) 0%, rgba(0,0,0,0) 70%);
}

/* Typography */
.pricing-plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Badges */
.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
}

.badge-value {
    background: linear-gradient(135deg, #ff00ea 0%, #ff7300 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 0, 234, 0.3);
}

/* Button */
.btn-pricing-glow {
    margin-top: 5rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-pricing-glow:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
