/* =========================================================
   YKT 3.2.0 — SADE ANA SAYFA ÜRÜN GRUPLARI
========================================================= */

html body .ykt-home-solutions {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(210, 221, 232, 0.78);
    border-bottom: 1px solid rgba(210, 221, 232, 0.78);
    padding: 98px 0 0;
    background: #ffffff;
}

html body .ykt-home-solutions__intro {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

html body .ykt-home-solutions__intro
.ykt-section-eyebrow {
    justify-content: center;
}

html body .ykt-home-solutions__intro h2 {
    max-width: 790px;
    margin: 18px 0 0;
    color: var(--ykt-navy-950, #071426);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 1.03;
}

html body .ykt-home-solutions__intro h2 span {
    display: block;
    color: var(--ykt-blue-600, #176db5);
}

html body .ykt-home-solutions__button {
    display: inline-flex;
    min-width: 290px;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 16px;
    padding: 18px 30px;
    margin-top: 38px;
    background:
        linear-gradient(
            135deg,
            var(--ykt-blue-700, #0f5c9e),
            var(--ykt-blue-500, #2588d8)
        );
    box-shadow:
        0 18px 38px rgba(20, 103, 171, 0.22);
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.012em;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

html body .ykt-home-solutions__button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 23px 46px rgba(20, 103, 171, 0.29);
}

html body .ykt-home-solutions__button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

html body .ykt-home-solutions__button:hover svg {
    transform: translateX(4px);
}

html body .ykt-solution-marquee {
    position: relative;
    margin-top: 78px;
    border-top: 1px solid rgba(214, 224, 234, 0.8);
    background: #f7f9fb;
}

html body .ykt-solution-marquee::before,
html body .ykt-solution-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(11vw, 150px);
    content: "";
    pointer-events: none;
}

html body .ykt-solution-marquee::before {
    left: 0;
    background:
        linear-gradient(
            90deg,
            #f7f9fb,
            rgba(247, 249, 251, 0)
        );
}

html body .ykt-solution-marquee::after {
    right: 0;
    background:
        linear-gradient(
            270deg,
            #f7f9fb,
            rgba(247, 249, 251, 0)
        );
}

html body .ykt-solution-marquee__viewport {
    overflow: hidden;
    padding: 20px 0;
}

html body .ykt-solution-marquee__track {
    display: flex;
    width: max-content;
    animation:
        ykt-solution-marquee
        var(--ykt-marquee-duration, 44s)
        linear
        infinite;
    will-change: transform;
}

html body .ykt-solution-marquee:hover
.ykt-solution-marquee__track,
html body .ykt-solution-marquee:focus-within
.ykt-solution-marquee__track {
    animation-play-state: paused;
}

html body .ykt-solution-marquee__group {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
    padding-right: 12px;
}

html body .ykt-solution-marquee__item {
    display: inline-flex;
    min-height: 58px;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(207, 219, 230, 0.9);
    border-radius: 999px;
    padding: 8px 20px 8px 9px;
    background: #ffffff;
    box-shadow:
        0 7px 20px rgba(16, 42, 70, 0.045);
    color: #29445f !important;
    font-size: 14px;
    font-weight: 760;
    white-space: nowrap;
    transition:
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

html body .ykt-solution-marquee__item:hover {
    border-color: rgba(34, 113, 177, 0.46);
    box-shadow:
        0 10px 25px rgba(20, 83, 139, 0.1);
    transform: translateY(-2px);
}

html body .ykt-solution-marquee__icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #eaf4fc,
            #f4f8fc
        );
    color: var(--ykt-blue-700, #0f5c9e);
}

html body .ykt-solution-marquee__icon svg,
html body .ykt-solution-marquee__icon
.ykt-category-panel__icon-image {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

html body .ykt-solution-marquee__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

@keyframes ykt-solution-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 767px) {
    html body .ykt-home-solutions {
        padding-top: 72px;
    }

    html body .ykt-home-solutions__intro {
        align-items: flex-start;
        text-align: left;
    }

    html body .ykt-home-solutions__intro
    .ykt-section-eyebrow {
        justify-content: flex-start;
    }

    html body .ykt-home-solutions__intro h2 {
        margin-top: 15px;
        font-size: clamp(36px, 12vw, 52px);
    }

    html body .ykt-home-solutions__button {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        margin-top: 30px;
    }

    html body .ykt-solution-marquee {
        margin-top: 54px;
    }

    html body .ykt-solution-marquee::before,
    html body .ykt-solution-marquee::after {
        width: 34px;
    }

    html body .ykt-solution-marquee__viewport {
        padding: 16px 0;
    }

    html body .ykt-solution-marquee__item {
        min-height: 54px;
        padding-right: 17px;
        font-size: 13px;
    }

    html body .ykt-solution-marquee__icon {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .ykt-solution-marquee__viewport {
        overflow-x: auto;
        padding-inline: 18px;
        scrollbar-width: thin;
    }

    html body .ykt-solution-marquee__track {
        animation: none !important;
    }

    html body .ykt-solution-marquee__group[aria-hidden="true"] {
        display: none;
    }

    html body .ykt-home-solutions__button,
    html body .ykt-home-solutions__button svg,
    html body .ykt-solution-marquee__item {
        transition: none !important;
    }
}
