﻿    text-align: center;
    margin-bottom: 100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hero-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
    position: relative;
    z-index: 2;
}

.hero-message h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.hero-message p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ?듭떖 ?μ젏 */
.key-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.advantage-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-highlight:hover::before {
    left: 100%;
}

.advantage-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.advantage-highlight h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.advantage-highlight p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 臾몄젣 ?ㅽ넗由??뱀뀡 */
.problem-story {
    margin-bottom: 80px;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.story-intro h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.story-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 臾몄젣 移대뱶??*/
.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.problem-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.problem-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.problem-detail span {
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ?ㅽ넗由?寃곕줎 */
.story-conclusion {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.story-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.story-conclusion h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.story-conclusion p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* ?ㅼ쓬 ?섏씠吏 踰꾪듉 */
.next-page-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.next-page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00e6ff 0%, #00aadd 100%);
}

/* ZENITH ?뚭컻 ?뱀뀡 */
.zenith-intro-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.zenith-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.company-intro {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.intro-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    display: block;
    position: relative;
    z-index: 2;
}

.intro-hero h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.intro-hero p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ?듭떖 媛移?*/
.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.value-item h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.value-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.next-section {
    text-align: center;
}

/* 諛섏쓳???붿옄??*/
@media (max-width: 768px) {
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .problem-card {
        padding: 30px 25px;
    }
    
    .story-intro h3 {
        font-size: 1.8rem;
    }
    
    .intro-hero h3 {
        font-size: 2.2rem;
    }
    
    .core-values {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-item {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .story-intro {
        padding: 30px 20px;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .intro-hero {
        padding: 40px 25px;
    }
    
    .intro-hero h3 {
        font-size: 1.8rem;
    }
    
    .value-item {
        padding: 30px 25px;
    }
}

/* 釉뚮옖??媛뺤젏 ?뱀뀡 */
.brand-strengths {
    margin-bottom: 80px;
}

.strength-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.strength-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}
