:root {
    --glow-orange: rgba(255, 75, 37, 0.08);
    --glow-navy: rgba(36, 51, 102, 0.05);
}

.vvec-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    padding: 115px 0 125px;
    font-family: 'Poppins', sans-serif;
}

/* Background Constellation & Fades */
.vvec-bg-constellation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at 50% 52%, var(--glow-orange) 0%, transparent 35%),
        radial-gradient(circle at 35% 65%, var(--glow-navy) 0%, transparent 45%),
        radial-gradient(circle at 65% 35%, var(--glow-navy) 0%, transparent 45%);
    background-image: 
        radial-gradient(circle at 50% 52%, var(--glow-orange) 0%, transparent 35%),
        radial-gradient(circle at 35% 65%, var(--glow-navy) 0%, transparent 45%),
        radial-gradient(circle at 65% 35%, var(--glow-navy) 0%, transparent 45%),
        repeating-radial-gradient(transparent, transparent 60px, rgba(36,51,102,0.03) 61px, transparent 62px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.42;
}

.vvec-bg-fade {
    position: absolute;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
    pointer-events: none;
}
.vvec-bg-fade-top {
    top: 0;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
}
.vvec-bg-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.vvec-container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.vvec-header {
    text-align: center;
    margin-bottom: 64px;
}
.vvec-kicker {
    color: #ff4b25;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.vvec-headline {
    color: #243366;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.06em;
    letter-spacing: -2px;
    max-width: 1040px;
    margin: 0 auto 24px;
}
.vvec-intro {
    color: #53618a;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.62em;
    max-width: 920px;
    margin: 0 auto;
}

/* Grid */
.vvec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.vvec-card {
    background: #ffffff;
    border: 1px solid #dfe3ec;
    border-radius: 28px;
    padding: 34px 32px;
    min-height: 260px;
    box-shadow: 0 18px 42px rgba(20,32,70,0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.vvec-card-link-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
}
.vvec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(20,32,70,0.13);
    border-color: rgba(255,75,37,0.32);
}

.vvec-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.vvec-card-number {
    color: #ff4b25;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-top: 10px;
}
.vvec-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,75,37,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4b25;
    font-size: 25px;
}
.vvec-card-icon svg {
    width: 25px;
    height: 25px;
    fill: #ff4b25;
}

.vvec-card-title {
    color: #243366;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.12em;
    letter-spacing: -0.6px;
    margin: 0 0 14px 0;
}
.vvec-card-desc {
    color: #53618a;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.62em;
    margin: 0 0 24px 0;
    flex-grow: 1;
}
.vvec-card-label {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid #dfe3ec;
    border-radius: 999px;
    padding: 8px 13px;
    color: #53618a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.vvec-bottom-note {
    color: #53618a;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-top: 42px;
}

/* Animations */
.vvec-loaded .vvec-anim-up {
    animation: vvec-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.vvec-anim-up {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes vvec-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .vvec-anim-up { opacity: 1; transform: none; animation: none !important; }
}

/* Tablet */
@media (max-width: 1024px) {
    .vvec-section { padding: 95px 0 105px; }
    .vvec-headline { font-size: 52px; }
    .vvec-intro { font-size: 19px; }
    .vvec-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Mobile */
@media (max-width: 767px) {
    .vvec-section { padding: 76px 0 88px; }
    .vvec-kicker { font-size: 12px; }
    .vvec-headline { font-size: 38px; letter-spacing: -1.2px; margin-bottom: 20px; }
    .vvec-intro { font-size: 16px; margin-bottom: 48px; }
    
    .vvec-grid { grid-template-columns: 1fr; gap: 18px; }
    .vvec-card { padding: 28px 24px; min-height: auto; }
    .vvec-card-title { font-size: 25px; }
    .vvec-card-desc { font-size: 15.5px; }
}