.hero {
    position: relative;
    min-height: 80vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    width: 80%;
    position: relative;
    color: #ffffff;
    /*padding: clamp(100px, 12vh, 140px) 0 clamp(60px, 8vh, 80px) 0;*/
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step h3 {
    margin-bottom: 10px;
}

/* Products */
.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.product-list li {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 4px;
    border: 1px solid #e2e6e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-soon {
    background: #f4e3f6;
    color: #6a2c70;
    border: 1px solid #d6a6db;
}

.badge-soon {
    background: linear-gradient(135deg, #f4e3f6, #ead2ee);
    color: #6a2c70;
    border: none;
    box-shadow: 0 4px 10px rgba(106,44,112,0.15);
}

.product-list li:has(.badge-soon) {
    opacity: 0.55;
}

/* ===============================
   REQUEST SECTION
================================ */

.section-request {
    background: linear-gradient(180deg, #360833 0%, #2a0626 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    color: white;
}

.request-container {
    max-width: 900px;
    margin: 0 auto;
}

.request-header {
    text-align: center;
    margin-bottom: 40px;
}

.request-header h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.request-sub {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* FORM WRAPPER */
.request-form-wrapper {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* Make Jotform responsive */
.request-form-wrapper iframe {
    width: 100% !important;
}

.section-request::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    margin-bottom: 60px;
}




/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-position: center top;
        min-height: auto;
        padding: 10px 0 10px 0;
    }
    .hero-content {
        margin: 0 5%;
        padding-top: 20px;
        padding-bottom: 10px;
    }
}