/* =========================================
   SERVICES HERO
========================================= */

.velo-services-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: clamp(620px, 76vh, 780px);

    display: flex;
    align-items: center;

    padding: clamp(150px, 12vw, 190px) 24px clamp(80px, 7vw, 110px);

    color: #07101f;
    background: #f7fbff;
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.velo-services-hero__background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.velo-services-hero__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;

    pointer-events: none;
    user-select: none;
}

/* Soft white readability wash on the left */
.velo-services-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(248, 252, 255, 0.98) 0%,
            rgba(248, 252, 255, 0.92) 24%,
            rgba(248, 252, 255, 0.7) 42%,
            rgba(248, 252, 255, 0.18) 64%,
            rgba(248, 252, 255, 0) 82%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 255, 255, 0.02) 56%,
            rgba(247, 251, 255, 0.24) 100%
        );
}

/* =========================================
   INNER CONTAINER
========================================= */

.velo-services-hero__inner {
    position: relative;
    z-index: 2;

    width: min(100%, 1420px);
    margin: 0 auto;
}

.velo-services-hero__content {
    width: 100%;
    max-width: 620px;
}

/* =========================================
   KICKER
========================================= */

.velo-services-hero__kicker {
    position: relative;

    width: fit-content;
    margin: 0 0 30px;
    padding-bottom: 18px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.76rem, 0.82vw, 0.94rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: #008fe8;
}

.velo-services-hero__kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 86px;
    height: 3px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #007cff 0%,
        #00b8ff 68%,
        rgba(255, 255, 255, 0) 100%
    );

    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.36),
        0 0 18px rgba(69, 217, 255, 0.2);
}

/* =========================================
   TITLE
========================================= */

.velo-services-hero h1 {
    max-width: 620px;
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2.75rem, 4.7vw, 5.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0.025em;
    text-wrap: balance;

    color: #07101f;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 34px rgba(7, 16, 31, 0.08);
}

/* =========================================
   BODY TEXT
========================================= */

.velo-services-hero__text {
    max-width: 560px;
    margin: 26px 0 0;

    font-size: clamp(0.98rem, 1.04vw, 1.14rem);
    font-weight: 500;
    line-height: 1.75;

    color: rgba(28, 49, 72, 0.78);

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92);
}

/* =========================================
   ACTIONS
========================================= */

.velo-services-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 36px;
}

/* =========================================
   BUTTONS
========================================= */

.velo-services-hero__button {
    min-width: 205px;
    min-height: 58px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border-radius: 8px 8px 24px 8px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.velo-services-hero__button span {
    font-size: 1.35rem;
    line-height: 1;

    transition: transform 0.25s ease;
}

.velo-services-hero__button:hover {
    transform: translateY(-3px);
}

.velo-services-hero__button:hover span {
    transform: translateX(4px);
}

/* Primary button */
.velo-services-hero__button--primary {
    color: #ffffff;

    border: 1px solid rgba(0, 140, 255, 0.58);

    background: linear-gradient(
        135deg,
        #0074f8 0%,
        #00b8ff 100%
    );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 16px 36px rgba(0, 124, 255, 0.22),
        0 0 24px rgba(69, 217, 255, 0.18);
}

.velo-services-hero__button--primary:hover {
    color: #ffffff;
    border-color: #45d9ff;

    background: linear-gradient(
        135deg,
        #45d9ff 0%,
        #45d9ff 100%
    );

    box-shadow:
        0 20px 46px rgba(7, 16, 31, 0.2),
        0 0 30px rgba(69, 217, 255, 0.24);
}

/* Ghost button */
.velo-services-hero__button--ghost {
    color: #07101f;

    border: 1px solid rgba(7, 16, 31, 0.16);

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 12px 28px rgba(7, 16, 31, 0.08);
}

.velo-services-hero__button--ghost:hover {
    color: #07101f;
    border-color: rgba(0, 184, 255, 0.68);

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 0 28px rgba(69, 217, 255, 0.22),
        0 16px 34px rgba(7, 16, 31, 0.1);
}

.velo-services-hero__button--ghost {
    display: none;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1080px) {
    .velo-services-hero {
        min-height: 700px;
        padding: 140px 24px 80px;
    }

    .velo-services-hero__background img {
        object-position: 64% center;
    }

    .velo-services-hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(248, 252, 255, 0.98) 0%,
                rgba(248, 252, 255, 0.9) 38%,
                rgba(248, 252, 255, 0.56) 66%,
                rgba(248, 252, 255, 0.12) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.32) 0%,
                rgba(255, 255, 255, 0.08) 56%,
                rgba(247, 251, 255, 0.4) 100%
            );
    }

    .velo-services-hero__content {
        max-width: 560px;
    }

    .velo-services-hero h1 {
        max-width: 560px;
        font-size: clamp(2.6rem, 6vw, 4.6rem);
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .velo-services-hero {
        min-height: 760px;
        align-items: flex-start;

        padding: 124px 18px 64px;
    }

    .velo-services-hero__background img {
        object-position: 68% center;
    }

    .velo-services-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.98) 0%,
                rgba(248, 252, 255, 0.9) 48%,
                rgba(248, 252, 255, 0.56) 72%,
                rgba(248, 252, 255, 0.78) 100%
            );
    }

    .velo-services-hero__content {
        max-width: 100%;
    }

    .velo-services-hero__kicker {
        margin-bottom: 24px;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .velo-services-hero__kicker::after {
        width: 64px;
    }

    .velo-services-hero h1 {
        max-width: 100%;

        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.02;
    }

    .velo-services-hero__text {
        max-width: 100%;
        margin-top: 22px;

        font-size: 0.95rem;
        line-height: 1.65;
    }

    .velo-services-hero__actions {
        align-items: stretch;
        gap: 12px;

        margin-top: 30px;
    }

    .velo-services-hero__button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
    }
}