/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    opacity: 0.9;
}

/* ===== How it Works ===== */
.step-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* ===== Pricing ===== */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

/* ===== Calculator ===== */
#calculator .card {
    background: #fff;
}
