/* ==========================================================================
   METIVATOR — Service intro placeholder page (/intro/)
   "서비스 소개서 준비 중" 안내 + Catalog/Contact CTA
   ========================================================================== */

.intro {
    width: 100%;
    background: var(--color-bg);
    font-family: "SUIT", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 80px 24px;
    box-sizing: border-box;
}

.intro__container {
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.intro__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin: 0 0 24px;
    text-transform: uppercase;
}

.intro__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 32px;
}

.intro__lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0 0 40px;
}

.intro__divider {
    width: 60px;
    height: 2px;
    background: var(--color-text);
    margin: 0 auto 40px;
}

.intro__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #595b60;
    margin: 0 0 56px;
}

.intro__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.15s, background-color 0.15s, color 0.15s;
}

.intro__btn--primary {
    background: #1c1c1c;
    color: #ffffff;
    border: 1px solid #1c1c1c;
}
.intro__btn--primary:hover {
    color: #ffffff;
    opacity: 0.85;
}

.intro__btn--ghost {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-line);
}
.intro__btn--ghost:hover {
    color: var(--color-text);
    background: #f5f5f5;
    opacity: 1;
}

@media screen and (max-width: 620px) {
    .intro { padding: 60px 20px; }
    .intro__title { font-size: 32px; }
    .intro__lead { font-size: 17px; }
    .intro__desc { font-size: 15px; }
    .intro__btn {
        width: 100%;
        max-width: 320px;
    }
}
