/* ============================================
   🏢 회사 소개 섹션 CSS v3.2.0
   ============================================ */

.company-intro {
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
    padding: 100px 0;
}

.company-hero {
    text-align: center;
    margin-bottom: 80px;
}

.company-hero h2 {
    font-size: 3.5rem;
    color: #2d5016;
    margin-bottom: 25px;
    font-weight: 900;
}

.company-hero .subtitle {
    font-size: 1.8rem;
    color: #666;
    font-weight: 500;
}

/* 회사 정보 카드 그리드 */
.company-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.company-card {
    background: white;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 80, 22, 0.25);
    border-color: #2d5016;
}

.company-card-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.company-card h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 800;
}

.company-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

.company-card ul {
    list-style: none;
    padding: 0;
}

.company-card ul li {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.company-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 900;
    font-size: 1.4rem;
}

/* 연혁 타임라인 */
.history-timeline {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 80px;
}

.history-timeline h3 {
    font-size: 2.5rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 900;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: -40px;
    width: 3px;
    background: linear-gradient(180deg, #2d5016, #4a7c2c);
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2d5016, #4a7c2c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.timeline-content h4 {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* 인증 배지 */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-badge {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.cert-badge:hover {
    transform: scale(1.05);
    border-color: #2d5016;
}

.cert-badge-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cert-badge h4 {
    font-size: 1.4rem;
    color: #2d5016;
    font-weight: 700;
}

/* 구매 혜택 배너 */
.purchase-benefit {
    background: linear-gradient(135deg, #2d5016, #4a7c2c);
    color: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.purchase-benefit:before {
    content: '🎁';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.purchase-benefit h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.purchase-benefit p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefit-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    display: inline-block;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .company-hero h2 {
        font-size: 2.5rem;
    }

    .company-hero .subtitle {
        font-size: 1.3rem;
    }

    .company-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-card {
        padding: 35px;
    }

    .history-timeline {
        padding: 40px 25px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .certifications {
        grid-template-columns: 1fr;
    }

    .purchase-benefit {
        padding: 35px 25px;
    }

    .purchase-benefit h3 {
        font-size: 1.8rem;
    }

    .purchase-benefit p {
        font-size: 1.2rem;
    }

    .benefit-highlight {
        font-size: 1.4rem;
    }
}
