 :root {
        --css-services-yellow: #f7c600;
        --css-services-yellow-dark: #d8aa00;
        --css-services-black: #080808;
        --css-services-dark: #0d0d0d;
        --css-services-card: #141414;
        --css-services-card-hover: #181818;
        --css-services-white: #ffffff;
        --css-services-muted: #c9c9c9;
        --css-services-border: rgba(255, 255, 255, 0.11);
        --css-services-radius: 20px;
    }

    .css-services-page,
    .css-services-page * {
        box-sizing: border-box;
    }

    .css-services-page {
        background: var(--css-services-black);
        color: var(--css-services-white);
    }

    .css-services-page a {
        transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    /* HERO */
    .css-services-hero {
        position: relative;
        min-height: 760px;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 150px 0 90px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .css-services-hero__overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.62) 100%),
            radial-gradient(circle at 18% 25%, rgba(247, 198, 0, 0.12), transparent 35%);
    }

    .css-services-hero__container {
        position: relative;
        z-index: 2;
    }

    .css-services-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 34px;
        color: #d4d4d4;
        font-size: 14px;
    }

    .css-services-breadcrumb a {
        color: var(--css-services-yellow);
        text-decoration: none;
    }

    .css-services-breadcrumb a:hover {
        color: #ffffff;
    }

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

    .css-services-hero h1 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(22px, 5.4vw, 44px);
        font-weight: 850;
        line-height: 1.03;
        letter-spacing: -2px;
    }

    .css-services-hero__tagline {
        max-width: 760px;
        margin: 24px 0 0;
        color: #dddddd;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.7;
    }

    .css-services-hero__actions {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 32px;
    }

    .css-services-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 54px;
        padding: 14px 22px;
        border: 1px solid transparent;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.4;
        text-decoration: none !important;
    }

    .css-services-btn--primary {
        background: var(--css-services-yellow);
        color: #080808 !important;
    }

    .css-services-btn--primary:hover {
        background: #ffe05a;
        transform: translateY(-2px);
    }

    .css-services-btn--outline {
        border-color: rgba(247, 198, 0, 0.75);
        background: rgba(0, 0, 0, 0.32);
        color: var(--css-services-yellow) !important;
    }

    .css-services-btn--outline:hover {
        border-color: var(--css-services-yellow);
        background: rgba(247, 198, 0, 0.1);
        transform: translateY(-2px);
    }

    /* QUOTE FORM */
    .css-services-quote-card {
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 22px;
        background: rgba(12, 12, 12, 0.84);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(12px);
    }

    .css-services-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .css-services-form-group--full {
        grid-column: 1 / -1;
    }

    .css-services-quote-card .form-group {
        margin: 0;
    }

    .css-services-quote-card label {
        display: block;
        margin-bottom: 8px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
    }

    .css-services-quote-card input,
    .css-services-quote-card select,
    .css-services-quote-card textarea {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
        outline: none;
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        font-size: 15px;
    }

    .css-services-quote-card select {
        color: #ffffff;
    }

    .css-services-quote-card select option {
        color: #111111;
    }

    .css-services-quote-card textarea {
        min-height: 94px;
        resize: vertical;
    }

    .css-services-quote-card input:focus,
    .css-services-quote-card select:focus,
    .css-services-quote-card textarea:focus {
        border-color: var(--css-services-yellow);
        box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.12);
    }

    .css-services-quote-card .quote-submit-btn {
        width: 100%;
        min-height: 52px;
        margin-top: 18px;
        border: 0;
        border-radius: 10px;
        background: var(--css-services-yellow);
        color: #090909;
        font-size: 16px;
        font-weight: 850;
    }

    .css-services-quote-card .quote-submit-btn:hover {
        background: #ffe05a;
    }

    .css-services-quote-card .error-text {
        display: block;
        margin-top: 6px;
        color: #ff7676;
        font-size: 13px;
    }

    .css-services-quote-card .loading-text {
        display: none;
        margin-top: 10px;
        color: var(--css-services-yellow);
        font-size: 14px;
    }

    /* TRUST */
    .css-services-trust {
        position: relative;
        z-index: 3;
        margin-top: -38px;
        padding: 0 0 70px;
    }

    .css-services-trust__title {
        margin: 0 0 16px;
        color: var(--css-services-yellow);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
        text-align: center;
        text-transform: uppercase;
    }

    .css-services-trust__grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid var(--css-services-border);
        border-radius: var(--css-services-radius);
        background: #111111;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
    }

    .css-services-trust__item {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        min-height: 138px;
        padding: 24px 20px;
        border-right: 1px solid var(--css-services-border);
    }

    .css-services-trust__item:last-child {
        border-right: 0;
    }

    .css-services-trust__item>i {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: rgba(247, 198, 0, 0.1);
        color: var(--css-services-yellow);
        font-size: 18px;
    }

    .css-services-trust__item h3 {
        margin: 0 0 6px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.3;
    }

    .css-services-trust__item p {
        margin: 0;
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.55;
    }

    /* GENERAL SECTIONS */
    .css-services-section {
        position: relative;
        overflow: hidden;
        padding: 92px 0;
    }

    .css-services-section--black {
        background: #080808;
    }

    .css-services-section--dark {
        background: #0d0d0d;
    }

    .css-services-section-heading {
        max-width: 850px;
        margin: 0 auto 45px;
        text-align: center;
    }

    .css-services-section-heading--wide {
        max-width: 1050px;
    }

    .css-services-kicker {
        display: inline-block;
        margin-bottom: 12px;
        color: var(--css-services-yellow);
        font-size: 13px;
        font-weight: 850;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .css-services-section-heading h2,
    .css-services-content-panel h2,
    .css-services-compliance-content h2,
    .css-services-coverage-card h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(20px, 5.4vw, 36px);
        font-weight: 850;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .css-services-section-heading p {
        max-width: 930px;
        margin: 18px auto 0;
        color: var(--css-services-muted);
        font-size: 18px;
        line-height: 1.8;
    }

    .css-services-section p {
        color: var(--css-services-muted);
        font-size: 17px;
        line-height: 1.82;
    }

    /* STORY */
    .css-services-story-card {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 34px;
        max-width: 1120px;
        margin: 0 auto;
        padding: 42px;
        border: 1px solid rgba(247, 198, 0, 0.22);
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(247, 198, 0, 0.08), rgba(255, 255, 255, 0.025));
    }

    .css-services-story-card__icon {
        display: grid;
        place-items: center;
        width: 96px;
        height: 96px;
        border: 1px solid rgba(247, 198, 0, 0.42);
        border-radius: 24px;
        background: rgba(247, 198, 0, 0.08);
        color: var(--css-services-yellow);
        font-size: 40px;
    }

    .css-services-story-card__content p {
        margin: 0 0 18px;
    }

    .css-services-story-card__content p:last-child {
        margin-bottom: 0;
    }

    .css-services-story-card a,
    .css-services-source-link a,
    .css-services-coverage-card a {
        color: var(--css-services-yellow);
        font-weight: 750;
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }

    .css-services-story-card a:hover,
    .css-services-source-link a:hover,
    .css-services-coverage-card a:hover {
        color: #ffe36a;
    }

    /* CONTENT + FEATURE */
    .css-services-content-panel,
    .css-services-feature-panel {
        height: 100%;
        padding: 38px;
        border: 1px solid var(--css-services-border);
        border-radius: 22px;
        background: var(--css-services-card);
    }

    .css-services-content-panel h2 {
        margin-bottom: 24px;
        font-size: clamp(20px, 5.4vw, 36px);
    }

    .css-services-content-panel p {
        margin: 0 0 18px;
    }

    .css-services-content-panel p:last-child {
        margin-bottom: 0;
    }

    .css-services-feature-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background:
            radial-gradient(circle at top right, rgba(247, 198, 0, 0.13), transparent 42%),
            #121212;
    }

    .css-services-feature-panel__icon {
        display: grid;
        place-items: center;
        width: 78px;
        height: 78px;
        margin-bottom: 28px;
        border-radius: 20px;
        background: var(--css-services-yellow);
        color: #080808;
        font-size: 32px;
    }

    .css-services-feature-list {
        display: grid;
        gap: 14px;
    }

    .css-services-feature-list span {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--css-services-border);
        color: #ffffff;
        font-size: 16px;
        line-height: 1.5;
    }

    .css-services-feature-list span:last-child {
        border-bottom: 0;
    }

    .css-services-feature-list i {
        width: 22px;
        margin-top: 3px;
        color: var(--css-services-yellow);
    }

    /* TABLE */
    .css-services-table-wrap {
        overflow: hidden;
        border: 1px solid var(--css-services-border);
        border-radius: 22px;
        background: #111111;
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
    }

    .css-services-table {
        width: 100%;
        border-collapse: collapse;
    }

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

    .css-services-table tr>*:last-child {
        border-right: 0;
    }

    .css-services-table tbody tr:last-child>* {
        border-bottom: 0;
    }

    .css-services-table thead th {
        background: var(--css-services-yellow);
        color: #080808;
        font-size: 15px;
        font-weight: 850;
    }

    .css-services-table tbody th {
        width: 25%;
        background: rgba(247, 198, 0, 0.06);
        color: var(--css-services-yellow);
        font-size: 16px;
        font-weight: 800;
    }

    .css-services-table td {
        color: #d3d3d3;
        font-size: 16px;
        line-height: 1.65;
    }

    /* STEPS */
    .css-services-steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .css-services-step {
        position: relative;
        min-height: 250px;
        padding: 34px;
        overflow: hidden;
        border: 1px solid var(--css-services-border);
        border-radius: 20px;
        background: var(--css-services-card);
    }

    .css-services-step::after {
        content: "";
        position: absolute;
        right: -70px;
        bottom: -70px;
        width: 170px;
        height: 170px;
        border: 1px solid rgba(247, 198, 0, 0.12);
        border-radius: 50%;
    }

    .css-services-step__number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 62px;
        height: 62px;
        margin-bottom: 24px;
        border-radius: 16px;
        background: rgba(247, 198, 0, 0.1);
        color: var(--css-services-yellow);
        font-size: 24px;
        font-weight: 900;
    }

    .css-services-step p {
        position: relative;
        z-index: 2;
        margin: 0;
    }

    .css-services-step strong {
        color: #ffffff;
    }

    /* SERVICE CATEGORY CARDS */
    .css-services-category-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .css-services-category-card {
        height: 100%;
        overflow: hidden;
        border: 1px solid var(--css-services-border);
        border-radius: 20px;
        background: var(--css-services-card);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .css-services-category-card__header {
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 86px;
        padding: 22px 24px;
        border-bottom: 1px solid var(--css-services-border);
        background: linear-gradient(135deg, rgba(247, 198, 0, 0.12), rgba(247, 198, 0, 0.03));
    }

    .css-services-category-card__header i {
        display: grid;
        place-items: center;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--css-services-yellow);
        color: #080808;
        font-size: 19px;
    }

    .css-services-category-card__header h3 {
        margin: 0;
        color: #ffffff;
        font-size: 20px;
        font-weight: 850;
    }

    .css-services-category-card__links {
        display: grid;
        padding: 14px;
    }

    .css-services-category-card__links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        min-height: 52px;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        color: #d5d5d5;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none !important;
    }

    .css-services-category-card__links a::after {
        content: "\f061";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #777777;
        font-size: 13px;
        transition: transform 0.25s ease, color 0.25s ease;
    }

    .css-services-category-card__links a:last-child {
        border-bottom: 0;
    }

    .css-services-category-card__links a:hover {
        border-radius: 9px;
        background: rgba(247, 198, 0, 0.08);
        color: var(--css-services-yellow);
    }

    .css-services-category-card__links a:hover::after {
        color: var(--css-services-yellow);
        transform: translateX(4px);
    }

    /* WHY CHOOSE */
    .css-services-reasons-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .css-services-reason-card {
        min-height: 210px;
        padding: 30px;
        border: 1px solid var(--css-services-border);
        border-radius: 18px;
        background: #131313;
        transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .css-services-reason-card:hover {
        border-color: rgba(247, 198, 0, 0.65);
        transform: translateY(-5px);
    }

    .css-services-reason-card i {
        display: grid;
        place-items: center;
        width: 54px;
        height: 54px;
        margin-bottom: 22px;
        border-radius: 14px;
        background: rgba(247, 198, 0, 0.1);
        color: var(--css-services-yellow);
        font-size: 21px;
    }

    .css-services-reason-card p {
        margin: 0;
        color: #d4d4d4;
        font-size: 16px;
        line-height: 1.75;
    }

    .css-services-inline-cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 30px;
        margin-top: 38px;
        padding: 32px;
        border: 1px solid rgba(247, 198, 0, 0.28);
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(247, 198, 0, 0.09), rgba(255, 255, 255, 0.02));
    }

    .css-services-inline-cta h3 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 25px;
        font-weight: 850;
    }

    .css-services-inline-cta p {
        margin: 0;
    }

    .css-services-inline-cta__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
    }

    /* COMPLIANCE */
    .css-services-compliance-grid {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        align-items: center;
        gap: 58px;
    }

    .css-services-compliance-visual {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 390px;
        overflow: hidden;
        border: 1px solid rgba(247, 198, 0, 0.26);
        border-radius: 26px;
        background:
            radial-gradient(circle at 50% 30%, rgba(247, 198, 0, 0.17), transparent 38%),
            #111111;
    }

    .css-services-compliance-visual::before,
    .css-services-compliance-visual::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(247, 198, 0, 0.13);
        border-radius: 50%;
    }

    .css-services-compliance-visual::before {
        width: 310px;
        height: 310px;
    }

    .css-services-compliance-visual::after {
        width: 230px;
        height: 230px;
    }

    .css-services-compliance-visual__badge {
        position: relative;
        z-index: 2;
        display: grid;
        place-items: center;
        width: 92px;
        height: 92px;
        margin-bottom: 18px;
        border-radius: 50%;
        background: var(--css-services-yellow);
        color: #080808;
        font-size: 36px;
        box-shadow: 0 0 0 18px rgba(247, 198, 0, 0.08);
    }

    .css-services-compliance-visual span,
    .css-services-compliance-visual small {
        position: relative;
        z-index: 2;
    }

    .css-services-compliance-visual span {
        color: #ffffff;
        font-size: 48px;
        font-weight: 900;
        letter-spacing: 5px;
    }

    .css-services-compliance-visual small {
        color: var(--css-services-yellow);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
    }

    .css-services-compliance-content h2 {
        margin-bottom: 26px;
    }

    .css-services-compliance-content p {
        margin: 0 0 18px;
    }

    .css-services-compliance-content p:last-child {
        margin-bottom: 0;
    }

    /* COVERAGE */
    .css-services-coverage-card {
        padding: 44px;
        border: 1px solid rgba(247, 198, 0, 0.22);
        border-radius: 24px;
        background:
            radial-gradient(circle at 100% 0%, rgba(247, 198, 0, 0.12), transparent 38%),
            #121212;
    }

    .css-services-coverage-card__header {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 26px;
    }

    .css-services-coverage-card__icon {
        display: grid;
        place-items: center;
        flex: 0 0 66px;
        width: 66px;
        height: 66px;
        border-radius: 17px;
        background: var(--css-services-yellow);
        color: #080808;
        font-size: 27px;
    }

    .css-services-coverage-card p {
        margin: 0 0 18px;
    }

    .css-services-area-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
    }

    .css-services-area-pills span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 7px 13px;
        border: 1px solid rgba(247, 198, 0, 0.27);
        border-radius: 999px;
        background: rgba(247, 198, 0, 0.07);
        color: var(--css-services-yellow);
        font-size: 13px;
        font-weight: 800;
    }

    /* FAQ */
    .css-services-faq {
        max-width: 1020px;
        margin: 0 auto;
        border-top: 1px solid var(--css-services-border);
    }

    .css-services-faq-item {
        border-bottom: 1px solid var(--css-services-border);
    }

    .css-services-faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 25px 0;
        border: 0;
        background: transparent;
        color: #ffffff;
        font-size: 19px;
        font-weight: 800;
        line-height: 1.5;
        text-align: left;
        cursor: pointer;
    }

    .css-services-faq-question i {
        flex: 0 0 auto;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(247, 198, 0, 0.28);
        border-radius: 10px;
        color: var(--css-services-yellow);
        transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .css-services-faq-item.is-open .css-services-faq-question {
        color: var(--css-services-yellow);
    }

    .css-services-faq-item.is-open .css-services-faq-question i {
        background: var(--css-services-yellow);
        color: #080808;
        transform: rotate(45deg);
    }

    .css-services-faq-answer {
        padding: 0 65px 26px 0;
    }

    .css-services-faq-answer p {
        margin: 0;
    }

    /* FINAL CTA */
    .css-services-final-cta {
        padding: 92px 0;
        background:
            radial-gradient(circle at 15% 20%, rgba(247, 198, 0, 0.13), transparent 34%),
            #080808;
    }

    .css-services-final-cta__card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
        align-items: center;
        gap: 45px;
        padding: 50px;
        border: 1px solid rgba(247, 198, 0, 0.28);
        border-radius: 26px;
        background: linear-gradient(135deg, rgba(247, 198, 0, 0.1), rgba(255, 255, 255, 0.025));
        box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
    }

    .css-services-final-cta__content h2 {
        margin: 0;
        color: #ffffff;
         font-size: clamp(20px, 5.4vw, 36px);
        font-weight: 900;
        line-height: 1.1;
    }

    .css-services-final-cta__content p {
        margin: 20px 0 0;
        color: #d0d0d0;
        font-size: 18px;
        line-height: 1.75;
    }

    .css-services-final-cta__trust {
        display: inline-flex;
        margin-top: 24px;
        padding: 10px 14px;
        border: 1px solid rgba(247, 198, 0, 0.25);
        border-radius: 999px;
        background: rgba(247, 198, 0, 0.07);
        color: var(--css-services-yellow);
        font-size: 13px;
        font-weight: 850;
    }

    .css-services-final-cta__actions {
        display: grid;
        gap: 14px;
    }

    .css-services-contact-card {
        display: flex;
        align-items: center;
        gap: 16px;
        min-height: 68px;
        padding: 15px 17px;
        border: 1px solid var(--css-services-border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 750;
        line-height: 1.45;
        text-decoration: none !important;
    }

    .css-services-contact-card i {
        display: grid;
        place-items: center;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: rgba(247, 198, 0, 0.1);
        color: var(--css-services-yellow);
        font-size: 18px;
    }

    .css-services-contact-card:hover {
        border-color: rgba(247, 198, 0, 0.65);
        background: rgba(247, 198, 0, 0.08);
        transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media (max-width: 1199.98px) {
        .css-services-trust__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .css-services-trust__item {
            border-bottom: 1px solid var(--css-services-border);
        }

        .css-services-trust__item:nth-child(3) {
            border-right: 0;
        }

        .css-services-trust__item:nth-child(4),
        .css-services-trust__item:nth-child(5) {
            border-bottom: 0;
        }

        .css-services-category-grid,
        .css-services-reasons-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .css-services-final-cta__card {
            grid-template-columns: 1fr;
        }

        .css-services-final-cta__actions {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 991.98px) {
        .css-services-hero {
            min-height: auto;
            padding: 135px 0 80px;
        }

        .css-services-hero__overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.84));
        }

        .css-services-hero__content {
            max-width: 100%;
            text-align: center;
        }

        .css-services-hero__actions {
            justify-content: center;
        }

        .css-services-breadcrumb {
            justify-content: center;
        }

        .css-services-quote-card {
            max-width: 720px;
            margin: 0 auto;
        }

        .css-services-section {
            padding: 78px 0;
        }

        .css-services-story-card {
            grid-template-columns: 82px minmax(0, 1fr);
            padding: 34px;
        }

        .css-services-story-card__icon {
            width: 78px;
            height: 78px;
            font-size: 31px;
        }

        .css-services-steps {
            grid-template-columns: 1fr;
        }

        .css-services-step {
            min-height: auto;
        }

        .css-services-compliance-grid {
            grid-template-columns: 1fr;
        }

        .css-services-compliance-visual {
            min-height: 300px;
        }

        .css-services-inline-cta {
            grid-template-columns: 1fr;
        }

        .css-services-inline-cta__actions {
            justify-content: flex-start;
        }
    }

    @media (max-width: 767.98px) {
        .css-services-hero {
            padding-top: 120px;
        }

        .css-services-hero h1 {
            letter-spacing: -1px;
        }

        .css-services-hero__actions {
            display: grid;
            grid-template-columns: 1fr;
        }

        .css-services-btn {
            width: 100%;
        }

        .css-services-trust {
            margin-top: 0;
            padding-top: 28px;
        }

        .css-services-trust__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .css-services-trust__item,
        .css-services-trust__item:nth-child(3) {
            border-right: 1px solid var(--css-services-border);
            border-bottom: 1px solid var(--css-services-border);
        }

        .css-services-trust__item:nth-child(even) {
            border-right: 0;
        }

        .css-services-trust__item:last-child {
            grid-column: 1 / -1;
            border-right: 0;
            border-bottom: 0;
        }

        .css-services-story-card {
            grid-template-columns: 1fr;
            gap: 22px;
            padding: 28px;
        }

        .css-services-story-card__icon {
            width: 66px;
            height: 66px;
            border-radius: 17px;
            font-size: 27px;
        }

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

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

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

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

        .css-services-table tbody th {
            width: 100%;
            padding: 18px;
            border-right: 0;
            background: rgba(247, 198, 0, 0.11);
        }

        .css-services-table td {
            position: relative;
            padding: 47px 18px 18px;
            border-right: 0;
        }

        .css-services-table td::before {
            content: attr(data-label);
            position: absolute;
            top: 15px;
            left: 18px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 850;
        }

        .css-services-category-grid,
        .css-services-reasons-grid {
            grid-template-columns: 1fr;
        }

        .css-services-coverage-card {
            padding: 30px;
        }

        .css-services-coverage-card__header {
            align-items: flex-start;
        }

        .css-services-faq-answer {
            padding-right: 0;
        }

        .css-services-final-cta__card {
            padding: 34px 26px;
        }

        .css-services-final-cta__actions {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 575.98px) {
        .css-services-form-grid {
            grid-template-columns: 1fr;
        }

        .css-services-form-group--full {
            grid-column: auto;
        }

        .css-services-trust__grid {
            grid-template-columns: 1fr;
        }

        .css-services-trust__item,
        .css-services-trust__item:nth-child(3),
        .css-services-trust__item:nth-child(even),
        .css-services-trust__item:last-child {
            grid-column: auto;
            min-height: 106px;
            border-right: 0;
            border-bottom: 1px solid var(--css-services-border);
        }

        .css-services-trust__item:last-child {
            border-bottom: 0;
        }

        .css-services-section {
            padding: 64px 0;
        }

        .css-services-content-panel,
        .css-services-feature-panel,
        .css-services-step,
        .css-services-reason-card,
        .css-services-inline-cta,
        .css-services-coverage-card {
            padding: 24px;
        }

        .css-services-compliance-visual {
            min-height: 260px;
        }

        .css-services-compliance-visual span {
            font-size: 40px;
        }

        .css-services-coverage-card__header {
            flex-direction: column;
        }

        .css-services-faq-question {
            align-items: flex-start;
            font-size: 17px;
        }

        .css-services-final-cta__trust {
            border-radius: 14px;
        }
    }