.models-section {
    width: 100%;
    background: radial-gradient(circle at center, #0a1108 0%, #000000 100%);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.models-container {
    width: 100%;
    max-width: 1400px;
    min-height: 750px;
    /* Changed from hard height for responsiveness */
    padding: 0 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.model-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    /* Fills fixed container height */
    opacity: 0;
    transform: translateX(10px);
    animation: smoothSlideIn 0.5s forwards ease-in-out;
}

@keyframes smoothSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.model-content {
    flex: 1.2;
    text-align: left;
}

.model-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.model-desc {
    font-size: 18px;
    font-family: var(--font-body);
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
}

.benefits-title {
    font-size: 36px;
    /* Lower end of H2 (24-36px) as it's a sub-heading */
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefits-list li {
    font-size: 26px;
    font-family: var(--font-body);
    color: #fff;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.benefits-list li h4 {
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
    color: inherit;
    margin: 0;
    line-height: inherit;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 900;
    font-size: 24px;
}

.model-cta {
    background-color: #eaf6e5;
    /* Light green pill like image */
    color: #54b248;
    border: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.model-cta:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(84, 178, 72, 0.2);
}

.infographic-main-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-price-infographic-img,
.tm-infographic-img,
.dedicated-infographic-img {
    object-fit: contain;
    filter: drop-shadow(0 0 40px #54b24826);
    width: 100%;
    max-width: 700px;
}

.slider-controls {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 10;
}

.control-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #54b248;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.9;
}

.control-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1100px) {
    .model-slide {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .model-content {
        text-align: center;
    }

    .benefits-list {
        align-items: center;
        max-width: 100%;
    }

    .slider-controls {
        position: static;
        /* Let it flow on mobile stacks */
        justify-content: center;
        margin-top: 40px;
    }

    .models-container {
        min-height: auto;
        /* Reset for mobile stack */
    }
}

@media (max-width: 768px) {
    .model-title {
        font-size: 28px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .models-section {

        padding: 50px 0;
    }

    .models-container {
        padding: 0 15px;
    }

    .benefits-list {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .benefits-list li {
        font-size: 16px;
        text-align: left;
        margin: 0 auto;
        width: fit-content;
    }

    .model-cta {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .model-title {
        font-size: 24px;
    }

    .benefits-title {
        font-size: 20px;
    }

    .benefits-list li {
        font-size: 14px;
    }
}

/* SEO Utilities */
.sr-only-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}