/* ========================
       Founder Page Styles
    ======================== */
.founder-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 50%, #0d4a6b 100%);
    position: relative;
    overflow: hidden;
}

.founder-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 216, 192, 0.06);
}

.founder-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.05);
}

.founder-hero-inner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    position: relative;
    z-index: 2;
}

.founder-photo-wrap {
    flex-shrink: 0;
}

.founder-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.founder-intro {
    color: var(--white);
}

.founder-label {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(0, 216, 192, 0.15);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.founder-intro h1 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.25;
}

.founder-title {
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
}

.founder-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Content Sections */
.founder-content {
    padding: 3.5rem 0 4rem;
}

.founder-body {
    max-width: 820px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.founder-card h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.founder-card h2 i {
    color: var(--secondary);
    font-size: 1rem;
}

.founder-card p {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.founder-card ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    list-style: disc;
}

.founder-card li {
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

/* Stats */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Company Info */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.company-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
}

.company-info-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.company-info-item .info-label {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-bottom: 0.1rem;
}

.company-info-item .info-value {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* Timeline */
.founder-timeline {
    margin: 1rem 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 70px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Quote */
.founder-quote {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.04), rgba(0, 200, 150, 0.04));
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}

.founder-quote blockquote {
    font-size: 1.05rem;
    color: var(--primary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.founder-quote cite {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .founder-photo {
        width: 180px;
        height: 180px;
    }

    .founder-intro h1 {
        font-size: 1.8rem;
    }

    .founder-tagline {
        max-width: 100%;
    }

    .founder-social {
        justify-content: center;
    }

    .founder-card {
        padding: 1.75rem 1.25rem;
    }

    .founder-stats {
        grid-template-columns: 1fr;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
    }
}