/* ── What happens — white section, Daewoo-style gradient cards ── */
.new-what {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.new-what__bg {
    display: none;
}

.new-what__head-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.new-what__copy {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    padding-inline: clamp(0.25rem, 2vw, 0.5rem);
    box-sizing: border-box;
}

.new-what__copy .heading9 {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.new-what__copy .heading9 h5 {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.new-what__title {
    color: var(--ztc-text-text-2);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.new-what__intro {
    margin: 0 auto;
    color: #4a5278;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.75;
    font-weight: 400;
    max-width: 34rem;
}

/* Marquee */
.new-what__marquee-stage {
    position: relative;
    z-index: 1;
    width: 100%;
}

.new-what__marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.new-what__marquee-track {
    display: flex;
    align-items: stretch;
    width: fit-content;
    gap: 20px;
}

.new-what__marquee-track--animate {
    animation: newWhatMarqueeScroll 40s linear infinite;
}

.new-what__marquee-track--animate.is-paused,
.new-what__marquee:hover .new-what__marquee-track--animate {
    animation-play-state: paused;
}

@keyframes newWhatMarqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Feature cards — LEAD brand gradients */
.new-what__card {
    flex: 0 0 400px;
    min-width: 400px;
    align-self: stretch;
    min-height: 220px;
    padding: 36px 34px 32px;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: border-color 0.6s ease;
}

.new-what__card.default-card {
    background: linear-gradient(135deg, #e8eef8 0%, #dce6f5 50%, #d0dff0 100%);
    border: 1px solid rgba(45, 55, 100, 0.15);
}

.new-what__card.primary-card {
    background: linear-gradient(135deg, #2d3764 0%, #3a4a78 55%, #455579 100%);
    border: none;
}

.new-what__card.secondary-card {
    background: linear-gradient(135deg, #dce2f0 0%, #c8d2e8 50%, #b8c4de 100%);
    border: 1px solid rgba(45, 55, 100, 0.2);
}

.new-what__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #192666 0%, #2d3764 40%, #4a5d9e 70%, #6b8fd4 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.new-what__card.active {
    border: none !important;
}

.new-what__card.active::before {
    opacity: 1;
}

.new-what__card-num {
    position: absolute;
    top: 0.02em;
    right: 0.12em;
    z-index: 1;
    font-size: clamp(4.25rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(
        165deg,
        rgba(25, 38, 102, 0.2) 0%,
        rgba(45, 55, 100, 0.09) 45%,
        rgba(25, 38, 102, 0.03) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 1px rgba(25, 38, 102, 0.12);
    paint-order: stroke fill;
}

/* .new-what__card.primary-card .new-what__card-num,
.new-what__card.active .new-what__card-num {
    background: linear-gradient(
        165deg,
        rgba(12, 18, 48, 0.45) 0%,
        rgba(25, 38, 102, 0.22) 50%,
        rgba(12, 18, 48, 0.08) 100%
    );
    -webkit-text-stroke: 1px rgba(12, 18, 48, 0.28);
} */

.new-what__card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 88%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    min-height: 0;
}

.new-what__card-title {
    margin: 0 0 6px;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 700;
    line-height: 1.3;
}

.new-what__card.primary-card .new-what__card-title {
    color: #fff;
}

.new-what__card.default-card .new-what__card-title,
.new-what__card.secondary-card .new-what__card-title {
    color: var(--ztc-text-text-2);
}

.new-what__card.active .new-what__card-title,
.new-what__card.active .new-what__card-text {
    color: #fff !important;
}

.new-what__card-text {
    margin: 0;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.new-what__card.primary-card .new-what__card-text {
    color: rgba(255, 255, 255, 0.92);
}

.new-what__card.default-card .new-what__card-text,
.new-what__card.secondary-card .new-what__card-text {
    color: #4a5278;
}

.new-what__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
    color: #9ca3af;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.new-what__scroll-hint i {
    font-size: 0.7rem;
    opacity: 0.85;
}

@media (max-width: 991.98px) {
    .new-what__head-wrap {
        margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
    }

    .new-what__intro {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .new-what__copy {
        padding-inline: 0.15rem;
    }

    /* Let the headline wrap naturally on very narrow screens */
    .new-what__title-break {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-what__marquee-track--animate {
        animation-duration: 28s;
    }

    .new-what__card {
        flex: 0 0 280px;
        min-width: 280px;
        min-height: 200px;
        padding: 30px 26px 28px;
    }

    .new-what__card-num {
        font-size: 4rem;
        top: 0.04em;
        right: 0.08em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .new-what__marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .new-what__marquee-track {
        padding-bottom: 0.5rem;
    }

    .new-what__marquee-track--animate {
        animation: none;
    }

    .new-what__scroll-hint {
        display: none;
    }
}
