
.hero {
    position: relative;
    padding: 120px 20px clamp(170px, 26vw, 300px);
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(130deg, rgba(35, 108, 153, 0.92), rgba(26, 77, 115, 0.85));
    color: #ffffff;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__video-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.05) brightness(0.9);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 90, 130, 0.88) 0%, rgba(26, 90, 130, 0.65) 35%, rgba(26, 90, 130, 0.9) 100%);
    opacity: 0.9;
    z-index: 1;
}

.hero__decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    color: var(--accent-red);
}

.hero__decor-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.98;
}

/* X de 4 cápsulas (SVG): geometría fija, hueco central ~14px en viewBox 64 */
.hero__decor-xsvg {
    flex-shrink: 0;
    display: block;
    color: var(--accent-red);
    filter: drop-shadow(0 0 5px rgba(198, 40, 40, 0.55)) drop-shadow(0 0 10px rgba(198, 40, 40, 0.25));
}

.hero__decor-xsvg--lg {
    width: 56px;
    height: 56px;
}

.hero__decor-xsvg--sm {
    width: 38px;
    height: 38px;
}

.hero__decor-svg {
    width: 48px;
    height: 48px;
}

.hero__decor-svg--ring {
    width: 54px;
    height: 54px;
}

/* Posiciones según referencia (título centrado, carrusel abajo) */
.hero__decor-icon--tr {
    top: 8%;
    right: min(100%, 650px);
}

.hero__decor-icon--ml {
    top: 55%;
    left: min(50%, 500px);
    transform: translateY(-35%);
}

.hero__decor-icon--bl {
    bottom: 10%;
    left: min(50%, 350px);
}

.hero__decor-icon--br {
    bottom: 11%;
    right: min(50%, 300px);
}

.hero__decor-icon--bx {
    bottom: 9%;
    left: min(50%, 200px);
}

@media (max-width: 768px) {
    .hero__decor-svg {
        width: 38px;
        height: 38px;
    }

    .hero__decor-svg--ring {
        width: 42px;
        height: 42px;
    }

    .hero__decor-xsvg--lg {
        width: 48px;
        height: 48px;
    }

    .hero__decor-icon--tr {
        top: 11%;
        right: 8px;
    }

    .hero__decor-icon--ml {
        top: 36%;
        left: 6px;
    }

    .hero__decor-icon--bl {
        bottom: 8%;
        left: 5px;
    }

    .hero__decor-icon--br {
        bottom: 8%;
        right: 6px;
    }

    .hero__decor-icon--bx {
        bottom: 0.5%;
        left: 5px;
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    animation: fade-up 0.9s ease-out both;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(0.98rem, 2.1vw, 1.15rem);
    font-weight: 400;
    line-height: 1.65;
    max-width: 65rem;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.hero__button--primary {
    background: var(--accent-red);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}

.hero__button--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}
.features {
    padding: 60px 0 70px;
    border-top: 1px solid #e0e0e0;
    background: #ffffff;
}

.features--below-showcase {
    padding-top: clamp(80px, 11vw, 150px);
    border-top: none;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 26px;
    border-radius: var(--radius-md);
    background-color: var(--surface-1);
    border: 1px solid #e0e0e0;
    box-shadow: 0 14px 24px rgba(12, 12, 12, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(12, 12, 12, 0.12);
}

.features .feature-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid rgba(35, 108, 153, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(12, 12, 12, 0.06);
}

.features .feature-card::before {
    content: none;
}

.features .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(12, 12, 12, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.feature-card__title {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: var(--accent-500);
    text-transform: none;
    letter-spacing: 0.08em;
}

.feature-card__description {
    color: #666666;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Tres pilares (inicio): iconos, títulos rojos, texto centrado, CTA */
.features--pillars .features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
    align-items: start;
}

.features--pillars .feature-card {
    text-align: center;
    padding: 28px 22px 32px;
    background: #ffffff;
    border: none;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.features--pillars .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
}

.features--pillars .feature-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    min-height: 60px;
    color: var(--accent-red);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.features--pillars .feature-card:hover .feature-card__icon {
    transform: scale(1.2);
}

.features--pillars .feature-card__xsvg,
.features--pillars .feature-card__circlesvg,
.features--pillars .feature-card__plussvg {
    filter: none;
}

.features--pillars .feature-card__title {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.features--pillars .feature-card__description {
    text-align: center;
    text-justify: auto;
    margin: 0 auto;
    max-width: 22rem;
}

.features__readmore-wrap {
    text-align: center;
    margin: 44px 0 0;
}

.features__readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
    border: 2px solid var(--accent-red);
    border-radius: 999px;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.features__readmore:hover {
    background: rgba(198, 40, 40, 0.07);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.15);
}

.system-showcase {
    padding: 60px 0 72px;
    background: linear-gradient(180deg, #e8edf3 0%, #f7f9fc 42%, #ffffff 100%);
}

.system-showcase--overlap {
    position: relative;
    z-index: 3;
    margin-top: clamp(-175px, -14vw, -92px);
    padding: 0 0 clamp(32px, 4vw, 52px);
    /* Mismo blanco que .features (#fff) desde mitad inferior; sin gris para no descuadrar */
    background: linear-gradient(180deg, transparent 0%, transparent 38%, #ffffff 52%, #ffffff 100%);
}

.system-showcase--overlap .system-carousel__dot {
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.system-showcase--overlap .system-carousel__dot:hover {
    border-color: #ffffff;
}

.system-showcase--overlap .system-carousel__dot.is-active {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.system-carousel {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 52px 0 56px;
}

.system-carousel__viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(12, 24, 40, 0.18);
}

.system-carousel__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.system-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.system-showcase__card {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #0f3b5a;
    border: 1px solid rgba(35, 108, 153, 0.25);
}

.system-showcase .system-carousel__slide img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: min(72vh, 620px);
    object-fit: contain;
    display: block;
    background: #ffffff;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.system-showcase .system-carousel__slide img:hover {
    transform: scale(1.02);
}

.system-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(11, 53, 80, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.system-carousel__arrow:hover {
    background: rgba(11, 53, 80, 0.72);
    transform: translateY(-50%) scale(1.04);
}

.system-carousel__arrow--prev {
    left: 0;
}

.system-carousel__arrow--next {
    right: 36px;
}

.system-carousel__dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.system-carousel__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid rgba(11, 53, 80, 0.45);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.system-carousel__dot:hover {
    border-color: #0b3550;
    transform: scale(1.15);
}

.system-carousel__dot.is-active {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

@media (prefers-reduced-motion: reduce) {
    .system-carousel__track {
        transition: none;
    }
}

/* Modal de previsualización de imágenes del sistema */
.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.image-modal--open {
    display: flex;
}

.image-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.image-modal__content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.image-modal__img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.image-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(12, 12, 12, 0.75);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.image-modal__close:hover {
    background: rgba(12, 12, 12, 0.95);
}

.characteristics {
    --characteristics-heading-red: #9a2a2a;
    padding: 60px 0 80px;
    background: #ffffff;
}

.characteristics__list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 24px 0;
}

.characteristics-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(41px, 5vw, 61px) 0;
    border: none;
}

.characteristics-row__media {
    order: 1;
}

.characteristics-row__body {
    order: 2;
}

.characteristics-row--flip .characteristics-row__media {
    order: 2;
}

.characteristics-row--flip .characteristics-row__body {
    order: 1;
}

.characteristics-row__img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.characteristics-row__title {
    margin: 0 0 14px;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    color: #2f2e2e;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.characteristics-row__text {
    margin: 0;
    color: #555555;
    line-height: 1.75;
    text-align: justify;
}

@media (max-width: 900px) {
    .characteristics__list {
        padding: 0 16px;
    }

    .characteristics-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 37px 0;
    }

    .characteristics-row__media,
    .characteristics-row--flip .characteristics-row__media {
        order: 1;
    }

    .characteristics-row__body,
    .characteristics-row--flip .characteristics-row__body {
        order: 2;
    }

    .characteristics-row__img {
        max-width: min(280px, 100%);
    }
}

.testimonials {
    position: relative;
    padding: 0;
    text-align: center;
    background-color: #9e1b20;
    overflow: hidden;
}

.testimonials__wave {
    display: block;
    line-height: 0;
    margin-top: -1px;
}

.testimonials__wave-svg {
    display: block;
    width: 100%;
    height: clamp(44px, 8vw, 72px);
}

.testimonials__bg {
    position: absolute;
    inset: clamp(44px, 8vw, 72px) -5% 0 -5%;
    pointer-events: none;
    overflow: hidden;
}

.testimonials__figures {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 100%;
}

.testimonials__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(40px, 5.5vw, 64px) 24px clamp(40px, 5.5vw, 64px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(280px, 38vh, 440px);
}

.testimonials__viewport {
    position: relative;
    width: 100%;
    min-height: clamp(240px, 34vw, 340px);
}

.testimonials__slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    opacity: 0;
    transition: opacity 0.65s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.testimonials__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.testimonials__label {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #ffffff;
}

.testimonials__rule {
    display: block;
    width: 42px;
    height: 2px;
    margin: 16px auto 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1px;
}

.testimonials__quote {
    margin: 24px 0 0;
    max-width: min(42ch, 92%);
    font-size: clamp(1.65rem, 4.6vw, 2.55rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.testimonials__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: clamp(32px, 5vw, 48px);
    flex-shrink: 0;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.testimonials__dot:hover,
.testimonials__dot:focus-visible {
    transform: scale(1.15);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.testimonials__dot.is-active {
    background: #ffffff;
}
.clients {
    padding: 20px 0 30px;
    text-align: center;
    background: #ffffff;
}

.features .section__title,
.clients .section__title {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-700);
    margin-bottom: 44px;
    line-height: 1.25;
}

.characteristics .section__title {
    font-size: clamp(2.55rem, 4.8vw, 3.1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--characteristics-heading-red);
    margin-bottom: 44px;
    line-height: 1.2;
    text-align: center;
}

.clients-logos-viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 10px 0;
}
.clients-logos {
    --clients-segment-width: 50%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    animation: scroll-left 80s linear infinite;
    transform-origin: left center;
    animation-timing-function: linear;
}
.clients-logos.is-paused {
    animation-play-state: paused;
}

/* Cada segmento mismo ancho para que -50% coincida con un bloque (evita salto al reiniciar) */
.clients-logos__segment {
    display: flex;
    gap: 80px;
    padding-right: 80px; /* Este espacio asegura que el siguiente bloque empiece a la distancia correcta */
    flex-shrink: 0;
    width: max-content;
    box-sizing: border-box;
}

.clients-logos img {
    height: 190px;
    margin: 0; /* Eliminamos el margen para que no interfiera con el gap */
    flex-shrink: 0;
    filter: none;
    opacity: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.clients-logos img:hover {
    transform: scale(1.05);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--clients-segment-width)));
    }
}
.cta {
    position: relative;
    padding: 80px 24px 96px;
    text-align: center;
    margin: 0 auto;
    background-color: #1a4d73;
    background-image:
        linear-gradient(
            135deg,
            rgba(35, 108, 153, 0.78) 0%,
            rgba(11, 53, 80, 0.82) 45%,
            rgba(26, 77, 115, 0.88) 100%
        ),
        url('../images/Pie-contacto.avif');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
}

/* Sin hueco entre CTA y pie (solo en páginas que cargan home.css y terminan en .cta) */
main.main:has(> section.cta:last-child) + footer.footer {
    margin-top: 0;
}

.cta__title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 1px 18px rgba(12, 12, 12, 0.35);
}

.cta__button {
    display: inline-block;
    background-color: var(--accent-red);
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.12em;
}

.cta__button:hover {
    background-color: #a82222;
    transform: translateY(-2px);
}

.cta__contact {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__contact p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    text-shadow: 0 1px 12px rgba(12, 12, 12, 0.4);
}

.cta__contact strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta {
        background-attachment: scroll, scroll;
    }
}
@media (max-width: 900px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

    .system-carousel {
        padding: 0 46px 0 46px;
    }

    .system-carousel__arrow--next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 16px clamp(120px, 22vw, 200px);
        text-align: center;
    }

    .system-showcase--overlap {
        margin-top: clamp(-120px, -14vw, -56px);
    }

    .features--below-showcase {
        padding-top: clamp(52px, 9vw, 96px);
    }

    .system-showcase--overlap .system-carousel__dot {
        border-color: rgba(11, 53, 80, 0.45);
        box-shadow: none;
    }

    .system-showcase--overlap .system-carousel__dot:hover {
        border-color: #0b3550;
    }

    .hero__video {
        display: none;
    }

    .hero__content {
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .features--pillars .features__grid {
        grid-template-columns: 1fr;
    }

    .features__readmore-wrap {
        margin-top: 32px;
    }

    .system-carousel {
        padding: 0 0 48px;
    }

    .system-carousel__arrow {
        width: 40px;
        height: 40px;
    }

    .system-carousel__arrow--prev {
        left: 4px;
    }

    .system-carousel__arrow--next {
        right: 4px;
    }

    .system-carousel__dots {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 18px;
        gap: 12px;
    }

    .system-showcase .system-carousel__slide img {
        min-height: 200px;
        max-height: 55vh;
    }

    .testimonials__stack {
        min-height: clamp(260px, 42vh, 380px);
    }

    .testimonials__viewport {
        min-height: clamp(200px, 36vw, 260px);
    }

    .clients-logos img {
        height: 46px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 14px clamp(100px, 26vw, 160px);
    }

    .system-showcase--overlap {
        margin-top: -40px;
    }

    .features--below-showcase {
        padding-top: 44px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__button,
    .cta__button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .hero__button {
        width: 100%;
        justify-content: center;
    }

    .testimonials__inner {
        padding: 36px 16px 40px;
    }

    .testimonials__stack {
        min-height: 240px;
    }

    .testimonials__viewport {
        min-height: 180px;
    }

    .testimonials__quote {
        font-size: clamp(1.35rem, 5.2vw, 1.65rem);
    }

    .testimonials__label {
        font-size: 0.9rem;
    }

    .clients-logos {
        animation-duration: 40s;
    }

    .clients-logos__segment {
        gap: 40px;
        padding-right: 40px;
    }
}
