.pricing-section {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    background: #0B1D37;
    padding: 20px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-wrapper {
    width: 100%;
    max-width: 1200px;
}

.pricing-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.save-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4A9FD8;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(74, 159, 216, 0.3);
}

.plan-name {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 24px;
}

.price {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #4A9FD8;
    line-height: 1;
}

.price-currency {
    font-size: 18px;
    font-weight: 500;
    color: #4A9FD8;
    opacity: 0.8;
}

.billing-info {
    text-align: center;
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

/* Bottom promotional section */
.promo-section {
    text-align: center;
    padding: 0 20px;
}

.promo-text {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* 
.cta-button {
    background: #FFB300;
    color: #1a2332;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(253, 181, 50, 0.3);
}

.cta-button:hover {
    background: #FFC44D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 181, 50, 0.4);
}

.cta-button:active {
    transform: translateY(0);
} 
*/

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 10px;
        margin-bottom: 32px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .plan-name {
        font-size: 24px;
    }

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

    .save-badge {
        font-size: 13px;
        padding: 6px 20px;
    }

    .promo-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* 
    .cta-button {
        padding: 12px 32px;
        font-size: 15px;
    } 
    */
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .plan-name {
        font-size: 22px;
    }

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

    .price-currency {
        font-size: 16px;
    }

    .billing-info {
        font-size: 14px;
    }

    .promo-text {
        font-size: 16px;
        margin-bottom: 18px;
    }

    /* 
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    } 
    */
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

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

    .promo-text {
        font-size: 19px;
    }
}
