/* Fonts and resets */
.vveh-wrapper {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.vveh-outer-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: -1;
    filter: blur(40px);
}

.vveh-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 760px;
    box-shadow: 0 34px 80px rgba(17,29,68,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vveh-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    background-color: #111;
    z-index: 1;
}

.vveh-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(17,29,68,0.26), rgba(17,29,68,0.30)), linear-gradient(90deg, rgba(17,29,68,0.24), rgba(17,29,68,0.10), rgba(17,29,68,0.34));
    z-index: 2;
}

/* Frame PRO */
.vveh-frame-border {
    position: absolute;
    top: 20px; right: 20px; bottom: 20px; left: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
    pointer-events: none;
}
.vveh-frame-border.vveh-segmented {
    border: none;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.5) 100%, transparent 100%), /* top left */
        linear-gradient(to right, rgba(255,255,255,0.5) 100%, transparent 100%), /* top right */
        linear-gradient(to bottom, rgba(255,255,255,0.5) 100%, transparent 100%), /* left top */
        linear-gradient(to bottom, rgba(255,255,255,0.5) 100%, transparent 100%); /* right top */
    background-size: 30px 1px, 30px 1px, 1px 30px, 1px 30px;
    background-position: top left, top right, top left, top right;
    background-repeat: no-repeat;
}

/* Avatar PRO */
.vveh-avatar-pro {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    border: 2px solid rgba(255,255,255,0.2);
}
.vveh-avatar-pro img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.vveh-content {
    position: relative;
    z-index: 3;
    max-width: 1040px;
    padding: 80px 52px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.vveh-kicker {
    color: #ff4b25;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.vveh-headline {
    color: #ffffff;
    font-size: 78px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.4px;
    max-width: 980px;
    margin: 0 auto 30px;
}

.vveh-divider {
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto 30px;
}

.vveh-desc {
    color: rgba(255,255,255,0.90);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 860px;
    margin: 0 auto 42px;
}

.vveh-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 42px;
}

.vveh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 17px 34px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vveh-btn-primary {
    background: #ff4b25;
    color: #243366;
    box-shadow: 0 16px 34px rgba(255,75,37,0.26);
}
.vveh-btn-primary:hover {
    background: #e94121;
    color: #ffffff;
    /* transform handled by elementor control if set */
}

.vveh-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.34);
    backdrop-filter: blur(8px);
}
.vveh-btn-secondary:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.55);
}

.vveh-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 700;
}

.vveh-category-dot {
    width: 5px; height: 5px;
    background: #ff4b25;
    border-radius: 50%;
    margin: 0 12px;
}

/* Animations */
.vveh-anim-item {
    opacity: 0;
}

@keyframes vveh-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes vveh-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes vveh-scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes vveh-bg-zoom {
    from { transform: scale(1.0); }
    to { transform: scale(1.06); }
}

.vveh-zoom-enabled {
    animation: vveh-bg-zoom 18s ease-in-out infinite alternate;
}

/* Tablet */
@media (max-width: 1024px) {
    .vveh-wrapper { padding: 0 24px; }
    .vveh-frame { min-height: 700px; }
    .vveh-content { max-width: 860px; padding: 70px 38px; }
    .vveh-headline { font-size: 58px; }
    .vveh-desc { font-size: 19px; }
    .vveh-kicker { font-size: 13px; }
    .vveh-categories { font-size: 14px; }
}

/* Mobile */
@media (max-width: 767px) {
    .vveh-wrapper { padding: 0 18px; }
    .vveh-frame { min-height: 720px; border-radius: 28px; }
    .vveh-overlay {
        background: linear-gradient(180deg, rgba(17,29,68,0.60), rgba(17,29,68,0.48)), linear-gradient(90deg, rgba(17,29,68,0.42), rgba(17,29,68,0.22));
    }
    .vveh-content { padding: 56px 24px; }
    .vveh-kicker { font-size: 12px; margin-bottom: 24px; }
    .vveh-headline { font-size: 42px; line-height: 1.08; letter-spacing: -1.3px; margin-bottom: 30px; }
    .vveh-desc { font-size: 16px; line-height: 1.58; margin-bottom: 42px; }
    .vveh-actions { flex-direction: column; width: 100%; gap: 12px; }
    .vveh-btn { width: 100%; max-width: 360px; padding: 16px 22px; font-size: 16px; min-height: 54px; margin: 0 auto; }
    
    .vveh-categories {
        gap: 8px; font-size: 13px;
    }
    .vveh-category-dot { display: none; }
    .vveh-category-item {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 999px;
        padding: 8px 11px;
    }
}

/* A11y */
@media (prefers-reduced-motion: reduce) {
    .vveh-anim-item { opacity: 1; transform: translateY(0); animation: none !important; }
    .vveh-zoom-enabled { animation: none !important; transform: scale(1.0) !important; }
}
