.service-page {
    --service-ink: #071829;
    --service-slate: #40546a;
    --service-muted: #6f8194;
    --service-line: #dce6ef;
    --service-cloud: #f4f8fb;
    --service-blue: #3d8df5;
    --service-blue-dark: #1769cf;
    --service-cyan: #35d3c1;
    color: var(--service-ink);
    overflow: hidden;
}

.service-page *,
.service-page *::before,
.service-page *::after {
    box-sizing: border-box;
}

.service-hero {
    position: relative;
    padding: 32px 0 clamp(74px, 8vw, 108px);
    background:
        linear-gradient(rgba(23, 105, 207, .033) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 105, 207, .033) 1px, transparent 1px),
        radial-gradient(circle at 88% 14%, rgba(53, 211, 193, .15), transparent 25%),
        radial-gradient(circle at 7% 26%, rgba(61, 141, 245, .11), transparent 27%),
        linear-gradient(180deg, #f8fbfe 0%, #fff 92%);
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(47px, 6vw, 74px);
    color: var(--service-muted);
    font-size: .75rem;
    font-weight: 700;
}

.service-breadcrumb a {
    color: var(--service-blue-dark);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.service-breadcrumb i {
    color: #9aabba;
    font-size: .6rem;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(46px, 7vw, 92px);
    align-items: center;
}

.service-eyebrow,
.service-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--service-blue-dark);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.service-eyebrow {
    padding: 8px 12px;
    border: 1px solid #cfe4fb;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 9px 26px rgba(43, 111, 185, .06);
}

.service-eyebrow i {
    color: #1eb7a5;
    font-size: .82rem;
}

.service-hero h1 {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--service-ink);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 870;
    letter-spacing: -.063em;
    line-height: 1;
}

.service-hero-copy > p {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--service-slate);
    font-size: clamp(1.04rem, 1.65vw, 1.18rem);
    line-height: 1.72;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .9rem;
    font-weight: 810;
    line-height: 1;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.service-button:hover {
    transform: translateY(-2px);
}

.service-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--service-blue-dark), var(--service-blue));
    box-shadow: 0 14px 30px rgba(23, 105, 207, .24);
}

.service-button-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #0e5cb9, #2f82ee);
    box-shadow: 0 17px 37px rgba(23, 105, 207, .32);
}

.service-button-secondary {
    border-color: #cfdbe6;
    color: var(--service-ink);
    background: rgba(255, 255, 255, .88);
}

.service-button-secondary:hover {
    border-color: #9bc8f8;
    color: #0c5fbf;
    background: #fff;
}

.service-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 23px 0 0;
    padding: 0;
    color: #6a7d91;
    font-size: .77rem;
    font-weight: 680;
    list-style: none;
}

.service-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-trust i {
    color: #1eb79c;
}

.service-visual {
    position: relative;
    padding: 27px;
    border: 1px solid rgba(151, 192, 226, .2);
    border-radius: 22px;
    color: #d9e9f7;
    background:
        radial-gradient(circle at 82% 10%, rgba(53, 211, 193, .16), transparent 28%),
        linear-gradient(145deg, #0b2239 0%, #071829 70%);
    box-shadow: 0 36px 70px rgba(7, 24, 41, .21), inset 0 1px rgba(255, 255, 255, .08);
}

.service-visual::before {
    position: absolute;
    z-index: -1;
    width: 78%;
    height: 50%;
    right: -11%;
    bottom: -13%;
    border-radius: 50%;
    background: rgba(61, 141, 245, .17);
    filter: blur(36px);
    content: "";
}

.service-visual-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.service-visual-heading > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(75, 170, 255, .25);
    border-radius: 13px;
    color: #66b6ff;
    background: rgba(55, 137, 225, .13);
}

.service-visual-heading div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-visual-heading small {
    color: #7890a6;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-visual-heading strong {
    color: #f3f8fc;
    font-size: 1.02rem;
}

.service-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 9px;
    align-items: center;
    padding: 37px 0;
}

.service-flow article {
    display: flex;
    min-width: 0;
    min-height: 126px;
    flex-direction: column;
    justify-content: center;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, .045);
}

.service-flow article > i {
    margin-bottom: 12px;
    color: #52d8c7;
    font-size: 1.25rem;
}

.service-flow article span {
    color: #edf6fc;
    font-size: .77rem;
    font-weight: 800;
}

.service-flow article small {
    margin-top: 4px;
    color: #7990a5;
    font-size: .62rem;
}

.service-flow > i {
    color: #54708a;
    font-size: .77rem;
}

.service-visual-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
}

.service-visual-status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8da4b8;
    font-size: .65rem;
    font-weight: 700;
}

.service-visual-status span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35d3c1;
    box-shadow: 0 0 0 5px rgba(53, 211, 193, .1);
}

.service-visual-status strong {
    color: #d9e7f3;
    font-size: .66rem;
}

.service-section {
    padding: clamp(76px, 9vw, 118px) 0;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: clamp(52px, 9vw, 130px);
    align-items: start;
}

.service-section h2,
.service-related h2,
.service-final h2 {
    margin: 15px 0 0;
    color: var(--service-ink);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 850;
    letter-spacing: -.052em;
    line-height: 1.08;
}

.service-intro-copy {
    padding-top: 25px;
    border-top: 1px solid var(--service-line);
}

.service-intro-copy p {
    margin: 0;
    color: var(--service-slate);
    font-size: clamp(1.02rem, 1.5vw, 1.15rem);
    line-height: 1.82;
}

.service-intro-copy p + p {
    margin-top: 19px;
}

.service-problems {
    background: #f4f8fb;
}

.service-section-heading {
    max-width: 790px;
}

.service-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    margin-top: 47px;
}

.service-problem-grid article {
    min-height: 205px;
    padding: 23px;
    border: 1px solid #dee8f1;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 24, 41, .045);
}

.service-problem-grid article > span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: #1769cf;
    background: #eaf4ff;
    font-size: .67rem;
    font-weight: 850;
}

.service-problem-grid p {
    margin: 42px 0 0;
    color: #2d465e;
    font-size: .93rem;
    font-weight: 670;
    line-height: 1.65;
}

.service-benefits {
    color: #dbe9f5;
    background:
        radial-gradient(circle at 88% 15%, rgba(53, 211, 193, .11), transparent 28%),
        #071829;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr);
    gap: clamp(55px, 9vw, 125px);
    align-items: start;
}

.service-benefits .service-section-label {
    color: #58d9c9;
}

.service-benefits h2 {
    color: #fff;
}

.service-benefits-intro p {
    margin: 22px 0 0;
    color: #9bb0c3;
    line-height: 1.72;
}

.service-benefits-intro a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: #76baff;
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.service-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-benefit-list li {
    display: flex;
    gap: 12px;
    min-height: 100px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    color: #dce9f4;
    background: rgba(255, 255, 255, .035);
    font-size: .87rem;
    font-weight: 660;
    line-height: 1.52;
}

.service-benefit-list i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    color: #071829;
    background: #35d3c1;
    font-size: .85rem;
}

.service-section-heading-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .65fr);
    gap: 70px;
    align-items: end;
}

.service-section-heading-split > p {
    margin: 0 0 5px;
    color: var(--service-slate);
    line-height: 1.7;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 53px 0 0;
    padding: 0;
    border-top: 1px solid var(--service-line);
    list-style: none;
}

.service-process-grid li {
    position: relative;
    padding: 34px 25px 0 0;
}

.service-process-grid li:not(:last-child)::after {
    position: absolute;
    top: -4px;
    right: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3d8df5;
    box-shadow: 0 0 0 6px #eaf4ff;
    content: "";
}

.service-process-grid li > span {
    color: #8aa0b3;
    font-size: .69rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.service-process-grid li > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-top: 19px;
    border: 1px solid #cfe2f4;
    border-radius: 11px;
    color: #1769cf;
    background: #f1f7fd;
}

.service-process-grid h3 {
    margin: 19px 0 0;
    font-size: 1.03rem;
    font-weight: 820;
}

.service-process-grid p {
    max-width: 225px;
    margin: 9px 0 0;
    color: var(--service-muted);
    font-size: .84rem;
    line-height: 1.62;
}

.service-faq {
    border-top: 1px solid #e5ecf3;
    background: #f9fbfd;
}

.service-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: clamp(55px, 9vw, 125px);
    align-items: start;
}

.service-faq-grid > div:first-child > p {
    max-width: 390px;
    margin: 20px 0 0;
    color: var(--service-muted);
    line-height: 1.72;
}

.service-accordion details {
    border-bottom: 1px solid #d8e3ed;
}

.service-accordion details:first-child {
    border-top: 1px solid #d8e3ed;
}

.service-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: var(--service-ink);
    font-size: .95rem;
    font-weight: 790;
    cursor: pointer;
    list-style: none;
}

.service-accordion summary::-webkit-details-marker {
    display: none;
}

.service-accordion summary i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    color: #1769cf;
    background: #eaf4ff;
    transition: transform .2s ease;
}

.service-accordion details[open] summary i {
    transform: rotate(45deg);
}

.service-accordion details p {
    max-width: 720px;
    margin: -5px 45px 22px 0;
    color: var(--service-slate);
    font-size: .9rem;
    line-height: 1.72;
}

.service-related {
    padding: clamp(76px, 8vw, 105px) 0;
}

.service-related h2 {
    max-width: 760px;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.service-related-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 22px;
    border: 1px solid var(--service-line);
    border-radius: 14px;
    color: var(--service-ink);
    background: #fff;
    font-size: .96rem;
    font-weight: 790;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.service-related-grid a i {
    color: #3d8df5;
}

.service-related-grid a:hover {
    border-color: #9ecbf8;
    color: #1769cf;
    box-shadow: 0 14px 35px rgba(23, 105, 207, .1);
    transform: translateY(-3px);
}

.service-final {
    padding: 0 0 clamp(76px, 8vw, 110px);
}

.service-final-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding: clamp(35px, 5vw, 62px);
    border-radius: 22px;
    color: #c3d3e2;
    background:
        radial-gradient(circle at 88% 10%, rgba(53, 211, 193, .17), transparent 26%),
        linear-gradient(140deg, #0b2b49, #071829 72%);
    box-shadow: 0 28px 60px rgba(7, 24, 41, .16);
}

.service-final-card > div > span {
    color: #60d9ca;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-final-card h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.service-final-card p {
    max-width: 700px;
    margin: 18px 0 0;
    color: #9db1c4;
    line-height: 1.7;
}

.service-button-light {
    min-width: 195px;
    color: #071829;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.service-button-light:hover {
    color: #1769cf;
    background: #f2f8fd;
}

@media (max-width: 1080px) {
    .service-hero-grid {
        grid-template-columns: 1fr minmax(360px, .85fr);
        gap: 38px;
    }

    .service-flow {
        gap: 6px;
    }

    .service-flow article {
        min-height: 112px;
        padding-inline: 7px;
    }

    .service-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .service-hero {
        padding-top: 25px;
    }

    .service-hero-grid,
    .service-intro-grid,
    .service-benefits-grid,
    .service-faq-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-grid {
        gap: 54px;
    }

    .service-visual {
        max-width: 650px;
    }

    .service-intro-grid,
    .service-benefits-grid,
    .service-faq-grid {
        gap: 40px;
    }

    .service-intro-copy {
        padding-top: 0;
        border-top: 0;
    }

    .service-section-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        border-top: 0;
    }

    .service-process-grid li {
        padding-top: 23px;
        border-top: 1px solid var(--service-line);
    }

    .service-process-grid li:not(:last-child)::after {
        display: none;
    }

    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .service-final-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-final-card .service-button {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .service-hero h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
    }

    .service-breadcrumb {
        margin-bottom: 42px;
    }

    .service-actions,
    .service-actions .service-button {
        width: 100%;
    }

    .service-trust {
        display: grid;
    }

    .service-visual {
        padding: 20px;
        border-radius: 18px;
    }

    .service-flow {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 25px 0;
    }

    .service-flow > i {
        transform: rotate(90deg);
        justify-self: center;
    }

    .service-flow article {
        min-height: 88px;
    }

    .service-flow article > i {
        margin-bottom: 7px;
    }

    .service-visual-status {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-section h2,
    .service-related h2 {
        font-size: clamp(2.05rem, 10vw, 2.8rem);
    }

    .service-problem-grid,
    .service-benefit-list,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-problem-grid article {
        min-height: 170px;
    }

    .service-problem-grid p {
        margin-top: 28px;
    }

    .service-process-grid {
        gap: 20px;
    }

    .service-accordion summary {
        font-size: .9rem;
    }

    .service-final-card .service-button {
        width: 100%;
    }
}
