/* ============================================================
   ABOUT US — EN  (aboutus-en.html)
   ============================================================ */

.about-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 24px 56px;
}

/* --- Hero ------------------------------------------------- */
.about-hero {
    border-bottom: 2px solid #e8eaf0;
    margin-bottom: 36px;
    padding-bottom: 28px;
    text-align: center;
}

.about-hero h1 {
    color: #1a1a2e;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.about-hero .subtitle {
    color: #2790f4;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* --- Story ------------------------------------------------ */
.about-story {
    margin-bottom: 40px;
}

.about-story p {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-story p strong {
    color: #1a1a2e;
}

/* --- Stats row -------------------------------------------- */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.stat-card {
    background: #f0f4ff;
    border-radius: 10px;
    flex: 1;
    min-width: 120px;
    padding: 18px 10px;
    text-align: center;
}

.stat-card .stat-num {
    color: #2790f4;
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    color: #555;
    font-size: 12.5px;
}

/* --- Section title ---------------------------------------- */
.section-title {
    border-bottom: 2px solid #2790f4;
    color: #1a1a2e;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 6px;
}

/* --- Products -------------------------------------------- */
.about-products {
    margin-bottom: 44px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    background: #f5f7fa;
    border: 1px solid #dde3ee;
    border-radius: 20px;
    color: #333;
    font-size: 13px;
    padding: 6px 16px;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    cursor: default;
}

.product-tag:hover {
    background: #2790f4;
    border-color: #2790f4;
    color: #fff;
}

/* --- Values ---------------------------------------------- */
.about-values-section {
    margin-bottom: 44px;
}

.about-values {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.value-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
}

.value-card .value-icon {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
}

.value-card h3 {
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.value-card p {
    color: #666;
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
}

/* --- Partners -------------------------------------------- */
.about-partners {
    margin-bottom: 20px;
}

.partners-grid {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.partner-logo {
    align-items: center;
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    display: flex;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    padding: 6px 10px;
    transition: box-shadow 0.2s;
    width: 112px;
}

.partner-logo:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 720px) {
    .about-hero h1 { font-size: 20px; }
    .about-values  { grid-template-columns: repeat(2, 1fr); }
    .stat-card .stat-num { font-size: 22px; }
    .about-page { padding: 24px 16px 40px; }
}

@media (max-width: 460px) {
    .about-values { grid-template-columns: 1fr; }
    .partner-logo { width: 92px; height: 50px; }
    .stat-card { min-width: 100px; padding: 14px 8px; }
}
