:root {
    --solutions-bg: #f6faf7;
    --solutions-border: #e5ece7;
    --solutions-text: #0f1f1a;
    --solutions-muted: #4d5c57;
    --solutions-accent: #0a864b;
    --solutions-highlight: #f4fdfa;
}

main {
    background: #fff;
    color: var(--solutions-text);
}

.section {
    padding: 90px 0;
}

.solutions-hero .hero-content>span {
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.e-span{
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
}

.solutions-hero {
    background: #f5f7f5;
    padding: 180px 0 160px 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--solutions-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 3px 6px rgba(5, 24, 16, 0.08);
    border: 1px solid var(--solutions-border);
}

.hero-card h3 {
    margin-bottom: 16px;
}

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

.hero-card li {
    padding-left: 18px;
    margin-bottom: 12px;
    position: relative;
    color: var(--solutions-muted);
    font-size: 16px;
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--solutions-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(10, 134, 75, 0.2);
}

.btn-secondary:hover {
    opacity: 0.8;
    background-color: #0a864b;
}


.comparison {
    background: #fff;
    text-align: center;
}

.comparison h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.comparison-card {
    border-radius: 18px;
    border: 1px solid rgba(203, 35, 32, 0.1);
    padding: 28px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 4px rgba(7, 32, 20, 0.04);
    background: rgba(221, 120, 118, 0.05);
}

.comparison-card.highlight {
    background: var(--solutions-highlight);
    border-color: rgba(10, 134, 75, 0.1);
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.comparison-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--solutions-muted);
}

.comparison-card li {
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
}

.comparison-card li::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: var(--secondary-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.scenarios {
    background: var(--solutions-bg);
    text-align: center;
}

.scenarios-container h2 {
    margin-bottom: 20px;
    font-size: 36px;
}


.scenario-swiper {
    padding: 60px 0;
}

.scenario-swiper-button-next,
.scenario-swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--solutions-border);
    box-shadow: 0 2px 4px rgba(7, 32, 20, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    transition: all 0.3s ease;
}

.scenario-swiper-button-next {
    transform: translateX(200%);
}

.scenario-swiper-button-prev {
    transform: translateX(-200%);
}

.scenario-swiper:hover .scenario-swiper-button-next,
.scenario-swiper:hover .scenario-swiper-button-prev {
    transform: translateX(0);
}

.scenario-swiper-button-next:after,
.scenario-swiper-button-prev:after {
    font-size: 16px;
    color: var(--secondary-green);
    font-weight: 600;
}

.scenario-swiper-button-next:hover,
.scenario-swiper-button-prev:hover {
    color: var(--secondary-green);
}

.scenario-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-green);
    transform: scale(1.1);
}

.scenario-card {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--solutions-border);
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 170px;
}

.scenario-card .bottom-img {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: var(--secondary-green);
}

.scenario-card::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(218, 238, 229, 1), rgba(218, 238, 229, 0));
    border-radius: 10px 0 10px 0;
}

.scenario-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.scenario-card p {
    font-size: 15px;
}

.scenarios-container>p {
    color: var(--solutions-muted);
    margin: 0 auto;
}

.composition {
    background: #fff;
    text-align: center;
}

.composition-container h2 {
    margin-bottom: 60px;
    font-size: 36px;
}

.composition-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.composition-card {
    border-radius: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--solutions-border);
    box-shadow: 0 2px 4px rgba(5, 24, 16, 0.05);
    text-align: left;
}

.composition-card h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.composition-card p {
    font-size: 15px;
}

.composition-note {
    margin-top: 28px;
    color: var(--solutions-muted);
    background-color: var(--solutions-bg);
    padding: 20px;
    font-size: 14px;
    text-align: left;
    border-radius: 10px;
}


.rollout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    align-items: stretch;
}

.rollout-card {
    border-radius: 20px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.rollout-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f2b1c;
}

.rollout-card h3 {
    font-size: 23px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f2b1c;
    margin-bottom: 12px;
}

.rollout-card p {
    color: var(--solutions-muted);
    font-size: 16px;
    line-height: 1.6;
}

.rollout-card ul {
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
    color: var(--solutions-muted);
    font-size: 16px;
    line-height: 1.6;
}

.rollout-card li {
    margin-bottom: 12px;
    padding-left: 16px;
    font-size: 15px;
    position: relative;
}

.rollout-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--solutions-accent);
}

.rollout-card.muted {
    background: var(--solutions-bg);
    border-color: transparent;
    box-shadow: none;
    padding: 30px;
}

.rollout-card.muted ul {
    color: #0f2b1c;
}

.rollout-card.muted p {
    margin-top: auto;
    color: var(--solutions-muted);
}

.rollout-card .link-arrow {
    margin-top: 15px;
    font-size: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--solutions-accent);
    font-weight: 600;
    margin-top: 16px;
}

.section-cta {
    background: var(--solutions-bg);
    color: #fff;
}

.cta-card {
    border-radius: 22px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(10, 134, 75, 0.1);
    box-shadow: 0 2px 4px rgba(7, 32, 20, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-card>div>span{
    color: var(--solutions-accent);
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.cta-card h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--solutions-text);
}

.cta-card p {
    font-size: 15px;
    color: var(--solutions-muted);
}

.cta-card .btn-primary {
    color: #fff;
}

@media (max-width: 768px) {


    .section{
        padding: 40px 0;
    }    
    .solutions-hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .comparison h2,
    .scenarios h2,
    .composition h2 {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content p{
        font-size: 15px;
    }

    .hero-card{
        padding: 25px;
    }
    .hero-card h3{
        font-size: 20px;
    }
    .hero-card li{
        font-size: 15px;
    }
    .comparison-card h3{
        font-size: 20px;
    }
    .comparison-card{
        padding: 20px;
    }

    .scenario-swiper{
        padding: 30px 0;
    }
    .composition-card h3{
        font-size: 20px;
    }
    .composition-card{
        padding: 20px;
    }
    .eyebrow{
        margin-bottom: 10px;
    }

    .rollout-card h2{
        font-size: 26px;
    }
    .rollout-description{
        font-size: 15px;
    }
    .rollout-card li{
        font-size: 14px;
    }

    .rollout-card.muted{
        padding: 20px;
    }
    .rollout-card h3{
        margin-bottom: 0;
    }

    .cta-card{
        padding: 20px;
    }
    .cta-card h2{
        font-size: 20px;
    }
    .cta-card .btn-primary{
        font-size: 15px;
    }
}