.services-container-7eb11bfb {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    padding: 80px 40px;
    box-sizing: border-box;
}

.services-header-7eb11bfb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #222222;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.services-label-7eb11bfb {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-title-7eb11bfb {
    text-align: right;
    font-size: 32px;
    line-height: 1.2;
}

.services-title-7eb11bfb strong {
    display: block;
    font-weight: 800;
    color: #ffffff;
}

.services-title-7eb11bfb .muted-7eb11bfb {
    display: block;
    color: #888888;
    font-weight: 400;
}

/* Rows Wrapper */
.services-rows-wrapper-7eb11bfb {
    display: flex;
    flex-direction: column;
}

.services-row-7eb11bfb {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #333333;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

/* Row Hover background setup - 100% width left-to-right sliding reveal */
.row-bg-image-7eb11bfb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    z-index: 1;
}

/* Linear overlay on hover - sliding left-to-right */
.services-row-7eb11bfb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    z-index: 2;
}

.services-row-7eb11bfb:hover .row-bg-image-7eb11bfb,
.services-row-7eb11bfb:hover::after {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

/* Content Container */
.row-content-7eb11bfb {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
    padding: 30px 20px;
    box-sizing: border-box;
}

/* Elements Styling */
.row-badge-7eb11bfb {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    flex-shrink: 0;
}

.row-desc-7eb11bfb {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
    max-width: 250px;
    width: 100%;
    margin: 0 40px;
    flex-shrink: 0;
}

/* Muted bold words to be lighter as requested */
.row-word-7eb11bfb {
    font-size: 72px;
    font-weight: 500; /* Lighter font weight requested */
    color: #ffffff;
    text-transform: uppercase;
    flex-grow: 1;
    text-align: center;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease;
}

.services-row-7eb11bfb.has-underline-7eb11bfb .row-word-7eb11bfb {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.row-arrow-7eb11bfb {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.services-row-7eb11bfb:hover .row-arrow-7eb11bfb {
    transform: translateX(6px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .row-word-7eb11bfb {
        font-size: 48px;
    }
    .row-desc-7eb11bfb {
        max-width: 200px;
        margin: 0 20px;
    }
}

@media (max-width: 767px) {
    .services-container-7eb11bfb {
        padding: 50px 20px;
    }
    .services-header-7eb11bfb {
        flex-direction: column;
        gap: 15px;
    }
    .services-title-7eb11bfb {
        text-align: left;
    }
    .row-content-7eb11bfb {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        min-height: auto;
        padding: 40px 0;
    }
    .row-desc-7eb11bfb {
        max-width: 100%;
        margin: 0;
    }
    .row-word-7eb11bfb {
        text-align: left;
        font-size: 36px;
        width: 100%;
    }
    .row-arrow-7eb11bfb {
        align-self: flex-end;
    }
    /* Touch optimization: Show image slightly at low opacity permanently on mobile */
    .row-bg-image-7eb11bfb {
        opacity: 0.15;
        clip-path: inset(0 0 0 0);
    }
    .services-row-7eb11bfb::after {
        opacity: 0.85;
        clip-path: inset(0 0 0 0);
    }
}
