/* ===== MOBILITY HERO ===== */
.mob-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1a26 0%, #1e2d3d 40%, #2a6b7c 100%);
    overflow: hidden;
}
.mob-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(142,202,230,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.mob-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    max-width: 800px;
}
.mob-hero-badge {
    display: inline-block;
    background: rgba(142,202,230,0.15);
    border: 1px solid rgba(142,202,230,0.3);
    color: var(--sky);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.mob-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}
.mob-hero-sub {
    font-size: 18px;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 16px;
}
.mob-hero-desc {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ===== STATS 4-COL ===== */
.stats-bar .stats-grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-bar .stats-grid { grid-template-columns: 1fr; }
}

/* ===== SECTION HELPERS ===== */
.section-subtitle-mob {
    text-align: center;
    color: var(--gray-500);
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ===== CHALLENGES 4-COL ===== */
.mob-challenges {
    background: var(--gray-50);
}
.mob-challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== SERVICES 3-COL ===== */
.mob-services {
    background: var(--gray-50);
}
.mob-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mob-service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--teal);
    transition: transform 0.3s, box-shadow 0.3s;
}
.mob-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mob-service-icon {
    width: 44px;
    height: 44px;
    color: var(--teal);
    margin-bottom: 16px;
}
.mob-service-icon svg { width: 100%; height: 100%; }
.mob-service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
}
.mob-service-card ul {
    list-style: none;
    padding: 0;
}
.mob-service-card li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}
.mob-service-card li:last-child { border-bottom: none; }
.mob-service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
}

/* ===== WHY EWM 6-CARD ===== */
.mob-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mob-why-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s, background 0.3s;
}
.mob-why-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}
.mob-why-icon {
    width: 36px;
    height: 36px;
    color: var(--sky);
    margin-bottom: 14px;
}
.mob-why-icon svg { width: 100%; height: 100%; }
.mob-why-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--teal-light);
    margin-bottom: 8px;
}
.mob-why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mob-challenges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mob-challenges-grid { grid-template-columns: 1fr; }
    .mob-services-grid { grid-template-columns: 1fr; }
    .mob-why-grid { grid-template-columns: 1fr; }
}
