.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.2s ease;
}

.home-button--primary {
    border: 1px solid #1764d9;
    background: #1764d9;
    color: #ffffff;
}

.home-button--primary:hover {
    border-color: #0e51bd;
    background: #0e51bd;
}

.home-button--outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.home-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.home-button--light {
    min-width: 140px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #123263;
}

.home-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(3, 28, 55, 1) 0%,
            rgba(3, 28, 55, 0.98) 23%,
            rgba(3, 28, 55, 0.88) 38%,
            rgba(3, 28, 55, 0.42) 57%,
            rgba(3, 28, 55, 0.08) 76%,
            rgba(3, 28, 55, 0) 100%
        ),
        url("../images/home/hero-globe.webp");
    background-position: center, center right;
    background-size: cover, cover;
    background-repeat: no-repeat;
    color: #ffffff;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(3, 28, 55, 0.02) 0%,
        rgba(3, 28, 55, 0.04) 65%,
        rgba(3, 28, 55, 0.20) 100%
    );
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 540px;
}

.home-hero__content {
    position: relative;
    z-index: 3;
    width: 52%;
    max-width: 650px;
    padding: 65px 0 105px;
}

.home-hero__content h1 {
    max-width: 610px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(44px, 4.2vw, 60px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.home-hero__content p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(220, 228, 238, 0.74);
    font-size: 16px;
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.home-hero__dots {
    display: flex;
    gap: 8px;
    margin-top: 42px;
}

.home-hero__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.home-hero__dots span.is-active {
    background: #1764d9;
}

.home-hero__visual {
    display: none;
}

 .home-stats {
    position: relative;
    z-index: 5;
    margin-top: -40px;
    padding-bottom: 18px;
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 24px;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(11, 31, 56, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.home-stat:hover {
    transform: translateY(-3px);
    border-color: #c8d5e4;
    box-shadow: 0 18px 38px rgba(11, 31, 56, 0.10);
}

.home-stat::after {
    display: none;
}

.home-stat__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 14px;
    background: #edf4ff;
    color: #1764d9;
}

.home-stat__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-stat__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.home-stat strong,
.home-stat span {
    display: block;
}

.home-stat strong {
    margin: 0;
    color: #0d2d59;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
}

.home-stat span {
    color: #5f7088;
    font-size: 14px;
    line-height: 1.45;
}

.home-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding-left: 14px;
    color: #17355f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.15px;
}

.home-eyebrow::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background: #ff5b61;
}

.home-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 24px;
}

.home-section-top > div {
    max-width: 720px;
}

.home-section-top h2 {
    margin: 8px 0 0;
    color: #26384f;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.45px;
}

.home-section-top p {
    max-width: 720px;
    margin: 16px 0 0;
    color: #718096;
    font-size: 15px;
    line-height: 1.7;
}

.home-brands {
    padding: 44px 0 36px;
}

.home-brands__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 22px;
}

.home-brands__heading > div:first-child {
    max-width: 560px;
}

.home-brands__heading h2 {
    margin: 8px 0 0;
    color: #26384f;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.45px;
}

.home-brands__heading-side {
    display: flex;
    max-width: 520px;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.home-brands__heading-side p {
    margin: 0;
    color: #7a8798;
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
}

.home-brands__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.home-brand-card {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid #dce4ed;
    border-radius: 7px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-brand-card:hover {
    border-color: #b7c6d8;
    box-shadow: 0 8px 24px rgba(12, 36, 66, 0.06);
    transform: translateY(-2px);
}

.home-brand-card img {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 46px;
    object-fit: contain;
}

.home-solutions {
    padding: 22px 0 33px;
}

.home-slider-buttons {
    display: flex;
    gap: 10px;
}

.home-slider-buttons button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d7e1ee;
    border-radius: 50%;
    color: #1764d9;
    font-size: 18px;
}

.home-solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.home-solution-card {
    position: relative;
    min-height: 265px;
    padding: 24px 23px;
    border: 1px solid #d8e2ef;
    border-radius: 7px;
    background: #ffffff;
    transition: 0.2s ease;
}

.home-solution-card:hover {
    border-color: #96b8ed;
    box-shadow: 0 14px 32px rgba(14, 57, 112, 0.08);
    transform: translateY(-3px);
}

.home-solution-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border: 1px solid #c9ddfa;
    border-radius: 13px;
    background: #eaf3ff;
    color: #1764d9;
    font-size: 19px;
}

.home-solution-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-solution-card h3 {
    margin-bottom: 12px;
    color: #102b59;
    font-size: 19px;
    font-weight: 400;
}

.home-solution-card p {
    max-width: 235px;
    margin-bottom: 45px;
    color: #63728a;
    font-size: 14px;
    line-height: 1.65;
}

.home-card-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #eef5ff;
    color: #1764d9;
}

.home-agency {
    padding: 10px 0 34px;
}

.home-agency__inner {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 360px;
    overflow: hidden;
    border-radius: 10px;
    background: #051d39;
    color: #ffffff;
}

.home-agency__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 42px 34px;
}

.home-agency__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 12px;
    padding-left: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.7px;
}

.home-agency__eyebrow::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background: #ff5b61;
}

.home-agency__content h2 {
    max-width: 520px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
}

.home-agency__content p {
    max-width: 500px;
    margin-bottom: 19px;
    color: rgba(255,255,255,.73);
    font-size: 14px;
    line-height: 1.72;
}

.home-agency__content ul {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.home-agency__content li {
    position: relative;
    padding-left: 25px;
    color: rgba(255,255,255,.86);
    font-size: 14px;
}

.home-agency__content li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1764d9;
    color: #fff;
    font-size: 10px;
}

.home-agency__visual {
    position: relative;
    min-height: 360px;
    background: linear-gradient(90deg,#051d39 0%,rgba(5,29,57,.10) 34%,transparent 62%), url("../images/home/agency-office.webp") center / cover no-repeat, linear-gradient(135deg,#172c42,#41556c);
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1764d9;
    font-size: 14px;
    transition: .2s ease;
}

.home-text-link:hover {
    color: #0e51bd;
}

.home-process {
    padding: 20px 0 42px;
}

.home-process__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 44px;
}

.home-process__visual {
    min-height: 480px;
    overflow: hidden;
    border: 1px solid #dce4ed;
    border-radius: 10px;
    background: #eef3f8;
}

.home-process__visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.home-process__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}

.home-process__content h2 {
    max-width: 540px;
    margin: 8px 0 13px;
    color: #26384f;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.2;
}

.home-process__lead {
    max-width: 560px;
    margin-bottom: 24px;
    color: #66758b;
    font-size: 15px;
    line-height: 1.7;
}

.home-process__steps {
    display: grid;
    gap: 0;
    margin-bottom: 25px;
}

.home-process__steps article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e0e7f0;
}

.home-process__steps article:last-child {
    border-bottom: 1px solid #e0e7f0;
}

.home-process__steps article > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #edf4ff;
    color: #1764d9;
    font-size: 12px;
    font-weight: 500;
}

.home-process__steps h3 {
    margin-bottom: 4px;
    color: #12305e;
    font-size: 16px;
    font-weight: 500;
}

.home-process__steps p {
    margin: 0;
    color: #6b798d;
    font-size: 14px;
    line-height: 1.6;
}

.home-cta {
    padding: 0 0 15px;
}

.home-cta__inner {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 16px 28px;
    border-radius: 7px;
    background: linear-gradient(
        110deg,
        #0b3576,
        #064cae,
        #103d87
    );
    color: #ffffff;
}

.home-cta__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-right: 20px;
    border-radius: 50%;
    background: #1970ed;
    font-size: 0;
}


.home-cta__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-cta__content {
    margin-right: auto;
}

.home-cta__content h2 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
}

.home-cta__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 1050px) {
    .home-hero {
        background-position: center, 65% center;
    }

    .home-hero__content {
        width: 62%;
    }

    .home-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .home-brands__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-solutions__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-process__inner {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    .home-hero {
        min-height: 525px;
        background:
            linear-gradient(
                90deg,
                rgba(3, 28, 55, 1) 0%,
                rgba(3, 28, 55, 0.95) 55%,
                rgba(3, 28, 55, 0.55) 100%
            ),
            url("../images/home/hero-globe.webp");
        background-position: center, 68% center;
        background-size: cover, auto 100%;
    }

    .home-hero__inner {
        min-height: 525px;
    }

    .home-hero__content {
        width: 100%;
        max-width: 520px;
        padding: 60px 0 100px;
    }

    .home-hero__content h1 {
        font-size: 43px;
    }

    .home-stats {
        margin-top: -34px;
        padding-bottom: 14px;
    }

    .home-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home-stat {
        min-height: 98px;
        padding: 18px 16px;
        gap: 14px;
    }

    .home-stat__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
    }

    .home-stat__icon svg {
        width: 24px;
        height: 24px;
    }

    .home-stat strong {
        font-size: 28px;
    }

    .home-stat span {
        font-size: 13px;
    }

    .home-brands__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-section-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-section-top h2,
    .home-brands__heading h2 {
        font-size: 25px;
    }

    .home-brands__heading-side {
        max-width: 100%;
        align-items: flex-start;
    }

    .home-brands__heading-side p {
        max-width: 100%;
        text-align: left;
    }

    .home-brands__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-solutions__grid {
        grid-template-columns: 1fr;
    }

    .home-agency__inner {
        grid-template-columns: 1fr;
    }

    .home-agency__visual {
        min-height: 280px;
    }

    .home-process__inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .home-process__visual,
    .home-process__visual img {
        min-height: 340px;
    }

    .home-process__content {
        padding: 0;
    }

    .home-cta__inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .home-cta__content {
        width: calc(100% - 70px);
    }

    .home-cta .home-button {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .home-hero__content h1 {
        font-size: 38px;
    }

    .home-stats__grid {
        grid-template-columns: 1fr;
    }

    .home-stat {
        min-height: 92px;
    }

    .home-brands__grid {
        grid-template-columns: 1fr;
    }

    .home-brand-card {
        min-height: 82px;
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-agency__content {
        padding: 34px 22px;
    }

    .home-process__visual,
    .home-process__visual img {
        min-height: 260px;
    }

    .home-process__steps article {
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }
}
