:root {
    --service-ink: #071522;
    --service-ink-soft: #10283a;
    --service-muted: #587080;
    --service-line: rgba(7, 21, 34, 0.13);
    --service-blue: #1677e8;
    --service-blue-dark: #0753aa;
    --service-cyan: #40c9ef;
    --service-white: #ffffff;
    --service-surface: #f3f7fa;
    --service-max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.service-page {
    margin: 0;
    background: var(--service-surface);
    color: var(--service-ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.service-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border-radius: 9px;
    background: var(--service-ink);
    color: var(--service-white);
    transform: translateY(-160%);
}

.service-skip-link:focus {
    transform: translateY(0);
}

.service-header {
    min-height: 82px;
    padding:
        0
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: var(--service-ink);
}

.service-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--service-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

.service-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.service-header-nav {
    display: flex;
    align-items: center;
    gap: 23px;
}

.service-header-nav a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
}

.service-header-nav a:hover {
    color: var(--service-white);
}

.service-header-nav .service-header-cta {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--service-blue);
    color: var(--service-white);
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding:
        100px
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        )
        82px;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(64, 201, 239, 0.17),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #071522,
            #0d2b40
        );
    color: var(--service-white);
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    pointer-events: none;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(260px, 0.42fr);
    gap: 85px;
    align-items: end;
}

.service-eyebrow {
    margin: 0 0 20px;
    color: var(--service-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(45px, 6.7vw, 88px);
    font-weight: 890;
    line-height: 0.98;
    letter-spacing: -0.062em;
}

.service-hero-intro {
    max-width: 790px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 16px;
    line-height: 1.82;
}

.service-price-card {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.service-price-card span,
.service-price-card strong,
.service-price-card small {
    display: block;
}

.service-price-card > span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-price-card strong {
    margin-top: 21px;
    color: var(--service-white);
    font-size: clamp(36px, 4.6vw, 62px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.service-price-card small {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    line-height: 1.65;
}

.service-price-card a {
    min-height: 52px;
    margin-top: 27px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background: var(--service-blue);
    color: var(--service-white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.service-price-card a:hover {
    background: var(--service-blue-dark);
}

.service-breadcrumb {
    width: min(calc(100% - 48px), var(--service-max));
    margin: 0 auto;
    padding: 21px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--service-line);
    color: var(--service-muted);
    font-size: 10px;
}

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

.service-main {
    width: min(calc(100% - 48px), var(--service-max));
    margin: 0 auto;
    padding: 78px 0 110px;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        330px;
    gap: 85px;
    align-items: start;
}

.service-copy {
    min-width: 0;
}

.service-copy-section {
    padding: 45px 0;
    border-top: 1px solid var(--service-line);
}

.service-copy-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.service-copy-section h2 {
    margin: 0 0 22px;
    font-size: clamp(29px, 3.5vw, 45px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.service-copy-section p {
    margin: 0;
    color: var(--service-muted);
    font-size: 15px;
    line-height: 1.9;
}

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

.service-sidebar {
    position: sticky;
    top: 25px;
}

.service-scope-card {
    border: 1px solid var(--service-line);
    border-radius: 20px;
    overflow: hidden;
    background: var(--service-white);
    box-shadow: 0 25px 65px rgba(16, 52, 75, 0.08);
}

.service-scope-head {
    padding: 23px;
    background: var(--service-ink);
    color: var(--service-white);
}

.service-scope-head span {
    display: block;
    color: var(--service-cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-scope-head strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

.service-scope-list {
    list-style: none;
    margin: 0;
    padding: 0 22px;
}

.service-scope-list li {
    position: relative;
    padding: 15px 0 15px 20px;
    border-bottom: 1px solid var(--service-line);
    color: var(--service-ink-soft);
    font-size: 12px;
    font-weight: 720;
    line-height: 1.55;
}

.service-scope-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--service-blue);
}

.service-boundary {
    margin: 21px;
    padding: 17px;
    border-left: 3px solid var(--service-blue);
    background: #edf6ff;
    color: var(--service-muted);
    font-size: 11px;
    line-height: 1.7;
}

.service-contact-card {
    margin-top: 22px;
    padding: 23px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            var(--service-blue),
            var(--service-blue-dark)
        );
    color: var(--service-white);
}

.service-contact-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
}

.service-contact-card p {
    margin: 12px 0 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    line-height: 1.7;
}

.service-contact-card a {
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 11px;
    background: var(--service-white);
    color: var(--service-blue-dark);
    text-decoration: none;
    font-size: 10px;
    font-weight: 850;
}

.service-faq {
    padding:
        90px
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        );
    background: var(--service-white);
}

.service-faq-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.service-faq-heading h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.service-faq-list {
    border-top: 1px solid var(--service-line);
}

.service-faq-list details {
    border-bottom: 1px solid var(--service-line);
}

.service-faq-list summary {
    padding: 23px 45px 23px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 820;
    line-height: 1.5;
}

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

.service-faq-list details p {
    max-width: 860px;
    margin: 0;
    padding: 0 0 25px;
    color: var(--service-muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-other-pages {
    padding:
        90px
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        );
    background: var(--service-surface);
}

.service-other-pages h2 {
    margin: 0 0 35px;
    font-size: clamp(30px, 4vw, 49px);
    letter-spacing: -0.045em;
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--service-line);
    border-left: 1px solid var(--service-line);
}

.service-page-grid a {
    min-height: 175px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--service-line);
    border-bottom: 1px solid var(--service-line);
    background: var(--service-white);
    color: var(--service-ink);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-page-grid a:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(20, 55, 76, 0.1);
}

.service-page-grid span {
    color: var(--service-blue-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.service-page-grid strong {
    margin-top: auto;
    font-size: 16px;
    line-height: 1.45;
}

.service-cta {
    padding:
        85px
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        );
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    background: var(--service-ink);
    color: var(--service-white);
}

.service-cta h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(35px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.service-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.service-cta-actions a {
    min-width: 245px;
    min-height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.service-cta-actions a:first-child {
    background: var(--service-blue);
    color: var(--service-white);
}

.service-cta-actions a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.19);
    color: var(--service-white);
}

.service-footer {
    padding:
        34px
        max(
            24px,
            calc((100vw - var(--service-max)) / 2)
        );
    display: flex;
    justify-content: space-between;
    gap: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--service-ink);
    color: rgba(255, 255, 255, 0.65);
}

.service-footer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}

.service-footer a {
    color: var(--service-white);
    font-weight: 750;
}

@media (max-width: 1000px) {
    .service-hero-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-price-card {
        max-width: 430px;
    }

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

    .service-sidebar {
        position: static;
    }

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

@media (max-width: 700px) {
    .service-header {
        min-height: 72px;
        padding: 0 14px;
    }

    .service-header-nav > a:not(.service-header-cta) {
        display: none;
    }

    .service-brand span {
        display: none;
    }

    .service-hero {
        padding: 70px 14px 60px;
    }

    .service-hero h1 {
        font-size: 44px;
    }

    .service-breadcrumb,
    .service-main {
        width: calc(100% - 28px);
    }

    .service-main {
        padding: 55px 0 75px;
        gap: 45px;
    }

    .service-copy-section {
        padding: 35px 0;
    }

    .service-faq,
    .service-other-pages,
    .service-cta {
        padding: 70px 14px;
    }

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

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

    .service-cta-actions a {
        min-width: 0;
    }

    .service-footer {
        padding: 30px 14px;
        flex-direction: column;
    }
}
