/* ========================================
   SECTION 10: 상담 CTA
   ✦ 배경 박스 없이 섹션 전체 퍼플 배경
======================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #553AE7 0%, #4028C4 50%, #3520A8 100%);
    overflow: hidden;
}

.cta-bg-grid { display: none; }

/* 배경 장식 (섹션 레벨) */
.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    bottom: -120px; left: -60px;
    background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wrap {
    position: relative; z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 36px; font-weight: 900; color: #fff;
    margin-bottom: 16px; letter-spacing: -.03em;
    line-height: 1.3; position: relative;
}
.cta-desc {
    font-size: 17px; color: rgba(255,255,255,.75);
    margin-bottom: 40px; font-weight: 400;
    max-width: 520px; margin-left: auto; margin-right: auto;
    position: relative;
}

.cta-btns {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 32px; position: relative;
}

.cta-btns .btn-glow {
    background: #fff;
    color: #553AE7;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-btns .btn-glow:hover {
    background: #f0f7ff;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    transform: translateY(-2px);
}
.cta-btns .btn-glass-white {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(10px);
}
.cta-btns .btn-glass-white:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* ───── 2컬럼 레이아웃 ───── */
.cta-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.cta-text { position: relative; }
.cta-text .cta-title { text-align: left; }
.cta-text .cta-desc { text-align: left; max-width: none; margin: 0 0 28px; }

.cta-meta {
    display: flex; flex-wrap: wrap; gap: 20px;
    font-size: 17px; color: rgba(255,255,255,.7); font-weight: 500;
    position: relative;
}
.cta-meta span { display: flex; align-items: center; gap: 6px; }
.cta-meta i { font-size: 16px; color: rgba(255,255,255,.9); }

/* ───── 간편 상담 폼 카드 ───── */
.cta-form-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 32px 28px;
}
.cta-form-title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.cta-form-title i { color: #FEE500; }
.cta-form-sub {
    font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.cta-form-card input,
.cta-form-card select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;
    font-size: 17px;
    font-family: inherit;
    background: rgba(255,255,255,.1);
    color: #fff;
    outline: none;
    margin-bottom: 12px;
    transition: border .2s;
}
.cta-form-card input::placeholder { color: rgba(255,255,255,.45); }
.cta-form-card select { color: rgba(255,255,255,.7); }
.cta-form-card select option { color: #333; background: #fff; }
.cta-form-card input:focus,
.cta-form-card select:focus {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.15);
}
.cta-form-submit {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: var(--point);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all .2s;
    font-family: inherit;
    margin-top: 4px;
}
.cta-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cta-form-privacy {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.45);
    display: flex; align-items: center; gap: 4px;
}
.cta-form-privacy i { color: #10b981; }

/* ───── 반응형 ───── */
@media (max-width: 768px) {
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-text .cta-title,
    .cta-text .cta-desc { text-align: center; }
    .cta-meta { justify-content: center; }
    .cta-form-card { padding: 24px 20px; }
}
.cta-meta i { font-size: 16px; color: rgba(255,255,255,.9); }
