*, html{
    padding: 0;
    margin: 0;
}
#hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 80% 30%, rgba(56, 189, 248, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    
    background-size: cover;
    background-position: center;
}

.pricing-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.pricing-card.featured {
    border: 2px solid #0d6efd;
    position: relative;
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d6efd;
    color: white;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}
.price-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}
.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 600;
}
.feature-list-item {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}