.desktop-sxs-hero {
    width: 100%;
    position: relative;
}

.desktop-sxs-hero__container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
}

.desktop-sxs-hero__image {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-sxs-problems {
    padding: 80px 20px;
    text-align: center;
}

.desktop-sxs-problems__container {
    max-width: 1440px;
    margin: 0 auto;
}

.desktop-sxs-problems__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.pill-4 {
    grid-column: 1 / 2;
    column-width: 50%;
    justify-self: end;
}

.pill-5 {
    grid-column: 2 / 3;
    column-width: 50%;
    justify-self: start;
}

.pill {
    padding: 20px 26px;
    border-radius: 999px;
    font-size: 36px;
    white-space: nowrap;

    background: white;
    position: relative;
    z-index: 0;
}

/* Gradient border trick */
.pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 4px; /* border thickness */

    background: linear-gradient(
        90deg,
        #1159FF 0%,
        #43A047 33%,
        #FFCF2A 67%,
        #FF385C 100%
    );

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

.desktop-sxs-problems__text {
    padding: 48px;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
}

.row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.desktop-sxs-form-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.desktop-sxs-form-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.desktop-sxs-form-content {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    max-width: 1440px;
    height: 100%;

    padding: 9rem 0 0 7rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 10px;
}

.main-title {
    margin: 10px 0 20px;
}

.main-title img {
    display: block;
    max-width: 80%;
    height: auto;
}

.description {
    color: #fff;
    font-size: 36px;
    line-height: 1.6;
    margin: 30px 0 30px 0;
}

.bottom-text {
    color: #fff;
    font-size: 26px;
    margin-top: 70px;
}

.sxs-form {
    margin-top: 7rem;
    max-width: 700px;
}

.form-row {
    display: flex;
    gap: 26px;
    margin-bottom: 26px;
}

.form-field {
    position: relative;
    flex: 1;
}

.form-field.full {
    width: 100%;
    margin-bottom: 16px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 18px 46px 18px 18px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.form-field img {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    pointer-events: none;
}

.form-button {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.form-button button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;
    border: none;
    border-radius: 999px;

    background: #fff;
    color: #000;
    cursor: pointer;
}

.form-button img {
    width: 16px;
}

.desktop-sxs-steps {
    text-align: center;
    padding: 100px 20px;
}

.steps-top-text {
    font-size: 36px;
    color: #000;
    padding: 20px 0;
}

.steps-logo img {
    margin: 10px auto;
    display: block;
    max-width: 400px;
}

.steps-sub-text {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.steps-line-wrapper {
    position: relative;
    margin-top: 100px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.steps-line {
    height: 6px;
    width: 100%;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #1159FF 0%,
        #FFCF2A 19%,
        #FF385C 38%,
        #00A61D 60%,
        #FF9500 80%,
        #CF67FF 100%
    );
}

.steps-icons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.sxs-service-card {
    position: absolute;
    transform: translate(-50%, -50%);
}

.sxs-service-card img {
    width: 150px;
}

.icon-1 { left: 0%; transform: translate(-50%, -50%); }
.icon-2 { left: 19%; transform: translate(-50%, -50%); }
.icon-3 { left: 38%; transform: translate(-50%, -50%); }
.icon-4 { left: 60%; transform: translate(-50%, -50%); }
.icon-5 { left: 80%; transform: translate(-50%, -50%); }
.icon-6 { left: 100%; transform: translate(-50%, -50%); }

.sxs-service-card:hover {
    transform: translate(-50%, -50%) translateY(-8px) scale(1.03);
}

.sxs-lets-talk{
    margin-top: 50px;
}