.ws-dealer-page {
    overflow: hidden;
}

.ws-dealer-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 30px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10264a 0%, #173b70 100%);
    color: #ffffff;
}

.ws-dealer-hero::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -55px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ws-dealer-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ws-dealer-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 28px;
}

.ws-dealer-hero h1 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.ws-dealer-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.ws-dealer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(245px, 0.75fr);
    gap: 20px;
    align-items: start;
}

.ws-dealer-form-card,
.ws-dealer-info-card {
    border: 1px solid #dfe8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 38, 74, 0.07);
}

.ws-dealer-form-head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5edf4;
    background: #f7f9fc;
}

.ws-dealer-form-head-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 7px;
    background: #10264a;
    color: #ffffff;
    font-size: 18px;
}

.ws-dealer-form-head h2 {
    margin: 0 0 3px;
    color: #10264a;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.3;
}

.ws-dealer-form-head p {
    margin: 0;
    color: #778595;
    font-size: 12px;
    line-height: 1.5;
}

.ws-dealer-form {
    margin: 0;
    padding: 22px 20px 20px;
}

.ws-dealer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 18px;
}

.ws-dealer-form-group {
    margin: 0;
}

.ws-dealer-form-group.ws-full {
    grid-column: 1 / -1;
}

.ws-dealer-form-group label {
    display: block;
    margin: 0 0 8px;
    color: #263548;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.ws-dealer-form-group label sup {
    top: 0;
    color: #ef4c36;
    font-size: 12px;
}

.ws-dealer-input-wrap {
    position: relative;
}

.ws-dealer-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    color: #8c9aaa;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.ws-dealer-form .form-control {
    width: 100%;
    height: 46px;
    padding: 10px 13px 10px 40px;
    border: 1px solid #d9e3ec;
    border-radius: 7px;
    background: #ffffff;
    color: #243044;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-dealer-form .form-control:focus {
    border-color: #1A9BD4;
    box-shadow: 0 0 0 3px rgba(26, 155, 212, 0.10);
    outline: none;
}

.ws-dealer-form textarea.form-control {
    min-height: 135px;
    height: 135px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.65;
}

.ws-dealer-form .form-control::placeholder {
    color: #a2adba;
    opacity: 1;
}

.ws-dealer-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e8eef3;
}

.ws-dealer-required-note {
    margin: 0;
    color: #7b8794;
    font-size: 12px;
    font-weight: 700;
}

.ws-dealer-required-note sup {
    top: 0;
    color: #ef4c36;
}

.ws-dealer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 165px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 7px;
    background: #10264a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(16, 38, 74, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ws-dealer-submit:hover,
.ws-dealer-submit:focus {
    background: #1A9BD4;
    color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

.ws-dealer-info-card {
    overflow: hidden;
}

.ws-dealer-info-head {
    padding: 19px 20px;
    background: #10264a;
    color: #ffffff;
}

.ws-dealer-info-head h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.ws-dealer-info-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.6;
}

.ws-dealer-benefits {
    margin: 0;
    padding: 8px 20px;
    list-style: none;
}

.ws-dealer-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f6;
    color: #566575;
    font-size: 13px;
    line-height: 1.65;
}

.ws-dealer-benefits li:last-child {
    border-bottom: 0;
}

.ws-dealer-benefits i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    border-radius: 6px;
    background: #eef7fc;
    color: #1A9BD4;
    font-size: 13px;
}

.ws-dealer-benefits strong {
    display: block;
    margin-bottom: 2px;
    color: #263548;
    font-size: 13px;
    font-weight: 900;
}

.ws-dealer-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 20px 20px;
    padding: 13px 14px;
    border-left: 4px solid #1A9BD4;
    border-radius: 0 7px 7px 0;
    background: #f4f9fd;
    color: #627184;
    font-size: 12px;
    line-height: 1.65;
}

.ws-dealer-note i {
    margin-top: 3px;
    color: #1A9BD4;
}

@media (max-width: 991px) {
    .ws-dealer-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ws-dealer-hero {
        padding: 24px 20px;
    }

    .ws-dealer-hero-content {
        align-items: flex-start;
        gap: 14px;
    }

    .ws-dealer-hero-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .ws-dealer-hero h1 {
        font-size: 24px;
    }

    .ws-dealer-form-grid {
        grid-template-columns: 1fr;
    }

    .ws-dealer-form-group.ws-full {
        grid-column: auto;
    }

    .ws-dealer-submit-row {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .ws-dealer-submit {
        width: 100%;
    }
}
