.tdr-hero {
    width: 100%;
    background-color: #2c3e5c;
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
}

.tdr-title {
    margin: 0;
    font-family: "Pretendard Variable", "Pretendard", "SUIT Variable", "SUIT", "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;

    color: white;
}

.tdr-sub {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: clamp(1.0rem, 1vw, 2.0rem);
    line-height: 1.8rem;
    letter-spacing: 1px;
}

.tdr-form {
    max-width: 880px;
    margin: 16px auto 80px;
    padding: 16px;
    display: grid;
    gap: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.tdr-wrapper {
    display: flex;
    flex-direction: row;

    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.tdr-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 20px;
}

.tdr-row {
    display: grid;
    gap: 6px;
    width: 50%;
}

label {
    color: #0f172a;
    font-weight: 700;
}

.req {
    color: #1b4ef0;
}

.help {
    margin: 4px 0 0;
    color: #64748b;
    font-size: .92rem
}


.tdr-models {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #d6e2ff;
    border-radius: 999px;
    background: #f7faff;
    color: #0f1b35;
    font-weight: 800;
    cursor: pointer;
    user-select: none;
}

.chip input {
    accent-color: #1b4ef0;
}

input[type="date"],
input[type="text"],
input[type="tel"] {

    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;

    font-size: 1rem;
    outline: none;
    background: #fff;

}

input:focus {
    border-color: #9fc0ff;
    box-shadow: 0 0 0 3px rgba(27, 78, 240, .15);
}

.tdr-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 6px;
}

.btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.btn.primary {
    background: #1b4ef0;
    border-color: #1b4ef0;
    color: #fff;
}

.btn.primary:hover {
    box-shadow: 0 10px 22px rgba(27, 78, 240, .22);
}