/* =============================================================================
   ECOSYSTEM PAGE — /ecosystem
   prefix: eco-
============================================================================= */

/* --- SHARED --- */
.eco-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: inline-block;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-green);
    padding-left: 14px;
}
.eco-eyebrow--light { color: rgba(123,185,62,0.85); }
.eco-eyebrow--dark  { color: var(--primary-green); }

/* =============================================================================
   SECTION 1: HERO
============================================================================= */
.eco-hero {
    background: linear-gradient(135deg, #1a2e10 0%, #14161A 50%, #0e1012 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.eco-hero-glow {
    position: absolute;
    top: -80px;
    left: -60px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123,185,62,0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.eco-hero > .container { position: relative; z-index: 1; }

.eco-hero-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(123, 185, 62, 0.2);
    margin: 0;
}

.eco-hero-img img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.eco-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    border-radius: var(--btn-radius);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eco-hero-btn-primary:hover { background: #96DC4B; border-color: #96DC4B; color: #ffffff; }

.eco-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    border-radius: var(--btn-radius);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eco-hero-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }

.eco-hero-pills {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 2.5rem;
}

.eco-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.eco-hero-pill i {
    color: var(--primary-green);
    font-size: 0.65rem;
}

/* =============================================================================
   SECTION 2: CONNECTED FLOW
============================================================================= */
.eco-flow {
    background: #ffffff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.eco-flow::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(123,185,62,0.2) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.4;
    pointer-events: none;
}

.eco-flow > .container { position: relative; z-index: 1; }

.eco-steps {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-top: 3rem;
}

.eco-step {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.eco-step:hover {
    border-color: rgba(123,185,62,0.4);
    box-shadow: 0 12px 40px rgba(123,185,62,0.12);
    transform: translateY(-5px);
}

.eco-step-num {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 500;
    color: rgba(123,185,62,0.1);
    line-height: 1;
    letter-spacing: -0.04em;
}

.eco-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.eco-step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navbar-bg);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.4rem;
}

.eco-step-sub {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.1rem;
    min-height: 2.4rem;
}

.eco-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin-top: auto;
}

.eco-step-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green-darker);
    border: 1px solid rgba(123,185,62,0.22);
    border-radius: 5px;
    padding: 0.18rem 0.5rem;
    font-size: 0.67rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.eco-step-tag:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* =============================================================================
   SHARED LAYER STYLES
============================================================================= */
.eco-layer {
    padding: 5rem 0;
}

.eco-layer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.eco-layer-badge--green {
    background: var(--light-green);
    color: var(--primary-green-darker);
    border: 1px solid rgba(123,185,62,0.25);
}

.eco-layer-badge--white {
    background: rgba(123,185,62,0.12);
    color: var(--primary-green);
    border: 1px solid rgba(123,185,62,0.2);
}

/* =============================================================================
   SECTION 3: HARDWARE LAYER
============================================================================= */
.eco-layer--hw {
    background: var(--navbar-bg);
}

.eco-layer-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    margin: 0;
}
.eco-layer-img img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.eco-layer-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    border-radius: var(--btn-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eco-layer-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }

.eco-hw-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.eco-hw-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eco-hw-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(123,185,62,0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.eco-hw-card-code {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(123,185,62,0.65);
    margin-bottom: 0.3rem;
}

.eco-hw-card-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.eco-hw-card-desc {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.eco-hw-card-link {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.eco-hw-card-link:hover { gap: 0.5rem; }

/* =============================================================================
   SECTION 4: PLATFORM & TOOLS
============================================================================= */
.eco-layer--platform {
    background: var(--light-green);
}

/* TimberID core card */
.eco-platform-core {
    background: var(--navbar-bg);
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.eco-platform-core::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(123,185,62,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.eco-platform-core-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(123,185,62,0.18);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.eco-platform-core-body { flex: 1; min-width: 0; position: relative; z-index: 1; }

.eco-platform-core-label {
    font-size: 0.63rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(123,185,62,0.7);
    margin-bottom: 0.4rem;
}

.eco-platform-core-title {
    font-size: 1.65rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.eco-platform-core-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 800px;
}

.eco-platform-core-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-small);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s;
}

.eco-platform-core-link:hover { opacity: 0.85; color: #fff; }

/* Story of Product secondary card */
.eco-platform-sop {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(123,185,62,0.18);
    margin-bottom: 1.25rem;
}

.eco-platform-sop-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.eco-platform-sop-label {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.eco-platform-sop-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.25rem;
}

.eco-platform-sop-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.eco-platform-sop-arrow {
    margin-left: auto;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.eco-platform-sop-arrow:hover {
    transform: translateX(3px);
    color: var(--primary-green);
}

/* Tools 3-grid */
.eco-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.eco-tool-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(123,185,62,0.14);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s, transform 0.22s;
}


.eco-tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.eco-tool-label {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.eco-tool-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.eco-tool-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    flex: 1;
}

.eco-tool-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.eco-tool-link:hover { gap: 0.55rem; }

/* =============================================================================
   SECTION 5: MOBILE LAYER
============================================================================= */
.eco-layer--mobile {
    background: #ffffff;
}

.eco-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.eco-app-card {
    background: var(--neutral-50);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    border: 1px solid var(--border-color);
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}


.eco-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.eco-app-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.4rem;
}

.eco-app-desc {
    font-size: 0.77rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.eco-app-link {
    font-size: 0.73rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.eco-app-link:hover { gap: 0.5rem; }

/* =============================================================================
   SECTION 6: SOLUTIONS LAYER
============================================================================= */
.eco-layer--solutions {
    background: #f4f6f0;
}

.eco-sol-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.eco-sol-group-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid rgba(123,185,62,0.25);
}

.eco-sol-group-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.eco-sol-group-icon--reg { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-group-icon--sus { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }

.eco-sol-group-title {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.eco-sol-group-parent {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navbar-bg);
    text-decoration: none;
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.eco-sol-group-parent:hover { color: var(--primary-green); }

.eco-sol-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border: 1px solid transparent;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.eco-sol-card:last-child { margin-bottom: 0; }


.eco-sol-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.eco-sol-icon--edn  { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-icon--coc  { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-icon--eudr { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-icon--dpp  { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-icon--cbam { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }
.eco-sol-icon--rep  { background: var(--light-green); border: 1px solid rgba(123,185,62,0.25); color: var(--primary-green); }

.eco-sol-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-tertiary);
    margin-bottom: 0.12rem;
}

.eco-sol-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navbar-bg);
    line-height: 1.25;
}

.eco-sol-arrow {
    margin-left: auto;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.eco-sol-arrow:hover {
    transform: translateX(3px);
    color: var(--primary-green);
}

/* =============================================================================
   SECTION 7: SERVICES LAYER
============================================================================= */
.eco-layer--services {
    background: #ffffff;
}

.eco-svc-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid var(--neutral-200);
    margin: 2rem 0 0;
}
.eco-svc-img img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.eco-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.eco-svc-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}


.eco-svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.eco-svc-label {
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.eco-svc-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.5rem;
}

.eco-svc-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.eco-svc-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.eco-svc-link:hover { gap: 0.55rem; }

/* =============================================================================
   SECTION 8: CTA
============================================================================= */
.eco-cta {
    background: linear-gradient(135deg, #14161A 0%, #1a2e10 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eco-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    border-radius: var(--btn-radius);
    padding: 0.9rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eco-cta-btn-primary:hover { background: #96DC4B; border-color: #96DC4B; color: #ffffff; }

.eco-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    border-radius: var(--btn-radius);
    padding: 0.9rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eco-cta-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }

.eco-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(123,185,62,0.09) 0%, transparent 60%);
    pointer-events: none;
}

.eco-cta > .container { position: relative; z-index: 1; }

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width: 1200px) {
    .eco-hw-grid { grid-template-columns: repeat(3, 1fr); }
    .eco-steps { gap: 0; }
}

@media (max-width: 1024px) {
    .eco-hw-grid { grid-template-columns: repeat(3, 1fr); }
    .eco-platform-core { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .eco-platform-core-link { margin-left: 0; }
    .eco-app-grid { grid-template-columns: repeat(2, 1fr); }
    .eco-platform-sop { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .eco-hero { padding: 60px 0 55px; }
    .eco-layer { padding: 3.5rem 0; }
    .eco-flow { padding: 3.5rem 0; }

    .eco-steps { flex-direction: column; gap: 0.75rem; }

    .eco-hw-grid { grid-template-columns: repeat(2, 1fr); }
    .eco-tools-grid { grid-template-columns: 1fr; }
    .eco-app-grid { grid-template-columns: repeat(2, 1fr); }
    .eco-sol-columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .eco-svc-grid { grid-template-columns: 1fr; }

    .eco-platform-core { padding: 1.75rem; }
    .eco-platform-core-title { font-size: 1.3rem; }
    .eco-cta { padding: 3.5rem 0; }

    .eco-hero .column:first-child { text-align: center; }
    .eco-hero .buttons { justify-content: center; }
    .eco-hero-pills { justify-content: center; }
    .eco-layer .column:first-child { text-align: center; }
    .eco-layer .column:first-child p { text-align: center; max-width: 100% !important; }
    .eco-layer .column.is-narrow { display: flex; justify-content: center; }
    .eco-step-num { font-size: 2rem; }
}
