/* Industrial Page Styles */

/* Hero Section */
.ind-hero {
    position: relative;
    overflow: hidden;
}

.ind-hero-content {
    padding: 500px 16px 80px;
}

.ind-hero-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 62px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #eff2f1;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 2;
}

.ind-hero-description {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.192px;
    color: #eff2f1;
    margin: 0;
    max-width: 595px;
    position: relative;
    z-index: 2;
}

/* Category Section (Light) */
.ind-category {
    background: #eff2f1;
    padding: 160px 0 140px;
}

.ind-category-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.ind-category-header {
    display: flex;

    gap: 440px;
    width: 100%;
}

.ind-category-label {
    color: #131316;
}

.ind-category-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 62px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #131316;
    margin: 0;
    max-width: 940px;
}

/* Services List */
.ind-services-list {
    display: flex;
    flex-direction: column;
}

.ind-service-item {
    display: flex;
    align-items: center;
    height: 238px;
    position: relative;
    border-top: 1px solid #bfbfbf;
}

.ind-service-item:last-child {
    border-bottom: 1px solid #bfbfbf;
}

.ind-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: #67ff56;
    border-radius: 4px;
    flex-shrink: 0;
}

.ind-service-icon img {
    width: 62px;
    height: 62px;
}

.ind-service-title {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 1.5px;
    color: #131316;
    margin: 0;
    max-width: 459px;
    position: absolute;
    left: 483px;
}

.ind-service-desc {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #131316;
    margin: 0;
    max-width: 318px;
    width: 100%;
    position: absolute;
    right: 0;
}

/* =====================================================
   MOBILE ADAPTIVE (max-width: 767px)
   ===================================================== */

/* Mobile-only elements - hidden by default */
.ind-hero-btn {
    display: none;
}
.value-number {
    width: fit-content;
    flex-shrink: 0;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: -0.344px;
    color: #000;
    display: none;
}

.value-number span {
    font-family: 'Courier New', sans-serif;
    font-size: 20px;
    color: rgba(103, 255, 86, 1);
}

@media (max-width: 767px) {
    .value-number {
        display: block;
    }
    /* Hero Section */

    .ind-hero-gradient-top {
        height: 200px;
    }

    .ind-hero-gradient-bottom {
        height: 500px;
    }

    .ind-hero-content {
        padding: 250px 16px 50px;
    }

    .ind-hero-title {
        font-size: 32px;
        line-height: 1;
        letter-spacing: 2px;
        max-width: none;
        margin-bottom: 26px;
    }

    .ind-hero-description {
        font-size: 16px;
        line-height: 1.4;
        max-width: none;
    }

    .ind-hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        height: 60px;
        padding: 0 18px 0 30px;
        background: #67ff56;
        border-radius: 4px;
        text-decoration: none;
        margin-top: 52px;
    }

    .ind-hero-btn span:first-child {
        font-family: 'Manrope', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #131316;
    }

    .ind-hero-btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #67ff56;
    }

    /* Category Section */
    .ind-category {
        padding: 70px 0;
    }

    .ind-category-container {
        gap: 50px;
    }

    .ind-category-header {
        flex-direction: column;
        gap: 40px;
    }

    .ind-category-title {
        font-size: 32px;
        line-height: 1;
        max-width: none;
    }

    /* Service Items - vertical list with numbers */
    .ind-services-list {
        counter-reset: service-counter;
    }

    .ind-service-item {
        counter-increment: service-counter;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 14px;
        padding: 28px 0;
        border-color: rgba(66, 106, 90, 0.5);
    }

    .ind-service-icon {
        display: none;
    }

    .ind-service-title {
        position: static;
        font-size: 20px;
        max-width: none;
    }

    .ind-service-desc {
        position: static;
        max-width: none;
    }

    /* Contact Section - reorder for mobile */
    .contact-left {
        display: contents;
    }

    .contact-left > h2 {
        order: 1;
    }

    .contact-left > .body-md {
        order: 2;
    }

    .contact-form {
        order: 3;
    }

    .contact-info-list {
        order: 4;
    }
}

