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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero .hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-hero .hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-hero .hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-hero .stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* About Visual */
.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.visual-card.mission {
    grid-column: 1 / -1;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.visual-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.visual-card.mission .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.visual-card .card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.visual-card .card-content p {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 2rem;
}

.mission-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-features {
    list-style: none;
    padding: 0;
}

.mission-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.mission-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.story-intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 400px;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stats-section .section-header h2 {
    color: var(--white);
}

.stats-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .about-hero .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .about-hero .hero-cta {
        justify-content: center;
    }

    .about-visual {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Technological Excellence Section */
.tech-excellence-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.tech-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-excellence-content .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.tech-excellence-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 24px;
}

.tech-excellence-content .text-primary {
    color: var(--primary);
}

.tech-excellence-content .lead-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 40px;
}

.excellence-features {
    display: grid;
    gap: 24px;
}

.excellence-item {
    display: flex;
    gap: 20px;
    padding: 16px;
    border-radius: 16px;
    transition: background-color 0.3s ease;
}

.excellence-item:hover {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.excellence-item .item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.excellence-item .item-text h4 {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--gray-900);
}

.excellence-item .item-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.tech-excellence-visual {
    position: relative;
}

.visual-mockup-card {
    background: #0f172a;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.visual-mockup-card:hover {
    transform: rotate(0) translateY(-10px);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bg-red {
    background: #ef4444;
}

.bg-yellow {
    background: #f59e0b;
}

.bg-green {
    background: #10b981;
}

.mockup-body {
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    text-align: center;
}

.mockup-content i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--primary));
}

.mockup-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.mockup-subtitle {
    color: #94a3b8;
    font-size: 0.875rem;
}

.mockup-decorative {
    position: absolute;
    z-index: -1;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 32px;
    opacity: 0.2;
    transform: rotate(2deg);
}

/* Technical Excellence Mobile Responsive */
@media (max-width: 968px) {
    .tech-excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tech-excellence-content .tech-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .excellence-item {
        text-align: left;
    }

    .tech-excellence-visual {
        margin-top: 2rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .tech-excellence-section {
        padding: 60px 0;
    }

    .tech-excellence-content h2 {
        font-size: 2.25rem;
    }

    .visual-mockup-card {
        padding: 24px;
    }

    .mockup-body {
        height: 240px;
    }
}