.kyle-se-wrap {
    font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: #101828;
    max-width: 1120px;
    margin: 32px auto;
    padding: 0 16px
}

.kyle-se-layout {
    display: grid;
    grid-template-columns: minmax(280px,38%) 1fr;
    gap: 18px;
    align-items: stretch
}

.kyle-se-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 55px rgba(0,0,0,.12),inset 0 1px 0 rgba(255,255,255,.85);
    border: 1px solid #eaecf0
}

.kyle-se-left-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg,#fff 0%,#fff6f6 100%)
}

.kyle-se-right-card {
    height: fit-content;
    display: flex;
    flex-direction: column
}

.kyle-se-card-head {
    margin-bottom: 22px
}

.kyle-se-card-head.compact {
    margin-bottom: 0
}

.kyle-se-card-head.second-step {
    margin-top: 4px;
    margin-bottom: 14px
}

.kyle-se-card-head span {
    display: inline-flex;
    border-radius: 999px;
    background: #fff1f1;
    color: #eb292c;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.kyle-se-card-head h3 {
    margin: 12px 0 8px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #101828
}

.kyle-se-card-head.compact h3 {
    font-size: 24px
}

.kyle-se-card-head p {
    margin: 0;
    color: #667085;
    line-height: 1.55
}

.kyle-se-understanding,.kyle-se-form-area,.kyle-se-success {
    animation: kyleSeFadeIn .24s ease both
}

@keyframes kyleSeFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.kyle-se-score-list {
    display: grid;
    gap: 12px;
    margin: 0 0 18px
}

.kyle-se-score-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    padding: 15px 16px;
    background: #fcfcfd
}

.kyle-se-score-row b {
    font-size: 17px;
    letter-spacing: -.02em
}

.kyle-se-score-row span {
    color: #475467;
    line-height: 1.45;
    font-weight: 700
}

.kyle-se-score-row.good {
    border-color: #abefc6;
    background: #f6fef9
}

.kyle-se-score-row.ok {
    border-color: #fedf89;
    background: #fffcf5
}

.kyle-se-score-row.low {
    border-color: #fecdca;
    background: #fffbfa
}

.kyle-se-grid {
    display: grid;
    gap: 18px
}

.kyle-se-grid.two {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.kyle-se-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: #344054
}

.kyle-se-field small {
    font-size: 12px;
    line-height: 1.45;
    color: #667085;
    font-weight: 700;
    margin-top: 2px
}

.kyle-se-field input,.kyle-se-field select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 16px;
    background: #fff;
    min-height: 56px;
    padding: 0 16px;
    font-size: 16px;
    color: #101828;
    outline: none;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
    transition: border-color .18s ease,box-shadow .18s ease
}

.kyle-se-field input:focus,.kyle-se-field select:focus {
    border-color: #eb292c;
    box-shadow: 0 0 0 4px rgba(235,41,44,.12)
}

.kyle-se-field select {
    display: block;
    cursor: pointer;
    padding-right: 16px
}

.kyle-se-money {
    position: relative
}

.kyle-se-money em {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    color: #667085;
    font-weight: 900
}

.kyle-se-money input {
    padding-left: 34px
}

.kyle-se-btn {
    border: 0;
    border-radius: 16px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .15s ease,box-shadow .15s ease,background .15s ease
}

.kyle-se-btn:hover {
    transform: translateY(-1px)
}

.kyle-se-btn:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none!important
}

.kyle-se-btn.full {
    width: 100%
}

.kyle-se-btn.primary {
    background: #eb292c;
    color: #fff;
    box-shadow: 0 14px 28px rgba(235,41,44,.25)
}

.kyle-se-btn.primary:hover {
    background: #d91e21
}

.kyle-se-btn.ghost {
    background: #f2f4f7;
    color: #182230
}

.kyle-se-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.kyle-se-actions.split {
    justify-content: space-between
}

.kyle-se-actions .kyle-se-btn {
    flex: 1
}

.kyle-se-result {
    margin-top: 28px;
    border: 0;
    border-top: 1px solid #edf0f4;
    background: #fff;
    border-radius: 0;
    padding: 42px 20px 30px;
    text-align: center
}

.kyle-se-result span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    color: #099a3f;
}

.kyle-se-result strong {
    display: block;
    margin: 14px 0 14px;
    font-size: 30px;
    font-weight: bold;
    color: #07346d
}

.kyle-se-result p {
    margin: 0;
    font-size: 13px;
    font-style: italic;
}

.kyle-se-success {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 18px 0
}

.kyle-se-check {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #039855;
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 950
}

.kyle-se-success h3 {
    font-size: 34px;
    margin: 0 0 10px;
    letter-spacing: -.04em
}

.kyle-se-success p {
    font-size: 17px;
    line-height: 1.6;
    color: #475467;
    margin: 0 auto 22px
}

.kyle-se-error {
    border-color: #f04438!important;
    box-shadow: 0 0 0 4px rgba(240,68,56,.12)!important
}

.kyle-se-form-status {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45
}

.kyle-se-form-status.error {
    color: #b42318
}

.kyle-se-form-status.success {
    color: #027a48
}

@media(max-width: 860px) {
    .kyle-se-layout {
        grid-template-columns:1fr
    }

    .kyle-se-card {
        padding: 22px
    }

    .kyle-se-grid.two {
        grid-template-columns: 1fr
    }

    .kyle-se-actions {
        flex-direction: column
    }

    .kyle-se-result strong {
        font-size: 42px
    }

    .kyle-se-card-head h3 {
        font-size: 24px
    }

    .kyle-se-score-row {
        grid-template-columns: 1fr;
        gap: 4px
    }
}

/* Keep real selects visible and suppress theme/plugin-generated Nice Select wrappers. */
.kyle-se-wrap #kyleDownPayment, .kyle-se-wrap #kyleContactMethod, .kyle-se-wrap .kyle-se-field select {
    display: block!important;
    visibility: visible!important;
    opacity: 1!important;
    position: relative!important;
    z-index: 2!important;
    appearance: auto!important;
    -webkit-appearance: auto!important
}

.kyle-se-wrap .nice-select {
    display: none!important;
    visibility: hidden!important;
    opacity: 0!important;
    pointer-events: none!important
}

/* Pixel-perfect How It Works right-card styling */
.kyle-se-wrap .kyle-se-how-it-works {
    padding: 0;
    animation: kyleSeFadeIn .22s ease both
}

.kyle-se-wrap .kyle-se-how-head {
    margin: 0 0 14px
}

.kyle-se-wrap .kyle-se-how-head h2 {
    color: #07346f;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.045em
}

.kyle-se-wrap .kyle-se-how-head p {
    max-width: 100%;
    margin: 0;
    color: #4b5565;
    font-size: 15px;
        line-height: 1.5;
    margin-top: 8px;
}

.kyle-se-wrap .kyle-se-how-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kyle-se-wrap .kyle-se-how-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 12px;
    border: 1px solid #e9edf3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16,24,40,.02)
}

.kyle-se-wrap .kyle-se-how-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: #1d63ff;
    flex: 0 0 72px
}

.kyle-se-wrap .kyle-se-how-icon svg {
    width: 26px;
    height: 26px;
    display: block
}

.kyle-se-wrap .kyle-se-how-copy h4 {
    margin: 0 0 5px;
    color: #07346f;
    font-size: 18px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -.03em
}

.kyle-se-wrap .kyle-se-how-copy p {
    margin: 0;
    color: #667085;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes kyleSeFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width: 1120px) {
    .kyle-se-wrap .kyle-se-how-head h2 {
        font-size:40px
    }

    .kyle-se-wrap .kyle-se-how-head p {
        font-size: 21px
    }

    .kyle-se-wrap .kyle-se-how-row {
        grid-template-columns: 62px 1fr;
        gap: 24px;
        padding: 26px
    }

    .kyle-se-wrap .kyle-se-how-icon {
        width: 62px;
        height: 62px
    }

    .kyle-se-wrap .kyle-se-how-copy h4 {
        font-size: 24px
    }

    .kyle-se-wrap .kyle-se-how-copy p {
        font-size: 19px
    }
}

@media(max-width: 640px) {
    .kyle-se-wrap .kyle-se-how-head {
        margin-bottom:24px
    }

    .kyle-se-wrap .kyle-se-how-head h2 {
        font-size: 34px;
        margin-bottom: 16px
    }

    .kyle-se-wrap .kyle-se-how-head p {
        font-size: 18px;
        line-height: 1.55
    }

    .kyle-se-wrap .kyle-se-how-list {
        gap: 16px
    }

    .kyle-se-wrap .kyle-se-how-row {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding: 20px;
        border-radius: 18px
    }

    .kyle-se-wrap .kyle-se-how-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px
    }

    .kyle-se-wrap .kyle-se-how-icon svg {
        width: 28px;
        height: 28px
    }

    .kyle-se-wrap .kyle-se-how-copy h4 {
        font-size: 20px
    }

    .kyle-se-wrap .kyle-se-how-copy p {
        font-size: 16px
    }
}

.kyle-se-unlock-card {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 28px;
    align-items: start;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    background: #f8fafc;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(16,24,40,.06);
    animation: kyleFadeIn .32s ease both;
}

.kyle-se-lock-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    color: #e0183b;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(16,24,40,.12);
}

.kyle-se-lock-icon svg {
    width: 28px;
    height: 28px;
}

.kyle-se-unlock-copy h3 {
    margin: 4px 0 8px;
    font-size: 20px;
    color: #07346d;
}

.kyle-se-unlock-copy p {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .kyle-se-unlock-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 24px;
        border-radius: 26px;
    }

    .kyle-se-lock-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .kyle-se-lock-icon svg {
        width: 38px;
        height: 38px;
    }
}
