/* 사용방법 가이드 섹션 */
/* 라이트 모드에서만 white 배경 적용 */
body:not(.dark-mode) .guide-section,
html:not(.dark-mode) .guide-section {
    background: white;
}
.guide-section {
    width: 100%;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 다크모드에서 white 배경 제거 - polytalk-dark.css와 인라인 스타일에서 오버라이드됨 */
body.dark-mode .guide-section,
html.dark-mode .guide-section {
    background: rgb(32, 33, 37) !important;
    background-color: rgb(32, 33, 37) !important;
}


/* bg-purple-50 클래스 - 다크모드 배경색과 맞춤 */
.bg-purple-50 {
    background-color: rgb(26, 26, 46) !important;
}

/* 다크모드에서도 동일하게 적용 */
:root .skin_dark .bg-purple-50,
.skin_dark .bg-purple-50 {
    background-color: rgb(26, 26, 46) !important;
}

/* Snap Section (Hero, FAQ 등) */
.guide-snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Step Section */
.guide-step-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    scroll-margin-top: 0;
    box-sizing: border-box;
}

/* 단계 제목 - 애니메이션 제거, 항상 표시 */
.guide-step-title-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.guide-step-section.active .guide-step-title-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.guide-step-section.fade-out .guide-step-title-container {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hero Section */
/* 라이트 모드에서만 white 배경 적용 */
body:not(.dark-mode) .guide-hero-section,
html:not(.dark-mode) .guide-hero-section {
    background: white;
}
.guide-hero-section {
    padding: 0 20px;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: 0;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    scroll-padding-top: 0;
    box-sizing: border-box;
}

/* 다크모드에서 white 배경 제거 - polytalk-dark.css와 인라인 스타일에서 오버라이드됨 */
body.dark-mode .guide-hero-section,
html.dark-mode .guide-hero-section {
    background: rgb(32, 33, 37) !important;
    background-color: rgb(32, 33, 37) !important;
}


.guide-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.guide-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
}

.guide-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .guide-hero-title {
        font-size: 80px;
    }
}

.guide-text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-hero-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .guide-hero-subtitle {
        font-size: 22px;
    }
}

.guide-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .guide-cta-buttons {
        flex-direction: row;
    }
}

.guide-cta-button {
    background: linear-gradient(to right, #4f46e5, #6366f1);
    color: white;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-cta-button:hover {
    transform: translateY(-4px);
}

.guide-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}

.guide-feature-item {
    text-align: center;
}

.guide-feature-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.guide-feature-label {
    color: #4b5563;
    font-weight: 500;
}

.guide-scroll-indicator {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: guide-bounce-slow 2s ease-in-out infinite;
}

@keyframes guide-bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.guide-scroll-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.guide-scroll-arrow {
    animation: guide-scroll-down 1.5s ease-in-out infinite;
}

@keyframes guide-scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.guide-scroll-arrow i {
    color: #4f46e5;
    font-size: 24px;
}

/* 스크롤 진행도 인디케이터 */
.guide-scroll-progress-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 20px 12px;
    background: transparent;
    border-radius: 30px;
    box-shadow: none;
    border: none;
}

.guide-progress-step {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6B7280;
    border: 3px solid #6B7280;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.guide-progress-step:hover {
    transform: scale(1.3);
    background: #4B5563;
    border-color: #4B5563;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.guide-progress-step.active {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    transform: scale(1.5);
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.3), 0 4px 12px rgba(79, 70, 229, 0.4);
}

.guide-progress-step.completed {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
}

.guide-progress-step::after {
    content: attr(data-step);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    background: #FFFFFF;
    color: #1F2937;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-progress-step.active::after,
.guide-progress-step:hover::after {
    opacity: 1;
}

/* 지나간 단계(completed)는 텍스트 라벨 표시 안 함 */
.guide-progress-step.completed::after {
    opacity: 0;
}

.guide-progress-line {
    width: 3px;
    height: 40px;
    background: #D1D5DB;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.guide-progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--progress-height, 0%);
    background: linear-gradient(to bottom, #4f46e5, #6366f1);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    z-index: 1;
}

.guide-progress-line.active {
    background: #D1D5DB;
}

@media (max-width: 768px) {
    .guide-scroll-progress-indicator {
        display: none;
    }
    .guide-progress-step::after {
        display: none;
    }
}

/* Step Section 스타일 */
.guide-step-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.guide-step-header-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.guide-step-number-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
}

.guide-step-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .guide-step-title {
        font-size: 40px;
    }
}

.guide-step-subtitle {
    font-size: 18px;
    color: #374151;
    font-weight: 500;
}

.guide-step-content-box {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    padding: 48px;
}

.guide-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.guide-step-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.guide-step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.guide-step-icon i {
    font-size: 32px;
    color: #4f46e5;
}

.guide-step-icon.guide-icon-orange {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

.guide-step-icon.guide-icon-orange i {
    color: #4f46e5;
    font-size: 32px;
}

.guide-step-icon.guide-icon-yellow {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

.guide-step-icon.guide-icon-yellow i {
    color: #4f46e5;
    font-size: 32px;
}

.guide-step-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .guide-step-content-title {
        font-size: 28px;
    }
}

.guide-step-content-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.guide-info-box {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid;
}

.guide-info-yellow {
    background: rgba(254, 243, 199, 0.3);
    border-color: rgba(253, 230, 138, 0.5);
}

.guide-info-orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.guide-info-green {
    background: rgba(209, 250, 229, 0.3);
    border-color: rgba(167, 243, 208, 0.5);
}

/* 다크모드 지원 */
:root .skin_dark .guide-info-yellow,
.skin_dark .guide-info-yellow {
    background: rgba(59, 48, 84, 0.3);
    border-color: rgba(79, 70, 229, 0.3);
}

:root .skin_dark .guide-info-orange,
.skin_dark .guide-info-orange {
    background: rgba(59, 48, 84, 0.3);
    border-color: rgba(79, 70, 229, 0.3);
}

:root .skin_dark .guide-info-green,
.skin_dark .guide-info-green {
    background: rgba(59, 48, 84, 0.3);
    border-color: rgba(79, 70, 229, 0.3);
}

:root .skin_dark .guide-info-box p,
.skin_dark .guide-info-box p {
    color: #e5e7eb;
}

:root .skin_dark .guide-info-box p strong,
.skin_dark .guide-info-box p strong {
    color: #818cf8;
}

:root .skin_dark .guide-info-yellow p strong,
.skin_dark .guide-info-yellow p strong {
    color: #fbbf24;
}

:root .skin_dark .guide-info-footer,
.skin_dark .guide-info-footer {
    color: #9ca3af;
}

.guide-info-box p {
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
}

.guide-info-box p strong {
    color: #4f46e5;
}

.guide-info-yellow p strong {
    color: #d97706;
}

.guide-info-orange p strong {
    color: #f97316;
}

.guide-info-green p strong {
    color: #059669;
}

.guide-info-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

.guide-info-footer i {
    color: #eab308;
}

.guide-info-orange .guide-info-footer i {
    color: #f97316;
}

.guide-info-green .guide-info-footer i {
    color: #059669;
}

.guide-feature-list,
.guide-feature-list-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-feature-list-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.guide-feature-item-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-icon-green {
    background: #d1fae5;
}

.guide-icon-green i {
    color: #059669;
    font-size: 14px;
}

.guide-icon-yellow {
    background: #fef3c7;
}

.guide-icon-yellow i {
    color: #d97706;
    font-size: 14px;
}

.guide-icon-orange {
    background: #fed7aa;
}

.guide-icon-orange i {
    color: #f97316;
    font-size: 14px;
}

.guide-feature-item-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.guide-feature-item-desc {
    font-size: 14px;
    color: #4b5563;
}

/* Preview Box */
.guide-preview-box {
    background: #f3f4f6;
    border-radius: 16px;
}

.guide-preview-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.guide-preview-item.guide-preview-active {
    border-color: #4f46e5;
}

.guide-preview-label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.guide-preview-badge {
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.15);
    color: #4f46e5;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.guide-preview-badge-active {
    background: #4f46e5;
    color: white;
}

.guide-preview-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-preview-arrow i {
    color: #6b7280;
}

.guide-preview-note {
    padding-top: 8px;
    text-align: center;
}

.guide-preview-note span {
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
}

/* 언어 설정 모달 스타일 */
.guide-lang-modal {
    background: white;
    border-radius: 20px;
    padding: 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.guide-lang-modal-content {
    display: flex;
    flex-direction: column;
}

.guide-lang-header {
    text-align: center;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.guide-lang-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.guide-lang-icon i {
    font-size: 24px;
    color: white;
}

.guide-lang-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
}

.guide-lang-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.guide-lang-section {
    padding: 16px 20px;
}

.guide-lang-section:first-of-type {
    border-bottom: 1px solid #f3f4f6;
}

.guide-lang-section-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.guide-lang-input-box {
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.guide-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.guide-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-lang-option:hover {
    border-color: #c7d2fe;
    background: #f5f3ff;
}

.guide-lang-option.guide-lang-selected {
    background: #eef2ff;
    border-color: #6366f1;
}

.guide-lang-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-lang-checkbox.guide-lang-checked {
    background: #6366f1;
    border-color: #6366f1;
}

.guide-lang-checkbox.guide-lang-checked i {
    font-size: 11px;
    color: white;
}

.guide-preview-center {
    text-align: center;
    margin-bottom: 16px;
}

.guide-preview-mic-icon {
    width: 80px;
    height: 80px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.guide-preview-mic-icon i {
    font-size: 32px;
    color: white;
}

.guide-preview-save-icon {
    animation: guide-pulse 2s ease-in-out infinite;
}

@keyframes guide-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.guide-preview-status {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.guide-preview-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guide-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    animation: guide-pulse 2s ease-in-out infinite;
}

.guide-preview-pulse span {
    font-size: 12px;
    color: #4f46e5;
    font-weight: 500;
}

.guide-preview-translation {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.guide-preview-trans-label {
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 8px;
}

.guide-preview-trans-text {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.guide-preview-trans-text-primary {
    color: #4f46e5;
}

.guide-preview-trans-divider {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.guide-preview-save-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #4f46e5;
}

.guide-preview-save-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-preview-save-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.guide-preview-save-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.guide-preview-save-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.guide-preview-save-badge {
    padding: 4px 8px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.guide-preview-progress {
    width: 100%;
    background: #e5e7eb;
    border-radius: 9999px;
    height: 8px;
    margin-bottom: 4px;
    overflow: hidden;
}

.guide-preview-progress-bar {
    background: #4f46e5;
    height: 100%;
    border-radius: 9999px;
    animation: guide-pulse 2s ease-in-out infinite;
}

.guide-preview-progress-text {
    font-size: 12px;
    color: #6b7280;
    text-align: right;
}

.guide-preview-button-group {
    display: flex;
    gap: 12px;
}

.guide-preview-button {
    flex: 1;
    padding: 12px 24px;
    background: #4f46e5;
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.guide-preview-button:hover {
    background: #4338ca;
}

.guide-preview-button i {
    font-size: 14px;
    margin-right: 8px;
}

/* 연결선 */
.guide-connector-line {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
    scroll-snap-align: none;
}

.guide-connector-line::before {
    content: '';
    width: 4px;
    height: 64px;
    background: linear-gradient(to bottom, #4f46e5, #6366f1);
    border-radius: 9999px;
}

/* FAQ Section */
.guide-faq-section {
    padding: 96px 20px;
    background: white;
    justify-content: center;
}

.guide-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.guide-faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.guide-faq-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.guide-faq-subtitle {
    font-size: 20px;
    color: #6b7280;
}

.guide-faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.guide-faq-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid;
}

.guide-faq-icon-blue {
    background: #dbeafe;
    border-color: #bfdbfe;
}

.guide-faq-icon-blue i {
    color: #4f46e5;
    font-size: 28px;
}

.guide-faq-icon-orange {
    background: #fed7aa;
    border-color: #fdba74;
}

.guide-faq-icon-orange i {
    color: #f97316;
    font-size: 28px;
}

.guide-faq-icon-pink {
    background: #fce7f3;
    border-color: #fbcfe8;
}

.guide-faq-icon-pink i {
    color: #ec4899;
    font-size: 28px;
}

.guide-faq-icon-yellow {
    background: #fef3c7;
}

.guide-faq-icon-yellow i {
    color: #eab308;
    font-size: 28px;
}

.guide-faq-icon-green {
    background: #d1fae5;
    border-color: #a7f3d0;
}

.guide-faq-icon-green i {
    color: #059669;
    font-size: 28px;
}

.guide-faq-content {
    flex: 1;
}

.guide-faq-question {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.guide-faq-answer {
    color: #4b5563;
    line-height: 1.6;
    font-size: 18px;
}

/* Visual Guide Section */
.guide-visual-section {
    padding: 96px 20px;
    background: white;
    justify-content: center;
}

.guide-visual-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.guide-visual-header {
    text-align: center;
    margin-bottom: 64px;
}

.guide-visual-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.guide-visual-subtitle {
    font-size: 20px;
    color: #6b7280;
}

.guide-visual-box {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    padding: 32px;
    overflow: hidden;
}

.guide-visual-content {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.guide-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.guide-dashboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-dashboard-icon {
    width: 40px;
    height: 40px;
    background: #4f46e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-dashboard-icon i {
    color: white;
    font-size: 20px;
}

.guide-dashboard-title {
    font-weight: 700;
    color: #1e293b;
}

.guide-dashboard-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.guide-dashboard-status {
    padding: 8px 16px;
    background: #d1fae5;
    color: #059669;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
}

.guide-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.guide-dashboard-panel {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-dashboard-panel-primary {
    background: #dbeafe;
    border: 2px solid #93c5fd;
}

.guide-dashboard-panel-label {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
}

.guide-dashboard-panel-label-primary {
    color: #4f46e5;
}

.guide-dashboard-placeholder {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-placeholder-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 4px;
    width: 100%;
}

.guide-placeholder-line-80 {
    width: 80%;
}

.guide-placeholder-line-75 {
    width: 75%;
}

.guide-placeholder-line-primary {
    background: #bfdbfe;
}

.guide-dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-dashboard-actions {
    display: flex;
    gap: 8px;
}

.guide-dashboard-button {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.guide-dashboard-button:hover {
    background: #e5e7eb;
}

.guide-dashboard-button i {
    font-size: 16px;
    margin-right: 8px;
}

.guide-dashboard-time {
    font-size: 14px;
    color: #6b7280;
}

.guide-dashboard-time i {
    font-size: 16px;
    margin-right: 4px;
}

/* CTA Section */
.guide-cta-section {
    padding: 96px 20px;
    background: white;
    justify-content: center;
}

.guide-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.guide-cta-box {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.guide-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
}

.guide-cta-subtitle {
    font-size: 20px;
    color: #374151;
    margin-bottom: 32px;
    font-weight: 500;
}

.guide-cta-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .guide-cta-button-group {
        flex-direction: row;
    }
}

.guide-cta-button-primary {
    background: linear-gradient(to right, #4f46e5, #6366f1);
    color: white;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.guide-cta-button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
}

.guide-cta-button-secondary {
    background: #f3f4f6;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-cta-button-secondary:hover {
    background: #e5e7eb;
}

/* 나의 작업 미리보기 스타일 */
.guide-workroom-preview {
    background: #f9fafb !important;
    padding: 0 !important;
    overflow: hidden;
}

.guide-workroom-content {
    display: flex;
    flex-direction: column;
}

.guide-records-list {
    flex: 1;
}

.guide-workroom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.guide-workroom-title-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-workroom-stats {
    display: flex;
    gap: 16px;
}

.guide-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 8px;
}

.guide-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #4f46e5;
}

.guide-stat-label {
    font-size: 10px;
    color: #6b7280;
}

.guide-record-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #f3f4f6;
}

.guide-record-checkbox {
    font-size: 16px;
}

.guide-record-info {
    flex: 1;
}

.guide-record-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.guide-record-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
}

.guide-record-langs {
    display: flex;
    gap: 6px;
}

.guide-lang-tag {
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #4b5563;
}

.guide-lang-tag-primary {
    background: #4f46e5;
    color: white;
}

.guide-record-actions {
    display: flex;
    gap: 6px;
}

.guide-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.guide-action-btn:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.guide-action-delete:hover {
    color: #ef4444;
}

.guide-workroom-buttons {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    margin-top: auto;
}

.guide-btn-outline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #ef4444;
    border-radius: 10px;
    background: white;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.guide-btn-outline:hover {
    background: #fef2f2;
}

.guide-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: #4f46e5;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.guide-btn-primary:hover {
    background: #4338ca;
}

/* 반응형 */
@media (max-width: 768px) {
    .guide-hero-title {
        font-size: 36px;
    }
    
    .guide-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .guide-step-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .guide-step-content-box {
        padding: 24px;
    }
    
    .guide-faq-item {
        flex-direction: column;
        padding: 24px;
    }
    
    .guide-step-section {
        padding: 40px 0;
    }
    
    .guide-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-workroom-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .guide-workroom-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .guide-record-item {
        flex-wrap: wrap;
    }
    
    .guide-record-langs {
        width: 100%;
        margin-top: 8px;
    }
    
    .guide-record-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 8px;
    }
}

/* 다크모드 스타일 */
body.dark-mode .guide-section,
html.dark-mode .guide-section {
    background: rgb(32, 33, 37) !important;
    background-color: rgb(32, 33, 37) !important;
}

body.dark-mode .guide-hero-section,
html.dark-mode .guide-hero-section {
    background: rgb(32, 33, 37) !important;
    background-color: rgb(32, 33, 37) !important;
}

body.dark-mode .guide-step-section {
    background: rgb(32, 33, 37);
}

body.dark-mode .guide-badge {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-badge span {
    color: #667eea;
}

body.dark-mode .guide-hero-title {
    color: #ffffff;
}

body.dark-mode .guide-hero-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-feature-label {
    color: #ffffff;
}

body.dark-mode .guide-scroll-text {
    color: #ffffff;
}

body.dark-mode .guide-step-title {
    color: #ffffff;
}

body.dark-mode .guide-step-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-step-content-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-step-content-title {
    color: #ffffff;
}

body.dark-mode .guide-step-content-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-step-icon {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-feature-list-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-feature-item-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-feature-item-title {
    color: #ffffff;
}

body.dark-mode .guide-feature-item-desc {
    color: #ffffff;
}

body.dark-mode .guide-preview-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-preview-item {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-preview-item.guide-preview-active {
    border-color: #667eea;
}

body.dark-mode .guide-preview-label {
    color: #ffffff;
}

body.dark-mode .guide-preview-note span {
    color: #ffffff;
}

body.dark-mode .guide-preview-translation {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-preview-trans-label {
    color: #ffffff;
}

body.dark-mode .guide-preview-trans-text {
    color: #ffffff;
}

body.dark-mode .guide-preview-save-box {
    background: rgb(50, 51, 55);
    border-color: #667eea;
}

body.dark-mode .guide-preview-save-label {
    color: #ffffff;
}

body.dark-mode .guide-preview-save-value {
    color: #ffffff;
}

body.dark-mode .guide-preview-progress {
    background: rgb(60, 61, 65);
}

body.dark-mode .guide-preview-progress-text {
    color: #ffffff;
}

body.dark-mode .guide-faq-section {
    background: rgb(32, 33, 37);
}

body.dark-mode .guide-faq-title {
    color: #ffffff;
}

body.dark-mode .guide-faq-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-faq-item {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-faq-question {
    color: #ffffff;
}

body.dark-mode .guide-faq-answer {
    color: #ffffff;
}

body.dark-mode .guide-visual-section {
    background: rgb(32, 33, 37);
}

body.dark-mode .guide-visual-title {
    color: #ffffff;
}

body.dark-mode .guide-visual-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-visual-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-visual-content {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-dashboard-title {
    color: #ffffff;
}

body.dark-mode .guide-dashboard-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-dashboard-panel {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-dashboard-panel-label {
    color: #ffffff;
}

body.dark-mode .guide-cta-section {
    background: rgb(32, 33, 37);
}

body.dark-mode .guide-cta-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-cta-title {
    color: #ffffff;
}

body.dark-mode .guide-cta-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-cta-button-secondary {
    background: rgb(42, 42, 45);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-cta-button-secondary:hover {
    background: rgb(50, 51, 55);
}

body.dark-mode .guide-workroom-preview {
    background: rgb(32, 33, 37) !important;
}

body.dark-mode .guide-workroom-header {
    background: rgb(42, 42, 45);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-workroom-title-area span {
    color: #FFFFFF !important;
}

body.dark-mode .guide-stat-item {
    background: rgb(50, 51, 55);
}

body.dark-mode .guide-stat-label {
    color: #ffffff;
}

body.dark-mode .guide-record-item {
    background: rgb(42, 42, 45);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-record-title {
    color: #ffffff;
}

body.dark-mode .guide-record-meta {
    color: #ffffff;
}

body.dark-mode .guide-lang-tag {
    background: rgb(50, 51, 55);
    color: #ffffff;
}

body.dark-mode .guide-action-btn {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .guide-action-btn:hover {
    background: rgb(50, 51, 55);
}

body.dark-mode .guide-workroom-buttons {
    background: rgb(42, 42, 45);
}

body.dark-mode .guide-btn-outline {
    background: rgb(42, 42, 45);
    color: #ef4444;
    border-color: #ef4444;
}

body.dark-mode .guide-btn-outline:hover {
    background: rgba(239, 68, 68, 0.1);
}

body.dark-mode .guide-progress-step::after {
    background: rgb(42, 42, 45);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-progress-line {
    background: rgb(60, 61, 65);
}

body.dark-mode .guide-lang-modal {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-lang-title {
    color: #ffffff;
}

body.dark-mode .guide-lang-subtitle {
    color: #ffffff;
}

body.dark-mode .guide-lang-section-label {
    color: #ffffff;
}

body.dark-mode .guide-lang-input-box {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .guide-lang-option {
    background: rgb(50, 51, 55);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .guide-lang-option:hover {
    background: rgb(60, 61, 65);
    border-color: #667eea;
}

body.dark-mode .guide-lang-option.guide-lang-selected {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

body.dark-mode .guide-lang-checkbox {
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .guide-preview-status {
    color: #ffffff;
}

body.dark-mode .guide-preview-pulse span {
    color: #667eea;
}

/* 다크모드 정보 박스 스타일 추가 */
body.dark-mode .guide-info-box {
    background: rgb(42, 42, 45);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-info-box p {
    color: #ffffff;
}

body.dark-mode .guide-info-box p strong {
    color: #667eea;
}

body.dark-mode .guide-info-yellow {
    background: rgba(59, 48, 84, 0.4) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

body.dark-mode .guide-info-yellow p strong {
    color: #fbbf24;
}

body.dark-mode .guide-info-orange {
    background: rgba(59, 48, 84, 0.4) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

body.dark-mode .guide-info-orange p strong {
    color: #f97316;
}

body.dark-mode .guide-info-green {
    background: rgba(59, 48, 84, 0.4) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

body.dark-mode .guide-info-green p strong {
    color: #10b981;
}

body.dark-mode .guide-info-footer {
    color: #ffffff;
}

body.dark-mode .guide-lang-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guide-lang-section {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
