/* =========================================
   SECTION: WHY VELO
========================================= */

.velo-why {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 112px) 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(69, 217, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fcff 0%, #ffffff 48%, #f6fbff 100%);
    color: #07101f;
    isolation: isolate;
}

.velo-why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.95), transparent 34%),
        radial-gradient(circle at 82% 32%, rgba(220, 243, 255, 0.48), transparent 32%);
}

.velo-why::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(120deg, rgba(7, 16, 31, 0.035) 1px, transparent 1px),
        linear-gradient(40deg, rgba(69, 217, 255, 0.035) 1px, transparent 1px);
    background-size: 180px 180px, 240px 240px;
}

/* =========================================
   SHELL
========================================= */

.velo-why__shell {
    width: min(100%, 1680px);
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.velo-why__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(34px, 4vw, 54px);
    text-align: center;
}

.velo-why__kicker {
    margin: 0;
    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(1.45rem, 1.55vw, 2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #07101f;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 24px rgba(7, 16, 31, 0.1);
}

.velo-why__line {
    display: block;
    width: 78px;
    height: 4px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(0, 124, 255, 0),
        rgba(0, 140, 255, 1),
        rgba(69, 217, 255, 0.9),
        rgba(0, 124, 255, 0)
    );
    box-shadow:
        0 0 10px rgba(0, 140, 255, 0.42),
        0 0 22px rgba(69, 217, 255, 0.24);
}

/* =========================================
   GRID
========================================= */

.velo-why__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 28px);
}

/* =========================================
   CARD
========================================= */

.velo-why__card {
    position: relative;
    min-height: 360px;
    padding: clamp(36px, 3.2vw, 58px) clamp(22px, 2.2vw, 34px);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88),
            rgba(248, 252, 255, 0.78)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 46px rgba(7, 16, 31, 0.065),
        0 0 34px rgba(69, 217, 255, 0.06);

    backdrop-filter: blur(16px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.velo-why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-120%);
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 35%,
        rgba(69, 217, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.18) 65%,
        transparent 100%
    );
    transition:
        opacity 0.3s ease,
        transform 0.7s ease;
}

.velo-why__card::after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 0;
    pointer-events: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.velo-why__card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 217, 255, 0.38);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96),
            rgba(241, 250, 255, 0.86)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 24px 62px rgba(7, 16, 31, 0.1),
        0 0 42px rgba(69, 217, 255, 0.18);
}

.velo-why__card:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

/* =========================================
   CARD CONTENT
========================================= */

.velo-why__icon,
.velo-why__card-title,
.velo-why__card-text {
    position: relative;
    z-index: 1;
}

.velo-why__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 86px;
    height: 86px;
    margin-bottom: 36px;

    color: #4d9fff;
}

.velo-why__icon svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
        drop-shadow(0 0 8px rgba(69, 217, 255, 0.22))
        drop-shadow(0 0 16px rgba(69, 217, 255, 0.12));
}

.velo-why__card-title {
    max-width: 230px;
    margin: 0 auto 24px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(1.15rem, 1.15vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    color: #132237;
}

.velo-why__card-text {
    max-width: 270px;
    margin: 0 auto;

    font-size: clamp(0.98rem, 0.95vw, 1.12rem);
    font-weight: 500;
    line-height: 1.72;

    color: rgba(28, 49, 72, 0.78);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1280px) {
    .velo-why__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .velo-why__card {
        min-height: 330px;
    }
}

@media (max-width: 820px) {
    .velo-why {
        padding: 72px 18px;
    }

    .velo-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .velo-why__card {
        min-height: 300px;
        padding: 38px 24px;
    }

    .velo-why__icon {
        width: 72px;
        height: 72px;
        margin-bottom: 28px;
    }

    .velo-why__icon svg {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 560px) {
    .velo-why__grid {
        grid-template-columns: 1fr;
    }

    .velo-why__card {
        min-height: auto;
        padding: 42px 26px;
    }

    .velo-why__card-title {
        margin-bottom: 18px;
    }
}