/* about-us — migrated from pages.css */
/* ── About Hero Section ─────────────────────────────────────────── */
    .about-hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        padding: 100px 0 140px;
        position: relative;
        overflow: hidden;
        color: #fff;
        text-align: center;
    }
    .about-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }
    .since-badge {
        display: inline-block;
        background: rgba(20,184,166, 0.1);
        border: 1px solid rgba(20,184,166, 0.3);
        color: #2dd4bf;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
    .about-hero h1 {
        font-size: 48px;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    .about-hero p {
        font-size: 18px;
        color: #94a3b8;
        max-width: 700px;
        margin: 0 auto 32px;
        line-height: 1.6;
    }

    /* ── Stats Section ─────────────────────────────────────────────── */
    .stats-bar {
        background: #fff;
        margin-top: -60px;
        position: relative;
        z-index: 10;
        padding: 40px 0;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        border: 1px solid #e2e8f0;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
        gap: 20px;
    }
.stats-grid h3 { text-align: center; }
    .stat-item h3 {
        font-size: 32px;
        font-weight: 800;
        color: #0d9488;
        margin-bottom: 5px;
    }
    .stat-item p {
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ── Story Section (Legacy) ────────────────────────────────────── */
    .story-section { padding: 100px 0; background: #fff; }
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .story-content h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 24px;
    }
    .story-content p {
        font-size: 16px;
        color: #475569;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .story-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    /* ── Infrastructure Section ─────────────────────────────────────── */
    .infra-section { padding: 100px 0; background: #f8fafc; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .section-header h2 { font-size: 34px; font-weight: 800; color: #0f172a; margin-bottom: 15px; }
    .section-header p { color: #64748b; font-size: 16px; }

    .infra-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .infra-card {
        background: #fff;
        padding: 40px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    .infra-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: #0d9488; }
    .infra-card i { font-size: 36px; color: #14b8a6; margin-bottom: 24px; }
    .infra-card h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
    .infra-card p { font-size: 14px; color: #475569; line-height: 1.6; }

    /* ── Tech Stack & support ──────────────────────────────────────── */
    .tech-support-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 100px 0;
        background: #fff;
    }
    .feature-item { display: flex; gap: 20px; margin-bottom: 30px; }
    .feature-icon {
        flex-shrink: 0;
        width: 48px; height: 48px;
        background: #f0fdfa;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        color: #0f766e; font-size: 20px;
    }
    .feature-text h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
    .feature-text p { font-size: 14px; color: #475569; line-height: 1.6; }

    /* ── contact & Office ───────────────────────────────────────────── */
    .office-section { padding: 100px 0; background: #0f172a; color: #fff; text-align: center; }
    .office-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 900px;
        margin: 60px auto 0;
    }
    .office-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        padding: 40px;
        border-radius: 16px;
        text-align: left;
    }
    .office-card h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #14b8a6; margin-bottom: 20px; }
    .office-card p { color: #94a3b8; font-size: 15px; margin-bottom: 15px; line-height: 1.6; }
    .office-card .contact-link { display: block; color: #fff; font-weight: 600; text-decoration: none; font-size: 14px; margin-bottom: 8px; }
    .office-card .contact-link i { margin-right: 8px; color: #14b8a6; }

    /* ── Responsive ─────────────────────────────────────────────────── */
    @media (max-width: 991px) {
        .about-hero h1 { font-size: 36px; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); }
        .story-grid, .infra-cards, .tech-support-grid, .office-grid { grid-template-columns: 1fr; }
    }

