/* ===== СТРАНИЦА "О НАС" ===== */
.about-page {
    background: white;
    border-radius: 28px;
    padding: 32px 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f8;
    margin-bottom: 48px;
}

.about-hero {
    margin-bottom: 40px;
    border-bottom: 1px solid #eef2f8;
    padding-bottom: 30px;
}

.about-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-hero h2 i {
    color: #2c7da0;
    font-size: 2rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: #2c7da0;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 48px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #1e293b;
}

.about-highlight {
    background: #f0f6fe;
    padding: 24px;
    border-radius: 24px;
    margin: 30px 0;
    border-left: 6px solid #1e4a6e;
}

.highlight-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #0f2b3d;
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.advantage-list i {
    color: #2c7da0;
    font-size: 1.4rem;
    min-width: 30px;
    text-align: center;
    margin-top: 4px;
}

.advantage-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-card {
    background: #f8fafd;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e2eaf3;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #1e4a6e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.info-row i {
    width: 28px;
    color: #2c7da0;
    font-size: 1.3rem;
}

.info-row div {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: #1e4a6e;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.1rem;
}

.info-value a {
    color: #1e293b;
    text-decoration: none;
    border-bottom: 1px dashed #8ba0bc;
}

.info-value a:hover {
    color: #1e4a6e;
    border-bottom-color: #1e4a6e;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.badge {
    background: white;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid #cbdde9;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e4a6e;
}

.services-section {
    margin: 48px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: #f8fafd;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2eaf3;
    transition: 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #eef2fc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #1e4a6e;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0f2b3d;
}

.service-card p {
    color: #475569;
    line-height: 1.5;
}

.warranty-block {
    background: linear-gradient(105deg, #eef2fc 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 28px 32px;
    margin: 40px 0;
    border: 1px solid #d0e0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.warranty-content {
    flex: 2;
    min-width: 260px;
}

.warranty-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #0f2b3d;
}

.warranty-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.warranty-item i {
    color: #1f5e3a;
    font-size: 1.4rem;
}

.warranty-highlight {
    background: white;
    border-radius: 60px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1e4a6e;
    border: 1px dashed #2c7da0;
    text-align: center;
}

.cta-section {
    margin-top: 48px;
    text-align: center;
}

.cta-button {
    background: #1e4a6e;
    color: white;
    border: none;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(30, 74, 110, 0.2);
}

.cta-button:hover {
    background: #0f3a56;
    transform: translateY(-2px);
}

.reviews-placeholder {
    margin: 48px 0 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.reviews-header h3 {
    font-size: 1.8rem;
    color: #0f2b3d;
}

.coming-soon {
    background: #f1f5f9;
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    color: #5b6e8c;
    font-size: 1.1rem;
    border: 1px dashed #cbdde9;
}

.coming-soon i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1e4a6e;
}

/* Адаптация */
@media (max-width: 768px) {
    .about-page {
        padding: 20px 16px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-hero h2 {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
}