/* --- HERO SECTION --- */
.eco-hero {
    padding: 120px 0;
    background-color: #0a0e14;
    color: #fff;
}

.eco-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.eco-label {
    color: #d97706;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}

.eco-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
}

.peach-text {
    color: #e5b3a3;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.h-stat-box {
    background: #161d2a;
    padding: 30px;
    border-radius: 12px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.h-stat-box h3 {
    font-size: 2.2rem;
    color: #cbd5e1;
    margin-bottom: 5px;
}

.h-stat-box:nth-child(2) h3 {
    color: #e5b3a3;
}

.h-stat-box span {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* --- DUAL SECTION (WHITE) --- */
.eco-dual-section {
    padding: 100px 0;
    background: #ffffff;
    color: #1a1a1a;
}

.tag-challenge {
    background: #f2dede;
    color: #b97a7a;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

.tag-solution {
    background: #e2e8f0;
    color: #64748b;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

.sec-title-dark {
    font-size: 34px;
    font-weight: 800;
    margin: 25px 0;
    color: #0f172a;
}

.sec-desc-dark {
    color: #64748b;
    font-size: 17px;
    line-height: 1.6;
}

.eco-list-dark {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.eco-list-dark li {
    display: flex;
    gap: 10px;
    color: #64748b;
    margin-bottom: 15px;
    font-size: 15px;
}

.eco-list-dark i {
    color: #f97316;
    margin-top: 4px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.s-card-box {
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
}

.s-icon-orange {
    color: #f97316;
    font-size: 22px;
    margin-bottom: 15px;
}

.s-card-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.s-card-box p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

/* --- FEATURE BANNER --- */
.eco-feature-banner {
    padding-bottom: 100px;
    background: #fff;
}

.feature-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-feature-img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 12px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 88;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    color: #fff;
    font-size: 14px;
    display: block;
}

.badge-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {

    .eco-hero-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .eco-hero {
        padding: 60px 0;
    }

    .feature-badge {
        left: 15px;
        bottom: 15px;
        max-width: 90%;
    }
}


/* --- BY THE NUMBERS SECTION --- */
.eco-numbers-grid {
    background: #ffffff;
    overflow: hidden;
}

.eco-label-orange {
    color: #f97316;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.sec-title-dark-center {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.numbers-wrapper {
    position: relative;
    padding: 40px 0;
}

/* THE DOTTED LINE BEHIND CARDS */
.dotted-line {
    position: absolute;
    top: 55%;
    left: -50px;
    right: -50px;
    height: 1px;
    border-top: 2px dotted #3b82f6;
    /* Blue dotted line from image */
    opacity: 0.3;
    z-index: 0;
}

.number-card {
    background: #050d1d;
    /* Very dark navy from image */
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    height: 100%;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* THE LEFT ACCENT BORDERS */
.number-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    border-radius: 0 4px 4px 0;
}

.blue-accent::before {
    background: #6366f1;
}

.light-blue-accent::before {
    background: #3b82f6;
}

.orange-accent::before {
    background: #f97316;
}

.card-label {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 25px;
}

.number-card h3 {
    font-size: 68px;
    /* Matching the large scale in image */
    font-weight: 700;
    margin-bottom: 20px;
    color: #e2e8f0;
    line-height: 1;
}

/* The third card counter color */
.orange-accent h3 {
    color: #f97316;
}

.number-card p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .number-card h3 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .dotted-line {
        display: none;
    }

    /* Hide dotted line on mobile for clarity */
    .sec-title-dark-center {
        font-size: 36px;
    }

    .number-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .eco-numbers-grid {
        padding: 60px 0;
    }

    .number-card h3 {
        font-size: 45px;
    }
}

/* --- FINAL CTA SECTION --- */
.js-eco-cta-section {
    padding: 120px 0;
    background: #0a0e14;
}

.js-eco-cta-card {
    background: #1a2434;
    max-width: 850px;
    margin: 0 auto;
    padding: 70px 90px;
    border-radius: 24px;
}

.js-eco-cta-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.js-eco-cta-subtitle {
    color: #94a3b8;
    font-size: 16px;
}
.form-row {
    margin-top: 25px;
}
.js-eco-form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.js-eco-input {
    width: 100%;
    background: #232d3f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 8px;
    color: #fff;
}

.js-eco-btn {
    width: 100%;
    background: #ff6624;
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}