@charset "utf-8"

/* ================================================
   Survey End Page — Modern Redesign
   ================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; scroll-behavior: smooth; }

body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    color: #374151;
    font-size: 14px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: #ffffff;
}

#wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- Header ---- */
#header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px 52px;
    text-align: center;
    background: #ffffff;
}

.status-icon {
    width: 64px;
    height: 64px;
    background: #f1f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.status-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.header-messages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

#header .h_title {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    background: #f3f4f6;
    border-radius: 999px;
    display: inline-block;
}

#header .h_title:empty { display: none; }

#header .h_title02 {
    color: #111827;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    max-width: 640px;
    word-break: keep-all;
}

#header .h_title02:empty { display: none; }

#header .h_title03 {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
    word-break: keep-all;
}

#header .h_title03:empty { display: none; }

/* ---- Promo Content ---- */
#content {
    background: #f5f3ff;
    padding: 64px 24px 72px;
    flex: 1;
}

.content-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left column */
.promo-text {}

.promo-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #ede9fe;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.promo-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 8px;
    word-break: keep-all;
}

.promo-text .sub-headline {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 16px;
    word-break: keep-all;
}

.promo-text .desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 20px;
    word-break: keep-all;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.feature-list li {
    font-size: 13px;
    color: #4b5563;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #6366f1;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.47 4.47a.75.75 0 0 1 1.06 1.06l-7 7a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 1.06-1.06L7 10.94l6.47-6.47Z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.cta-button {
    display: inline-block;
    padding: 13px 28px;
    background: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.18s, transform 0.18s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    text-decoration: none;
    color: #ffffff;
}

/* Right column */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 8px 14px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(99, 102, 241, 0.08);
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.14);
}

.feature-card .icon {
    width: 44px;
    height: 44px;
    background: #ede9fe;
    border-radius: 12px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-card .icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card .label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
    word-break: keep-all;
}

/* ---- Footer ---- */
#n_footer {
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
}

#n_footer .inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 24px;
    text-align: center;
}

#n_footer .inner .link_list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 24px;
}

#n_footer .inner .link_list li a {
    color: #6b7280;
    font-size: 13px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}

#n_footer .inner .link_list li a:hover { color: #111827; }

#n_footer .inner .address {
    margin-bottom: 6px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

#n_footer .inner .address span { display: inline-block; }

#n_footer .inner .copyright {
    color: #d1d5db;
    font-size: 12px;
    font-weight: 300;
}

/* ================================================
   Responsive — Tablet (≤ 1023px)
   ================================================ */
@media screen and (max-width: 1023px) {

    .content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 640px;
    }

    .feature-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .promo-text h2 { font-size: 22px; }

    #header .h_title02 { font-size: 28px; }
    #header .h_title03 { font-size: 15px; }
}

/* ================================================
   Responsive — Mobile (≤ 767px)
   ================================================ */
@media screen and (max-width: 767px) {

    #header {
        padding: 48px 20px 40px;
    }

    #header .h_title02 {
        font-size: 22px;
    }

    #header .h_title03 {
        font-size: 14px;
    }

    .status-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .status-icon img {
        width: 30px;
        height: 30px;
    }

    #content {
        padding: 48px 20px 56px;
    }

    .content-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .promo-text h2 { font-size: 20px; }

    .cta-button {
        display: block;
        text-align: center;
        width: 75%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .feature-card {
        padding: 14px 4px 10px;
        border-radius: 10px;
    }

    .feature-card .icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }

    .feature-card .icon img {
        width: 22px;
        height: 22px;
    }

    .feature-card .label {
        font-size: 10px;
    }

    #n_footer .inner {
        padding: 24px 20px;
    }

    #n_footer .inner .address {
        font-size: 11px;
        line-height: 1.4;
    }

    #n_footer .inner .link_list li a {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {

    #header {
        padding: 36px 16px 32px;
    }

    #header .h_title02 {
        font-size: 19px;
    }

    #header .h_title03 {
        font-size: 13px;
    }

    .cta-button {
        display: block;
        text-align: center;
        width: 75%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .feature-card {
        padding: 10px 3px 8px;
        border-radius: 8px;
    }

    .feature-card .icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        margin-bottom: 6px;
    }

    .feature-card .icon img {
        width: 18px;
        height: 18px;
    }

    .feature-card .label {
        font-size: 9px;
    }

    #n_footer .inner .address {
        display: flex;
        flex-direction: column;
        gap: 0.5 px;
    }

    #n_footer .inner .address span {
        display: block;
    }
}
