/* =========================================
   SERVICES CTA — BACKGROUND IMAGE VERSION
========================================= */

.velo-services-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    width: 100%;
    min-height: clamp(680px, 58vw, 860px);
    padding: clamp(76px, 7vw, 120px) 24px;

    display: flex;
    align-items: center;

    color: #07101f;
    background: #f7fbff;
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.velo-services-cta__background {
    position: absolute;
    inset: 0;
    z-index: -3;

    overflow: hidden;
    pointer-events: none;
}

.velo-services-cta__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    filter:
        saturate(0.96)
        contrast(0.98)
        brightness(1.03);

    transform: scale(1.01);

    pointer-events: none;
    user-select: none;
}

/* Light readability wash without hiding the shop */
.velo-services-cta__shade {
    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(248, 252, 255, 0.88) 0%,
            rgba(248, 252, 255, 0.7) 32%,
            rgba(248, 252, 255, 0.3) 54%,
            rgba(248, 252, 255, 0.12) 76%,
            rgba(248, 252, 255, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.04) 52%,
            rgba(241, 248, 253, 0.28) 100%
        );
}

/* Subtle technical texture */
.velo-services-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.28),
            transparent 54%
        ),
        linear-gradient(
            35deg,
            rgba(69, 217, 255, 0.025) 1px,
            transparent 1px
        );

    background-size:
        auto,
        190px 190px;
}

/* =========================================
   SHELL
========================================= */

.velo-services-cta > .velo-shell {
    position: relative;
    z-index: 2;

    width: min(100%, 1560px);
    max-width: 1560px;

    margin: 0 auto;
    padding: 0;
}

/* =========================================
   MAIN PANEL
========================================= */

.velo-services-cta__panel {
    position: relative;

    width: 100%;
    min-height: clamp(590px, 47vw, 740px);

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(520px, 1.1fr);

    align-items: center;
    gap: clamp(62px, 7vw, 120px);

    padding:
        clamp(58px, 6vw, 94px)
        clamp(42px, 7vw, 110px);

    border: 1px solid rgba(210, 230, 245, 0.72);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.42),
            rgba(247, 252, 255, 0.16)
        );

    backdrop-filter: blur(2px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 30px 80px rgba(7, 16, 31, 0.07),
        0 0 46px rgba(69, 217, 255, 0.07);
}

/* Soft glow behind the left content */
.velo-services-cta__panel::before {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -42%;

    width: 720px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(69, 217, 255, 0.16) 0%,
            rgba(69, 217, 255, 0.05) 44%,
            transparent 72%
        );

    pointer-events: none;
}

/* =========================================
   LEFT CONTENT
========================================= */

.velo-services-cta__content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    padding: clamp(26px, 3vw, 44px);

    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.84),
            rgba(248, 252, 255, 0.56)
        );

    backdrop-filter: blur(13px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 18px 46px rgba(7, 16, 31, 0.07),
        0 0 30px rgba(69, 217, 255, 0.07);
}

.velo-services-cta__kicker {
    position: relative;

    width: fit-content;
    margin: 0 0 28px;
    padding-bottom: 18px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.74rem, 0.8vw, 0.92rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #087cf0;
}

.velo-services-cta__kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 138px;
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #087cf0 0%,
            #00b8ff 62%,
            rgba(255, 255, 255, 0) 100%
        );

    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.34),
        0 0 20px rgba(69, 217, 255, 0.2);
}

.velo-services-cta h2 {
    width: 100%;
    max-width: 600px;
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2.6rem, 3.75vw, 4.8rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: 0.015em;
    text-wrap: balance;

    color: #07101f;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.98),
        0 12px 34px rgba(7, 16, 31, 0.07);
}

.velo-services-cta__accent {
    display: block;

    width: 62px;
    height: 4px;
    margin-top: 28px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #006ff5,
            #00b8ff
        );

    box-shadow:
        0 0 10px rgba(0, 140, 255, 0.38),
        0 0 22px rgba(69, 217, 255, 0.2);
}

.velo-services-cta__text {
    width: 100%;
    max-width: 550px;
    margin: 24px 0 0;

    font-size: clamp(0.96rem, 1.02vw, 1.12rem);
    font-weight: 500;
    line-height: 1.7;

    color: rgba(28, 49, 72, 0.78);
}

/* =========================================
   RIGHT ANGLED CARD
========================================= */

.velo-services-cta__card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 700px;
    min-height: 550px;

    justify-self: end;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(40px, 4vw, 62px)
        clamp(36px, 4vw, 58px);

    border: 1px solid rgba(182, 216, 241, 0.82);

    clip-path: polygon(
        7% 0,
        100% 0,
        93% 100%,
        0 100%
    );

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(246, 251, 255, 0.7)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 28px 70px rgba(7, 16, 31, 0.08),
        0 0 36px rgba(69, 217, 255, 0.1);
}

.velo-services-cta__card::before {
    content: "";
    position: absolute;
    inset: 0;

    clip-path: inherit;

    border-left: 2px solid rgba(0, 140, 255, 0.32);

    pointer-events: none;
}

/* =========================================
   BENEFITS
========================================= */

.velo-services-cta__benefits {
    display: grid;
    gap: 0;
}

.velo-services-cta__benefit {
    position: relative;

    min-height: 132px;
    padding: 22px 10px;

    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 24px;

    border-bottom: 1px solid rgba(7, 16, 31, 0.1);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.velo-services-cta__benefit:last-child {
    border-bottom: 0;
}

.velo-services-cta__benefit:hover {
    transform: translateX(6px);

    background:
        linear-gradient(
            90deg,
            rgba(69, 217, 255, 0.08),
            transparent 74%
        );
}

.velo-services-cta__icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #086fe3;

    border: 1px solid rgba(69, 217, 255, 0.25);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.96),
            rgba(231, 244, 255, 0.7)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 26px rgba(69, 217, 255, 0.12);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.velo-services-cta__benefit:hover .velo-services-cta__icon {
    transform: scale(1.06);

    color: #005ee6;
    border-color: rgba(0, 140, 255, 0.56);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 34px rgba(69, 217, 255, 0.28);
}

.velo-services-cta__icon svg {
    width: 39px;
    height: 39px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.velo-services-cta__benefit-content h3 {
    margin: 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(1.02rem, 1.18vw, 1.36rem);
    font-weight: 700;
    line-height: 1.3;

    color: #071d46;
}

.velo-services-cta__benefit-content p {
    max-width: 370px;
    margin: 8px 0 0;

    font-size: clamp(0.86rem, 0.92vw, 0.98rem);
    font-weight: 500;
    line-height: 1.55;

    color: rgba(28, 49, 72, 0.7);
}

/* =========================================
   CTA BUTTON
========================================= */

.velo-services-cta__button {
    position: relative;

    width: min(100%, 450px);
    min-height: 68px;
    margin: 26px auto 0;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    box-sizing: border-box;

    clip-path: polygon(
        5% 0,
        95% 0,
        100% 50%,
        95% 100%,
        5% 100%,
        0 50%
    );

    border: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.82rem, 0.9vw, 0.98rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0756d8 0%,
            #007df4 52%,
            #02b8f5 100%
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.34),
        0 20px 44px rgba(0, 92, 225, 0.28),
        0 0 32px rgba(69, 217, 255, 0.26);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.velo-services-cta__button::before {
    content: "";
    position: absolute;
    inset: 4px;

    clip-path: inherit;

    border: 1px solid rgba(255, 255, 255, 0.22);

    pointer-events: none;
}

.velo-services-cta__button-arrow {
    flex: 0 0 auto;

    font-size: 1.55rem;
    line-height: 1;

    transition: transform 0.25s ease;
}

.velo-services-cta__button:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #00b8ff 0%,
            #45d9ff 100%
        );
        
        color: #07101f;

    box-shadow:
        0 24px 52px rgba(7, 16, 31, 0.24),
        0 0 38px rgba(69, 217, 255, 0.3);
}

.velo-services-cta__button:hover .velo-services-cta__button-arrow {
    transform: translateX(6px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .velo-services-cta {
        min-height: auto;
    }

    .velo-services-cta__background img {
        object-position: 36% center;
    }

    .velo-services-cta__shade {
        background:
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.84) 0%,
                rgba(248, 252, 255, 0.54) 46%,
                rgba(248, 252, 255, 0.72) 100%
            );
    }

    .velo-services-cta__panel {
        grid-template-columns: 1fr;
        gap: 58px;

        min-height: auto;

        padding:
            64px
            clamp(28px, 7vw, 70px);
    }

    .velo-services-cta__content {
        width: min(100%, 760px);
        max-width: 760px;

        margin: 0 auto;
        text-align: center;
    }

    .velo-services-cta__kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .velo-services-cta__kicker::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .velo-services-cta h2,
    .velo-services-cta__text {
        margin-left: auto;
        margin-right: auto;
    }

    .velo-services-cta__accent {
        margin-left: auto;
        margin-right: auto;
    }

    .velo-services-cta__card {
        width: min(100%, 760px);
        max-width: 760px;

        justify-self: center;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .velo-services-cta {
        padding: 68px 18px;
    }

    .velo-services-cta__background img {
        object-position: 31% bottom;
    }

    .velo-services-cta__shade {
        background:
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.94) 0%,
                rgba(248, 252, 255, 0.78) 48%,
                rgba(248, 252, 255, 0.62) 72%,
                rgba(248, 252, 255, 0.82) 100%
            );
    }

    .velo-services-cta__panel {
        gap: 44px;

        padding: 34px 12px;

        border-radius: 14px;
    }

    .velo-services-cta__content {
        padding: 28px 18px;
    }

    .velo-services-cta__kicker {
        margin-bottom: 24px;

        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }

    .velo-services-cta__kicker::after {
        width: 110px;
    }

    .velo-services-cta h2 {
        font-size: clamp(2rem, 9.5vw, 3.1rem);
        line-height: 1.06;
    }

    .velo-services-cta__text {
        margin-top: 20px;

        font-size: 0.94rem;
        line-height: 1.62;
    }

    .velo-services-cta__card {
        min-height: auto;

        padding: 28px 18px;

        clip-path: polygon(
            18px 0,
            100% 0,
            calc(100% - 18px) 100%,
            0 100%
        );
    }

    .velo-services-cta__benefit {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;

        min-height: 110px;
        padding: 20px 4px;
    }

    .velo-services-cta__icon {
        width: 58px;
        height: 58px;
    }

    .velo-services-cta__icon svg {
        width: 32px;
        height: 32px;
    }

    .velo-services-cta__benefit-content h3 {
        font-size: 1rem;
    }

    .velo-services-cta__benefit-content p {
        margin-top: 6px;
        font-size: 0.84rem;
    }

    .velo-services-cta__button {
        width: 100%;
        min-height: 62px;
        margin-top: 24px;
        padding: 0 24px;

        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
    .velo-services-cta__benefit,
    .velo-services-cta__icon,
    .velo-services-cta__button,
    .velo-services-cta__button-arrow {
        transition: none;
    }

    .velo-services-cta__benefit:hover,
    .velo-services-cta__button:hover {
        transform: none;
    }
}