/* ========================================
   About Page — Premium Enterprise Design
   ======================================== */

/* Hero */
.about-hero {
    background: #0a0f1e;
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 70% 50% at 25% 45%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 75% 55%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.about-hero p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.08);
}

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

.value-card .icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--transition-smooth);
}

.value-card:hover .icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.06);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s var(--transition-smooth);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, rgba(37, 99, 235, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    text-align: center;
    color: var(--white);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    transform: translateY(15px);
    transition: transform 0.4s var(--transition-smooth);
}

.team-card:hover .team-socials {
    transform: translateY(0);
}

.team-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
}

.team-socials a:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    transform: translateY(15px);
    transition: transform 0.4s var(--transition-smooth) 0.05s;
    color: rgba(255, 255, 255, 0.85);
}

.team-card:hover .team-bio {
    transform: translateY(0);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}

.team-info h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark);
}

.team-info p {
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}