/* ============================================
   PREMIUM ABOUT SECTION (BENTO GRID)
   ============================================ */

.section-premium-about {
    padding: 120px 0 60px 0;
    position: relative;
    background: #f8fafc;
    /* Subtle contrast from white hero */
    overflow: hidden;
}

/* Background blob for depth */
.about-ambient-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Text Left | Grid Right */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE: Typography */
.about-content-wrapper {
    max-width: 500px;
}

.mini-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    display: block;
}

.premium-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.highlight-blue {
    color: #2563eb;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Feature Checkmarks */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #334155;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Magnetic Link Button */
.btn-magnetic-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    font-size: 1.125rem;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 4px;
}

.btn-magnetic-link:hover {
    color: #2563eb;
    border-color: #2563eb;
    gap: 15px;
    /* Arrow moves away */
}

/* RIGHT SIDE: Bento Grid Stats */
.bento-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.01),
        0 10px 15px -3px rgba(0, 0, 0, 0.01),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card-glass:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 10px 10px -5px rgba(0, 0, 0, 0.01),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.9);
}

/* Asymmetric Grid Logic */
.card-tall {
    grid-row: span 2;
}

/* Stat Typography */
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label-lg {
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .feature-list {
        align-items: center;
    }

    .premium-h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .bento-stats-grid {
        grid-template-columns: 1fr;
        /* Stack stats on small phones */
        gap: 16px;
    }

    .stat-card-glass {
        padding: 24px;
        align-items: center;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Fix for blank sections: ensure fade-up resolves */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}