/* ===================================
   About Page
   =================================== */

/* Hero */
.about-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #1a2a44 0%, #2d4a7a 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.about-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* Section */
.about-section {
    background: #fff;
    padding: 72px 24px 96px;
}

.about-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* Intro */
.about-intro {
    margin-bottom: 64px;
}

.about-intro h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    line-height: 1.5;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.about-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    word-break: keep-all;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 72px;
    border-top: 2px solid #111;
    border-bottom: 1px solid #eee;
}

.stat-item {
    padding: 32px 0;
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* Block */
.about-block {
    margin-bottom: 64px;
}

.about-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}

/* Card Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.about-card:hover {
    border-color: #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-card-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.about-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Table */
.about-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #111;
}

.about-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.about-table th,
.about-table td {
    padding: 18px 0;
    font-size: 15px;
    text-align: left;
    vertical-align: top;
}

.about-table th {
    width: 120px;
    color: #999;
    font-weight: 500;
    padding-right: 20px;
}

.about-table td {
    color: #333;
    font-weight: 500;
}

/* CTA */
.about-cta {
    text-align: center;
    padding: 56px 0 0;
    border-top: 1px solid #f0f0f0;
}

.about-cta p {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 24px;
}

.about-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.about-cta .btn {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 130px 20px 48px;
    }

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

    .about-section {
        padding: 48px 20px 64px;
    }

    .about-intro h2 {
        font-size: 22px;
    }

    .about-stats {
        margin-bottom: 56px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-table th {
        width: 90px;
        font-size: 14px;
    }

    .about-table td {
        font-size: 14px;
    }

    .about-cta-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 110px 16px 40px;
    }

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

    .about-intro h2 {
        font-size: 19px;
    }

    .about-intro h2 br {
        display: none;
    }

    .stat-item {
        padding: 24px 0;
    }

    .stat-item strong {
        font-size: 20px;
    }

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