/* 기본 스타일 */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #ffffff;
    background-color: #0d1629;
    line-height: 1.5;
}
* { box-sizing: border-box; }

/* 히어로 배너 섹션 */
.hero-animated-banner {
    position: relative;
    width: 100%;
    height: 550px;
    background: 
        radial-gradient(ellipse at center, rgba(13, 22, 41, 0) 30%, rgba(13, 22, 41, 0.8) 90%, #0d1629 100%),
        url('../images/banner.webp') no-repeat center center;
    background-size: 60% 100%, cover;
    background-color: #0d1629; 
    padding: 0 5%;
    display: flex;
    align-items: center; 
    justify-content: flex-start;
}

/* 텍스트 영역 */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-animated-banner h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-animated-banner .highlight {
    color: #ee0505 !important;
    font-size: 1.00em !important;
    font-weight: 900 !important;
}

/* 통계 섹션 */
.stats {
    background-color: #0b1324;
    padding: 35px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: inset 0 15px 25px rgba(30, 90, 200, 0.25), inset 0 -15px 25px rgba(30, 90, 200, 0.25);
    border-top: 1px solid rgba(54, 123, 245, 0.3);
    border-bottom: 1px solid rgba(54, 123, 245, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 23%;
}

.stat-item > div:first-child:not(.stat-chart) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-title { 
    font-size: 14px; 
    color: #7a8ea6; 
    margin-bottom: 4px; 
    font-weight: 500;
}

.stat-value { 
    font-size: 21px; 
    font-weight: 700; 
    letter-spacing: -0.5px;
}

.stat-item:nth-child(1) .stat-value { color: #02b128; }
.stat-item:nth-child(2) .stat-value { color: #eef107; }
.stat-item:nth-child(3) .stat-value { color: #02b128; }
.stat-item:nth-child(4) .stat-value { color: #eef107; }

.stat-chart {
    width: 75px;
    height: 30px;
    display: flex;
    align-items: center;
}

/* 서비스 가이드 & 소개 섹션 전체 */
.service-guide-section {
    background-color: #0b1324;
    padding: 70px 5%;
    color: #ffffff;
    border-bottom: 1px solid rgba(54, 123, 245, 0.2);
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-header {
    text-align: center;
    margin-bottom: 50px;
}

.guide-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.guide-header .highlight { color: #02b128; }
.guide-header .sub-title { font-size: 16px; color: #7a8ea6; margin: 0; }

.guide-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.guide-cards .card {
    background-color: #121d36;
    border: 1px solid #1c2a4d;
    border-radius: 12px;
    padding: 30px 25px;
    flex: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.guide-cards .card:hover {
    transform: translateY(-5px);
    border-color: rgba(54, 123, 245, 0.6);
}

.guide-cards .card-icon { font-size: 28px; margin-bottom: 15px; }
.guide-cards .card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #ffffff; }
.guide-cards .card p { font-size: 14px; color: #a0aec0; line-height: 1.6; margin: 0; }

.guide-details-box {
    background-color: #121d36;
    border: 1px solid #1c2a4d;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.details-text { flex: 1; }
.details-text h3 { font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 15px; color: #ffffff; }
.details-text p { font-size: 15px; color: #c0cce6; line-height: 1.7; margin-bottom: 12px; }
.details-text p:last-child { margin-bottom: 0; }
.details-text strong { color: #ffffff; }

.guide-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}

.guide-actions .btn-primary {
    background: linear-gradient(135deg, #02b128, #00801c);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(2, 177, 40, 0.3);
    transition: filter 0.2s;
}

.guide-actions .btn-primary:hover { filter: brightness(1.1); }

.guide-actions .btn-secondary {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.guide-actions .btn-secondary:hover { background: #3b82f6; color: #ffffff; }

@media (max-width: 768px) {
    .guide-cards { flex-direction: column; }
    .guide-details-box { flex-direction: column; align-items: stretch; }
    .guide-actions { flex-direction: row; }
    .guide-actions a { flex: 1; }
    .stats { flex-direction: column; gap: 20px; }
    .stat-item { width: 100%; }
}