/* ========================================
   Eco-Friendly Page (친환경 인쇄)
======================================== */

/* Sub Visual - Eco */
.eco-visual {
    background: linear-gradient(rgba(30, 20, 50, 0.7), rgba(30, 20, 50, 0.7)), url('/images/eco-visual-bg.png') center/cover no-repeat;
    background-color: #2a1e3d;
}



.eco-visual .sub-visual-desc em {
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Eco Message Section */
.eco-message {
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px;
}

.eco-message-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Slide up animation on page load */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eco-message-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: slideUpFade 0.8s ease-out forwards;
}

.eco-message-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Eco Section */
.eco-section {
    padding: 120px 0;
}

.eco-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.eco-text {
    flex: 1;
}

.eco-image {
    flex-shrink: 0;
}

.eco-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Eco Label & Title */
.eco-label {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 1.6;
}

.eco-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.eco-title span {
    font-weight: 500;
    font-size: 25px;
    color: #222;
}

/* Eco Description */
.eco-desc {
    margin-bottom: 20px;
}

.eco-desc p {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 20px;
}

.eco-list {
    list-style: none;
    padding: 0;
}

.eco-list li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    color: #222;
    line-height: 1.9;
    margin-bottom: 6px;

    background-color: #f3f3f3;
    border-radius: 8px;
    width: 408px;
}


/* Eco Stats */
.eco-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.eco-stat {
    flex: 1;
    text-align: center;
}

.eco-stat-icon {
    margin-bottom: 16px;
}

.eco-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 6px;
}

.eco-stat-unit {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.eco-stat-label {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.eco-stat-desc {
    font-size: 14px;
    color: #222;
    line-height: 1.6;
}

/* Plate Section border top */
.eco-section-plate {
    border-top: 1px solid #eee;
}

/* Bottom CTA */
.eco-cta {
    width: 100%;
    height: 590px;
    /*background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/eco-cta-bg.png') center/cover no-repeat;*/
    background: url('/images/eco-cta-bg.png') center/cover no-repeat;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
}

.eco-cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.eco-cta-text {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}

/* ========================================
   Eco-Friendly Responsive
======================================== */

@media (max-width: 1024px) {
    .eco-row {
        flex-direction: column;
        gap: 50px;
    }

    .eco-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .eco-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .eco-message {
        min-height: 400px;
        padding: 60px 20px;
    }

    .eco-message-title {
        font-size: 26px;
    }

    .eco-message-title br {
        display: none;
    }

    .eco-message-desc {
        font-size: 14px;
    }

    .eco-message-desc br {
        display: none;
    }

    .eco-section {
        padding: 60px 20px;
    }

    .eco-title {
        font-size: 26px;
    }

    .eco-title span {
        font-size: 16px;
    }

    .eco-stats {
        flex-direction: column;
        gap: 40px;
    }

    .eco-stat-value {
        font-size: 36px;
    }

    .eco-cta {
        padding: 60px 20px;
    }

    .eco-cta-text {
        font-size: 22px;
    }

    .eco-cta-text br {
        display: none;
    }
}

@media (max-width: 480px) {
    .eco-message-title {
        font-size: 22px;
    }

    .eco-title {
        font-size: 22px;
    }

    .eco-cta-text {
        font-size: 18px;
    }
}
