/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: aboutGridFadeIn 0.8s ease forwards 0.3s;
    opacity: 0;
}

@keyframes aboutGridFadeIn {
    to { opacity: 1; }
}

.about-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }
.about-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.about-main {
    grid-column: span 2;
    text-align: center;
    padding: 3rem 2rem;
}

.about-main .about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.about-main .about-title {
    font-size: 1.75rem;
}

.about-main .about-text {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.about-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.about-star {
    animation: starTwinkleAbout 2s ease-in-out infinite;
}

.about-star:nth-child(2) { animation-delay: 0.3s; }
.about-star:nth-child(3) { animation-delay: 0.6s; }
.about-star:nth-child(4) { animation-delay: 0.9s; }

@keyframes starTwinkleAbout {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.about-bolt {
    animation: boltSpin 4s linear infinite;
    transform-origin: center;
}

@keyframes boltSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.about-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-stats {
    grid-column: span 2;
}

.about-stats .about-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-elevated);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    animation: ctaFadeIn 0.8s ease forwards 0.7s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes ctaFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-main,
    .about-stats {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 1.5rem;
    }
}
