/* 회사소개 히어로 섹션 */
#about-hero {
    position: relative;
    padding: 220px 0 180px;
    min-height: 100vh;
    background: linear-gradient(135deg, #eeeeee 0%, #b1f1b3 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 255, 178, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 255, 178, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.gradient-orb {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(0, 255, 178, 0.15) 0%, rgba(0, 37, 26, 0) 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.2);
    border-radius: 50px;
    color: #00A651;
    font-size: 1.2rem;
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

#about-hero h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

#about-hero p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 80px;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 48px;
    background: rgba(0, 166, 81, 0.03);
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.stat-item {
    position: relative;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 166, 81, 0.2), transparent);
}

.stat-value {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00A651 0%, #00916E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-value span {
    font-size: 2.5rem;
    margin-left: 8px;
    opacity: 0.9;
}

.stat-label {
    color: #000000;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* 회사 통계 */
.company-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-top: 10px;
}

/* 배경 효과 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, -50%) scale(1); }
    50% { transform: translate(0, -50%) scale(1.1); }
}

/* 미션과 비전 섹션 */
/* 마케팅 그 이상의 가치 섹션 */
#mission {
    padding: 120px 0;
    background: linear-gradient(180deg, #001510 0%, #00251a 100%);
    position: relative;
    overflow: hidden;
}

.value-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.value-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(0, 255, 178, 0.1);
    border: 1px solid rgba(0, 255, 178, 0.2);
    border-radius: 50px;
    color: #00FFB2;
    font-size: 1.2rem;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.value-content h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.value-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.value-content .btn {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.value-content .btn i {
    transition: transform 0.3s ease;
}

.value-content .btn:hover i {
    transform: translateX(5px);
}

.value-image {
    flex: 1;
    position: relative;
}

.value-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 178, 0.2);
}

.image-caption {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: rgba(0, 37, 26, 0.8);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: #FFFFFF;
    border: 1px solid rgba(0, 255, 178, 0.2);
    backdrop-filter: blur(10px);
}

/* 배경 효과 추가 */
#mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 255, 178, 0.08) 0%, transparent 70%);
    z-index: 1;
}

#mission::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 70%, rgba(0, 255, 178, 0.05) 0%, transparent 60%);
    z-index: 1;
}

@media (max-width: 992px) {
    .value-wrapper {
        flex-direction: column;
    }
    
    .value-image {
        margin-top: 40px;
    }
}

/* 연혁 섹션 */
#history {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fffc 0%, #001510 100%);
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(0, 255, 178, 0.2);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .year {
    background: linear-gradient(135deg, #00FFB2 0%, #00FFF0 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item .content {
    width: 45%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 178, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-left: 55%;
}

.timeline-item:nth-child(even) .content {
    margin-left: 0;
    margin-right: 55%;
}

.timeline-item .content h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.timeline-item .content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* 팀 섹션 */
#team {
    padding: 120px 0;
    background: linear-gradient(180deg, #001510 0%, #f9fffc 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 166, 81, 0.3);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: rgba(0, 255, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.member-avatar i {
    font-size: 3rem;
    color: #00FFB2;
}

.team-card h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 8px;
}

.team-card .position {
    color: #00A651;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.team-card .description {
    color: #555555;
    font-size: 1rem;
}

/* 기업 문화 섹션 */
#culture {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fffc 0%, #e6f5ef 100%);
    position: relative;
    overflow: hidden;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.culture-item {
    background: #ffffff;
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.culture-item:hover {
    transform: translateY(-10px);
}

.culture-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.culture-item h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 20px;
}

.culture-item p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
}

/* 오시는 길 섹션 */
#location {
    padding: 120px 0;
    background: linear-gradient(180deg, #e6f5ef 0%, #001510 100%);
    position: relative;
    overflow: hidden;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.location-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.location-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.address {
    display: flex;
    align-items: start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.address i {
    color: var(--primary-color);
    margin-top: 5px;
}

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

.transport-info li {
    margin-bottom: 20px;
}

.transport-info strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 8px;
}

.transport-info i {
    color: var(--primary-color);
}

.transport-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 24px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .location-info {
        padding: 30px;
    }
    
    .location-info h3 {
        font-size: 1.8rem;
    }
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    #about-hero {
        padding: 160px 0 120px;
        min-height: auto;
    }

    #about-hero h1 {
        font-size: 3.5rem;
    }

    #about-hero p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 40px;
        padding: 32px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-value {
        font-size: 3.5rem;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item .year {
        left: 20px;
        transform: none;
    }

    .timeline-item .content {
        width: 100%;
        margin-left: 40px;
        margin-top: 40px;
    }

    .timeline-item:nth-child(even) .content {
        margin-right: 0;
        margin-left: 40px;
    }

    .cta-wrapper {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* 섹션 헤더 스타일 개선 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #00FFB2 0%, #00A651 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #00FFB2 0%, #00A651 100%);
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    padding-top: 20px;
}

.section-header p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
}

/* CTA 섹션 */
#contact-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #001510 0%, #00251a 100%);
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 178, 0.1);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00FFB2 0%, #00FFF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-content .btn i {
    transition: transform 0.3s ease;
}

.cta-content .btn:hover i {
    transform: translateX(5px);
} 

/* 차별점 섹션 수정 - 글씨 색상 변경 */
#difference {
    padding: 120px 0;
    background: linear-gradient(180deg, #e6f5ef 0%, #f9fffc 100%); /* 배경 그라데이션을 더 밝게 조정 */
    position: relative;
    overflow: hidden;
}

.section-header h2 {
    color: #8f8f8f; /* 제목 색상을 어둡게 설정 */
    font-weight: 700;
}

.section-header p {
    color: #beaaaa; /* 부제목 색상을 어둡게 설정 */
}

.difference-content {
    max-width: 1100px;
    margin: 0 auto;
}

.difference-text {
    margin-bottom: 60px;
}

.difference-text h3 {
    font-size: 2rem;
    color: #000000; /* 제목 색상을 어둡게 설정 */
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.difference-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, #00A651 0%, #00916E 100%);
    border-radius: 3px;
}

.difference-text p {
    font-size: 1.1rem;
    color: #000000; /* 본문 텍스트 색상을 어둡게 설정 */
    line-height: 1.8;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, #B4EC51 0%, #429321 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 166, 81, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.25);
}

.stat-value {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.5;
    font-weight: 500;
}

.testimonial-box {
    background: #fff;
    border-left: 4px solid #00A651;
    padding: 30px 40px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 60px 0 20px;
}

.testimonial-box p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 992px) {
    .difference-text h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .difference-text h3 {
        font-size: 1.6rem;
        padding-left: 20px;
    }
    
    .difference-text h3::before {
        height: 20px;
    }
    
    .testimonial-box {
        padding: 25px 30px;
    }
    
    .testimonial-box p {
        font-size: 1.3rem;
    }
} 