/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ about.html ===== */

/* Хлебные крошки - БЕЛЫЙ */
.breadcrumbs {
    background: #f8fafc;
    padding: 16px 0;
    border-bottom: 1px solid #e9edf4;
}
.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.breadcrumbs a:hover {
    color: #facc15;
}
.breadcrumbs span {
    color: #94a3b8;
    font-size: 14px;
}
.breadcrumbs .current {
    color: #1a1a2e;
    font-weight: 500;
}

/* ===== 1. ГЕРО О НАС (СИНИЙ) ===== */
.hero-about {
    background: linear-gradient(135deg, #0b0e1a 0%, #1a2040 100%);
    color: #fff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero-about::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-about .container {
    position: relative;
    z-index: 2;
}
.hero-about h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}
.hero-about h1 span {
    color: #facc15;
}
.hero-about p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 28px;
    color: #cbd5e1;
}
.hero-about .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}
.hero-about .hero-stats div {
    text-align: left;
}
.hero-about .hero-stats .number {
    font-size: 32px;
    font-weight: 700;
    color: #facc15;
}
.hero-about .hero-stats .label {
    font-size: 14px;
    opacity: 0.7;
    color: #94a3b8;
}

/* ===== 2. РЕКВИЗИТЫ (CTA) - БЕЛЫЙ ===== */
.requisites-cta-section {
    background: #ffffff;
    padding: 40px 0;
}

.requisites-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #fef9e7 0%, #fdebd0 100%);
    border-radius: 24px;
    padding: 48px 56px;
    border: 2px solid #facc15;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Эффект свечения при наведении */
.requisites-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(250, 204, 21, 0.25);
    border-color: #f59e0b;
}

/* Декоративный фон */
.requisites-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.requisites-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.requisites-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.requisites-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 12px;
}

.requisites-cta-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #facc15, #f59e0b);
    margin-top: 8px;
    border-radius: 2px;
}

.requisites-cta-content p {
    color: #475569;
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 500px;
}

.btn-requisites {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0b0e1a;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.4);
    position: relative;
    z-index: 1;
}

.btn-requisites:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(250, 204, 21, 0.6);
    background: linear-gradient(135deg, #ffd93d, #facc15);
    color: #0b0e1a;
}

.requisites-cta-icon {
    font-size: 80px;
    color: #facc15;
    opacity: 0.4;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn-requisites {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0b0e1a;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.4);
    position: relative;
    z-index: 1;
}

.btn-requisites:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(250, 204, 21, 0.6);
    background: linear-gradient(135deg, #ffd93d, #facc15);
    color: #0b0e1a;
}

.requisites-cta-icon {
    font-size: 80px;
    color: #facc15;
    opacity: 0.4;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn-requisites {
    display: inline-flex;
    align-items: center;
    background: #facc15;
    color: #0b0e1a;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(250,204,21,0.3);
}

.btn-requisites:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(250,204,21,0.5);
    background: #ffd93d;
    color: #0b0e1a;
}

.requisites-cta-icon {
    font-size: 80px;
    color: #facc15;
    opacity: 0.3;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== 3. МИССИЯ (СИНИЙ) ===== */
.mission-section {
    background: #0b0e1a;
    color: #fff;
    padding: 70px 0;
}
.mission-section .section-title {
    color: #fff;
}
.mission-section .section-sub {
    color: #94a3b8;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.mission-item {
    background: #1e293b;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #334155;
    transition: 0.3s;
}
.mission-item:hover {
    border-color: #facc15;
    transform: translateY(-4px);
}
.mission-item i {
    font-size: 36px;
    color: #facc15;
    margin-bottom: 16px;
}
.mission-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}
.mission-item p {
    color: #cbd5e1;
}

/* ===== 4. КОМАНДА (БЕЛЫЙ) ===== */
.team-section {
    background: #ffffff;
    padding: 70px 0;
}
.team-section .section-title {
    color: #0b0e1a;
}
.team-card {
    background: #f8fafc;
    padding: 24px 20px;
    border-radius: 24px;
    border: 1px solid #e9edf4;
    text-align: center;
    transition: 0.3s;
}
.team-card:hover {
    border-color: #facc15;
    transform: translateY(-4px);
}
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #facc15;
    margin-bottom: 16px;
}
.team-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #0b0e1a;
}
.team-card .role {
    color: #facc15;
    font-weight: 600;
    font-size: 14px;
}
.team-card p {
    color: #475569;
    font-size: 14px;
    margin-top: 8px;
}

/* ===== 5. ЦЕННОСТИ (СИНИЙ) ===== */
.values-section {
    background: #0b0e1a;
    color: #fff;
    padding: 70px 0;
}
.values-section .section-title {
    color: #fff;
}
.values-section .section-sub {
    color: #94a3b8;
}
.values-section .card {
    background: #1e293b;
    border: 1px solid #334155;
}
.values-section .card:hover {
    border-color: #facc15;
}
.values-section .card h3 {
    color: #fff;
}
.values-section .card p {
    color: #cbd5e1;
}
.values-section .card i {
    color: #facc15;
}

/* ===== 6. ОТЗЫВЫ (БЕЛЫЙ) ===== */
.reviews-section {
    background: #ffffff;
    padding: 70px 0;
}
.review-card {
    background: #f8fafc;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e9edf4;
}
.review-card .stars {
    color: #facc15;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.review-card .name {
    font-weight: 600;
    margin-top: 12px;
    color: #0b0e1a;
}
.review-card .position {
    font-size: 14px;
    color: #64748b;
}
.review-card p {
    color: #475569;
}

/* ===== 7. КОНТАКТЫ (СИНИЙ) ===== */
.form-section {
    background: linear-gradient(135deg, #0b0e1a, #1a2040);
    color: #fff;
    padding: 70px 0;
}
.form-section .section-title {
    color: #fff;
}
.form-section .section-sub {
    color: #94a3b8;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.form-grid .info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #fff;
}
.form-grid .info p {
    opacity: 0.8;
    margin-bottom: 20px;
    color: #cbd5e1;
}
.form-grid .info i {
    color: #facc15;
    margin-right: 10px;
    width: 24px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #facc15;
    background: #2d3a52;
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form .btn-primary {
    width: 100%;
    text-align: center;
    border: none;
    padding: 16px;
}

/* ===== ОБЩИЕ СТИЛИ ===== */
.section {
    padding: 70px 0;
}
.section-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}
.section-sub {
    text-align: center;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 18px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .hero-about .container {
        text-align: center;
    }
    .hero-about p {
        margin: 0 auto 28px;
    }
    .hero-about .hero-stats {
        justify-content: center;
    }
    .requisites-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .requisites-cta-content h2::after {
        margin: 8px auto 0;
    }
    .requisites-cta-content p {
        margin: 0 auto 24px;
        max-width: 100%;
    }
    .requisites-cta-icon {
        font-size: 60px;
        order: -1;
    }
    .requisites-cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-about h1 {
        font-size: 34px;
    }
    .hero-about .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .requisites-cta {
        padding: 24px 16px;
    }
    .btn-requisites {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    .requisites-cta-content h2 {
        font-size: 22px;
    }
    .hero-about h1 {
        font-size: 28px;
    }
    .team-card img {
        width: 90px;
        height: 90px;
    }
}