.marketing-kits-section {
    background: #f6f6f6;
    padding: 50px 24px 24px;
}

.marketing-kits-container {
    max-width: 1180px;
    margin: 0 auto;
}

.marketing-kits-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.marketing-kits-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #40ca88;
}

.marketing-kits-header h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000;
}

.marketing-kits-header p {
    max-width: 540px;
    margin: 18px auto 0;
    font-size: 17px;
    line-height: 1.6;
    color: #2c2c2c;
}

.marketing-kits-carousel-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 74px 42px;
    border-radius: 28px;
    /* background:
        radial-gradient(circle at 8% 16%, rgba(157, 246, 204, 0.55) 0, rgba(157, 246, 204, 0) 22%),
        radial-gradient(circle at 24% 80%, rgba(191, 250, 225, 0.35) 0, rgba(191, 250, 225, 0) 30%),
        radial-gradient(circle at 92% 25%, rgba(255,255,255,0.9) 0, rgba(255,255,255,0) 26%),
        linear-gradient(180deg, #eef6f3 0%, #f7f7f7 100%); */
        background-image: url("../images/background.png");
    background-size: cover;
    overflow: hidden;
}

.marketing-kits-carousel {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.marketing-kits-carousel.is-dragging {
    cursor: grabbing;
}

.marketing-kits-track {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
    will-change: transform;
    user-select: none;
}

.kit-card {
    position: relative;
    flex: 0 0 calc((100% - 54px) / 4);
    min-height: 310px;
    background: #fbfbfb;
    border-radius: 22px;
    padding: 22px 18px 20px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(220, 232, 228, 0.9);
}


.kit-year {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #46c987;
}

.kit-flag {
    width: 58px;
    height: 38px;
    object-fit: contain;
    display: block;
    margin: 40px auto 22px;
}

.kit-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #000;
}

.kit-card p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #94a1ba;
}

.kit-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 168px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #dff2e8;
    color: #42be80;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.kit-download-btn:hover {
    transform: translateY(-2px);
    background: #d5efdf;
}

.kit-download-icon {
    font-size: 17px;
    line-height: 1;
}

.kits-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #45cb84;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(69, 203, 132, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.kits-nav svg {
    width: 12px;
    height: 12px;
    display: block;
}

.kits-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.kits-nav-prev {
    left: 15px;
}

.kits-nav-next {
    right: 15px;
}

.kits-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.kits-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d9dde2;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kits-dot.active {
    width: 28px;
    background: #38c8be;
}

.marketing-kits-note {
    margin: 20px 0 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    color: #30364a;
}

@media (max-width: 1200px) {
    .marketing-kits-container {
        max-width: 1080px;
    }

    .marketing-kits-carousel-wrap {
        max-width: 1080px;
        padding: 50px 66px 40px;
    }

    .kits-nav-prev {
        left: 11px;
    }

    .kits-nav-next {
        right: 11px;
    }

    .kit-card {
        flex: 0 0 calc((100% - 36px) / 3);
    }
}

@media (max-width: 900px) {
    .marketing-kits-carousel-wrap {
        max-width: 760px;
        padding: 46px 54px 36px;
    }

    .kits-nav {
        width: 42px;
        height: 42px;
    }

    .kits-nav svg {
        width: 11px;
        height: 11px;
    }

    .kits-nav-prev {
        left: 6px;
    }

    .kits-nav-next {
        right: 6px;
    }

    .kit-card {
        flex: 0 0 calc((100% - 18px) / 2);
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .marketing-kits-section {
        padding: 50px 16px 88px;
    }

    .marketing-kits-header {
        margin-bottom: 32px;
    }

    .marketing-kits-header h2 {
        font-size: 34px;
    }

    .marketing-kits-header p {
        font-size: 16px;
    }

    .marketing-kits-carousel-wrap {
        max-width: 100%;
        padding: 42px 20px 30px;
        border-radius: 24px;
    }

    .kits-nav {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .kits-nav svg {
        width: 10px;
        height: 10px;
    }

    .kits-nav-prev {
        left: 4px;
    }

    .kits-nav-next {
        right: 4px;
    }

    .kit-card {
        flex: 0 0 100%;
        min-height: 290px;
        border-radius: 20px;
        padding: 20px 16px 18px;
    }

    .kit-flag {
        width: 54px;
        height: 34px;
        margin: 36px auto 18px;
    }

    .kit-card h3 {
        font-size: 20px;
    }

    .kit-card p {
        font-size: 13px;
    }

    .kit-download-btn {
        min-width: 156px;
        height: 42px;
        font-size: 13px;
    }

    .marketing-kits-note {
        font-size: 14px;
    }
}
