/* ============================================== */
/* INFLUZIA - "WHO WE ARE" PAGE SPECIFIC STYLES   */
/* ============================================== */

/* --- CSS-ONLY SMOOTH ANIMATIONS --- */
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-element {
    opacity: 0; 
    animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* --- 1. ABOUT HERO SECTION --- */
.about-hero {
    padding: 120px 0 80px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left; 
}

.about-hero .massive-headline {
    font-size: clamp(3rem, 7vw, 6rem); 
    text-align: left; 
    margin-bottom: 0;
    color: #0a0a0a;
}

.highlight-pill {
    display: inline-block; 
    background-color: #111111; 
    color: #ffffff; 
    padding: 0 40px; 
    border-radius: 200px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-top: 10px;
}

/* --- 2. "WHAT WE ARE" SECTION --- */
.what-we-are-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.wwa-eyebrow {
    font-size: 0.85rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    color: #666666; 
    margin-bottom: 30px; 
    display: flex; 
    align-items: center;
}

.wwa-dash {
    display: inline-block; 
    width: 30px; 
    height: 2px; 
    background-color: #8B5CF6; 
    margin-right: 16px;
}

.wwa-headline {
    font-size: clamp(3rem, 6vw, 5.5rem); 
    font-weight: 800; 
    line-height: 1.05; 
    letter-spacing: -0.04em; 
    color: #0a0a0a; 
    margin-bottom: 80px;
}

.wwa-gradient-text {
    background: linear-gradient(90deg, #3b82f6, #8B5CF6, #ec4899); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: inline-block;
}

.wwa-grid {
    display: grid; 
    grid-template-columns: 2fr 10fr; 
    gap: 60px; 
    align-items: stretch; 
}

.wwa-decorative-col {
    display: flex; 
    justify-content: flex-end; 
    padding-right: 20px;
}

.wwa-geometric-accent {
    width: 2px; 
    height: 100%; 
    min-height: 150px; 
    background: linear-gradient(180deg, #8B5CF6 0%, rgba(139, 92, 246, 0) 100%);
    border-radius: 2px;
}

.wwa-text-col p {
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: #666666; 
    margin-bottom: 24px; 
    max-width: 800px;
}

.wwa-text-col .wwa-lead {
    font-size: 1.6rem; 
    color: #0a0a0a; 
    font-weight: 500; 
    line-height: 1.5; 
    letter-spacing: -0.01em; 
    margin-bottom: 30px;
}

.wwa-highlight {
    color: #0a0a0a; 
    font-weight: 700; 
    position: relative; 
    display: inline-block; 
    cursor: default;
}

.wwa-highlight::after {
    content: ''; 
    position: absolute; 
    bottom: 2px; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: #8B5CF6; 
    transform: scaleX(0.2); 
    transform-origin: left; 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwa-text-col:hover .wwa-highlight::after {
    transform: scaleX(1);
}

.wwa-closing {
    margin-top: 60px; 
    padding-top: 40px; 
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 800px;
}

.wwa-closing h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem); 
    font-weight: 800; 
    letter-spacing: -0.03em; 
    color: #0a0a0a; 
    margin-bottom: 8px;
}

.wwa-closing p {
    font-size: 1.1rem !important; 
    font-weight: 600; 
    color: #8B5CF6 !important; 
    text-transform: uppercase; 
    letter-spacing: 0.15em;
    margin-bottom: 0 !important;
}

/* --- 3. CORE PILLARS SECTION --- */
.pillars-section {
    padding: 100px 0 140px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pillars-header {
    margin-bottom: 60px; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    padding-bottom: 20px;
}

.pillars-header h3 {
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    color: #0a0a0a;
    font-weight: 700;
}

/* Updated to a sleek 3-column layout */
.pillars-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.pillar-card {
    background-color: #ffffff; 
    padding: 48px 40px; 
    border-radius: 20px; 
    border: 1px solid rgba(0, 0, 0, 0.05); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    transform: translateY(-8px); 
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    font-family: 'Courier New', Courier, monospace; 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #8B5CF6; 
    margin-bottom: 24px; 
    display: inline-block; 
    padding: 8px 16px; 
    background: rgba(139, 92, 246, 0.08); 
    border-radius: 100px;
}

.pillar-card h4 {
    font-size: 1.5rem; 
    font-weight: 800; 
    color: #0a0a0a; 
    margin-bottom: 16px; 
    letter-spacing: -0.02em;
}

.pillar-card p {
    font-size: 1.05rem; 
    color: #666666; 
    line-height: 1.6;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .wwa-grid { grid-template-columns: 1fr; gap: 40px; }
    .wwa-decorative-col { display: none; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
}