.main-hero {
    background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.8) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%), url("../../assets/corporate-skyline.png") center / cover no-repeat;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 50%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 50%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/corporate-skyline.png") center / cover no-repeat;
        padding: 0;
        align-items: center;
    }

    .hero-header {
        padding: 40px;
    }

    .hero-header>h1 {
        width: 100%;
    }

    .hero-header>p {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 0px;
    }

    .hero-header {
        padding: 20px;
    }

    .hero-header>h1 {
        font-size: 2.617rem;
    }
}

.services-overview {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 64px;
    padding: 64px 50px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.services-overview-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-overview-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #000;
}

.intro-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: currentColor;
}

.intro-section-divider {
    flex: 1;
    height: 1px;
    background-color: currentColor;
    max-width: 200px;
}

.services-overview-tag {
    width: fit-content;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}

.service-overview-col>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.services-overview-highlight {
    color: var(--buttons);
}

.service-overview-content {
    gap: 20px;
}

.service-overview-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: var(--body-text);
}

.services-overview-divider {
    border-top: 1px solid #e3e7ef;
}

.services-metrics-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-metric-main {
    min-height: 110px;
    border-left: 1px solid #d7deea;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.service-metric-main>h3 {
    
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.service-metric-main>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #586074;
}


@media screen and (max-width:768px) {
    .services-overview {
        padding: 48px 40px;
        gap: 40px;
    }

    .services-overview-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-overview-content>p {
        font-size: 1rem;
    }

    .services-metrics-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }

    .service-metric-main {
        min-height: 96px;
    }

    .service-metric-main>h3 {
        font-size: 2.617rem;
    }

    .service-metric-main>span {
        font-size: 0.875rem;
    }

}

@media screen and (max-width:430px) {
    .services-overview {
        padding: 48px 20px;
    }

    .intro-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .intro-section-divider {
        max-width: 100%;
        width: 100px;
        align-self: flex-start;
    }

    .services-metrics-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-metric-main {
        min-height: 0;
    }
}

.services-container-main {
    background: #f0f2f4;
    margin-top: 50px;
    padding: 50px;
}

.services-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.services-main-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.618;
    text-align: left;
    text-transform: uppercase;
}

.services-main-header>h2 {
    width: 40%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}

.services-main-content {
    position: relative;
    gap: 24px;
}

.service-main-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.services-container {
    width: 45%;
    flex: 1 1 45%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-image>img {
    width: 100%;
    margin: 0 auto;
}

.services-container-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-container-content>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;

}

.services-container-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.services-container-content>a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    color: #000;
    margin-top: 16px;
}

@media screen and (max-width:1024px) {
    .services-container-main {
        padding: 64px 0px;
    }

    .services-main {
        padding: 0px 50px;
    }
}

@media screen and (max-width:768px) {
    .services-contaioner-main {
        padding: 64px 0;
    }

    .services-main {
        padding: 0 40px;
    }
    
    .services-main-header>h2 {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .services-container-main {
        padding: 64px 0px;
    }
    
    .services-main {
        padding: 0 20px;
    }

    .services-main-header>h2 {
        font-size: 2.617rem;
    }

    .services-container {
        width: 100%;
        flex: 1 1 100%;
    }
}