 /* Marquee wrapper — pill container matching the design */
.hero-metrics-bar-container .marquee-wrapper {
    overflow: hidden;
    position: relative;
    background: rgba(220, 220, 240, 0.18);
    border: 1.5px solid #211F541A;
    border-radius: 20px;
    padding: 42px 0;
    position: relative;
    box-shadow: 3px 3px 16px 0px #4d4c4c0f;
}

/* The moving track — duplicate content makes seamless loop */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Each logo cell */
.company-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 44px;
    flex-shrink: 0;
}

.company-img img {
    height: 26px;
    width: auto;
    object-fit: contain;
    opacity: 0.45;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.company-img img:hover {
    opacity: 0.85;
    cursor: pointer;
    filter: grayscale(0.2);
}

/* Fade edges */
.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #E2E0FF, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #E2E0FF, transparent);
}

/* Card Container */
#why-7sync #cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    #why-7sync #cards-container {
        flex-direction: row;
        height: 350px;
    }
}

/* Card Base */
#why-7sync .card {
    border: 1.5px solid #B5AFFF;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    color: #211F54;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

@media (min-width: 1024px) {
    #why-7sync .card {
        flex: 1;
        justify-content: center;
    }

    #why-7sync .card:hover,
    #why-7sync #cards-container:not(:hover) .card:first-child {
        flex: 2.5;
        background-color: #4A3AFF;
        color: white;
        border-color: #4A3AFF;
        justify-content: flex-start;
    }
}

@media (max-width: 1023px) {
    #why-7sync .card {
        background-color: #4A3AFF;
        color: white;
        border-color: #4A3AFF;
    }
}

/* Card Icon */
#why-7sync .card .icon {
    width: 64px;
    height: 64px;
    background-color: #211F54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {

    #why-7sync .card:hover .icon,
    #why-7sync #cards-container:not(:hover) .card:first-child .icon {
        background-color: white;
        color: #4A3AFF;
    }
}

@media (max-width: 1023px) {
    #why-7sync .card .icon {
        background-color: white;
        color: #4A3AFF;
    }
}

/* Card Title */
#why-7sync .card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    #why-7sync .card h3 {
        font-size: 1.5rem;
    }

    #why-7sync .card:hover h3,
    #why-7sync #cards-container:not(:hover) .card:first-child h3 {
        font-size: 1.5rem;
    }
}

/* Card Paragraph */
#why-7sync .card p {
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    #why-7sync .card p {
        opacity: 0;
        max-height: 0;
        visibility: hidden;
        margin-top: -10px;
        transform: translateY(10px);
    }

    #why-7sync .card:hover p,
    #why-7sync #cards-container:not(:hover) .card:first-child p {
        opacity: 1;
        max-height: 200px;
        visibility: visible;
        margin-top: 0;
        transform: translateY(0);
    }
}

@media (max-width: 1023px) {
    #why-7sync .card p {
        opacity: 1;
        max-height: 500px;
        visibility: visible;
    }
}

/* Card Arrow */
#why-7sync .card .arrow {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border-radius: 50%;
    color: #211F54;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    flex-shrink: 0;
    border: 1px solid rgba(33, 31, 84, 0.2);
}

@media (min-width: 1024px) {

    #why-7sync .card:hover .arrow,
    #why-7sync #cards-container:not(:hover) .card:first-child .arrow {
        background-color: white;
        color: #4A3AFF;
        border-color: white;
    }
}

@media (max-width: 1023px) {
    #why-7sync .card .arrow {
        background-color: white;
        color: #4A3AFF;
        border-color: white;
    }
}

/* launching your vision */
#launching-vision-content .launching-vision-content-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.launching-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-transform: capitalize;
    border: 1px solid #B5AFFF;
    color: var(--white);
    border-radius: 20px;
    background: #211F54;
    z-index: 1;
    padding: 20px;
}

.launching-card .title {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    line-height: 1.5;
    gap: 10px;
}

.launching-card .content {
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
}

.launching-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.launching-card .icon:hover {
    background: var(--white);
    color: var(--primary-900);
}