* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    body{
    background: linear-gradient(90deg,rgb(0, 255, 136, 0.1),rgb(0, 119, 255, 0.1));
}
.pricing-section-title {
    font-size: 2.75rem;
    font-weight: 800; 
    color: #1a202c; 
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.03em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.03);
    margin-top: 6%;
}

.pricing-section-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 7% auto;
    padding: 0 15px;
    justify-items: center;
    box-sizing: border-box;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background-color: #000000;
    transition: 0.5s; 
}

.pricing-card:hover .plan-name,
.pricing-card:hover .plan-price,
.pricing-card:hover .plan-duration,
.pricing-card:hover .feature-item {
    color: #ffffff;
}

.pricing-card:hover .action-button {
    background-color: #ffffff;
    color: #000000;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #acacac 0%, #acacac 100%);
    color: #ffffff;
    transform: scale(1.05); 
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-duration {
    color: #303030;
}

.pricing-card.featured .feature-icon {
    color: #38a169;
}

.pricing-card.featured .action-button {
    background-color: black;
    color: #ffffff; 
}

.pricing-card.featured .action-button:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.plan-duration {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #4a5568;
}

.feature-icon {
    color: #38a169; 
    font-size: 1.2rem;
    margin-right: 10px;
}

.action-button {
    background-color: #000000; 
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
    background-color: #929191;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Medium Screens (Tablets) */
@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Large Screens (Desktop) */
@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8%;
    }
    .pricing-card.featured {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}

/* Mobile Screens */
@media (max-width: 639px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .pricing-section-title {
        font-size: 2rem;
    }
    .pricing-section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

}


@media (max-width: 639px) {
    .pricing-card.featured {
        transform: none;      /* scale remove */
        margin: 0;            /* extra top/bottom margins remove */
        width: 100%;          /* full width mobile me */
        max-width: 350px;     /* optional, card width fix */
    }
}
