/* ═══════════════════════════════════════════════════════
 * VL About Us — Modern About page (Stripe/Linear aesthetic)
 * ═══════════════════════════════════════════════════════ */

.vl-wrapper .vl-about-us {
    --vl-primary: #6C5CE7;
    --vl-primary-soft: rgba(108, 92, 231, 0.08);
    --vl-primary-hover: #5a4ad1;
    --vl-heading: #1a1a2e;
    --vl-text: #4a4a68;
    --vl-muted: #8a8aa3;
    --vl-card-bg: #ffffff;
    --vl-section-bg: #f8f9fb;
    --vl-stats-bg: #1a1a2e;
    --vl-border: rgba(26, 26, 46, 0.08);
    --vl-shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.04), 0 1px 3px rgba(26, 26, 46, 0.06);
    --vl-shadow-md: 0 4px 12px rgba(26, 26, 46, 0.05), 0 2px 6px rgba(26, 26, 46, 0.04);
    --vl-shadow-lg: 0 20px 40px rgba(26, 26, 46, 0.08), 0 8px 16px rgba(26, 26, 46, 0.04);
    --vl-shadow-xl: 0 30px 60px rgba(108, 92, 231, 0.18), 0 15px 30px rgba(26, 26, 46, 0.08);
    --vl-radius: 20px;
    --vl-radius-sm: 12px;
    --vl-radius-lg: 24px;
    --vl-ease: cubic-bezier(0.4, 0, 0.2, 1);

    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    color: var(--vl-text, #4a4a68) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, Helvetica, Arial, sans-serif !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
}

.vl-wrapper .vl-about-us *,
.vl-wrapper .vl-about-us *::before,
.vl-wrapper .vl-about-us *::after {
    box-sizing: border-box !important;
}

/* Fade-up animation */
@keyframes vlAuFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vl-wrapper .vl-about-us > section {
    animation: vlAuFadeUp 0.6s var(--vl-ease) both !important;
}
.vl-wrapper .vl-about-us > section:nth-child(2) { animation-delay: 0.05s !important; }
.vl-wrapper .vl-about-us > section:nth-child(3) { animation-delay: 0.1s !important; }
.vl-wrapper .vl-about-us > section:nth-child(4) { animation-delay: 0.15s !important; }
.vl-wrapper .vl-about-us > section:nth-child(5) { animation-delay: 0.2s !important; }
.vl-wrapper .vl-about-us > section:nth-child(6) { animation-delay: 0.25s !important; }

/* ══════════════════════════════════════
 * HERO
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__hero {
    padding: 80px 32px !important;
    background:
        radial-gradient(ellipse at top left, rgba(108, 92, 231, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(108, 92, 231, 0.05), transparent 50%),
        #ffffff !important;
    border-radius: var(--vl-radius-lg) !important;
    overflow: hidden !important;
    position: relative !important;
}

.vl-wrapper .vl-about-us__hero-inner {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr !important;
    gap: 64px !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.vl-wrapper .vl-about-us__hero-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.vl-wrapper .vl-about-us__eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    padding: 6px 14px !important;
    background: var(--vl-primary-soft) !important;
    color: var(--vl-primary) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    border-radius: 100px !important;
}

.vl-wrapper .vl-about-us__heading {
    margin: 0 !important;
    font-size: clamp(32px, 5vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    color: var(--vl-heading) !important;
}

.vl-wrapper .vl-about-us__subheading {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--vl-text) !important;
    max-width: 540px !important;
}

.vl-wrapper .vl-about-us__hero-image {
    position: relative !important;
}

.vl-wrapper .vl-about-us__hero-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5 !important;
    object-fit: cover !important;
    border-radius: var(--vl-radius) !important;
    box-shadow: var(--vl-shadow-xl) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
}

.vl-wrapper .vl-about-us__hero-image-bg {
    position: absolute !important;
    inset: 20px -20px -20px 20px !important;
    background: linear-gradient(135deg, var(--vl-primary), #a29bfe) !important;
    border-radius: var(--vl-radius) !important;
    z-index: 0 !important;
    opacity: 0.9 !important;
}

/* ══════════════════════════════════════
 * STATS
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__stats {
    padding: 64px 32px !important;
    background: var(--vl-stats-bg) !important;
    border-radius: var(--vl-radius-lg) !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
}

.vl-wrapper .vl-about-us__stats::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 20% 20%, rgba(108, 92, 231, 0.25), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.15), transparent 40%) !important;
    pointer-events: none !important;
}

.vl-wrapper .vl-about-us__stats-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.vl-wrapper .vl-about-us__stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px !important;
    transition: transform 0.3s var(--vl-ease) !important;
}

.vl-wrapper .vl-about-us__stat:hover {
    transform: translateY(-4px) !important;
}

.vl-wrapper .vl-about-us__stat-icon {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(108, 92, 231, 0.2) !important;
    color: #a29bfe !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
}

.vl-wrapper .vl-about-us__stat-icon svg {
    width: 28px !important;
    height: 28px !important;
}

.vl-wrapper .vl-about-us__stat-number {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 8px !important;
}

.vl-wrapper .vl-about-us__stat-label {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
}

/* ══════════════════════════════════════
 * MISSION
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__mission {
    padding: 80px 32px !important;
    background: var(--vl-card-bg) !important;
    border-radius: var(--vl-radius-lg) !important;
    border: 1px solid var(--vl-border) !important;
    box-shadow: var(--vl-shadow-md) !important;
}

.vl-wrapper .vl-about-us__mission-inner {
    max-width: 780px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.vl-wrapper .vl-about-us__section-heading {
    margin: 0 0 20px !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: var(--vl-heading) !important;
}

.vl-wrapper .vl-about-us__section-subheading {
    margin: 0 auto !important;
    font-size: 17px !important;
    color: var(--vl-text) !important;
    line-height: 1.7 !important;
    max-width: 640px !important;
}

.vl-wrapper .vl-about-us__mission-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: var(--vl-text) !important;
}

.vl-wrapper .vl-about-us__mission-text p {
    margin: 0 0 1.2em !important;
}

.vl-wrapper .vl-about-us__mission-text p:last-child {
    margin-bottom: 0 !important;
}

/* ══════════════════════════════════════
 * VALUES
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__values {
    padding: 80px 32px !important;
    background: var(--vl-section-bg) !important;
    border-radius: var(--vl-radius-lg) !important;
}

.vl-wrapper .vl-about-us__values-header {
    max-width: 780px !important;
    margin: 0 auto 48px !important;
    text-align: center !important;
}

.vl-wrapper .vl-about-us__values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.vl-wrapper .vl-about-us__value-card {
    background: var(--vl-card-bg) !important;
    border: 1px solid var(--vl-border) !important;
    border-radius: var(--vl-radius) !important;
    padding: 32px !important;
    box-shadow: var(--vl-shadow-sm) !important;
    transition: transform 0.35s var(--vl-ease), box-shadow 0.35s var(--vl-ease), border-color 0.35s var(--vl-ease) !important;
    position: relative !important;
    overflow: hidden !important;
}

.vl-wrapper .vl-about-us__value-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--vl-primary), #a29bfe) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.4s var(--vl-ease) !important;
}

.vl-wrapper .vl-about-us__value-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--vl-shadow-lg) !important;
    border-color: rgba(108, 92, 231, 0.2) !important;
}

.vl-wrapper .vl-about-us__value-card:hover::before {
    transform: scaleX(1) !important;
}

.vl-wrapper .vl-about-us__value-icon {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--vl-primary-soft) !important;
    color: var(--vl-primary) !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    transition: transform 0.3s var(--vl-ease) !important;
}

.vl-wrapper .vl-about-us__value-card:hover .vl-about-us__value-icon {
    transform: scale(1.08) rotate(-4deg) !important;
}

.vl-wrapper .vl-about-us__value-icon svg {
    width: 26px !important;
    height: 26px !important;
}

.vl-wrapper .vl-about-us__value-title {
    margin: 0 0 10px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--vl-heading) !important;
    letter-spacing: -0.01em !important;
}

.vl-wrapper .vl-about-us__value-desc {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: var(--vl-text) !important;
}

/* ══════════════════════════════════════
 * TEAM
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__team {
    padding: 80px 32px !important;
    background: var(--vl-card-bg) !important;
    border-radius: var(--vl-radius-lg) !important;
    border: 1px solid var(--vl-border) !important;
}

.vl-wrapper .vl-about-us__team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.vl-wrapper .vl-about-us__team-card {
    background: var(--vl-section-bg) !important;
    border-radius: var(--vl-radius) !important;
    padding: 28px 24px !important;
    text-align: center !important;
    border: 1px solid var(--vl-border) !important;
    transition: transform 0.35s var(--vl-ease), box-shadow 0.35s var(--vl-ease) !important;
}

.vl-wrapper .vl-about-us__team-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--vl-shadow-md) !important;
}

.vl-wrapper .vl-about-us__team-photo-wrap {
    width: 110px !important;
    height: 110px !important;
    margin: 0 auto 16px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    box-shadow: 0 0 0 4px var(--vl-card-bg), 0 0 0 6px rgba(108, 92, 231, 0.15) !important;
    background: var(--vl-primary-soft) !important;
}

.vl-wrapper .vl-about-us__team-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.vl-wrapper .vl-about-us__team-name {
    margin: 0 0 4px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--vl-heading) !important;
}

.vl-wrapper .vl-about-us__team-role {
    display: block !important;
    font-size: 13px !important;
    color: var(--vl-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.02em !important;
}

.vl-wrapper .vl-about-us__team-bio {
    margin: 0 0 16px !important;
    font-size: 14px !important;
    color: var(--vl-text) !important;
    line-height: 1.6 !important;
}

.vl-wrapper .vl-about-us__team-social {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
}

.vl-wrapper .vl-about-us__social-link {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--vl-card-bg) !important;
    color: var(--vl-muted) !important;
    border-radius: 10px !important;
    border: 1px solid var(--vl-border) !important;
    transition: all 0.25s var(--vl-ease) !important;
    text-decoration: none !important;
}

.vl-wrapper .vl-about-us__social-link:hover {
    background: var(--vl-primary) !important;
    color: #ffffff !important;
    border-color: var(--vl-primary) !important;
    transform: translateY(-2px) !important;
}

.vl-wrapper .vl-about-us__social-link svg {
    width: 16px !important;
    height: 16px !important;
}

/* ══════════════════════════════════════
 * CTA
 * ══════════════════════════════════════ */
.vl-wrapper .vl-about-us__cta {
    padding: 72px 32px !important;
    background: linear-gradient(135deg, var(--vl-primary) 0%, #8e7ff0 100%) !important;
    border-radius: var(--vl-radius-lg) !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
}

.vl-wrapper .vl-about-us__cta::before {
    content: "" !important;
    position: absolute !important;
    top: -50% !important;
    right: -20% !important;
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%) !important;
    pointer-events: none !important;
}

.vl-wrapper .vl-about-us__cta-inner {
    position: relative !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.vl-wrapper .vl-about-us__cta-heading {
    margin: 0 0 12px !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.vl-wrapper .vl-about-us__cta-subheading {
    margin: 0 0 32px !important;
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.6 !important;
}

.vl-wrapper .vl-about-us__cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 16px 32px !important;
    background: #ffffff !important;
    color: var(--vl-primary) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: transform 0.3s var(--vl-ease), box-shadow 0.3s var(--vl-ease), gap 0.3s var(--vl-ease) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.vl-wrapper .vl-about-us__cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2) !important;
    gap: 14px !important;
    color: var(--vl-primary-hover) !important;
}

.vl-wrapper .vl-about-us__cta-arrow {
    width: 18px !important;
    height: 18px !important;
}

/* ══════════════════════════════════════
 * RESPONSIVE
 * ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .vl-wrapper .vl-about-us__hero-inner {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    .vl-wrapper .vl-about-us__stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    .vl-wrapper .vl-about-us__values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .vl-wrapper .vl-about-us__team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .vl-wrapper .vl-about-us__hero,
    .vl-wrapper .vl-about-us__stats,
    .vl-wrapper .vl-about-us__mission,
    .vl-wrapper .vl-about-us__values,
    .vl-wrapper .vl-about-us__team,
    .vl-wrapper .vl-about-us__cta {
        padding: 56px 24px !important;
    }
}

@media (max-width: 768px) {
    .vl-wrapper .vl-about-us {
        gap: 24px !important;
    }
    .vl-wrapper .vl-about-us__hero,
    .vl-wrapper .vl-about-us__stats,
    .vl-wrapper .vl-about-us__mission,
    .vl-wrapper .vl-about-us__values,
    .vl-wrapper .vl-about-us__team,
    .vl-wrapper .vl-about-us__cta {
        padding: 48px 20px !important;
        border-radius: 20px !important;
    }
    .vl-wrapper .vl-about-us__values-grid {
        grid-template-columns: 1fr !important;
    }
    .vl-wrapper .vl-about-us__stat-number {
        font-size: 34px !important;
    }
    .vl-wrapper .vl-about-us__subheading,
    .vl-wrapper .vl-about-us__mission-text {
        font-size: 16px !important;
    }
    .vl-wrapper .vl-about-us__hero-image-bg {
        inset: 12px -12px -12px 12px !important;
    }
}

@media (max-width: 480px) {
    .vl-wrapper .vl-about-us__stats-grid {
        grid-template-columns: 1fr !important;
    }
    .vl-wrapper .vl-about-us__team-grid {
        grid-template-columns: 1fr !important;
    }
    .vl-wrapper .vl-about-us__hero,
    .vl-wrapper .vl-about-us__stats,
    .vl-wrapper .vl-about-us__mission,
    .vl-wrapper .vl-about-us__values,
    .vl-wrapper .vl-about-us__team,
    .vl-wrapper .vl-about-us__cta {
        padding: 40px 18px !important;
    }
    .vl-wrapper .vl-about-us__value-card {
        padding: 24px !important;
    }
    .vl-wrapper .vl-about-us__cta-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}
