.about-us-page .section-header {
    text-align: center;
    margin-bottom: 36px;
}

.about-us-page .section-padding {
    padding: 32px 0;
}

.about-us-page .section-header.compact {
    margin-bottom: 24px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-story-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.about-story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.about-story-text.spaced {
    margin-bottom: 20px;
}

.section-muted {
    background: #f9fafb;
}

.hero-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111827;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
}

.mission-vision-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(520px 200px at 20% -10%, rgba(56, 189, 248, 0.18), transparent 65%),
        radial-gradient(520px 200px at 80% 110%, rgba(249, 115, 22, 0.16), transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.mv-card {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(224, 242, 255, 0.92));
    padding: 42px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    z-index: 1;
}

.mv-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: linear-gradient(125deg, rgba(56, 189, 248, 0.08), transparent 55%, rgba(249, 115, 22, 0.08));
    pointer-events: none;
}

.mv-card > * {
    position: relative;
    z-index: 1;
}


.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: inset 0 0 20px rgba(10, 10, 54, 0.12);
}

.mv-icon span {
    font-size: 2rem;
}

.mv-icon.mission {
    background: linear-gradient(135deg, #38bdf8, #0e7490);
}

.mv-icon.vision {
    background: linear-gradient(135deg, #22c55e, #0a0a36);
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.mv-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #475569;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(240, 249, 255, 0.92));
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0.65;
    z-index: 0;
    background: linear-gradient(140deg, rgba(56, 189, 248, 0.12), transparent 50%);
}

.value-card:nth-child(2)::before {
    background: linear-gradient(140deg, rgba(34, 197, 94, 0.12), transparent 50%);
}

.value-card:nth-child(3)::before {
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.15), transparent 50%);
}

.value-card:nth-child(4)::before {
    background: linear-gradient(140deg, rgba(14, 116, 144, 0.15), transparent 50%);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0a36;
    background: rgba(248, 250, 252, 0.85);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.value-title {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a36;
}

.value-text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-number.blue {
    color: #1775c1;
}

.stat-number.green {
    color: #10b981;
}

.stat-number.amber {
    color: #f59e0b;
}

.stat-number.purple {
    color: #8b5cf6;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.9rem;
    color: #6b7280;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.team-media {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-media.blue {
    background: linear-gradient(135deg, #1775c1, #0d5a9a);
}

.team-media.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.team-media.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.team-initial {
    font-size: 6rem;
    color: white;
    font-weight: 700;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 30px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-role.blue {
    color: #1775c1;
}

.team-role.green {
    color: #10b981;
}

.team-role.orange {
    color: #f59e0b;
}

.team-bio {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.diff-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid;
}

.diff-card.blue {
    border-left-color: #1775c1;
}

.diff-card.green {
    border-left-color: #10b981;
}

.diff-card.amber {
    border-left-color: #f59e0b;
}

.diff-card.purple {
    border-left-color: #8b5cf6;
}

.diff-card.pink {
    border-left-color: #ec4899;
}

.diff-card.cyan {
    border-left-color: #06b6d4;
}

.diff-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.diff-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
}

.tech-categories {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.tech-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-pill {
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.work-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.work-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: grid;
    gap: 14px;
}

.work-step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.work-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.work-step-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.clutch-embed {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.cta-dual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cta-dual .ghost {
    background: transparent;
    color: #111827;
    border: 1px solid #111827;
}

.cta-section-wrapper.spaced {
    margin-bottom: 60px;
}

@media (max-width: 968px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
