/* =========================================================
   LPROJECT WEB — SERVICES
========================================================= */

.lp-services {
    position: relative;
    padding: 145px 0;
    background:
        radial-gradient(circle at 88% 25%, rgba(255,106,0,.07), transparent 28%),
        #0b0b0d;
    color: #fff;
}

.lp-services-inner {
    width: min(1280px, calc(100% - 70px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.lp-services-intro {
    position: sticky;
    top: 150px;
}

.lp-services-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 5vw, 82px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 650;
}

.lp-services-intro h2 span {
    color: #ff7200;
}

.lp-services-intro > p {
    max-width: 470px;
    margin: 28px 0 0;
    color: #8c8c92;
    font-size: 16px;
    line-height: 1.7;
}

.lp-services-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
}

.lp-services-link span {
    color: #ff7200;
    font-size: 18px;
    transition: transform .25s ease;
}

.lp-services-link:hover span {
    transform: translateX(5px);
}

.lp-services-list {
    border-top: 1px solid rgba(255,255,255,.09);
}

.lp-service-row {
    position: relative;
    min-height: 145px;
    display: grid;
    grid-template-columns: 55px 1fr 55px;
    gap: 20px;
    align-items: center;
    padding: 28px 10px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    text-decoration: none !important;
    overflow: hidden;
    transition: padding .35s ease, background .35s ease;
}

.lp-service-row::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(90deg, rgba(255,106,0,.10), transparent 70%);
    transition: opacity .35s ease;
    pointer-events: none;
}

.lp-service-row::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff5e00, #ff9800);
    transition: width .45s ease;
}

.lp-service-number {
    position: relative;
    z-index: 2;
    color: #56565c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    transition: color .3s ease, transform .3s ease;
}

.lp-service-main {
    position: relative;
    z-index: 2;
}

.lp-service-main h3 {
    margin: 0;
    color: #f5f5f5;
    font-size: clamp(27px, 2.3vw, 38px);
    line-height: 1;
    letter-spacing: -.03em;
    transition: color .3s ease, transform .35s ease;
}

.lp-service-main p {
    max-width: 590px;
    margin: 11px 0 0;
    color: #73737a;
    font-size: 13px;
    line-height: 1.6;
    transition: color .3s ease, transform .35s ease;
}

.lp-service-arrow {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    color: #77777d;
    font-size: 17px;
    transition: transform .35s ease, color .3s ease, border-color .3s ease, background .3s ease;
}

.lp-service-row:hover {
    padding-left: 22px;
    padding-right: 18px;
}

.lp-service-row:hover::before { opacity: 1; }
.lp-service-row:hover::after { width: 100%; }

.lp-service-row:hover .lp-service-number {
    color: #ff7200;
    transform: translateX(4px);
}

.lp-service-row:hover h3 {
    color: #fff;
    transform: translateX(5px);
}

.lp-service-row:hover p {
    color: #94949a;
    transform: translateX(5px);
}

.lp-service-row:hover .lp-service-arrow {
    color: #fff;
    border-color: rgba(255,106,0,.40);
    background: rgba(255,106,0,.08);
    transform: rotate(45deg);
}

@media (max-width: 950px) {
    .lp-services { padding: 100px 0; }
    .lp-services-inner {
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .lp-services-intro {
        position: relative;
        top: auto;
    }
}

@media (max-width: 700px) {
    .lp-services { padding: 80px 0; }
    .lp-services-inner {
        width: calc(100% - 34px);
        gap: 50px;
    }
    .lp-services-intro h2 {
        font-size: clamp(46px, 13vw, 65px);
    }
    .lp-service-row {
        grid-template-columns: 38px 1fr 42px;
        gap: 10px;
        min-height: 125px;
        padding: 24px 0;
    }
    .lp-service-main h3 { font-size: 27px; }
    .lp-service-main p { font-size: 12px; }
    .lp-service-arrow {
        width: 38px;
        height: 38px;
    }
    .lp-service-row:hover {
        padding-left: 8px;
        padding-right: 5px;
    }
}
