/* ===================================
   회생파산 부자들 - 엔티엠법률사무소
   Compiled from scss/style.scss
   =================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: #c9a227;
    transition: all 0.3s ease;
}

a:hover {
    color: #a17f1a;
}

/* === Utilities === */
.text-gold {
    color: #c9a227 !important;
}

.text-light-muted {
    color: #cccccc !important;
}

.text-dark-emphasis {
    color: #0d1117 !important;
}

.bg-dark-section {
    background-color: #0d1117;
}

.bg-light-gray {
    background-color: #f6f7f9;
}

.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-tag.tag-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e8d48b;
}

.section-tag.tag-dark {
    background-color: rgba(13, 17, 23, 0.1);
    color: #0d1117;
}

.section-tag.tag-ai {
    background-color: rgba(201, 162, 39, 0.2);
    color: #e8d48b;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #999999;
}

/* === Buttons === */
.btn-gold {
    background: linear-gradient(135deg, #c9a227, #a17f1a);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #a17f1a, #7d6114);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.btn-outline-gold {
    border: 2px solid #c9a227;
    color: #c9a227;
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #c9a227;
    color: #ffffff;
}

.btn-dark-custom {
    background-color: #0d1117;
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background-color: #272d36;
    color: #ffffff;
    transform: translateY(-2px);
}

/* === Navigation === */
#mainNav {
    background-color: transparent;
    padding: 16px 0;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background-color: rgba(13, 17, 23, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#mainNav .navbar-brand {
    font-size: 22px;
    letter-spacing: -0.5px;
    padding: 0;
}

#mainNav .navbar-brand .navbar-logo {
    height: 28px;
    width: auto;
}

#mainNav .navbar-brand .brand-icon {
    color: #c9a227;
    margin-right: 8px;
    font-size: 20px;
}

#mainNav .navbar-brand .brand-highlight {
    color: #c9a227;
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #c9a227;
}

/* 모바일 메뉴 펼침 */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin: 10px -12px 0;
        padding: 16px 20px;
        border-radius: 12px;
        border: 1px solid rgba(201, 162, 39, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    #mainNav .navbar-collapse .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 16px;
    }
    #mainNav .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

/* 히어로 배경 슬라이드쇼 */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease;
}
.hero-bg-slide.active {
    opacity: 1;
    animation: heroKenBurns 8s ease forwards;
}
@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.82);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(201, 162, 39, 0.15);
    color: #e8d48b;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    margin-right: 6px;
}

.hero-badge-logo {
    height: 27px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer-ntm-logo {
    height: 20px;
    vertical-align: middle;
    filter: brightness(0) invert(0.7);
}

.location-ntm-logo {
    height: 22px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    min-height: 120px;
}

.hero-typing-wrap {
    display: inline;
}

.hero-typing-text {
    color: #ffffff;
}

.hero-typing-text .text-gold {
    color: #c9a227;
}

.hero-typing-cursor {
    color: #c9a227;
    font-weight: 300;
    animation: heroCursorBlink 0.7s infinite;
}

@keyframes heroCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats .stat-item {
    text-align: center;
    flex: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #c9a227;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stats .stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
}

/* === 후기 뉴스티커 === */
.review-ticker {
    margin-top: 10px;
}

.review-ticker-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 10px;
    min-height: 48px;
    overflow: hidden;
}

.review-ticker-icon {
    color: #c9a227;
    font-size: 16px;
    flex-shrink: 0;
}

.review-ticker-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.review-ticker-text.active {
    opacity: 1;
    transform: translateY(0);
}

.review-ticker-text.fade-out {
    opacity: 0;
    transform: translateY(-12px);
}

@media (max-width: 991px) {
    .review-ticker {
        margin-top: 16px;
    }
    .hero-team-wrap {
        margin-top: 24px;
        padding-top: 0;
    }
    .hero-team-wrap .team-slide-card img {
        height: 200px;
        max-height: 200px;
    }
    .hero-team-wrap .team-slide-info h4 {
        font-size: 14px;
    }
    .hero-team-wrap .team-slide-rank {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .hero-team-wrap .team-slide-card img {
        height: 150px;
        max-height: 150px;
    }
    .review-ticker-inner {
        padding: 8px 12px;
    }
    .review-ticker-text {
        font-size: 12px;
    }
}

.hero-video-wrap {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder .video-inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.video-placeholder .video-inner i {
    font-size: 60px;
    margin-bottom: 16px;
}

.video-placeholder .video-inner p {
    font-size: 14px;
}

.video-placeholder .video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    background-color: #c9a227;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* === Profile Section === */
.profile-image-wrap .profile-placeholder {
    width: 300px;
    height: 380px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f6f7f9, #ebedf0);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999999;
    border: 2px dashed #e5e7eb;
}

.profile-image-wrap .profile-placeholder i {
    font-size: 60px;
    margin-bottom: 12px;
}

.profile-image-wrap .profile-placeholder p {
    font-size: 14px;
}

.profile-image-wrap img {
    width: 380px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
}

.profile-info-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.profile-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.profile-info-list li i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    border-radius: 50%;
    flex-shrink: 0;
}

/* === Info Cards === */
.info-card {
    background-color: #1c2128;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

/* 패턴 1: 대각선 스트라이프 */
.col-md-4:nth-child(1) .info-card::before {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(201, 162, 39, 1) 10px,
        rgba(201, 162, 39, 1) 11px
    );
}

/* 패턴 2: 도트 패턴 */
.col-md-4:nth-child(2) .info-card::before {
    background-image: radial-gradient(
        circle,
        rgba(201, 162, 39, 1) 1px,
        transparent 1px
    );
    background-size: 16px 16px;
}

/* 패턴 3: 크로스해치 패턴 */
.col-md-4:nth-child(3) .info-card::before {
    background-image:
        linear-gradient(0deg, rgba(201, 162, 39, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
}

.info-card .info-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    font-size: 24px;
    color: #c9a227;
}

.info-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* === Benefit Cards === */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    border-color: #c9a227;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.08);
    transform: translateY(-4px);
}

.benefit-card .benefit-number {
    font-size: 32px;
    font-weight: 900;
    color: #c9a227;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-card .benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card .benefit-content p {
    font-size: 14px;
    color: #999999;
    margin: 0;
    line-height: 1.7;
}

/* === Fee Section === */
.bg-gold-gradient {
    background: linear-gradient(135deg, #fdf8ec 0%, #fef3d0 100%);
    position: relative;
}
.bg-gold-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,162,39,0.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(201,162,39,0.06) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(201,162,39,0.04) 49%, rgba(201,162,39,0.04) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(201,162,39,0.04) 49%, rgba(201,162,39,0.04) 51%, transparent 52%);
    background-size: 60px 60px, 60px 60px, 40px 40px, 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.bg-gold-gradient > * {
    position: relative;
    z-index: 1;
}

.fee-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.fee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fee-card .fee-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a227, #a17f1a);
    border-radius: 50%;
    font-size: 24px;
    color: #ffffff;
}

.fee-card .fee-amount {
    font-size: 36px;
    font-weight: 900;
    color: #0d1117;
    margin-bottom: 8px;
}

.fee-card .fee-amount span {
    font-size: 16px;
    font-weight: 500;
}

.fee-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #a17f1a;
    margin-bottom: 8px;
}

.fee-card p {
    font-size: 14px;
    color: #999999;
    line-height: 1.7;
    margin: 0;
}

/* === Check List === */
.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.check-list li i {
    color: #c9a227;
    font-size: 18px;
}

/* === Office Image === */
.office-image-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === Visit Features === */
.visit-features {
    margin-top: 30px;
}

.visit-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.visit-feature-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    color: #c9a227;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.visit-feature-item h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.visit-feature-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* === AI Diagnosis === */
.bg-ai-section {
    background: linear-gradient(180deg, #0d1117 0%, #090c10 100%);
    position: relative;
    overflow: hidden;
}

.ai-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
}

.ai-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13,17,23,0.7) 0%, rgba(9,12,16,0.85) 100%);
    z-index: 1;
}

/* AI 소개 카드 (섹션 내) */
.ai-intro-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 20px;
    padding: 48px 40px;
}
.ai-intro-card h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}
.ai-intro-card p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 0;
}
.ai-intro-icon {
    font-size: 52px;
    color: #c9a227;
    margin-bottom: 20px;
    animation: aiIconFloat 3s ease-in-out infinite;
}
@keyframes aiIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ai-intro-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.ai-intro-features span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ai-intro-features span i {
    color: #c9a227;
    font-size: 14px;
}

/* AI 모달 */
.ai-modal-content {
    background: #0d1117;
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 20px;
    overflow: hidden;
}
.ai-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-modal-title {
    color: #c9a227;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ai-modal-close {
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ai-modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}
.ai-modal-body {
    padding: 28px;
}
.ai-modal-body .ai-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: none;
}

.ai-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-start {
    text-align: center;
}

.ai-start .ai-start-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    font-size: 36px;
    color: #c9a227;
}

.ai-start h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ai-start p {
    color: #999999;
    font-size: 15px;
    margin-bottom: 24px;
}

.ai-progress-wrap {
    margin-bottom: 28px;
}

.ai-progress-bar {
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.ai-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a227, #22c55e);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.ai-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #c9a227;
    font-weight: 600;
}

.btn-close-ai {
    background: none;
    border: none;
    color: #999999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.btn-close-ai:hover {
    color: #333333;
}

.ai-q h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.ai-q h4 small {
    font-size: 13px;
    color: #999999;
    font-weight: 400;
}

.ai-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
}

.ai-option:hover {
    border-color: #c9a227;
    background-color: rgba(201, 162, 39, 0.03);
}

.ai-option.selected {
    border-color: #c9a227;
    background-color: rgba(201, 162, 39, 0.08);
}

.ai-option strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ai-option span {
    display: block;
    font-size: 13px;
    color: #999999;
}

.ai-input-wrap {
    position: relative;
}

.ai-input-wrap .ai-input {
    padding-right: 50px;
    height: 56px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.ai-input-wrap .ai-input:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.ai-input-wrap .ai-input-unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 600;
    color: #c9a227;
}

.ai-input-hint {
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #f6f7f9;
    border-radius: 8px;
    font-size: 13px;
    color: #999999;
}

.ai-input-hint i {
    color: #c9a227;
    margin-right: 6px;
}

/* AI Result */
.ai-result h4 {
    font-size: 22px;
    font-weight: 800;
}

/* === AI 진단 결과 카드 === */
.ai-diagnosis-result {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.ai-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    background: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.ai-result-badge.warning {
    background: rgba(243, 156, 18, 0.12);
    color: #f39c12;
}

.ai-result-badge.danger {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.ai-result-score-wrap {
    margin-bottom: 20px;
}

.ai-result-score-circle {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #c9a227;
    margin-bottom: 8px;
    background: rgba(201, 162, 39, 0.06);
    padding-top: 28px;
}

.ai-result-score {
    font-size: 36px;
    font-weight: 900;
    color: #c9a227;
    line-height: 1;
}

.ai-result-score-unit {
    font-size: 14px;
    color: #c9a227;
    margin-left: 2px;
}

.ai-result-score-label {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.ai-result-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ai-result-item {
    flex: 1;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
}

.ai-result-item-label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.ai-result-item-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.ai-result-notice {
    font-size: 11px;
    color: #999;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.ai-result-notice i {
    color: #f39c12;
    margin-right: 4px;
}

.ai-result-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.ai-result-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.ai-result-list li i {
    font-size: 18px;
}

.ai-result-form .input-group-text {
    background-color: #f6f7f9;
    border: 2px solid #e5e7eb;
    border-right: none;
    color: #999999;
}

.ai-result-form .form-control {
    border: 2px solid #e5e7eb;
    border-left: none;
    height: 50px;
}

.ai-result-form .form-control:focus {
    border-color: #c9a227;
    box-shadow: none;
}

.ai-result-form .input-group:focus-within .input-group-text {
    border-color: #c9a227;
}

/* === Consultation Section === */
.consult-contact-info {
    margin-top: 30px;
}

.consult-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.consult-contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.consult-contact-item span {
    font-size: 13px;
    color: #999999;
}

.consult-contact-item strong {
    display: block;
    font-size: 16px;
    color: #333333;
}

.consult-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.consult-form-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.consult-form-card h4 i {
    color: #c9a227;
    margin-right: 8px;
}

.consult-form-card .form-control,
.consult-form-card .form-select {
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.consult-form-card .form-control:focus,
.consult-form-card .form-select:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.consult-form-card textarea.form-control {
    height: auto;
}

.consult-form-card .form-label {
    font-weight: 600;
    font-size: 14px;
}

/* === Bankruptcy Cards === */
.bankruptcy-card {
    background-color: #1c2128;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.bankruptcy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
}

.bankruptcy-card .bankruptcy-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    font-size: 22px;
    color: #c9a227;
}

.bankruptcy-card h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bankruptcy-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === Success Cases === */
.cases-toggle-wrap {
    margin-top: 20px;
}

/* === Location === */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
}

.location-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.location-info-card h4 i {
    color: #c9a227;
    margin-right: 8px;
}

.location-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.location-info-list li:last-child {
    border-bottom: none;
}

.location-info-list li i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 2px;
}

.location-info-list li strong {
    display: block;
    font-size: 13px;
    color: #999999;
    font-weight: 500;
    margin-bottom: 2px;
}

.location-info-list li p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.location-info-list li a {
    color: #333333;
}

.location-info-list li a:hover {
    color: #c9a227;
}

/* === Footer === */
.site-footer {
    background-color: #0d1117;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(201, 162, 39, 0.15);
    color: #c9a227;
}

.footer-info p {
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-info a:hover {
    color: #c9a227;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 30px 0 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* === Fixed Bottom Buttons (모바일) === */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-bottom-buttons.visible {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .fixed-bottom-buttons {
        display: flex;
    }
}

/* === PC 우측 사이드 고정 메뉴 === */
.side-fixed-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.4s ease;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    background: #1c2128;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.side-fixed-menu.visible {
    transform: translateY(-50%) translateX(0);
}

.side-fixed-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 72px;
}

.side-fixed-btn:hover {
    color: #ffffff;
    filter: brightness(1.15);
}

.side-fixed-btn i {
    font-size: 20px;
}

.side-btn-phone {
    background: #2563eb;
}

.side-btn-kakao {
    background: #FEE500;
    color: #191919;
}

.side-btn-kakao:hover {
    color: #191919;
}

.side-btn-consult {
    background: linear-gradient(180deg, #c9a227 0%, #e8d48b 50%, #c9a227 100%);
    background-size: 100% 200%;
    animation: goldShimmer 3s ease infinite;
    color: #0d1117;
    font-weight: 700;
}

.side-btn-consult:hover {
    color: #0d1117;
}

@media (max-width: 991px) {
    .side-fixed-menu {
        display: none !important;
    }
}

.fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    color: #ffffff;
    filter: brightness(1.1);
}

.fixed-btn i {
    font-size: 18px;
}

.fixed-btn-phone {
    background: #2563eb;
}

.fixed-btn-kakao {
    background: #FEE500;
    color: #191919;
}

.fixed-btn-kakao:hover {
    color: #191919;
    background: #FDD835;
}

.fixed-btn-consult {
    background: linear-gradient(135deg, #c9a227 0%, #e8d48b 50%, #c9a227 100%);
    background-size: 200% 200%;
    animation: goldShimmer 3s ease infinite;
    color: #0d1117;
    font-weight: 700;
}

.fixed-btn-consult:hover {
    color: #0d1117;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === Modals === */
.submit-success-icon {
    font-size: 60px;
    color: #22c55e;
}

#privacyModal .modal-content {
    border-radius: 12px;
}

#privacyModal .modal-body p {
    font-size: 14px;
    line-height: 1.8;
}

/* === Philosophy Section (좋은변호사란) === */
.philosophy-content {
    padding-right: 20px;
}

.philosophy-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 28px;
    border-left: 4px solid #c9a227;
    padding-left: 20px;
}

.philosophy-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}

.philosophy-text strong {
    color: #0d1117;
}

.philosophy-sign {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.philosophy-sign-label {
    display: block;
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-bottom: 12px;
}

.philosophy-sign-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.philosophy-sign-wrap span {
    font-size: 16px;
    font-weight: 700;
    color: #0d1117;
}

.sign-image {
    height: 24px;
    width: auto;
}

.philosophy-image-wrap img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .philosophy-content {
        padding-right: 0;
    }
    .philosophy-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .philosophy-title {
        font-size: 24px;
    }
    .philosophy-text p br {
        display: none;
    }
}

/* === Team Swiper (Hero) === */
.hero-team-wrap {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.team-swiper {
    padding-bottom: 10px;
}

.team-slide-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-slide-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
}

.team-slide-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    background: #ffffff;
}

.team-slide-info {
    padding: 20px 16px;
}

.team-slide-info h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.team-slide-info .team-slide-rank {
    color: #c9a227;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.team-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.team-pagination .swiper-pagination-bullet-active {
    background: #c9a227;
    width: 24px;
    border-radius: 4px;
}

/* === Office Swiper === */
.office-swiper .swiper-slide img,
.office-swiper-2 .swiper-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.office-swiper {
    padding-bottom: 40px;
}

.office-swiper-2 {
    padding-bottom: 10px;
}

.office-pagination-1 .swiper-pagination-bullet {
    background: rgba(201, 162, 39, 0.3);
    opacity: 1;
}

.office-pagination-1 .swiper-pagination-bullet-active {
    background: #c9a227;
    width: 24px;
    border-radius: 4px;
}

/* 출장상담 썸네일 */
.office-thumbs-2 .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
}

.office-thumbs-2 .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #c9a227;
}

.office-thumbs-2 .swiper-slide img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

/* === Location Section Background === */
.location-section {
    position: relative;
    overflow: hidden;
}
.location-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/office/_DSC2632.jpg") center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
    filter: grayscale(50%);
}

/* === Responsive === */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-text {
        padding-top: 120px;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .profile-image-wrap {
        margin-bottom: 30px;
    }
    .ai-card {
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 24px;
    }
    .section-title br {
        display: none;
    }
    .section-desc {
        font-size: 14px;
    }
    .section-desc br {
        display: none;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 15px;
        word-break: keep-all;
    }
    .hero-stats {
        gap: 16px;
        padding: 20px;
    }
    .hero-stats .stat-number {
        font-size: 28px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-text {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .hero-section {
        min-height: auto;
        padding-bottom: 20px;
    }
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
    }
    .benefit-card {
        padding: 20px;
    }
    .fee-card .fee-amount {
        font-size: 28px;
    }
    .fee-card p {
        font-size: 14px;
    }
    .fee-card p br {
        display: none;
    }
    .consult-form-card {
        padding: 24px;
    }
    .fixed-btn {
        padding: 14px 8px;
        font-size: 13px;
    }
    .profile-image-wrap .profile-placeholder,
    .profile-image-wrap img {
        width: 220px;
        max-height: 320px;
    }
    .consult-contact-item strong {
        font-size: 14px;
        word-break: break-all;
    }
    .ai-q h4 {
        font-size: 17px;
    }
    .ai-q h4 br {
        display: none;
    }
    .ai-start p br {
        display: none;
    }
    .philosophy-title {
        font-size: 24px;
    }
    .philosophy-text p {
        font-size: 14px;
        line-height: 1.8;
    }
    .philosophy-text br {
        display: none;
    }
    .philosophy-image-wrap img {
        max-width: 280px;
    }
    .visit-feature-item h5 {
        font-size: 15px;
    }
    .visit-feature-item p {
        font-size: 13px;
    }
    .bankruptcy-card h5 {
        font-size: 16px;
    }
    .bankruptcy-card p {
        font-size: 13px;
    }
    .check-list li {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 18px !important;
    }
    .navbar-brand .navbar-logo {
        height: 20px;
    }
    .navbar-brand .brand-icon {
        font-size: 16px;
        margin-right: 5px;
    }
    .preloader-logo {
        height: 28px;
    }
    .section-logo {
        height: 26px;
    }
    .footer-logo {
        height: 22px;
    }
    .ai-intro-card {
        padding: 32px 16px;
    }
    body {
        padding-bottom: 56px;
    }
    .section-padding {
        padding: 48px 0;
    }
    .section-title {
        font-size: 21px;
        word-break: keep-all;
    }
    .section-desc {
        font-size: 13px;
        word-break: keep-all;
    }
    .hero-title {
        font-size: 24px;
        word-break: keep-all;
    }
    .hero-subtitle {
        font-size: 14px;
        word-break: keep-all;
    }
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .hero-stats {
        gap: 12px;
        padding: 16px 12px;
    }
    .hero-stats .stat-number {
        font-size: 26px;
    }
    .hero-stats .stat-label {
        font-size: 12px;
    }
    .hero-buttons .btn {
        font-size: 15px;
        padding: 12px 20px;
    }
    .profile-image-wrap .profile-placeholder,
    .profile-image-wrap img {
        width: 180px;
        max-height: 260px;
    }
    .philosophy-title {
        font-size: 21px;
    }
    .philosophy-text p {
        font-size: 13px;
        word-break: keep-all;
    }
    .philosophy-sign-label {
        font-size: 12px;
    }
    .philosophy-sign-wrap span {
        font-size: 14px;
    }
    .sign-image {
        height: 20px;
    }
    .philosophy-image-wrap img {
        max-width: 220px;
    }
    .info-card {
        padding: 20px 16px;
    }
    .info-card h4 {
        font-size: 16px;
    }
    .info-card p {
        font-size: 13px;
        word-break: keep-all;
    }
    .benefit-card {
        padding: 16px;
    }
    .benefit-card h4 {
        font-size: 16px;
    }
    .benefit-card p {
        font-size: 13px;
        word-break: keep-all;
    }
    .fee-card {
        padding: 28px 20px;
    }
    .fee-card .fee-amount {
        font-size: 24px;
    }
    .fee-card h4 {
        font-size: 15px;
    }
    .fee-card p {
        font-size: 13px;
        word-break: keep-all;
    }
    .visit-feature-item {
        padding: 14px;
    }
    .visit-feature-item i {
        font-size: 20px;
        min-width: 36px;
    }
    .ai-modal-body {
        padding: 10px;
    }
    .ai-modal-body .ai-card {
        padding: 20px 14px;
        border-radius: 12px;
    }
    .ai-card {
        padding: 20px 14px;
    }
    .ai-start-icon {
        width: 64px;
        height: 64px;
    }
    .ai-start-icon i {
        font-size: 28px;
    }
    .ai-start h3 {
        font-size: 18px;
        word-break: keep-all;
    }
    .ai-start p {
        font-size: 13px;
        word-break: keep-all;
    }
    .ai-option {
        padding: 10px 12px;
        font-size: 14px;
    }
    .ai-option strong {
        font-size: 14px;
    }
    .ai-option span {
        font-size: 12px;
    }
    .ai-q h4 {
        font-size: 16px;
        word-break: keep-all;
    }
    #aiDiagnosisModal .modal-dialog {
        margin: 10px;
    }
    .consult-form-card {
        padding: 20px 16px;
    }
    .consult-contact-item {
        padding: 12px;
    }
    .consult-contact-item i {
        font-size: 18px;
        min-width: 36px;
    }
    .consult-contact-item strong {
        font-size: 13px;
        word-break: break-all;
    }
    .bankruptcy-card {
        padding: 20px 16px;
    }
    .fixed-btn {
        padding: 12px 6px;
        font-size: 12px;
    }
    .fixed-btn i {
        font-size: 16px;
    }
    .preloader-text {
        font-size: 24px;
    }
    .preloader-icon {
        font-size: 36px;
    }
    .preloader-sub {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

/* ===================================
   프리로더
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1117;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    text-align: center;
    animation: preloaderFadeIn 0.6s ease forwards;
}
.preloader-icon {
    font-size: 48px;
    color: #c9a227;
    margin-bottom: 20px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.preloader-highlight {
    color: #c9a227;
}
.preloader-logo {
    height: 40px;
    width: auto;
}
.section-logo {
    height: 36px;
    width: auto;
    vertical-align: middle;
    margin-right: 4px;
}
.preloader-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.preloader-logo {
    height: 28px;
    width: auto;
    opacity: 0.6;
    filter: brightness(10);
}
.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}
.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #c9a227, #e8d48b);
    border-radius: 3px;
    animation: preloaderProgress 1.8s ease forwards;
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes preloaderProgress {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* === Scroll to Top 버튼 === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #c9a227, #a17f1a);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d4ad2e, #c9a227);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

@media (max-width: 991px) {
    .scroll-to-top {
        bottom: 75px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* === YouTube Section === */
.youtube-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.youtube-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.youtube-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}
.youtube-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.youtube-card:hover .youtube-thumb img {
    transform: scale(1.05);
}
.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}
.youtube-play i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px;
}
.youtube-card:hover .youtube-play {
    background: rgba(255,0,0,1);
    transform: translate(-50%, -50%) scale(1.1);
}
.youtube-card-title {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    max-height: calc(2 * 1.4em + 24px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-outline-gold {
    border: 2px solid #c9a227;
    color: #c9a227;
    background: transparent;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 32px;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: #c9a227;
    color: #fff;
}
@media (max-width: 767px) {
    #youtube .row.g-3 {
        row-gap: 16px !important;
    }
    .youtube-card {
        margin-bottom: 4px;
    }
    .youtube-card-title {
        font-size: 12px;
        padding: 8px 10px;
    }
    .youtube-play {
        width: 36px;
        height: 36px;
    }
    .youtube-play i {
        font-size: 14px;
    }
    #youtube .text-center.mt-4 {
        margin-top: 24px !important;
    }
}
