/* ============================================
   Usersafe · 关于我们页样式
   ============================================ */

/* ---------- Hero 区域 ---------- */
.about-hero {
    background: linear-gradient(145deg, #f0f3f8, #e8edf4);
    border-radius: 24px;
    padding: 48px 56px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content .badge {
    display: inline-block;
    background: #0b1a2f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.about-hero-content .badge i {
    margin-right: 6px;
}

.about-hero-content h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0b1a2f;
    margin-bottom: 14px;
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e5c;
    max-width: 560px;
}

.about-hero-icon {
    width: 120px;
    height: 120px;
	background:url(../image/logo.svg);
	background-size:120px 120px;
	background-repeat:no-repeat;
}

/* ---------- 信息卡片网格 ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.about-card {
    background: #fafcff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 28px 32px;
    transition: 0.2s;
}

.about-card:hover {
    border-color: #d0d9e6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.about-card .card-icon {
    width: 48px;
    height: 48px;
    background: #f1f4f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1a2f;
    font-size: 22px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b1a2f;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5e6f8d;
}

.about-card ul {
    margin-top: 8px;
}

.about-card ul li {
    font-size: 14px;
    color: #5e6f8d;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card ul li i {
    width: 18px;
    font-size: 14px;
    color: #0b1a2f;
}

.about-card-full {
    grid-column: 1 / -1;
}

/* ---------- 数据统计 ---------- */
.stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.stat-item .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0b1a2f;
}

.stat-item .stat-label {
    font-size: 13px;
    color: #8596b0;
}

/* ---------- 联系方式 ---------- */
.contact-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px 40px;
    border: 1px solid #edf2f7;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-section .contact-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1f2a44;
}

.contact-section .contact-item i {
    width: 20px;
    font-size: 16px;
    color: #0b1a2f;
}

.contact-section .social-links {
    display: flex;
    gap: 12px;
}

.contact-section .social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2a44;
    font-size: 18px;
    border: 1px solid #edf2f7;
    transition: 0.15s;
}

.contact-section .social-links a:hover {
    background: #0b1a2f;
    color: #fff;
    border-color: #0b1a2f;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .about-hero-content p {
        max-width: 100%;
    }

    .about-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 28px 20px;
    }

    .about-hero-content h1 {
        font-size: 26px;
    }

    .about-card {
        padding: 20px 22px;
    }

    .contact-section {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
    }

    .contact-section .contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .contact-section .social-links {
        justify-content: center;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 22px;
    }
}