/* ==========================================
   QUIENES SOMOS PAGE - VIDA & PROFESSIONAL
   Subtle animations, modern, energetic
   ========================================== */

/* === PAGE HEADER ENHANCED === */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

/* === PAGE HEADER WITH IMAGE - MODERN & PROFESSIONAL === */
.page-header-about {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 200px 0 120px;
    overflow: hidden;
}

.header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.header-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(164, 210, 51, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
    animation: breathe-overlay 8s ease-in-out infinite;
}

@keyframes breathe-overlay {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.page-header-about .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-header-about .page-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fade-in-up 0.8s ease-out;
}

.page-header-about .page-subtitle {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.page-header-about .breadcrumb {
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

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

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(164, 210, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.page-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF, #A4D233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

.breadcrumb i {
    font-size: 10px;
}

/* === ABOUT INTRO REDESIGNED - DYNAMIC & MODERN === */
.about-intro {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.08) 0%, transparent 70%);
    animation: float-orb 15s ease-in-out infinite;
}

.about-intro::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    animation: float-orb 20s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.about-content {
    padding: 0;
    max-width: 100%;
}

/* Title with animated underline */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    animation: expand-line 1s ease-out forwards;
}

@keyframes expand-line {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

/* Text blocks with stagger animation */
.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 30px;
    max-width: 100%;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

.about-text:nth-child(3) {
    animation-delay: 0.2s;
}

.about-text:nth-child(4) {
    animation-delay: 0.4s;
}

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

.about-text strong {
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0.3;
}

/* Values Grid - Separated Section */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(164, 210, 51, 0.1);
}

.value-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Gradient border on hover */
.value-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), #00D4FF);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.value-item:hover::before {
    opacity: 1;
}

/* Animated background gradient */
.value-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.value-item:hover::after {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(164, 210, 51, 0.2);
    border-color: transparent;
}

/* Stagger animation on scroll */
.value-item:nth-child(1) {
    animation: slide-in-bottom 0.8s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.value-item:nth-child(2) {
    animation: slide-in-bottom 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.value-item:nth-child(3) {
    animation: slide-in-bottom 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-item i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.value-item:hover i {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 5px 15px rgba(164, 210, 51, 0.4));
}

/* Icon pulse animation */
.value-item i::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.2) 0%, transparent 70%);
    opacity: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.value-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.value-item:hover h4 {
    color: var(--color-primary);
}

/* === CLICK INDICATORS - VISUAL CUE FOR INTERACTIVITY === */
.click-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px dashed rgba(164, 210, 51, 0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(164, 210, 51, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(164, 210, 51, 0); }
}

.value-item:hover .click-indicator {
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-color: var(--color-primary);
    border-style: solid;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(164, 210, 51, 0.3);
    animation: none;
}

.click-indicator i {
    font-size: 16px;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.value-item:hover .click-indicator i {
    transform: translateY(0);
    animation: none;
}

.click-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Shine effect on hover */
.click-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.value-item:hover .click-indicator::before {
    left: 100%;
}

/* Mobile optimization for indicators */
@media (max-width: 768px) {
    .click-indicator {
        padding: 10px 16px;
        font-size: 11px;
        gap: 6px;
    }
    
    .click-indicator i {
        font-size: 14px;
    }
    
    .click-text {
        font-size: 11px;
    }
}

/* === STATS SECTION SEPARATED & IMPACTFUL === */
.about-image {
    display: none; /* Ocultamos el antiguo */
}

/* Nueva sección de stats impactantes */
.stats-section-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-impact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section-impact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid-impact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card-impact {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(164, 210, 51, 0.2);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card-impact:hover::before {
    transform: scaleX(1);
}

.stat-card-impact:hover {
    transform: translateY(-15px);
    border-color: var(--color-primary);
    box-shadow: 0 25px 60px rgba(164, 210, 51, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon-impact {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--color-white);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(164, 210, 51, 0.3);
}

.stat-card-impact:hover .stat-icon-impact {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(164, 210, 51, 0.5);
}

.stat-number-impact {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label-impact {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-sublabel-impact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    font-weight: 400;
}

/* === MISSION VISION CARDS WITH HOVER EFFECTS === */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: var(--color-white);
    padding: 50px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(164, 210, 51, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(164, 210, 51, 0.1), rgba(138, 184, 40, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.mv-icon i {
    font-size: 36px;
    color: var(--color-primary);
    transition: color 0.5s ease;
}

.mv-card:hover .mv-icon i {
    color: var(--color-white);
}

.mv-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.mv-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* === TEAM SECTION WITH 3D CARDS === */
.team-section {
    padding: 120px 0;
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--color-bg), var(--color-light-gray));
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image img {
    transform: scale(1.08);
}

.member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.4;
    transition: all 0.5s ease;
}

.team-member:hover .member-placeholder {
    transform: scale(1.1);
    opacity: 0.6;
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member:hover .member-social {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.member-info {
    padding: 30px 25px;
    text-align: center;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

/* === SCROLL PROGRESS BAR (SORPRESA SUTIL) === */
.scroll-progress {
    position: fixed;
    top: 80px; /* Below navbar */
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 999;
    transition: width 0.1s ease-out;
}

/* === FLOATING WHATSAPP BUTTON (SORPRESA UTIL) === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

@keyframes float-whatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .value-item {
        padding: 40px 25px;
    }
    
    .value-item i {
        font-size: 42px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid-impact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number-impact {
        font-size: 56px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 100px;
        left: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .about-intro,
    .mission-vision,
    .team-section,
    .stats-section-impact {
        padding: 80px 0;
    }
    
    .about-values {
        margin-top: 50px;
        padding-top: 30px;
    }
    
    .value-item {
        padding: 35px 20px;
    }
    
    .value-item i {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .value-item h4 {
        font-size: 16px;
    }
    
    .stat-card-impact {
        padding: 40px 30px;
    }
    
    .stat-icon-impact {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .stat-number-impact {
        font-size: 48px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 32px !important;
    }
}

/* === EASTER EGG: CLICK ON LOGO ANIMATION === */
.member-image.clicked {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* === SUBTLE BACKGROUND PATTERN === */
.about-intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 210, 51, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mission-vision::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
