


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    /*    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #111928;
    min-height: 100vh;*/
}

body {
    font-family: 'Inter', sans-serif;
    color: #111928;
    min-height: 100vh;
}

.autoloanbanner {
    background: url(/pl/images/banner-autoloan.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.new-form-component-container {
    padding: 0px 0px 0px 0px !important;
}

section.hero-heading {
    margin: 32px 0 0px 0;
}

.hero-heading h2 {
    margin: 0 auto;
    font-weight: 800;
    color: black;
}
/* Hero */
.hero {
    background: #f9fafb;
    padding: 48px 0;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-copy {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
    position: relative;
    z-index: 1;
}

    .hero-copy h1 {
        font-size: clamp(1.5rem, 3.5vw, 4rem);
        font-weight: 600;
        line-height: 1.2;
    }

    .hero-copy .h1-dark {
        color: #111828;
    }

    .hero-copy .h1-blue {
        color: #1976d2;
    }

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2a37;
    white-space: nowrap;
}

.bullet-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1976d2;
    flex-shrink: 0;
}

.hero-image {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 264px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .hero-image img {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 142%;
        max-width: none;
    }

.fade-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28.7%;
    z-index: 2;
    pointer-events: none;
    /*    background: linear-gradient(90deg, rgb(249,250,251) 0%, rgba(248,250,252,0.88) 30%, rgba(248,250,252,0.5) 60%, rgba(206,210,212,0) 100%);
*/
}

.fade-bottom {
    position: absolute;
    top: 190px;
    left: 0;
    right: 0;
    height: 75.275px;
    z-index: 2;
    pointer-events: none;
    /*    background: linear-gradient(to top, #f9fafb 0%, rgba(249,250,251,0) 100%);*/
}

/* Form */
.form-section {
    background: #fff;
    margin-top: 6px !important;
    padding: 0px 0 !important;
    /*    padding: 48px 0;
*/
}

.form-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #111928;
    line-height: 1.4;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.float-field {
    position: relative;
    width: 100%;
}

    .float-field input {
        width: 100%;
        border: 1px solid #9ca3af;
        border-radius: 8px;
        padding: 11px 16px;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        color: #111928;
        background: #fff;
        outline: none;
        transition: border-color .15s;
    }

        .float-field input::placeholder {
            color: #9ca3af;
            font-weight: 500;
        }

        .float-field input:focus {
            border-color: #1976d2;
        }

    .float-field label {
        position: absolute;
        top: -10px;
        left: 12px;
        background: #fff;
        padding: 0 4px;
        font-size: 12px;
        font-weight: 400;
        color: #111928;
        pointer-events: none;
        line-height: 1.5;
    }

.req {
    color: #e02424;
}

.gender-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gender-label {
    font-size: 14px;
    font-weight: 500;
    color: #111928;
}

.gender-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.radio-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-weight: 500;
    color: #111928;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .15s;
    width: 100%;
    text-align: left;
}

    .radio-btn.selected {
        border-color: #1976d2;
    }

.radio-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .15s;
}

.radio-btn.selected .radio-circle {
    border-color: #1976d2;
}

.radio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1976d2;
    display: none;
}

.radio-btn.selected .radio-dot {
    display: block;
}

.cta-wrap {
    display: flex;
    justify-content: center;
}

.cta-btn {
    width: 100%;
    max-width: 460px;
    padding: 12px;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: capitalize;
    cursor: pointer;
    transition: background .15s;
}

    .cta-btn:hover {
        background: #1565c0;
    }

/* Benefits */
.benefits {
    background: #f9fafb;
    padding: 48px 0;
}

.benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: #fff;
    border: 1px solid #d1e4f6;
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 218px;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a37;
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #00102a;
    padding: 56px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-co {
    color: #fff;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    flex-wrap: wrap;
}

    .footer-contact a {
        color: #fff;
        font-weight: 600;
        text-decoration: underline;
    }

        .footer-contact a:hover {
            opacity: .8;
        }

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-socials-lbl {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: 12px;
}

.soc {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111928;
    text-decoration: none;
    transition: opacity .15s;
}

    .soc:hover {
        opacity: .8;
    }

    .soc svg {
        width: 14px;
        height: 14px;
    }

.footer-divider {
    height: 1px;
    background: #374151;
}

.footer-copy {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-inner {
        padding: 0 16px;
        justify-content: center;
    }

    .hero {
        padding: 0;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .hero-copy h1 {
        font-size: 16px;
    }

    .hero-image {
        height: 155px;
    }

    .hero-bullets {
        gap: 6px;
        flex-direction: column;
    }

    .bullet {
        font-size: 12px;
        font-weight: 400;
    }

    .form-section {
        padding: 24px 0;
    }

    .form-inner {
        padding: 0 16px;
        gap: 24px;
    }

    .section-title {
        font-size: 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .float-field input {
        font-size: 14px;
    }

    .gender-radios {
        grid-template-columns: 1fr;
    }

    .benefits {
        padding: 24px 0;
    }

    .benefits-inner {
        padding: 0 16px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        height: auto;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

        .card-icon svg {
            width: 16px;
            height: 16px;
        }

    .card-title {
        font-size: 16px;
    }

    .card-desc {
        font-size: 14px;
        font-weight: 400;
    }

    .footer-inner {
        padding: 0 16px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-socials {
        align-items: flex-start;
    }
}
