/* =========================================================
   Template: SimpleLoanTemplate
========================================================= */

.simple-landing-page {
    width: 100%;
    min-width: 320px;
    color: #111827;
    background: #fff;
    font-family: 'SUIT', 'Pretendard', 'Noto Sans KR', sans-serif;
}

.simple-landing-page * {
    box-sizing: border-box;
}

.simple-landing-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 720px;
    padding: 80px 7%;
    background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 100%);
}

.simple-landing-hero__content {
    flex: 1;
}

.simple-landing-hero__eyebrow {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 800;
    color: #1d4ed8;
}

.simple-landing-hero__title {
    margin: 0 0 24px;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.04em;
    white-space: pre-line;
}

.simple-landing-hero__desc {
    max-width: 560px;
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    word-break: keep-all;
}

.simple-landing-hero__form {
    width: 420px;
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
}

.simple-landing-hero__form h2 {
    margin: 0 0 22px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
}

.simple-landing-page .base-apply-form__submit {
    background: #1d4ed8;
}

.simple-landing-page .base-apply-form__submit:hover {
    background: #1e40af;
}

.simple-landing-page .base-apply-form__input {
    border-radius: 12px;
}

.simple-landing-privacy-button {
    display: block;
    margin: 14px auto 0;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: underline;
    cursor: pointer;
}

.simple-landing-benefit {
    padding: 90px 7%;
    background: #fff;
}

.simple-landing-section-title {
    margin-bottom: 38px;
    text-align: center;
}

.simple-landing-section-title h2 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.04em;
}

.simple-landing-section-title p {
    margin: 0;
    font-size: 18px;
    color: #6b7280;
}

.simple-landing-benefit__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.simple-landing-benefit__card {
    min-height: 160px;
    padding: 32px;
    border-radius: 20px;
    background: #f9fafb;
}

.simple-landing-benefit__card strong {
    display: block;
    margin-bottom: 18px;
    font-size: 20px;
    color: #1d4ed8;
}

.simple-landing-benefit__card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
}

.simple-landing-benefit__card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    word-break: keep-all;
}

.simple-landing-realtime {
    padding: 80px 7%;
    background: #f4f7ff;
}

.simple-landing-realtime .realtime-apply__title {
    margin-bottom: 28px;
    text-align: center;
    font-size: 34px;
}

.simple-landing-realtime .realtime-apply__list {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.simple-landing-notice {
    padding: 28px 7%;
    background: #111827;
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

.simple-landing-notice p {
    margin: 4px 0;
}

@media screen and (max-width: 1024px) {
    .simple-landing-hero {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 60px 5%;
    }

    .simple-landing-hero__title {
        font-size: 42px;
    }

    .simple-landing-hero__form {
        width: 100%;
    }

    .simple-landing-benefit__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .simple-landing-hero {
        padding: 44px 20px;
    }

    .simple-landing-hero__eyebrow {
        font-size: 15px;
    }

    .simple-landing-hero__title {
        font-size: 34px;
    }

    .simple-landing-hero__desc {
        font-size: 16px;
    }

    .simple-landing-hero__form {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .simple-landing-benefit,
    .simple-landing-realtime {
        padding: 56px 20px;
    }

    .simple-landing-section-title h2 {
        font-size: 28px;
    }

    .simple-landing-realtime .realtime-apply__title {
        font-size: 26px;
    }
}