/* ===== СТРАНИЦА О НАС ===== */

.about-page {
    padding: 90px 0;
    min-height: 60vh;
}

.about-page .page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.about-page .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta), var(--amber));
    border-radius: 4px;
    box-shadow: var(--glow-blue);
}

/* Hero секция */
.about-hero {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.about-hero:hover .about-hero-image {
    transform: scale(1.1);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.2) 0%, 
        rgba(255, 0, 255, 0.2) 50%,
        rgba(10, 10, 15, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.about-hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    animation: fadeInUp 1s ease;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Секция миссии */
.mission-section {
    margin-bottom: 5rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-content {
    padding-right: 2rem;
}

.mission-content h2 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    border-radius: 3px;
}

.mission-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.mission-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.mission-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.mission-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-magenta), var(--amber));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.mission-image:hover::before {
    opacity: 1;
}

/* Секция преимуществ */
.about-features {
    margin-bottom: 5rem;
}

.about-features h2 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    border-radius: 3px;
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card-about {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.feature-card-about:hover::before {
    transform: translateX(0);
}

.feature-card-about:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

.feature-icon-about {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-blue);
    transition: all 0.3s;
}

.feature-card-about:hover .feature-icon-about {
    transform: scale(1.1);
    color: var(--neon-magenta);
    box-shadow: var(--glow-magenta);
}

.feature-card-about h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Секция команды */
.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    border-radius: 3px;
}

.team-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow-blue);
    border-color: var(--neon-blue);
}

.team-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.team-social a:hover {
    background: var(--neon-blue);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.team-position {
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-experience {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Секция достижений */
.achievements-section {
    margin-bottom: 5rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M0 0 L100 100 M100 0 L0 100" stroke="%2300F3FF" stroke-width="1"/></svg>');
    animation: move 20s linear infinite;
}

.achievements-section h2 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.achievement-label {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Секция отзывов на странице о нас */
.about-reviews {
    margin-bottom: 5rem;
}

.about-reviews h2 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
    border-radius: 3px;
}

.about-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-review-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.3s;
}

.about-review-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.about-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.about-review-author h4 {
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.about-review-author p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.about-review-rating {
    color: var(--amber);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-review-rating i {
    margin-right: 0.2rem;
}

.about-review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    font-size: 1rem;
}

.about-review-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--neon-blue);
    opacity: 0.3;
    margin-right: 0.3rem;
}

.about-review-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--neon-magenta);
    opacity: 0.3;
    margin-left: 0.3rem;
}

/* CTA секция */
.about-cta {
    margin-bottom: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.1), 
        rgba(255, 0, 255, 0.1),
        rgba(255, 179, 0, 0.1));
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .features-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        padding-right: 0;
    }
    
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 20px 0;
    }
    
    .about-page .page-title {
        font-size: 2.5rem;
    }
    
    .about-hero {
        height: 300px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid-about {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-page .page-title {
        font-size: 2rem;
    }
    
    .about-hero {
        height: 250px;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .about-reviews-grid {
        gap: 1rem;
    }
    
    .about-review-card {
        padding: 1.5rem;
    }
    
    .about-cta h2 {
        font-size: 1.6rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes move {
    from {
        transform: translateX(-50%) translateY(-50%);
    }
    to {
        transform: translateX(0%) translateY(0%);
    }
}