/* ===== JANITORIAL HERO ===== */
.jan-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1a26 0%, #1a3a4f 50%, #2a6b7c 100%);
    overflow: hidden;
    padding-top: 80px;
}
.jan-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(91,164,181,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.jan-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.jan-hero-badge {
    display: inline-block;
    background: rgba(91,164,181,0.15);
    border: 1px solid rgba(91,164,181,0.3);
    color: var(--teal-light);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.jan-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: 20px;
}
.jan-hero-sub {
    font-size: 18px;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 16px;
}
.jan-hero-desc {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 700px;
}

/* 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-jan {
    text-align: center;
    color: var(--gray-500);
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Challenges */
.jan-challenges {
    background: var(--gray-50);
}
.jan-challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 1024px) {
    .jan-challenges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .jan-challenges-grid { grid-template-columns: 1fr; }
}

/* Services */
.jan-services {
    background: var(--white);
}
.jan-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.jan-service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--teal);
    transition: transform 0.3s, box-shadow 0.3s;
}
.jan-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.jan-service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.jan-service-icon svg { width: 24px; height: 24px; }
.jan-service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}
.jan-service-card > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}
.jan-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.jan-service-card li {
    font-size: 13px;
    color: var(--gray-700);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}
.jan-service-card li:last-child { border-bottom: none; }
.jan-service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .jan-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .jan-services-grid { grid-template-columns: 1fr; }
}

/* Industries Served */
.jan-industries {
    background: var(--gray-50);
}
.jan-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.jan-industry {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--teal);
    transition: transform 0.2s, box-shadow 0.2s;
}
.jan-industry:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.jan-industry h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}
.jan-industry p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}
@media (max-width: 1024px) {
    .jan-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .jan-industries-grid { grid-template-columns: 1fr; }
}

/* Why EWM */
.jan-why {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1a3a4f 100%);
}
.jan-why .section-title {
    color: var(--white);
}
.jan-why .section-subtitle-jan {
    color: var(--sky-light);
}
.jan-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.jan-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 24px;
    transition: transform 0.3s, background 0.3s;
}
.jan-why-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}
.jan-why-icon {
    width: 40px;
    height: 40px;
    color: var(--sky);
    margin-bottom: 16px;
}
.jan-why-icon svg { width: 100%; height: 100%; }
.jan-why-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--teal-light);
    margin-bottom: 8px;
}
.jan-why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
}
@media (max-width: 1024px) {
    .jan-why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
