/**
 * Стили страницы "О нас" - ForTraders.org
 * Современный минималистичный дизайн
 * Version: 1.1.0
 */

/* ================================================
   БАЗОВЫЕ СТИЛИ
   ================================================ */

.about-page-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* ================================================
   HERO SECTION
   ================================================ */

.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0b0e11 0%, #1a1d29 100%);
    color: #ffffff;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(247,166,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'PFD_Regular', 'Open Sans', sans-serif;
    color: #f5f5f5 !important;
}

.about-hero .accent {
    color: #f7a600;
}

.about-hero p {
    font-size: 22px;
    opacity: 0.9;
    line-height: 1.8;
}

/* ================================================
   SECTION STYLES
   ================================================ */

.about-section {
    padding: 100px 40px;
}

.about-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ================================================
   MISSION SECTION
   ================================================ */

.about-mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission-text h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-mission-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission-visual {
    background: linear-gradient(135deg, #f7a600 0%, #ffb800 100%);
    border-radius: 20px;
    padding: 60px;
    color: #ffffff;
    text-align: center;
}

.about-mission-visual h4 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-mission-visual p {
    font-size: 20px;
    opacity: 0.95;
}

/* ================================================
   TEAM SECTION
   ================================================ */

.about-team {
    background: #f8f8f8;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-team-member {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.about-team-member-photo-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.about-team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.about-team-member:hover .about-team-member-photo {
    transform: scale(1.05);
}

.about-team-member-info {
    padding: 20px;
}

.about-team-member-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-team-member-info .role {
    font-size: 12px;
    color: #f7a600;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-team-member-info .bio {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-service-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-service-card:hover {
    border-color: #f7a600;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(247, 166, 0, 0.15);
}

.about-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
}

.about-service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ================================================
   STATS SECTION
   ================================================ */

.about-stats {
    background: #0b0e11;
    color: #ffffff;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-stat-item {
    position: relative;
}

.about-stat-item::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f7a600;
}

.about-stat-item h3 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f7a600 !important;
}

.about-stat-item p {
    font-size: 18px;
    opacity: 0.8;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.about-contact {
    text-align: center;
}

.about-contact-btn {
    display: inline-block;
    background: #6366f1;
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.about-contact-btn:hover {
    background: #4f46e5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    text-decoration: none;
}

/* ================================================
   RESPONSIVE - Desktop (1280px+)
   ================================================ */

@media (min-width: 1280px) {
    .about-team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ================================================
   RESPONSIVE - Desktop Medium (1024px - 1279px)
   ================================================ */

@media (max-width: 1279px) and (min-width: 1024px) {
    .about-team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 100%;
        padding: 0 30px;
    }
    
    .about-team-member-photo-wrapper {
        height: 180px;
    }
    
    .about-team-member-info {
        padding: 16px;
    }
    
    .about-team-member-info h3 {
        font-size: 15px;
    }
    
    .about-team-member-info .role {
        font-size: 11px;
    }
    
    .about-team-member-info .bio {
        font-size: 12px;
    }
}

/* ================================================
   RESPONSIVE - Tablet (768px - 1023px)
   ================================================ */

@media (max-width: 1023px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        padding: 0 20px;
    }
    
    .about-team-member-photo-wrapper {
        height: 200px;
    }
    
    .about-team-member-info {
        padding: 20px;
    }
    
    .about-team-member-info h3 {
        font-size: 17px;
    }
    
    .about-team-member-info .bio {
        font-size: 13px;
    }
    
    .about-mission-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-hero h1 {
        font-size: 42px;
    }
    
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ================================================
   RESPONSIVE - Mobile Large (576px - 767px)
   ================================================ */

@media (max-width: 767px) {
    .about-hero {
        padding: 80px 20px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-section-header h2 {
        font-size: 32px;
    }
    
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
        padding: 0 16px;
    }
    
    .about-team-member-photo-wrapper {
        height: 160px;
    }
    
    .about-team-member-info {
        padding: 14px;
    }
    
    .about-team-member-info h3 {
        font-size: 15px;
    }
    
    .about-team-member-info .role {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .about-team-member-info .bio {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ================================================
   RESPONSIVE - Mobile Small (< 576px)
   ================================================ */

@media (max-width: 575px) {
    .about-hero {
        padding: 60px 16px;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .about-section {
        padding: 50px 16px;
    }
    
    .about-section-header {
        margin-bottom: 40px;
    }
    
    .about-section-header h2 {
        font-size: 26px;
    }
    
    .about-section-header p {
        font-size: 15px;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        padding: 0;
    }
    
    .about-team-member-photo-wrapper {
        height: 220px;
    }
    
    .about-team-member-info {
        padding: 18px;
    }
    
    .about-team-member-info h3 {
        font-size: 17px;
    }
    
    .about-team-member-info .role {
        font-size: 11px;
    }
    
    .about-team-member-info .bio {
        font-size: 13px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .about-service-card {
        padding: 30px 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-stat-item h3 {
        font-size: 48px;
    }
    
    .about-mission-split {
        gap: 40px;
    }
    
    .about-mission-visual {
        padding: 40px 25px;
    }
    
    .about-mission-visual h4 {
        font-size: 36px;
    }
    
    .about-contact-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}
