/* =========================================
   HERO SECTION - FINAL CLEAN LUXURY
========================================= */

.velo-hero {
    position: relative;
    min-height: clamp(600px, 75vh, 750px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: #07101f;
    padding: 200px 24px 300px;
    isolation: isolate;
    background: #f8fcff;
}

/* Full background image */
.velo-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;

    display: block;
    pointer-events: none;
}

/* Desktop/mobile image switching */
.velo-hero__image--desktop {
    display: block;
}

.velo-hero__image--mobile {
    display: none;
}

/* No overlay */
.velo-hero__shade {
    display: none;
}

/* HERO CONTENT */
.velo-hero__content,
.velo-hero .velo-shell.velo-hero__content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    margin-left: clamp(32px, 7vw, 135px);
    margin-right: auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   HERO LOGO KICKER
========================================= */

.velo-hero .velo-kicker--logo {
    position: relative;
    width: fit-content;
    margin: 0 0 26px;
    padding-bottom: 16px;
    line-height: 0;
}

.velo-hero .velo-kicker--logo img {
    display: block;
    width: clamp(175px, 14vw, 270px);
    height: auto;

    filter:
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 12px rgba(69, 217, 255, 0.16));
}

/* Clean blue eyebrow line under logo */
.velo-hero .velo-kicker--logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 56px;
    height: 3px;

    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #007cff 0%,
        #00b8ff 55%,
        rgba(255, 255, 255, 0) 100%
    );

    box-shadow:
        0 0 5px rgba(0, 140, 255, 0.35),
        0 0 10px rgba(69, 217, 255, 0.18);
}

/* No blue dot */
.velo-hero .velo-kicker--logo::before {
    display: none;
}

/* Old text kicker fallback */
.velo-hero .velo-kicker:not(.velo-kicker--logo),
.velo-hero__kicker:not(.velo-kicker--logo) {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    color: #2f8cff;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
}

/* =========================================
   HERO TITLE
========================================= */

.velo-hero h1,
.velo-hero__title {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;

    text-align: center;

    font-size: clamp(1.95rem, 2.35vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: 0.035em;
    text-wrap: balance;

    color: #07101f;
    font-weight: 700;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 18px rgba(255, 255, 255, 0.82),
        0 8px 22px rgba(7, 16, 31, 0.08);
}

/* =========================================
   HERO BODY TEXT
========================================= */

.velo-hero p {
    width: 100%;
    max-width: 560px;
    margin: 18px auto 0;

    text-align: center;

    color: #1c3148;
    font-size: clamp(0.92rem, 0.95vw, 1.05rem);
    line-height: 1.6;
    font-weight: 500;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 18px rgba(7, 16, 31, 0.06);
}

/* =========================================
   HERO BUTTON WRAPPER
========================================= */

.velo-hero__actions,
.velo-actions,
.velo-hero__buttons,
.velo-hero__cta,
.velo-hero__ctas,
.velo-hero .velo-button-group,
.velo-hero .velo-buttons,
.velo-hero .wp-block-buttons,
.velo-hero__content > div:last-child {
    width: 100%;
    max-width: 100%;
    margin: 26px auto 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

/* HERO BUTTONS */
.velo-hero .velo-button,
.velo-hero .velo-btn,
.velo-hero a[class*="button"],
.velo-hero a[class*="btn"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 42px;
    padding: 12px 20px;
    margin: 0;

    font-size: clamp(0.74rem, 0.78vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 0;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

/* Primary button */
.velo-hero .velo-button--primary {
    background: #00bfff;
    color: #07101f;
    border: 1px solid #00bfff;

    box-shadow:
        0 12px 24px rgba(7, 16, 31, 0.18),
        0 0 18px rgba(69, 217, 255, 0.1);
}

.velo-hero .velo-button--primary:hover {
    transform: translateY(-2px);
    background: #69d6fa;
    border-color: #69d6fa;
    color: #07101f;

    box-shadow:
        0 14px 30px rgba(7, 16, 31, 0.16),
        0 0 26px rgba(69, 217, 255, 0.36);
}

/* Ghost button */
.velo-hero .velo-button--ghost {
    background: rgba(255, 255, 255, 0.68);
    color: #07101f;
    border: 1px solid rgba(7, 16, 31, 0.14);
    backdrop-filter: blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 22px rgba(7, 16, 31, 0.06);
}

.velo-hero .velo-button--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 184, 245, 0.7);
    color: #07101f;

    box-shadow:
        0 0 24px rgba(69, 217, 255, 0.22),
        0 12px 28px rgba(7, 16, 31, 0.08);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .velo-hero {
        min-height: clamp(590px, 78vh, 740px);
        padding: 115px 24px 62px;
    }

    .velo-hero__image--desktop {
        display: none;
    }

    .velo-hero__image--mobile {
        display: block;
        object-position: center center;
        opacity: 1;
    }

    /* Slight tablet overlay */
    .velo-hero__shade {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            linear-gradient(
                90deg,
                rgba(248, 252, 255, 0.64) 0%,
                rgba(248, 252, 255, 0.46) 48%,
                rgba(248, 252, 255, 0.18) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.34) 0%,
                rgba(255, 255, 255, 0.16) 48%,
                rgba(255, 255, 255, 0.42) 100%
            );
    }

    .velo-hero__content,
    .velo-hero .velo-shell.velo-hero__content {
        max-width: 570px;
        margin-left: clamp(24px, 5vw, 70px);
        padding-inline: 0;
    }

    .velo-hero .velo-kicker--logo {
        margin-bottom: 24px;
    }

    .velo-hero .velo-kicker--logo img {
        width: clamp(170px, 23vw, 245px);
    }

    .velo-hero h1,
    .velo-hero__title {
        max-width: 560px;
        font-size: clamp(1.9rem, 4.2vw, 2.7rem);
    }

    .velo-hero p {
        max-width: 510px;
        font-size: clamp(0.9rem, 1.8vw, 1.02rem);
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .velo-hero {
        min-height: 82vh;
        align-items: center;
        padding: 112px 18px 46px;
    }

    .velo-hero__image--desktop {
        display: none;
    }

    .velo-hero__image--mobile {
        display: block;
        object-position: center bottom;
        opacity: 1;
    }

    /* Slight mobile overlay */
    .velo-hero__shade {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.58) 0%,
                rgba(248, 252, 255, 0.38) 42%,
                rgba(248, 252, 255, 0.72) 100%
            ),
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.58) 0%,
                rgba(255, 255, 255, 0.36) 52%,
                rgba(255, 255, 255, 0.18) 100%
            );
    }

    .velo-hero__content,
    .velo-hero .velo-shell.velo-hero__content {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .velo-hero .velo-kicker--logo {
        margin-bottom: 22px;
        padding-bottom: 14px;
    }

    .velo-hero .velo-kicker--logo img {
        width: clamp(160px, 54vw, 220px);
    }

    .velo-hero .velo-kicker--logo::after {
        width: 48px;
        height: 3px;
    }

    .velo-hero h1,
    .velo-hero__title {
        max-width: 100%;
        font-size: clamp(1.55rem, 6.8vw, 2.15rem);
        line-height: 1.1;
        letter-spacing: 0.025em;
    }

    .velo-hero p {
        max-width: 100%;
        margin-top: 15px;
        font-size: clamp(0.88rem, 3.7vw, 1rem);
        line-height: 1.55;
    }

    .velo-hero__actions,
    .velo-actions,
    .velo-hero__buttons,
    .velo-hero__cta,
    .velo-hero__ctas,
    .velo-hero .velo-button-group,
    .velo-hero .velo-buttons,
    .velo-hero .wp-block-buttons,
    .velo-hero__content > div:last-child {
        margin-top: 22px;
        gap: 10px;
    }

    .velo-hero .velo-button,
    .velo-hero .velo-btn,
    .velo-hero a[class*="button"],
    .velo-hero a[class*="btn"] {
        min-height: 40px;
        font-size: 0.74rem;
        padding: 10px 16px;
    }
}