/*:root {
    --hero-title: #2338C4;*/ /* deep blue (approx from mock) */
    /*--hero-btn: #FFB200;*/ /* yellow/orange button */
    /*--hero-btn-hover: #E69F00;
    --hero-card-bg: #fafafa;
    --hero-card-radius: 120px;
    --hero-border: #D6D8FF;*/ /* soft blue input border */
    /*--hero-card-radius: 120px;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0));
}

.hero-card {
    position: relative;
    z-index: 1;
    background: var(--hero-card-bg);
    margin-top: 70px;
    margin-bottom: 40px;
    padding: 3em;
    border-radius: var(--hero-card-radius);
    border: 1px solid black;
}

.hero-title {
    color: #1818a2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-form .form-control {
    border-color: #7693eb;
    border-width: 2px;
    border-radius: 6px;
    height: 72px;
}

.btn-hero {
    background: var(--hero-btn);
    border-color: var(--hero-btn);
    padding: 12px 28px;
    color: white;
    font-weight: 500;
    text-align: left;
    font-size:1.6rem;

}

    .btn-hero:hover,
    .btn-hero:focus {
        background: var(--hero-btn-hover);
        border-color: var(--hero-btn-hover);
        color: #1a1a1a;
    }

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #DB4E59;*/ /* red from mock for icon/text */
    /*font-weight: 600;
}

.hero-handshake {
    display: inline-flex;
    color: #DB4E59;
}

.hero-circles {
    width: 100%;
    max-width: 520px;
    float: right;
    transform: translateY(10px);
}*/

/* Rounded white card’s outer corners shadow simulation */
/*.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--hero-card-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    pointer-events: none;
}


@media (max-width: 90%) {
    .hero-bg-img {
        height: 320px;
    }

    .hero-card {
        border-radius: 24px;
    }

    .btn-hero {
        width: 100%;
    }*/
    /* button stays auto */
    /*.hero-card {
        border-radius: 80px;
    }
}

.hero-row .hero-col {
    display: flex;
}

    .hero-row .hero-col .form-control {
        width: 100%;
    }*/

/* Optional: tighten the layout a bit on medium screens */
/*@media (max-width: 900px) {
    .hero-card {
        border-radius: 60px;
        padding: 1em;
    }

        .hero-card::after {
            border-radius: 60px;
        }

    @media (min-width: 768px) {
        .hero-row > .col-md {
            flex: 1 1 0;
        }*/
        /* both inputs grow equally */
        /*.hero-row > .col-md-auto {
            flex: 0 0 auto;
        }
    }
}*/
