/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT.CSS — About Page Specific Styles
   Extracted from about.php inline <style> blocks
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── ABOUT HERO ────────────────────────────────────────────────────────────── */
.hero-creative {
    background: linear-gradient(135deg, #0a0a0c 0%, #1a1520 50%, #0a0a0c 100%);
}

.floating-brands {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.brand-float {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.15;
    filter: grayscale(100%) brightness(1.5);
    animation: brandFloat 8s ease-in-out infinite;
}

/* Hero Badge */
.hero-badge {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.hero-title {
    line-height: 1.2;
}

.hero-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
    animation: underlineDraw 2s ease-out forwards;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.1vw + 0.1rem, 1.1rem);
    line-height: 1.7;
}


/* ─── STAT BUBBLES ──────────────────────────────────────────────────────────── */
.stat-bubble {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-bubble:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-bubble .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-bubble .stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ─── VISUAL GLOW ───────────────────────────────────────────────────────────── */
.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   5-STAGE RESPONSIVE — ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .brand-float { width: 40px; height: 40px; }
    .stat-bubble { padding: 0.75rem 1rem; }
    .stat-bubble .stat-value { font-size: 1.3rem; }
    .stat-bubble .stat-label { font-size: 0.65rem; }
}

@media (min-width: 768px) {
    .stat-bubble .stat-value { font-size: 2rem; }
}
