/* Plans Hero Section */
.plans-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--light-blue) 0%, #fff 100%);
    overflow: hidden;
}

.plans-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.15' fill='%230066cc'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave1 20s linear infinite;
}

.plans-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Plans Section */
.plans-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-blue) 100%);
}

.plan-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.plan-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--gradient-blue);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 102, 204, 0.15),
        0 2px 4px rgba(0, 102, 204, 0.1);
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
    animation: floating 3s ease-in-out infinite;
}

.plan-icon i {
    font-size: 1.8rem;
    color: white;
}

.plan-card h3 {
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.duration {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plan-feature-item:hover {
    background: white;
    transform: translateX(5px);
}

.plan-feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 0.8rem;
}

.plan-feature-item span {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-list {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    color: var(--dark-blue);
    font-weight: 500;
}

.price-item strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-primary {
    width: 100%;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
