﻿.hc-inquiry-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 30px;
    color: #1f1f1f;
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

.hc-inquiry-headline {
    font-size: 26px;
    letter-spacing: 0.2em;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.hc-inquiry-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 60px;
    color: #000;
    text-align: center;
}

.hc-inquiry-message {
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}

.hc-inquiry-message.success {
    background: #eff9f0;
    border: 1px solid #bfe4c1;
    color: #256f2a;
}

.hc-inquiry-message.hc-inquiry-error {
    background: #fff4f4;
    border: 1px solid #ffc7c7;
    color: #b42318;
}

.hc-field-label {
    display: inline-block;
    font-size: 14px;
    margin: 14px 0 8px;
}

.hc-required-dot {
    color: #dc2f45;
    margin-left: 6px;
    font-weight: 700;
}

.hc-input-line {
    width: 100%;
    border: none;
    border-bottom: 1px solid #c7c7c7;
    padding: 10px 4px;
    background: transparent;
    outline: none;
    font-size: 15px;
    border-radius: 0;
}

.hc-input-line:focus {
    border-bottom-color: #6d44df;
}

.hc-phone-group {
    display: grid;
    grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr) auto minmax(72px, 1fr);
    align-items: center;
    gap: 8px;
}

.hc-phone-group span {
    color: #666;
}

.hc-textarea {
    min-height: 110px;
    resize: vertical;
}

.hc-check-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}

.hc-privacy-box {
    border: 1px solid #d8d8d8;
    background: #fafafa;
    padding: 12px;
    max-height: 140px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 13px;
    white-space: pre-line;
}

.hc-consent-item {
    margin-top: 10px;
}

.hc-submit-wrap {
    text-align: center;
    margin-top: 26px;
}

.hc-submit-btn {
    display: inline-block;
    min-width: 190px;
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    color: #fff;
    background: linear-gradient(90deg, #5e39d9, #7e55ff);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.hc-submit-btn:hover {
    opacity: 0.92;
}

.hc-submit-btn.is-disabled {
    background: #bdbdbd;
    cursor: not-allowed;
}

.hc-submit-btn.is-disabled:hover {
    opacity: 1;
}

.hc-field-error {
    margin: 8px 0 2px;
    color: #d93025;
    font-size: 12px;
}

.hc-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

@media (max-width: 640px) {
    .hc-inquiry-wrap {
        padding: 8px 16px 24px;
    }

    .hc-inquiry-title {
        font-size: 40px;
    }

    .hc-phone-group {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }
}


