.marquee-wrap {
    width: 100%;
    background: var(--Rose-Red);
    overflow: hidden;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    padding-right: 80px;
}

.steps-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.step-card {
	position: relative;
	background: var(--color-white);
	border-radius: 16px;
	padding: 32px 24px 28px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Hiệu ứng hover nhích lên */
.step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
	position: absolute;
	top: -14px;
	left: -14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--Rose-Red);
	color: var(--color-white);
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--color-black);
}

.step-desc {
	font-size: 14.5px;
	line-height: 1.6;
	color: #555;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
	.steps-wrap {
		grid-template-columns: 1fr;
	}
}


/* Animation chạy chữ */
@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .marquee-track span {
        font-size: 14px;
        padding-right: 50px;
    }
}
