/* =========================
   WRAP
========================= */
.sv-wrap {
    background: #1c1c20;
    min-height: 100vh;
}

/* =========================
   HERO
========================= */
.sv-hero {
    background: #1c1c20;
    padding: 56px 24px 48px;
    text-align: center;
}

.sv-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.sv-hero__step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 40px;
    border: 1px solid rgba(234, 84, 26, 0.3);
    background: rgba(234, 84, 26, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: #ea541a;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.sv-hero__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.sv-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 40px;
}

.sv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
    margin: 0 auto;
}

.sv-feature {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
}

.sv-feature__icon {
    width: 44px;
    height: 44px;
    background: rgba(234, 84, 26, 0.1);
    color: #ea541a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.sv-feature__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.sv-feature__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* =========================
   탭 네비게이션
========================= */
.sv-tab-wrap {
    background: #26272b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 24px;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.sv-tab-wrap__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.sv-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.sv-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.sv-tab:hover:not(.sv-tab--active) {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.05);
}

.sv-tab--active {
    background: rgba(234, 84, 26, 0.12);
    color: #ea541a;
}

/* =========================
   바디 레이아웃
========================= */
.sv-body {
    padding: 36px 24px 80px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: start;
}

.sv-main-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.sv-tab-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sv-tab-content--hidden {
    display: none;
}

/* =========================
   커버 이미지
========================= */
.sv-cover {
    position: relative;
    height: 160px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    transition: background 0.2s;
}

.sv-cover:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sv-cover__input {
    display: none;
}

.sv-cover__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
}

.sv-cover--has-image .sv-cover__placeholder {
    display: none;
}

.sv-cover__img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-cover--has-image .sv-cover__img {
    display: block;
}

.sv-cover__remove {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.sv-cover--has-image .sv-cover__remove {
    display: flex;
}

.sv-cover__remove:hover {
    background: rgba(248, 113, 113, 0.75);
}

/* 폰 미리보기 커버 이미지 */
.sv-phone-survey__cover {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* =========================
   설문 헤더 카드
========================= */
.sv-survey-header {
    background: linear-gradient(135deg, #ea541a 0%, #f97316 100%);
    border-radius: 16px;
    padding: 28px 28px 24px;
}

.sv-survey-header__title {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    padding: 0 0 10px;
    margin-bottom: 14px;
    outline: none;
}
.sv-survey-header__title::placeholder { color: rgba(255, 255, 255, 0.45); }

.sv-survey-header__sub {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 0 0 8px;
    outline: none;
}
.sv-survey-header__sub::placeholder { color: rgba(255, 255, 255, 0.4); }

/* =========================
   질문 카드
========================= */
.sv-question-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-question {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: border-color 0.2s;
}

.sv-question:focus-within {
    border-color: rgba(234, 84, 26, 0.4);
}

.sv-question__drag {
    width: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: grab;
}

.sv-question__inner {
    flex: 1;
    padding: 20px 22px;
    min-width: 0;
}

.sv-question__row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: flex-end;
}

.sv-question__title-inp {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 0 8px;
    outline: none;
    min-width: 0;
}
.sv-question__title-inp::placeholder { color: rgba(255, 255, 255, 0.2); }
.sv-question__title-inp:focus { border-bottom-color: rgba(234, 84, 26, 0.6); }

.sv-question__type-sel {
    background: #1e1f24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
}

.sv-question__desc-inp {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    padding: 0 0 8px;
    margin-bottom: 18px;
    outline: none;
}
.sv-question__desc-inp::placeholder { color: rgba(255, 255, 255, 0.18); }

/* 답변 미리보기 */
.sv-question__answer-wrap {
    margin-bottom: 18px;
}

.sv-answer--short,
.sv-answer--long {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    padding: 6px 0;
}
.sv-answer--long { min-height: 52px; }

/* 옵션 목록 */
.sv-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-option__ctrl {
    flex-shrink: 0;
    accent-color: #ea541a;
    width: 16px;
    height: 16px;
}

.sv-option__num {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    width: 20px;
}

.sv-option__text {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    padding: 4px 0;
    outline: none;
}
.sv-option__text:focus {
    border-bottom-color: rgba(234, 84, 26, 0.5);
    color: #fff;
}

.sv-option__del {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
.sv-option__del:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.sv-option-add {
    background: transparent;
    border: none;
    color: #ea541a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    text-align: left;
    margin-top: 4px;
    transition: opacity 0.15s;
}
.sv-option-add:hover { opacity: 0.7; }

/* 질문 푸터 */
.sv-question__footer {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-question__foot-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background 0.15s;
}
.sv-question__foot-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
}
.sv-question__foot-btn--del:hover {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.sv-question__sep { flex: 1; }

.sv-question__req {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    white-space: nowrap;
}
.sv-question__req input {
    accent-color: #ea541a;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* 질문 추가 버튼 */
.sv-add-btn {
    width: 100%;
    padding: 16px;
    background: #26272b;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.sv-add-btn:hover {
    border-color: rgba(234, 84, 26, 0.5);
    color: #ea541a;
    background: rgba(234, 84, 26, 0.05);
}

/* 팁 박스 */
.sv-tips {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(234, 84, 26, 0.07);
    border: 1px solid rgba(234, 84, 26, 0.15);
    border-radius: 14px;
    align-items: flex-start;
}

.sv-tips__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(234, 84, 26, 0.15);
    color: #ea541a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-tips__title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.sv-tips__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sv-tips__list li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    padding-left: 12px;
    position: relative;
    line-height: 1.55;
}
.sv-tips__list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #ea541a;
}

/* =========================
   미리보기 탭
========================= */
.sv-preview-banner {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ea541a;
    flex-wrap: wrap;
}
.sv-preview-banner p {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin: 2px 0 0;
}

/* 폰 목업 */
.sv-phone-wrap {
    display: flex;
    justify-content: center;
    padding: 16px 0 24px;
}

.sv-phone-frame {
    background: #111114;
    border-radius: 40px;
    padding: 18px 14px;
    border: 6px solid #2e2e32;
    width: 340px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.sv-phone-notch {
    width: 100px;
    height: 22px;
    background: #222;
    border-radius: 11px;
    margin: 0 auto 16px;
}

.sv-phone-screen {
    background: #f3f4f6;
    border-radius: 20px;
    min-height: 400px;
    overflow: hidden;
}

/* 폰 내부 설문 스타일 */
.sv-phone-survey { font-family: -apple-system, sans-serif; }

.sv-phone-survey__header {
    background: linear-gradient(135deg, #ea541a, #f97316);
    padding: 22px 18px;
}
.sv-phone-survey__title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.sv-phone-survey__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}
.sv-phone-survey__req-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.sv-phone-q {
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.sv-phone-q__text {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.5;
}
.sv-phone-q__text em {
    color: #ea541a;
    font-style: normal;
}
.sv-phone-q__desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}
.sv-phone-q__short {
    border-bottom: 1px solid #d1d5db;
    color: #9ca3af;
    font-size: 13px;
    padding: 4px 0 6px;
}
.sv-phone-q__long {
    border-bottom: 1px solid #d1d5db;
    color: #9ca3af;
    font-size: 13px;
    padding: 4px 0 40px;
}
.sv-phone-q__choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-phone-q__choice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

.sv-phone-survey__submit {
    display: block;
    width: calc(100% - 36px);
    margin: 14px 18px;
    padding: 12px;
    background: #ea541a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.sv-phone-survey__powered {
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
    padding: 6px 0 14px;
}

/* =========================
   사이드바
========================= */
.sv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 130px;
}

/* 자동 검증 카드 */
.sv-auto-check {
    background: #26272b;
    border: 1px solid rgba(234, 84, 26, 0.3);
    border-radius: 20px;
    padding: 24px;
}

.sv-auto-check__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.sv-auto-check__sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.sv-auto-check__field {
    margin-bottom: 18px;
}

.sv-auto-check__field-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.sv-count-display {
    font-size: 22px;
    font-weight: 800;
    color: #ea541a;
}

/* 슬라이더 */
.sv-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        #ea541a 0%,
        #ea541a var(--pct, 11%),
        rgba(255, 255, 255, 0.1) var(--pct, 11%),
        rgba(255, 255, 255, 0.1) 100%
    );
    outline: none;
    cursor: pointer;
    display: block;
}
.sv-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ea541a;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(234, 84, 26, 0.2);
}
.sv-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ea541a;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(234, 84, 26, 0.2);
}

.sv-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 10px;
}

/* 무료/유료 상태 표시 */
.sv-pay-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: background 0.25s, border-color 0.25s;
}

.sv-pay-status__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background 0.25s;
}

.sv-pay-status__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.sv-pay-status__desc {
    font-size: 12px;
    line-height: 1.5;
}

.sv-pay-status--free {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.sv-pay-status--free .sv-pay-status__dot   { background: #22c55e; }
.sv-pay-status--free .sv-pay-status__label { color: #22c55e; }
.sv-pay-status--free .sv-pay-status__desc  { color: rgba(34, 197, 94, 0.65); }

.sv-pay-status--paid {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.sv-pay-status--paid .sv-pay-status__dot   { background: #6b7280; }
.sv-pay-status--paid .sv-pay-status__label { color: rgba(255, 255, 255, 0.45); }
.sv-pay-status--paid .sv-pay-status__desc  { color: rgba(255, 255, 255, 0.25); }

/* CTA 버튼 */
.sv-auto-check__btn {
    width: 100%;
    padding: 14px;
    background: #ea541a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.sv-auto-check__btn:hover { background: #d4450e; }

.sv-auto-check__btn:disabled,
.sv-auto-check__btn--disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
    cursor: not-allowed;
}
.sv-auto-check__btn:disabled:hover,
.sv-auto-check__btn--disabled:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* 프로세스 카드 */
.sv-process {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 20px 22px;
}

.sv-process__title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sv-process__title::before {
    content: 'ⓘ';
    font-size: 12px;
    color: rgba(234, 84, 26, 0.7);
}

.sv-process__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
}
.sv-process__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    counter-increment: proc;
}
.sv-process__list li::before {
    content: counter(proc);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(234, 84, 26, 0.15);
    color: #ea541a;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   서비스 특징 (kn-explain 동일 구조)
========================= */
.sv-explain {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px;
}

.sv-explain__head {
    margin-bottom: 20px;
}

.sv-explain__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.sv-explain__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.sv-explain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sv-type {
    padding: 16px;
    border-radius: 12px;
}

.sv-type__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.sv-type__name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.sv-type__desc {
    font-size: 12px;
    line-height: 1.55;
}

.sv-type--blue     { background: rgba(96, 165, 250, 0.08); }
.sv-type--blue .sv-type__dot  { background: #60a5fa; }
.sv-type--blue .sv-type__name { color: #60a5fa; }
.sv-type--blue .sv-type__desc { color: rgba(96, 165, 250, 0.65); }

.sv-type--green    { background: rgba(34, 197, 94, 0.08); }
.sv-type--green .sv-type__dot  { background: #22c55e; }
.sv-type--green .sv-type__name { color: #22c55e; }
.sv-type--green .sv-type__desc { color: rgba(34, 197, 94, 0.65); }

.sv-type--orange   { background: rgba(234, 84, 26, 0.08); }
.sv-type--orange .sv-type__dot  { background: #ea541a; }
.sv-type--orange .sv-type__name { color: #ea541a; }
.sv-type--orange .sv-type__desc { color: rgba(234, 84, 26, 0.65); }

.sv-type--yellow   { background: rgba(251, 191, 36, 0.08); }
.sv-type--yellow .sv-type__dot  { background: #fbbf24; }
.sv-type--yellow .sv-type__name { color: #fbbf24; }
.sv-type--yellow .sv-type__desc { color: rgba(251, 191, 36, 0.65); }

/* =========================
   생성 로딩 모달
========================= */
.gen-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.gen-modal--open {
    display: flex;
}

.gen-modal__box {
    background: #26272b;
    border: 1px solid rgba(234, 84, 26, 0.25);
    border-radius: 24px;
    padding: 40px 32px 36px;
    width: 320px;
    text-align: center;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55);
    animation: genBoxIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes genBoxIn {
    from { opacity: 0; transform: scale(0.88) translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.gen-modal__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(234, 84, 26, 0.12);
    border: 1px solid rgba(234, 84, 26, 0.3);
    color: #ea541a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: genIconPulse 1.5s ease-in-out infinite;
}

@keyframes genIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 84, 26, 0.35); }
    50%       { box-shadow: 0 0 0 12px rgba(234, 84, 26, 0); }
}

.gen-modal__title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.gen-modal__msg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    min-height: 1.4em;
    line-height: 1.55;
    transition: opacity 0.3s;
}

.gen-modal__track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
}

.gen-modal__bar {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, #ea541a, #ff8c5a);
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(234, 84, 26, 0.5);
}

/* =========================
   제품/서비스 설명
========================= */
.sv-product-desc {
    margin: 24px 0;
}
.sv-product-desc__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.sv-product-desc__req {
    color: #fde68a;
    margin-left: 2px;
}
.sv-product-desc__textarea {
    display: block;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    background: rgba(0, 0, 0, 0.18);
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    outline: none;
    font-family: inherit;
}
.sv-product-desc__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* =========================
   반응형
========================= */
@media (max-width: 768px) {
    .sv-hero { padding: 40px 16px 36px; }
    .sv-hero__title { font-size: 26px; }
    .sv-features { grid-template-columns: 1fr; gap: 10px; }
    .sv-tab-wrap { top: 0; }

    .sv-body {
        padding: 24px 16px 60px;
        grid-template-columns: 1fr;
    }

    .sv-sidebar { position: static; }
    .sv-phone-frame { width: 100%; }
    .sv-badge-grid { grid-template-columns: 1fr; }
}
