/* Manufacturing Page – Hero */

.mfg-hero {
    position: relative;
    width: 100%;
    min-height: 460px;
    background-color: #0a0e1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
}

.mfg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mfg-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mfg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.mfg-hero .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mfg-hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mfg-hero-title {
    font-family: var(--font-family);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 20px;
}

.mfg-hero-subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 28px;
}

.mfg-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.mfg-hero-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}

.mfg-hero-cta-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .mfg-hero {
        min-height: 380px;
        padding: 48px 6%;
    }

    .mfg-hero-subtitle {
        font-size: 15px;
    }
}

/* ========== Challenges Section ========== */
.mfg-challenges {
    background: #f3f4f6;
    padding: 60px 6%;
    text-align: center;
}

.mfg-challenges-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mfg-challenges-title {
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.25;
}

.mfg-challenges-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 40px;
}

.mfg-challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    text-align: left;
}

.mfg-challenges-card {
    border-radius: 12px;
    padding: 24px;
}

.mfg-challenges-card--pain {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mfg-challenges-card--solutions {
    background: var(--primary-color);
}

.mfg-challenges-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mfg-challenges-card-title--white {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
}

.mfg-challenges-card-title-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(3000%) hue-rotate(350deg) brightness(0.9) contrast(95%);
}

.mfg-challenges-card--solutions .mfg-challenges-card-title-icon {
    filter: brightness(0) invert(1);
}

.mfg-challenges-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mfg-challenges-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.mfg-challenges-item:last-child {
    margin-bottom: 0;
}

.mfg-challenges-card--pain .mfg-challenges-item {
    background: #f9fafb;
}

.mfg-challenges-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfg-challenges-item-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(350deg) brightness(98%) contrast(91%);
}

.mfg-challenges-item-icon--white img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(350deg) brightness(98%) contrast(91%);
}

.mfg-challenges-item--orange {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

.mfg-challenges-item-text {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}

.mfg-challenges-item--orange .mfg-challenges-item-text {
    color: #fff;
}

@media (max-width: 768px) {
    .mfg-challenges {
        padding: 40px 6%;
    }

    .mfg-challenges-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mfg-challenges-card {
        padding: 20px;
    }

    .mfg-challenges-subtitle {
        margin-bottom: 32px;
    }
}
