/* ============================================ */
/* 🎬 ABOUT HERO - Video Right, Text Left        */
/* ============================================ */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #020617;
    overflow: hidden;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

/* Left: Text */
.about-hero-text {
    padding: 120px 60px 60px;
    max-width: 600px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(36, 132, 198, 0.15);
    border: 1px solid rgba(36, 132, 198, 0.3);
    border-radius: 50px;
    color: #6db3ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.hero-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-glow {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-paragraph {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-paragraph strong {
    color: #6db3ff;
    font-weight: 600;
}

.hero-numbers {
    display: flex;
    align-items: center;
    gap: 30px;
}

.num-item {
    display: flex;
    flex-direction: column;
}

.num-value {
    font-family: 'Sora', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.num-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

.num-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* Right: Video */
.about-hero-video-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #020617 0%,
        rgba(2, 6, 23, 0.4) 30%,
        rgba(2, 6, 23, 0.1) 100%
    );
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text {
        padding: 100px 30px 40px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-numbers {
        justify-content: center;
        gap: 20px;
    }
    
    .num-value {
        font-size: 1.8rem;
    }
    
    .about-hero-video-wrap {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 0;
    }
    
    .about-hero-text {
        position: relative;
        z-index: 1;
    }
    
    .video-gradient {
        background: rgba(2, 6, 23, 0.8);
    }
}

/* ============================================================ */
/* ✦ VISION & CORE VALUES — Premium Cinematic Section          */
/* ============================================================ */

.vv-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #020617;
    isolation: isolate;
}

/* Fullscreen parallax background */
.vv-bg {
    position: absolute;
    inset: 0;
    background-image: url('/apphouse/assets/images/about/vison.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    transform-origin: center;
    will-change: transform;
    z-index: 0;
}

/* Layered cinematic overlays */
.vv-overlay-deep {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #020617 0%,
        rgba(2, 6, 23, 0.65) 20%,
        rgba(1, 10, 40, 0.55) 50%,
        rgba(2, 6, 23, 0.72) 80%,
        #020617 100%
    );
    z-index: 1;
}

.vv-overlay-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 40%,
        rgba(24, 95, 165, 0.18) 0%,
        transparent 70%
    );
    z-index: 2;
}

/* Ambient glow orbs — purely cosmetic */
.vv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 2;
}
.vv-orb-1 {
    width: 520px; height: 520px;
    top: -100px; left: -140px;
    background: radial-gradient(circle, rgba(36, 132, 198, 0.22) 0%, transparent 70%);
    animation: vvOrbDrift 18s ease-in-out infinite alternate;
}
.vv-orb-2 {
    width: 400px; height: 400px;
    bottom: -60px; right: -80px;
    background: radial-gradient(circle, rgba(109, 179, 255, 0.15) 0%, transparent 70%);
    animation: vvOrbDrift 22s ease-in-out infinite alternate-reverse;
}
.vv-orb-3 {
    width: 240px; height: 240px;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(55, 138, 221, 0.12) 0%, transparent 70%);
    animation: vvOrb3Pulse 10s ease-in-out infinite;
}

@keyframes vvOrbDrift {
    from { transform: translate(0, 0); }
    to   { transform: translate(40px, 30px); }
}
@keyframes vvOrb3Pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1.15); }
}

/* Particle canvas overlay */
.vv-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Horizontal scan line — Apple aesthetic detail */
.vv-scanline {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(109,179,255,0.25) 30%, rgba(109,179,255,0.6) 50%, rgba(109,179,255,0.25) 70%, transparent 100%);
    top: 50%;
    z-index: 4;
    pointer-events: none;
    animation: vvScanPulse 6s ease-in-out infinite;
}
@keyframes vvScanPulse {
    0%, 100% { opacity: 0; transform: scaleX(0.4); }
    40%, 60% { opacity: 1; transform: scaleX(1); }
}

/* ── Main content wrapper ── */
.vv-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 130px 48px 120px;
}

/* ── Section eyebrow ── */
.vv-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: vvFadeUp 0.9s ease forwards 0.2s;
}

.vv-eyebrow-line {
    flex: 0 0 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,179,255,0.7));
}

.vv-eyebrow-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #6db3ff;
}

.vv-eyebrow-line-right {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(109,179,255,0.4), transparent);
}

/* ── Grid layout ── */
.vv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Base card ── */
.vv-card {
    position: relative;
    border-radius: 32px;
    padding: 52px 48px;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(8, 18, 55, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(36px);
}

.vv-card.vv-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.vv-card:hover {
    border-color: rgba(109, 179, 255, 0.3);
    box-shadow:
        0 0 0 1px rgba(109, 179, 255, 0.12),
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(24, 95, 165, 0.12) inset;
    transform: translateY(-6px) !important;
}

/* Card inner glow accent */
.vv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(109,179,255,0.5) 50%, transparent 90%);
    opacity: 0.6;
    transition: opacity 0.4s;
}
.vv-card:hover::before {
    opacity: 1;
}

/* Card top-right shimmer corner */
.vv-card::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(109,179,255,0.10) 0%, transparent 65%);
    border-radius: 50%;
    transition: opacity 0.5s;
    opacity: 0;
}
.vv-card:hover::after {
    opacity: 1;
}

/* Vision card — distinct left accent */
.vv-card-vision {
    border-left: 1px solid rgba(109, 179, 255, 0.25);
    animation-delay: 0.35s;
}

/* Values card */
.vv-card-values {
    animation-delay: 0.55s;
}

/* ── Badge ── */
.vv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(36, 132, 198, 0.14);
    border: 1px solid rgba(36, 132, 198, 0.32);
    border-radius: 50px;
    margin-bottom: 28px;
}

.vv-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6db3ff;
    animation: vvDotPulse 2.4s ease-in-out infinite;
}
@keyframes vvDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.vv-badge-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #6db3ff;
}

/* ── Card heading ── */
.vv-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
}

.vv-heading-accent {
    background: linear-gradient(135deg, #c8e3ff 0%, #6db3ff 60%, #3a8fd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Body text ── */
.vv-body {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 36px;
}

.vv-body strong {
    color: #aad0ff;
    font-weight: 600;
}

/* ── Vision icon block ── */
.vv-vision-icon-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.vv-vision-icon {
    width: 72px; height: 72px;
    flex-shrink: 0;
    border-radius: 22px;
    background: rgba(36, 132, 198, 0.13);
    border: 1px solid rgba(36, 132, 198, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.vv-card:hover .vv-vision-icon {
    background: rgba(36, 132, 198, 0.22);
    border-color: rgba(109, 179, 255, 0.45);
    box-shadow: 0 0 24px rgba(36, 132, 198, 0.2);
}

.vv-vision-icon i {
    font-size: 2rem;
    color: #6db3ff;
}

.vv-vision-caption {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(109, 179, 255, 0.65);
    line-height: 1.5;
}

/* ── Year milestone chip ── */
.vv-year-chip {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: rgba(109, 179, 255, 0.1);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 18px;
    position: relative;
    user-select: none;
}

/* ── Core values list ── */
.vv-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vv-value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 18px;
    transition: all 0.35s ease;
    cursor: default;
}

.vv-value-item:hover {
    background: rgba(36, 132, 198, 0.1);
    border-color: rgba(109, 179, 255, 0.22);
    transform: translateX(5px);
}

.vv-value-icon-wrap {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s, border-color 0.35s;
}

.vv-value-item:hover .vv-value-icon-wrap {
    background: rgba(36, 132, 198, 0.22);
    border-color: rgba(109, 179, 255, 0.4);
}

.vv-value-icon-wrap i {
    font-size: 1.25rem;
    color: #6db3ff;
}

.vv-value-body h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: 0.2px;
}

.vv-value-body p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    margin: 0;
}

/* ── Divider line ── */
.vv-values-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,179,255,0.18), transparent);
    margin: 4px 0;
}

/* ── Bottom metric bar (vision card) ── */
.vv-metric-row {
    display: flex;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
}

.vv-metric {
    flex: 1;
    text-align: center;
    padding: 0 12px;
}

.vv-metric + .vv-metric {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.vv-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.vv-metric-num span {
    background: linear-gradient(135deg, #c8e3ff, #6db3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vv-metric-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.38);
}

/* ── Shared fade-up animation ── */
@keyframes vvFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Bottom section divider ── */
.vv-bottom-divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(109,179,255,0.2) 40%, rgba(109,179,255,0.2) 60%, transparent 100%);
}

/* ============================================================ */
/* 📱 RESPONSIVE                                                */
/* ============================================================ */

@media (max-width: 1024px) {
    .vv-content {
        padding: 100px 36px 90px;
    }
    .vv-card {
        padding: 44px 36px;
    }
}

@media (max-width: 768px) {
    .vv-bg {
        background-attachment: scroll;
        background-image: url('/apphouse/assets/images/about/visionm.png');
    }

    .vv-content {
        padding: 80px 22px 70px;
    }

    .vv-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vv-card {
        padding: 36px 28px;
        border-radius: 24px;
    }

    .vv-heading {
        font-size: 1.75rem;
    }

    .vv-card-vision { animation-delay: 0.2s; }
    .vv-card-values { animation-delay: 0.35s; }
}

@media (max-width: 480px) {
    .vv-content {
        padding: 60px 16px 56px;
    }

    .vv-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .vv-heading {
        font-size: 1.5rem;
    }

    .vv-metric-num {
        font-size: 1.5rem;
    }

    .vv-year-chip {
        font-size: 2.4rem;
    }
}

/* ============================================================ */
/* 📊 STATS COUNTER SECTION                                      */
/* ============================================================ */

.stats-counter-section {
    position: relative;
    padding: 100px 24px 120px;
    background: #020617;
    overflow: hidden;
}

/* Subtle background glow */
.stats-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(36, 132, 198, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-counter-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.25);
    border-radius: 50px;
    color: #6db3ff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.stats-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.text-gradient {
    background: linear-gradient(135deg, #aad0ff 0%, #6db3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 40px 20px 32px;
    background: rgba(30, 47, 143, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover glow */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2484c6, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(36, 132, 198, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(36, 132, 198, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Icon */
.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(36, 132, 198, 0.12);
    border: 1px solid rgba(36, 132, 198, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.stat-card:hover .stat-icon-wrap {
    background: rgba(36, 132, 198, 0.22);
    border-color: rgba(36, 132, 198, 0.45);
    box-shadow: 0 0 24px rgba(36, 132, 198, 0.15);
    transform: scale(1.05);
}

.stat-icon-wrap i {
    font-size: 1.5rem;
    color: #6db3ff;
}

/* Number */
.stat-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-plus {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6db3ff, #aad0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-counter-section {
        padding: 80px 20px 90px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 32px 16px 26px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-plus {
        font-size: 1.4rem;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 24px 12px 20px;
        border-radius: 18px;
    }
    
    .stat-icon-wrap {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }
    
    .stat-icon-wrap i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}