﻿:root {
    --bg: #09111a;
    --bg-soft: #111c2a;
    --ink: #f4f8ff;
    --muted: #aebfd6;
    --line: rgba(164, 189, 228, 0.22);
    --line-strong: rgba(209, 229, 255, 0.36);
    --blue: #5da6ff;
    --mint: #4ee4c4;
    --orange: #ff8756;
    --yellow: #ffd173;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(93, 166, 255, 0.2), transparent 36%),
        radial-gradient(circle at 90% 24%, rgba(255, 135, 86, 0.22), transparent 38%),
        linear-gradient(180deg, #081019 0%, #0e1825 50%, #081019 100%);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .btn, .eyebrow {
    font-family: 'Sora', 'Noto Sans KR', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1260px, 92%);
    margin: 0 auto;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--mint), var(--orange));
}

.section-dots {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 120;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.22);
}

.panel {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    padding: 92px 0 74px;
    position: relative;
    overflow-x: clip;
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 16, 0.35), rgba(6, 12, 20, 0.55));
    pointer-events: none;
}

.panel > .container {
    position: relative;
    z-index: 2;
}

.section-dark {
    background: linear-gradient(135deg, rgba(13, 24, 37, 0.94), rgba(10, 17, 28, 0.9));
}

.hero {
    background: linear-gradient(180deg, rgba(15, 24, 37, 0.65), rgba(10, 17, 27, 0.45));
}

.hero .ambient {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse 4.8s ease-in-out infinite;
}

.ambient-a {
    top: -70px;
    right: -40px;
    background: radial-gradient(circle, rgba(78, 228, 196, 0.34), transparent 65%);
}

.ambient-b {
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 135, 86, 0.36), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 24px;
    align-items: center;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--mint);
    margin-bottom: 12px;
}

.hero-copy h1 {
    font-size: clamp(40px, 4.7vw, 68px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    max-width: 780px;
}

.hero-copy h1 span {
    color: #dbe8f9;
    font-weight: 500;
}

.hero-copy h1 strong {
    color: var(--yellow);
    font-weight: 700;
}

.hero-problem {
    color: #f8b98f;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-lead {
    color: var(--muted);
    max-width: 700px;
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.7;
}

.hl {
    color: var(--yellow);
    font-weight: 700;
}

.hero-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--orange), #ff5a34);
}

.btn-kakao {
    color: #101010;
    background: #fee500;
}

.hero-metrics {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-metrics li {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(16, 27, 41, 0.88);
    padding: 16px;
}

.hero-metrics strong {
    display: block;
    font-size: clamp(20px, 1.6vw, 26px);
    color: #f7fbff;
}

.hero-metrics span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted);
}

.hero-side {
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(165deg, rgba(20, 32, 48, 0.95), rgba(11, 19, 29, 0.92));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.hero-side img {
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.hero-side p {
    color: var(--mint);
    margin-bottom: 6px;
    font-size: 15px;
}

.hero-side strong {
    display: block;
    font-size: clamp(24px, 1.95vw, 34px);
    line-height: 1.25;
    margin-bottom: 8px;
}

.hero-side span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

#s2 {
    background:
        radial-gradient(circle at 8% 14%, rgba(82, 132, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 36, 0.72), rgba(8, 14, 23, 0.48));
}
#s3 {
    background:
        radial-gradient(circle at 86% 22%, rgba(78, 228, 196, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(12, 26, 38, 0.88), rgba(8, 16, 26, 0.94));
}
#s4 {
    background:
        radial-gradient(circle at 14% 80%, rgba(93, 166, 255, 0.13), transparent 34%),
        linear-gradient(180deg, rgba(17, 30, 45, 0.74), rgba(11, 19, 31, 0.5));
}
#s5 {
    background:
        radial-gradient(circle at 90% 76%, rgba(56, 202, 183, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(8, 30, 38, 0.86), rgba(7, 17, 26, 0.94));
}
#s6 {
    background:
        radial-gradient(circle at 10% 18%, rgba(214, 152, 255, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(25, 19, 36, 0.74), rgba(12, 12, 23, 0.5));
}
#s7 {
    background:
        radial-gradient(circle at 86% 12%, rgba(82, 216, 198, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(8, 34, 38, 0.74), rgba(7, 17, 23, 0.5));
}
#s8 {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 168, 122, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(33, 23, 17, 0.64), rgba(16, 13, 12, 0.36));
}

#s4::after,
#s6::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

#s4::after {
    background-image:
        linear-gradient(90deg, rgba(8, 16, 27, 0.7) 0%, rgba(8, 16, 27, 0.38) 46%, rgba(8, 16, 27, 0.1) 100%),
        url('./img/bg_04.jpg');
    background-position: center center, right center;
}

#s6::after {
    background-image:
        linear-gradient(90deg, rgba(10, 10, 18, 0.7) 0%, rgba(10, 10, 18, 0.34) 50%, rgba(10, 10, 18, 0.14) 100%),
        url('./img/bg_06.jpg');
    background-position: center center, right center;
}

.section-head {
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.16;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.section-desc {
    color: var(--muted);
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.cards {
    display: grid;
    gap: 16px;
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    background: linear-gradient(160deg, rgba(18, 30, 45, 0.92), rgba(10, 18, 29, 0.95));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 209, 115, 0.84);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.32);
}

.card i {
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: clamp(24px, 1.9vw, 31px);
    margin-bottom: 10px;
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.mini-list {
    margin-top: 12px;
    padding-left: 18px;
    color: #d9e6f9;
    font-size: 14px;
    line-height: 1.7;
}

.mini-list li {
    margin-bottom: 2px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.step {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: rgba(16, 26, 38, 0.9);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.step span {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.step h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: clamp(23px, 1.8vw, 30px);
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.step p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(14, 24, 36, 0.92);
    padding: 26px;
    text-align: center;
}

.metric strong {
    display: block;
    font-size: clamp(56px, 6vw, 86px);
    color: var(--yellow);
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.status-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 26, 39, 0.95);
    padding: 22px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.status-card h3 {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 8px;
}

.status-card strong {
    color: var(--mint);
    font-size: clamp(48px, 4.8vw, 72px);
}

.consult-stream-wrap {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    overflow: hidden;
    height: auto;
}

.consult-stream {
    width: 100%;
}

.consult-stream.desktop-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    animation: consult-slide-right 24s linear infinite;
    will-change: transform;
}

.consult-stream.desktop-track:hover {
    animation-play-state: paused;
}

.consult-card-horizontal {
    width: clamp(260px, 24vw, 320px);
    min-height: 94px;
    border: 1px solid rgba(164, 189, 228, 0.24);
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(22, 34, 49, 0.9), rgba(12, 21, 33, 0.92));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    padding: 14px 16px;
    display: flex;
    align-items: center;
}

.consult-card-row {
    height: 56px;
    border: 0;
    border-bottom: 1px solid rgba(164, 189, 228, 0.16);
    border-radius: 0;
    background: transparent;
    padding: 0 8px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.consult-card-row:last-child {
    border-bottom: 0;
}

.consult-card-row strong {
    font-size: 15px;
    font-weight: 600;
    color: #f2f7ff;
}

.consult-line {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    white-space: nowrap;
}

.consult-line strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consult-status-text {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
}

.consult-empty {
    color: var(--muted);
    padding: 12px;
}

.faq-grid {
    display: grid;
    gap: 12px;
}

.faq-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(16, 26, 39, 0.92);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    padding: 18px;
    font-size: 18px;
    cursor: pointer;
}

.faq-q span {
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--orange);
    margin-right: 8px;
    font-weight: 700;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    padding: 0 18px;
    transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-card.active .faq-a {
    max-height: 170px;
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.7;
}

.section-semu {
    position: relative;
}

.section-semu::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(6, 17, 22, 0.72) 0%, rgba(6, 17, 22, 0.4) 52%, rgba(6, 17, 22, 0.12) 100%),
        url('./img/bg_05.jpg');
    background-position: center center, right center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.16;
}

.semu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.semu-card {
    border: 1px solid rgba(162, 212, 228, 0.3);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(14, 35, 43, 0.88), rgba(10, 23, 31, 0.92));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    padding: 22px;
}

.semu-card i {
    font-size: 24px;
    color: #6fe8d2;
    margin-bottom: 10px;
}

.semu-card h3 {
    font-size: clamp(22px, 1.8vw, 30px);
    margin-bottom: 8px;
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.semu-card p {
    color: #c9dce8;
    font-size: 15px;
    line-height: 1.65;
}

.semu-cta-wrap {
    margin-top: 18px;
    border: 1px solid rgba(150, 215, 213, 0.24);
    border-radius: 14px;
    background: rgba(10, 21, 28, 0.72);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.semu-cta-wrap p {
    color: #c0d4e0;
    font-size: 15px;
}

.btn-semu {
    color: #06201d;
    background: linear-gradient(120deg, #65e8d7, #50c8ea);
}

.form-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
    align-items: center;
}

.form-panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.form-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.form-copy h2 {
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    word-break: keep-all;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

#consultForm {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(20, 31, 46, 0.96), rgba(10, 17, 27, 0.96));
    padding: 22px;
}

#consultForm label {
    display: block;
    margin-bottom: 10px;
}

#consultForm label span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
}

#consultForm input[type="text"],
#consultForm input[type="tel"] {
    width: 100%;
    padding: 15px 14px;
    border-radius: 10px;
    border: 1px solid #425b7a;
    background: #eaf2ff;
    color: #0f1826;
}

.submit-btn {
    width: 100%;
    margin-top: 8px;
}

.agree-box {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.policy-link {
    color: var(--yellow);
    text-decoration: underline;
}

.site-footer {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1140px, 92%);
    text-align: center;
    color: #9eb1ca;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.site-footer strong {
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
}

.floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consult-btn,
.kakao-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 700;
}

.consult-btn {
    color: #fff;
    background: linear-gradient(120deg, var(--orange), #ff5534);
}

.kakao-btn {
    color: #111;
    background: #fee500;
}

.policy-layer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
}

.policy-content {
    width: min(460px, 92%);
    max-height: 86vh;
    overflow: hidden;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    color: #111;
}

.policy-text {
    max-height: 62vh;
    overflow-y: auto;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.policy-content .btn {
    width: 100%;
    border-radius: 10px;
}

@keyframes pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.04); }
}

@keyframes consult-slide-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 960px) {
    html {
        scroll-snap-type: none;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .section-dots {
        display: none;
    }

    .panel {
        min-height: auto;
        padding: 52px 0;
    }

    .eyebrow {
        font-size: 10px;
        margin-bottom: 10px;
    }

    #s4::after,
    #s6::after {
        background-position: center center, center center;
        background-size: cover;
        opacity: 0.12;
    }

    .section-semu::after {
        background-position: center center, center center;
        background-size: cover;
        opacity: 0.1;
    }

    .hero-grid,
    .form-grid,
    .cards-3,
    .semu-grid,
    .steps,
    .metric-row {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(26px, 7.1vw, 34px);
        line-height: 1.28;
        letter-spacing: -0.015em;
        word-break: keep-all;
        overflow-wrap: anywhere;
        text-wrap: pretty;
    }

    .hero-problem,
    .hero-lead,
    .section-desc,
    .card p,
    .step p,
    .form-copy p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-head h2 {
        font-size: clamp(22px, 6.1vw, 28px);
        line-height: 1.24;
        letter-spacing: -0.015em;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .card h3,
    .step h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .card,
    .semu-card,
    .step,
    .metric,
    .status-card {
        padding: 18px;
    }

    .semu-card h3 {
        font-size: 19px;
    }

    .semu-card p,
    .semu-cta-wrap p {
        font-size: 13px;
        line-height: 1.6;
    }

    .semu-cta-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .form-copy h2 {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.24;
        margin-bottom: 8px;
    }

    .section-head h2,
    .card h3,
    .step h3,
    .faq-q,
    .form-copy h2 {
        word-break: keep-all;
        overflow-wrap: anywhere;
        text-wrap: pretty;
    }

    .btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .hero-side {
        padding: 16px;
    }

    .hero-side p {
        font-size: 13px;
    }

    .hero-side strong {
        font-size: clamp(20px, 5.6vw, 26px);
        line-height: 1.28;
    }

    .hero-side span {
        font-size: 13px;
        line-height: 1.55;
    }

    .hero-metrics li {
        padding: 14px;
    }

    .hero-metrics strong {
        font-size: clamp(17px, 5vw, 22px);
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .metric strong {
        font-size: clamp(38px, 11vw, 52px);
    }

    .metric span {
        margin-top: 8px;
        font-size: 13px;
    }

    .status-card h3 {
        font-size: 14px;
    }

    .status-card strong {
        font-size: clamp(34px, 10vw, 48px);
    }

    .consult-stream-wrap {
        height: 270px;
    }

    .consult-stream.desktop-track {
        display: block;
        width: 100%;
        animation: none;
    }

    .agree-box {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
    }

    .site-footer {
        position: static;
        transform: none;
        margin: 22px auto 0;
        font-size: 12px;
    }

    .faq-q {
        font-size: 16px;
        line-height: 1.45;
    }

    .faq-card.active .faq-a {
        font-size: 13px;
        line-height: 1.65;
    }

    .hero-metrics span {
        font-size: 13px;
    }

    #consultForm label span {
        font-size: 13px;
    }

    #consultForm input[type="text"],
    #consultForm input[type="tel"] {
        font-size: 14px;
    }

    #consultForm {
        padding: 18px;
    }

    .consult-line strong {
        font-size: 13px;
    }

    .consult-status-text {
        font-size: 12px;
    }

    .consult-btn,
    .kakao-btn {
        font-size: 11px;
    }
}
