:root {
    --css-service-bg: #080808;
    --css-service-bg-soft: #0e0e0e;
    --css-service-card: #141414;
    --css-service-card-hover: #191919;
    --css-service-border: rgba(255, 255, 255, 0.12);
    --css-service-yellow: #f7c600;
    --css-service-yellow-dark: #dbaa00;
    --css-service-white: #ffffff;
    --css-service-text: #d2d2d2;
    --css-service-muted: #aaaaaa;
    --css-service-radius: 18px;
    --css-service-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --css-service-container: 1240px;
    --css-service-section-space: clamp(50px, 9vw, 75px);
    --css-service-fast: 180ms ease;
    --css-service-smooth: 420ms cubic-bezier(.2, .75, .25, 1);
}

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

.css-service {
    position: relative;
    overflow: clip;
    background: var(--css-service-bg);
    color: var(--css-service-text);
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    isolation: isolate;
}

.css-service a {
    color: inherit;
    text-decoration: none;
}

.css-service img,
.css-service svg {
    display: block;
}

.css-service img {
    max-width: 100%;
}

.css-service button,
.css-service input,
.css-service select,
.css-service textarea {
    font: inherit;
}

.css-service button,
.css-service a {
    -webkit-tap-highlight-color: transparent;
}

.css-service :focus-visible {
    outline: 3px solid rgba(247, 198, 0, .55);
    outline-offset: 4px;
}

.css-service-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.css-service-icon {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.css-service-container {
    width: min(calc(100% - 40px), var(--css-service-container));
    margin-inline: auto;
}

.css-service-section {
    position: relative;
    padding-block: var(--css-service-section-space);
    background: var(--css-service-bg);
}

.css-service-section--soft {
    background:
        radial-gradient(circle at 8% 12%, rgba(247, 198, 0, .055), transparent 30%),
        var(--css-service-bg-soft);
}

.css-service h1,
.css-service h2,
.css-service p {
    margin-top: 0;
}

.css-service h2 {
    max-width: 930px;
    margin-bottom: 0;
    color: var(--css-service-white);
    font-size: clamp(1rem, 3.2vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.css-service p {
    margin-bottom: 0;
    color: var(--css-service-text);
    font-size: clamp(.97rem, 1.4vw, 1.08rem);
}

.css-service strong {
    color: var(--css-service-white);
}

.css-service-heading {
    margin-bottom: clamp(36px, 5vw, 62px);
}

/* Buttons */
.css-service-btn {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 13px 21px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        transform var(--css-service-fast),
        background var(--css-service-fast),
        border-color var(--css-service-fast),
        color var(--css-service-fast),
        box-shadow var(--css-service-fast);
}

.css-service-btn::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.28), transparent 75%);
    content: "";
    transform: translateX(-130%);
    transition: transform 700ms ease;
}

.css-service-btn:hover::after {
    transform: translateX(130%);
}

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

.css-service-btn--primary {
    border-color: var(--css-service-yellow);
    /* background: var(--css-service-yellow); */
    box-shadow: 0 16px 42px rgba(247, 198, 0, .18);
    color: #090909;
}

.css-service-btn--primary:hover {
    background: #ffd51b;
    box-shadow: 0 20px 52px rgba(247, 198, 0, .25);
}

.css-service-btn--ghost {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.065);
    color: var(--css-service-white);
    backdrop-filter: blur(12px);
}

.css-service-btn--ghost:hover {
    border-color: rgba(247,198,0,.55);
    background: rgba(247,198,0,.09);
}

.css-service-btn--full {
    width: 100%;
}

/* Hero */
.css-service-hero {
    position: relative;
    display: flex;
    min-height: min(900px, calc(100vh + 100px));
    align-items: center;
    overflow: hidden;
    padding: clamp(118px, 14vw, 174px) 0 clamp(86px, 10vw, 124px);
    background: #070707;
}

.css-service-hero__media,
.css-service-hero__media img,
.css-service-hero__overlay,
.css-service-hero__grid {
    position: absolute;
    inset: 0;
}

.css-service-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.08);
}

.css-service-hero__overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 22% 38%, rgba(247,198,0,.14), transparent 24%),
        linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.89) 43%, rgba(4,4,4,.57) 72%, rgba(4,4,4,.82) 100%),
        linear-gradient(0deg, #080808 0%, transparent 24%, rgba(0,0,0,.18) 100%);
}

.css-service-hero__grid,
.css-service-final-cta__grid {
    z-index: 2;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
    animation: css-service-grid-drift 18s linear infinite;
}

.css-service-hero__layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(42px, 6vw, 84px);
}

.css-service-hero__content {
    max-width: 790px;
}

.css-service-hero h1 {
    max-width: 850px;
    margin-bottom: 0;
    color: var(--css-service-white);
    font-size: clamp(2.55rem, 5.2vw, 6rem);
    font-weight: 830;
    letter-spacing: -.062em;
    line-height: .99;
    text-wrap: balance;
}

.css-service-hero h1 span {
    display: block;
    margin-top: 9px;
    color: var(--css-service-yellow);
    text-shadow: 0 0 38px rgba(247,198,0,.15);
}

.css-service-hero__lead {
    max-width: 720px;
    margin-top: 28px;
    color: #e2e2e2;
    font-size: clamp(1.02rem, 1.6vw, 1.27rem);
    line-height: 1.72;
}

.css-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.css-service-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
}

.css-service-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.84);
    font-size: .78rem;
    font-weight: 650;
}

.css-service-hero__trust .css-service-icon {
    color: var(--css-service-yellow);
}

/* Hero Form */
.css-service-quote-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02)),
        rgba(9,9,9,.84);
    box-shadow: 0 28px 90px rgba(0,0,0,.5);
    backdrop-filter: blur(22px);
}

.css-service-quote-card::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(247,198,0,.55), transparent 36%, rgba(255,255,255,.08));
    content: "";
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.css-service-quote-card__glow {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(247,198,0,.11);
    filter: blur(55px);
    pointer-events: none;
}

.css-service-quote-card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.css-service-quote-card__icon {
    display: grid;
    width: 48px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(247,198,0,.32);
    border-radius: 14px;
    background: rgba(247,198,0,.1);
    color: var(--css-service-yellow);
}

.css-service-quote-card__header p {
    margin: 0 0 2px;
    color: var(--css-service-yellow);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.css-service-quote-card__header p:last-child {
    color: var(--css-service-white);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.css-service-form {
    position: relative;
    display: grid;
    gap: 15px;
}

.css-service-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.css-service-field {
    display: grid;
    gap: 7px;
}

.css-service-field > span:first-child {
    color: #e4e4e4;
    font-size: .72rem;
    font-weight: 720;
}

.css-service-field input,
.css-service-field select,
.css-service-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    outline: 0;
    background: rgba(255,255,255,.055);
    color: var(--css-service-white);
    transition:
        border-color var(--css-service-fast),
        background var(--css-service-fast),
        box-shadow var(--css-service-fast);
}

.css-service-field input,
.css-service-field select {
    min-height: 48px;
    padding: 0 13px;
}

.css-service-field textarea {
    min-height: 92px;
    resize: vertical;
    padding: 12px 13px;
}

.css-service-field input::placeholder,
.css-service-field textarea::placeholder {
    color: #858585;
}

.css-service-field input:focus,
.css-service-field select:focus,
.css-service-field textarea:focus {
    border-color: rgba(247,198,0,.68);
    background: rgba(255,255,255,.075);
    box-shadow: 0 0 0 4px rgba(247,198,0,.08);
}

.css-service-field select {
    appearance: none;
    cursor: pointer;
}

.css-service-field option {
    background: #111;
    color: #fff;
}

.css-service-select-wrap {
    position: relative;
    display: block;
}

.css-service-select-wrap .css-service-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 17px;
    color: var(--css-service-yellow);
    pointer-events: none;
    transform: translateY(-50%);
}

.css-service-form__privacy {
    margin-top: -2px;
    color: #8f8f8f;
    font-size: .68rem;
    line-height: 1.55;
    text-align: center;
}

/* Trust bar */
.css-service-trustbar {
    position: relative;
    z-index: 4;
    border-top: 1px solid var(--css-service-border);
    border-bottom: 1px solid var(--css-service-border);
    background: #0b0b0b;
}

.css-service-trustbar__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.css-service-trustbar__grid > div {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-right: 1px solid var(--css-service-border);
    padding: 20px 15px;
    text-align: center;
}

.css-service-trustbar__grid > div:last-child {
    border-right: 0;
}

.css-service-trustbar .css-service-icon {
    width: 25px;
    height: 25px;
    color: var(--css-service-yellow);
}

.css-service-trustbar span {
    color: var(--css-service-white);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.45;
}

/* Introduction */
.css-service-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(50px, 8vw, 108px);
}

.css-service-copy {
    display: grid;
    gap: 22px;
}

.css-service-copy__lead {
    color: var(--css-service-white) !important;
    font-size: clamp(1.08rem, 1.7vw, 1.28rem) !important;
    font-weight: 560;
    line-height: 1.75;
}

.css-service-intro__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: 28px;
    background: #111;
    box-shadow: var(--css-service-shadow);
}

.css-service-intro__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.76), transparent 52%);
    content: "";
}

.css-service-intro__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.05);
}

/* General content card */
.css-service-content-card {
    display: grid;
    gap: 23px;
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: 26px;
    padding: clamp(28px, 5vw, 62px);
    background:
        radial-gradient(circle at 95% 5%, rgba(247,198,0,.08), transparent 28%),
        var(--css-service-card);
    box-shadow: var(--css-service-shadow);
}

.css-service-content-card a,
.css-service-related__grid a {
    color: var(--css-service-yellow);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(247,198,0,.35);
    text-underline-offset: 4px;
}

/* Process */
.css-service-process__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.css-service-process-card {
    position: relative;
    min-height: 335px;
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: var(--css-service-radius);
    padding: 27px 23px;
    background: var(--css-service-card);
    transition:
        transform var(--css-service-smooth),
        border-color var(--css-service-smooth),
        background var(--css-service-smooth);
}

.css-service-process-card::after,
.css-service-feature-card::after {
    position: absolute;
    right: -75px;
    bottom: -95px;
    width: 170px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(247,198,0,.08);
    filter: blur(34px);
    content: "";
}

.css-service-process-card:hover,
.css-service-feature-card:hover {
    border-color: rgba(247,198,0,.38);
    background: var(--css-service-card-hover);
    transform: translateY(-6px);
}

.css-service-process-card__number {
    display: block;
    margin-bottom: 23px;
    color: rgba(247,198,0,.4);
    font-size: 3.2rem;
    font-weight: 850;
    letter-spacing: -.06em;
    line-height: 1;
}

.css-service-process-card p {
    position: relative;
    z-index: 1;
    color: #bdbdbd;
    font-size: .88rem;
    line-height: 1.72;
}

/* Comparison table */
.css-service-table-wrap {
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: 22px;
    background: #101010;
    box-shadow: var(--css-service-shadow);
}

.css-service-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.css-service-table th,
.css-service-table td {
    border-right: 1px solid var(--css-service-border);
    border-bottom: 1px solid var(--css-service-border);
    padding: 22px;
    text-align: left;
    vertical-align: top;
}

.css-service-table th:last-child,
.css-service-table td:last-child {
    border-right: 0;
}

.css-service-table tbody tr:last-child th,
.css-service-table tbody tr:last-child td {
    border-bottom: 0;
}

.css-service-table thead th {
    background: #151515;
    color: var(--css-service-white);
    font-size: .8rem;
    font-weight: 800;
}

.css-service-table thead th:first-child {
    background: rgba(247,198,0,.11);
    color: var(--css-service-yellow);
}

.css-service-table tbody th {
    color: var(--css-service-white);
    font-size: .84rem;
    font-weight: 750;
}

.css-service-table tbody td {
    color: #bdbdbd;
    font-size: .84rem;
    line-height: 1.6;
}

.css-service-table tbody tr:first-child {
    background: rgba(247,198,0,.035);
}

.css-service-table-note {
    max-width: 900px;
    margin-top: 18px;
    color: #8d8d8d !important;
    font-size: .75rem !important;
}

/* Why choose */
.css-service-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.css-service-feature-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: var(--css-service-radius);
    padding: 29px;
    background: var(--css-service-card);
    transition:
        transform var(--css-service-smooth),
        border-color var(--css-service-smooth),
        background var(--css-service-smooth);
}

.css-service-feature-card p {
    position: relative;
    z-index: 1;
    color: #bdbdbd;
    font-size: .91rem;
}

.css-service-callout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid rgba(247,198,0,.3);
    border-radius: 22px;
    padding: clamp(27px, 4vw, 46px);
    background:
        radial-gradient(circle at 12% 50%, rgba(247,198,0,.12), transparent 33%),
        #111;
}

.css-service-callout__phone {
    color: var(--css-service-white);
    font-size: clamp(1.35rem, 2.4vw, 2.25rem);
    font-weight: 800;
}

.css-service-callout p {
    margin-top: 5px;
    color: var(--css-service-muted);
}

/* Coverage */
.css-service-coverage__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
    align-items: center;
    gap: clamp(45px, 8vw, 105px);
}

.css-service-coverage__grid > div:first-child {
    display: grid;
    gap: 24px;
}

.css-service-coverage__visual {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(247,198,0,.12), transparent 32%),
        #111;
}

.css-service-coverage__ring {
    position: absolute;
    border: 1px solid rgba(247,198,0,.28);
    border-radius: 50%;
}

.css-service-coverage__ring--one {
    width: 210px;
    height: 210px;
}

.css-service-coverage__ring--two {
    width: 350px;
    height: 350px;
}

.css-service-coverage__point {
    position: relative;
    z-index: 2;
    display: grid;
    width: 74px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(247,198,0,.45);
    border-radius: 50%;
    /* background: var(--css-service-yellow); */
    box-shadow: 0 0 0 16px rgba(247,198,0,.08), 0 0 42px rgba(247,198,0,.3);
    color: #080808;
}

.css-service-coverage__point .css-service-icon {
    width: 31px;
    height: 31px;
}

/* Related services */
.css-service-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.css-service-related__grid p {
    min-height: 150px;
    border: 1px solid var(--css-service-border);
    border-radius: var(--css-service-radius);
    padding: 25px;
    background: var(--css-service-card);
    color: #c2c2c2;
}

.css-service-related__grid p:last-child {
    grid-column: span 2;
    min-height: auto;
}

/* FAQ */
.css-service-faq__layout {
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(45px, 8vw, 105px);
}

.css-service-faq__intro {
    position: sticky;
    top: 120px;
}

.css-service-faq__list {
    display: grid;
    gap: 12px;
}

.css-service-faq-item {
    overflow: hidden;
    border: 1px solid var(--css-service-border);
    border-radius: 15px;
    background: #121212;
    transition: border-color var(--css-service-fast), background var(--css-service-fast);
}

.css-service-faq-item[open] {
    border-color: rgba(247,198,0,.32);
    background: #161616;
}

.css-service-faq-item summary {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 21px;
    color: var(--css-service-white);
    font-size: .93rem;
    font-weight: 730;
    cursor: pointer;
    list-style: none;
}

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

.css-service-faq-item summary .css-service-icon {
    color: var(--css-service-yellow);
    transition: transform var(--css-service-fast);
}

.css-service-faq-item[open] summary .css-service-icon {
    transform: rotate(180deg);
}

.css-service-faq-item > div {
    border-top: 1px solid var(--css-service-border);
    padding: 20px 21px 23px;
}

.css-service-faq-item p {
    color: #b7b7b7;
    font-size: .9rem;
}

/* Final CTA */
.css-service-final-cta {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(247,198,0,.18);
    padding: clamp(82px, 11vw, 142px) 0;
    background: #0b0b0b;
}

.css-service-final-cta__media,
.css-service-final-cta__grid {
    position: absolute;
    inset: 0;
}

.css-service-final-cta__media {
    background:
        radial-gradient(circle at 50% 50%, rgba(247,198,0,.16), transparent 35%),
        linear-gradient(120deg, #090909, #101010);
}

.css-service-final-cta__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(70vw, 820px);
    aspect-ratio: 1;
    border: 1px solid rgba(247,198,0,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(247,198,0,.018),
        0 0 0 160px rgba(247,198,0,.01);
    transform: translate(-50%, -50%);
}

.css-service-final-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    text-align: center;
}

.css-service-final-cta h2 {
    max-width: 980px;
}

.css-service-final-cta p {
    margin-top: 21px;
    color: #c5c5c5;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.css-service-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin-top: 34px;
}

/* Mobile conversion bar */
.css-service-mobile-bar {
    display: none;
}

@keyframes css-service-grid-drift {
    to {
        background-position: 54px 54px;
    }
}

/* Responsive */
@media (max-width: 1180px) {
    .css-service-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
        gap: 40px;
    }

    .css-service-process__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .css-service-hero {
        min-height: auto;
    }

    .css-service-hero__layout,
    .css-service-intro__grid,
    .css-service-coverage__grid,
    .css-service-faq__layout {
        grid-template-columns: 1fr;
    }

    .css-service-hero__content {
        max-width: 850px;
    }

    .css-service-quote-card {
        max-width: 680px;
    }

    .css-service-trustbar__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .css-service-trustbar__grid > div:nth-child(3) {
        border-right: 0;
    }

    .css-service-trustbar__grid > div:nth-child(-n+3) {
        border-bottom: 1px solid var(--css-service-border);
    }

    .css-service-intro__visual {
        min-height: 520px;
    }

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

    .css-service-faq__intro {
        position: static;
    }
}

@media (max-width: 767px) {
    :root {
        --css-service-section-space: 76px;
    }

    .css-service {
        padding-bottom: 68px;
    }

    .css-service-container {
        width: min(calc(100% - 26px), var(--css-service-container));
    }

    .css-service h2 {
        font-size: clamp(2rem, 10vw, 2rem);
        letter-spacing: -.04em;
    }

    .css-service-hero {
        padding: 110px 0 76px;
    }

    .css-service-hero__overlay {
        background:
            linear-gradient(180deg, rgba(4,4,4,.6), rgba(4,4,4,.93) 42%, #080808 94%),
            linear-gradient(90deg, rgba(4,4,4,.78), rgba(4,4,4,.5));
    }

    .css-service-hero h1 {
        font-size: clamp(2.45rem, 12.5vw, 2.2rem);
        line-height: 1;
    }

    .css-service-hero__lead {
        margin-top: 22px;
        font-size: 1rem;
    }

    .css-service-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .css-service-hero__actions .css-service-btn {
        width: 100%;
    }

    .css-service-hero__trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .css-service-hero__trust li {
        align-items: flex-start;
        font-size: .71rem;
    }

    .css-service-quote-card {
        border-radius: 19px;
        padding: 22px 17px;
    }

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

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

    .css-service-trustbar__grid > div {
        min-height: 74px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--css-service-border);
        padding: 17px 5px;
        text-align: left;
    }

    .css-service-trustbar__grid > div:last-child {
        border-bottom: 0;
    }

    .css-service-intro__visual {
        min-height: 440px;
    }

    .css-service-process__grid,
    .css-service-why__grid,
    .css-service-related__grid {
        grid-template-columns: 1fr;
    }

    .css-service-process-card {
        min-height: auto;
    }

    .css-service-related__grid p,
    .css-service-related__grid p:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .css-service-callout {
        align-items: flex-start;
        flex-direction: column;
    }

    .css-service-callout .css-service-btn {
        width: 100%;
    }

    .css-service-coverage__visual {
        min-height: 390px;
    }

    .css-service-table,
    .css-service-table tbody,
    .css-service-table tr,
    .css-service-table th,
    .css-service-table td {
        display: block;
        width: 100%;
    }

    .css-service-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .css-service-table tbody tr {
        border-bottom: 1px solid var(--css-service-border);
    }

    .css-service-table tbody tr:last-child {
        border-bottom: 0;
    }

    .css-service-table tbody th {
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 18px 20px;
        background: rgba(247,198,0,.075);
        color: var(--css-service-yellow);
    }

    .css-service-table tbody td {
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding: 17px 20px;
    }

    .css-service-table tbody td:last-child {
        border-bottom: 0;
    }

    .css-service-table tbody td::before {
        display: block;
        margin-bottom: 6px;
        color: var(--css-service-yellow);
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
        content: attr(data-label);
    }

    .css-service-final-cta__actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .css-service-final-cta__actions .css-service-btn {
        width: 100%;
    }

    .css-service-mobile-bar {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: .7fr 1.3fr;
        min-height: 68px;
        border-top: 1px solid rgba(255,255,255,.16);
        background: rgba(8,8,8,.96);
        box-shadow: 0 -12px 35px rgba(0,0,0,.35);
        backdrop-filter: blur(14px);
    }

    .css-service-mobile-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--css-service-white);
        font-size: .8rem;
        font-weight: 800;
    }

    .css-service-mobile-bar a:last-child {
        /* background: var(--css-service-yellow); */
        color: #080808;
    }
}

@media (max-width: 420px) {
    .css-service-hero__trust {
        grid-template-columns: 1fr;
    }

    .css-service-quote-card__header {
        align-items: flex-start;
    }

    .css-service-intro__visual {
        min-height: 370px;
    }

    .css-service-coverage__ring--one {
        width: 190px;
        height: 190px;
    }

    .css-service-coverage__ring--two {
        width: 300px;
        height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .css-service *,
    .css-service *::before,
    .css-service *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}