/* Images */
.acg-img-box img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.solution-card-title{
    color: #22854e;
}

@media (max-width: 768px) {
    .acg-img-box img {
        max-height: 320px;
    }
}

/* Hero */
@media (max-width: 768px) {
    .hero {
        padding: 110px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }
}

/* Grids */
@media (max-width: 1024px) {
    .summary-grid,
    .intro-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Sections */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-desc {
        font-size: 1rem;
        text-align: left;
    }
}

/* Slider safety */
@media (max-width: 768px) {
    .review-slider {
        margin: 0 -10px;
    }
}

@media (max-width: 768px) {

    section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.0rem;
    }

    .overlap-section {
        margin-top: -60px !important;
    }

    .stat-val {
        font-size: 1.5rem;
    }

}


@media (max-width: 768px) {

    .impact-metric-card {
        padding: 25px 20px;
    }

    .metric-value {
        font-size: 2.3rem;
    }

    .research-card {
        padding: 25px;
    }

    .research-outcome {
        padding: 25px;
    }

    .stat-val {
        font-size: 2.2rem;
    }

}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

}

/* ===============================
   CTA GATE COMPONENTS — Datacube
================================ */

/* Hero download button */
.cs-hero-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 32px;
    background: #0BBB31;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(11, 187, 49, 0.35);
}

.cs-hero-download-btn:hover {
    background: #09a128;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(11, 187, 49, 0.45);
}

.cs-hero-download-btn i {
    font-size: 0.9rem;
}

/* CTA Banner */
.acg-cta-banner {
    background: #f0f5fb;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.acg-cta-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.acg-cta-text {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

.acg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #0BBB31;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.acg-cta-btn:hover {
    background: #09a128;
    transform: translateY(-1px);
}

.acg-cta-logo {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
}

.acg-cta-logo img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

/* Sticky sidebar button — Datacube teal brand */
.cs-gate-sticky-btn {
    background: #1F7A8C;
}

.cs-gate-sticky-btn:hover {
    background: #176676;
}

/* Sidebar drawer header — Datacube teal brand */
.cs-sidebar-header {
    background: #1F7A8C;
}

@media (max-width: 768px) {
    .acg-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .acg-cta-logo {
        display: none;
    }
}