/* ===================
   ABOUT US PAGE STYLES
   =================== */

/* About Hero Section */
.about-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.about-hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--white);
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-align: center;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-text:last-of-type {
    margin-bottom: 0;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overlay-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.overlay-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.mission-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 48px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    transform: translateY(-6px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
}

.mission-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 40px 0;
    /* padding: 120px 0; */
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.value-card {
    position: relative;
    padding: 48px 40px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
}

.value-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(255, 215, 0, 0.3);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--black);
}

.value-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
}

.timeline-section .section-title,
.timeline-section .section-subtitle-center {
    color: var(--white);
}

.timeline-section .section-subtitle-center {
    color: var(--gray-400);
}

.timeline {
    max-width: 900px;
    margin: 64px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-800);
}

.timeline-item {
    position: relative;
    padding-left: 88px;
    padding-bottom: 64px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 19px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 4px solid var(--black-light);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--primary);
    transform: translateX(8px);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.why-us-card {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.why-us-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
    transform: translateY(-6px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--black);
}

.why-us-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
    transform: translateY(-6px);
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin: 0 auto;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black);
}

.team-role {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Regulatory Section */
.regulatory-section {
    padding: 100px 0;
    background: var(--white);
}

.regulatory-content {
    max-width: 900px;
    margin: 0 auto;
}

.regulatory-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 48px;
}

.regulatory-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.regulatory-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.regulatory-item:hover {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

.regulatory-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.regulatory-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

/* About CTA Section */
.about-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 24px;
}

.about-cta-content p {
    font-size: 20px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 48px;
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regulatory-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 17px;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .story-section,
    .mission-section,
    .values-section,
    .timeline-section,
    .why-us-section,
    .team-section,
    .regulatory-section,
    .about-cta-section {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-dot {
        left: 0;
    }

    .timeline-item {
        padding-left: 60px;
        padding-bottom: 48px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-cta-content h2 {
        font-size: 32px;
    }

    .about-cta-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .mission-card,
    .value-card,
    .why-us-card,
    .team-card {
        padding: 32px 24px;
    }

    .mission-icon,
    .why-us-icon {
        width: 64px;
        height: 64px;
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}
