/* ===== Local fonts ===== */
@font-face {
    font-family: "Saans";
    src: url("../fonts/Saans-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saans";
    src: url("../fonts/Saans-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saans";
    src: url("../fonts/Saans-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saans";
    src: url("../fonts/Saans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SaansTRIAL";
    src: url("../fonts/SaansTRIAL-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Theme vars ===== */
.services-v2 {
    --ff-heading: "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --ff-body: "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --bg: #161312;
    --panel: #1d1516;
    --text: #fff;
    --muted: #d8d3d1;
    --accent: #ed5a00;
    --accent-2: #ff6a00;
    --radius: 14px;
    --container: 1200px;
}

.sv2-container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== Hero ===== */
.sv2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: var(--text);
    background: #0e0d0d center/cover no-repeat;
    padding: clamp(160px, 22vh, 260px) 0 clamp(16px, 4vh, 28px);
}

.sv2-hero .sv2-container {
    position: relative;
    z-index: 1;
}

.sv2-hero__title {
    font-family: var(--ff-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(44px, 7.2vw, 92px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 0 0 22px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.sv2-hero__text {
    font-family: var(--ff-body);
    font-weight: 400;
    color: #fff;
    font-size: clamp(22px, 2.1vw, 22px);
    line-height: 1.58;
    max-width: 1200px;
    margin: 0;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

/* ===== Features / Tabs ===== */
.sv2-features {
    position: relative;
    background: var(--panel);
    color: var(--text);
    padding: 28px 0 72px;
}

.sv2-features::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -160px;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(29, 21, 22, 0) 0%, rgba(29, 21, 22, .75) 60%, #1d1516 100%);
}

.sv2-features__header {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sv2-price {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: "SaansTRIAL", "Saans", sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 4.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -.01em;
    padding: clamp(16px, 2.2vw, 28px) clamp(28px, 6.2vw, 56px);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22), inset 0 -2px 0 rgba(0, 0, 0, .08);
}

.sv2-features a.sv2-price:hover {
    color: inherit;
}

.sv2-price__desc {
    margin-top: clamp(24px, 3vw, 36px);
    max-width: 700px;
    color: #fff;
    font-family: var(--ff-body);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.6;
}

.sv2-features__body {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 10px;
}

.sv2-tabs {
    display: flex;
    flex-direction: column;
}

.sv2-tabs__list {
    position: relative;
    list-style: none;
    margin: 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv2-tabs__list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 999px;
}

.sv2-tabs__item {
    cursor: pointer;
    user-select: none;
    background: none;
    border: 0;
    padding: 0;
}

.sv2-tabs__label {
    font-family: "Saans", sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.3;
    color: rgba(255, 255, 255, .45);
    transition: color .2s ease;
}

.sv2-tabs__item.is-active .sv2-tabs__label {
    color: #fff;
    font-weight: 600;
}

.sv2-tabs__item:hover .sv2-tabs__label {
    color: rgba(255, 255, 255, .75);
}

.sv2-cta {
    margin-top: 5rem;
}

.sv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    align-self: flex-start;
}

/* ===== Side icon ===== */
.sv2-icon {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv2-icon__img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* ===== Slides (white cards) ===== */
.sv2-slides {
    margin-top: clamp(72px, 10vw, 128px);
}

.sv2-slides__viewport {
    overflow: hidden;
    position: relative;
}

.sv2-slides__track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

.sv2-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.sv2-slide__card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    background: #fff;
    border-radius: 18px;
    padding: clamp(36px, 5vw, 72px);
    width: 100%;
    max-width: 1100px;
    min-height: clamp(320px, 34vw, 440px);
}

.sv2-slide__title {
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.1;
    font-size: clamp(28px, 3.6vw, 56px);
    margin: 0 0 18px;
    color: #161312;
}

.sv2-slide__copy {
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #161312;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.45;
    font-weight: 500;
}

.sv2-slide__copy a {
    color: #ed5a00;
    text-decoration: none;
}

.sv2-slide__icon {
    display: flex;
    justify-content: flex-end;
}

.sv2-slide__icon img {
    width: clamp(120px, 22vw, 240px);
    height: auto;
    object-fit: contain;
}

/* ===== Slider nav ===== */
.sv2-slides__controls {
    margin-top: clamp(28px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.sv2-slides__arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #cec9c7;
    color: #1e1a19;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .14), inset 0 -1px 0 rgba(0, 0, 0, .08);
}

.sv2-slides__arrow--prev {
    padding-right: 1px;
}

.sv2-slides__arrow--next {
    padding-left: 1px;
}

.sv2-slides__arrow.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.sv2-slides__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #cec9c7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .14), inset 0 -1px 0 rgba(0, 0, 0, .08);
}

.sv2-slides__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8f8987;
    border: none;
    cursor: pointer;
}

.sv2-slides__dot.is-active {
    background: #1e1a19;
}

/* ===== Utilities ===== */
body.page-template-page-services-v2 {
    background: var(--bg);
}

.sv2-tabs__item:focus-visible,
.sv2-btn:focus-visible,
.sv2-slides__arrow:focus-visible,
.sv2-slides__dot:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

/* ===== Service sections ===== */
.sv2-ss {
    position: relative;
    background: var(--panel);
    color: var(--text);
    padding: clamp(80px, 10vw, 140px) 0;
}

.sv2-ss__block {
    margin: 0 auto clamp(100px, 12vw, 160px);
}

.sv2-ss__header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.sv2-ss__icon {
    margin-bottom: clamp(16px, 3vw, 32px);
}

.sv2-ss__icon img {
    width: clamp(130px, 14vw, 200px);
    height: auto;
    display: block;
}

.sv2-ss__title {
    color: #f49b49;
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    margin: 0 0 12px;
    text-align: left;
    max-width: 20ch;
    text-wrap: balance;
}

.sv2-ss__intro {
    color: #fff;
    max-width: 1000px;
    font-size: clamp(19px, 2.05vw, 24px);
    line-height: 1.6;
    margin-bottom: clamp(28px, 4.5vw, 48px);
    text-align: left;
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: .003em;
}

.sv2-ss__features {
    margin-top: 10px;
    text-align: left;
}

.sv2-ss__feature+.sv2-ss__feature {
    margin-top: clamp(8px, 1.5vw, 12px);
}

.sv2-ss__featureBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    padding: 9px 0;
    text-align: left;
}

.sv2-ss__featureTitle {
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 30px);
    line-height: 1.25;
    letter-spacing: .01em;
    color: #fff;
    text-wrap: balance;
}

.sv2-ss__featurePlus {
    color: #f49b49;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.sv2-ss__featurePanel {
    padding-left: 36px;
    margin: 0 0 2rem;
}

.sv2-ss__featureCopy {
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.4;
    color: rgba(255, 255, 255, .9);
    max-width: 820px;
}

.sv2-ss__featureCopy p {
    margin: .45em 0 1em;
}

/* ===== Testimonials ===== */
.sv2-tm {
    position: relative;
    background: var(--panel);
    color: #fff;
    min-height: 100vw;
    padding: clamp(96px, 12vh, 160px) 0;
    overflow: visible;
    isolation: isolate;
}

.sv2-tm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: url("/wp-content/themes/virtuworks/images/top_bg.svg") top center no-repeat, url("/wp-content/themes/virtuworks/images/bottom_bg.svg") bottom center no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.sv2-tm__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: min(960px, 92vw);
    margin-inline: auto;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: stretch;
}

.sv2-tm__title {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: #fff;
    font-size: clamp(50px, 7.5vw, 90px);
    line-height: 1.06;
    margin: clamp(90px, 12vh, 160px) 0 14px;
}

.sv2-tm__tabs {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 6px 0 clamp(32px, 5vw, 56px);
}

.sv2-tm__tab {
    width: clamp(60px, 12vw, 90px);
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    font-size: 0;
    cursor: pointer;
}

.sv2-tm__tab.is-active {
    background: #fff;
}

.sv2-tm__viewport {
    max-width: min(960px, 92vw);
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    min-height: 0;
    position: relative;
}

.sv2-tm__viewport::-webkit-scrollbar {
    height: 0;
}

.sv2-tm__track {
    display: flex;
}

.sv2-tm__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(12px, 3vw, 24px);
}

.sv2-tm__name {
    margin: 0 0 16px;
    font-family: "SaansTRIAL", "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 4.6vw, 44px);
    line-height: 1.1;
    color: #f49b49;
}

.sv2-tm__quote {
    margin: 0 auto;
    max-width: 860px;
    font-family: var(--ff-body);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .94);
}

.sv2-tm__quote p {
    margin: 0 0 .8em;
}

.sv2-tm__chev {
    position: absolute;
    z-index: 5;
    width: 54px;
    height: 54px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    line-height: 0;
    cursor: pointer;
    transform: translateY(-50%);
    display: none;
}

.sv2-tm__chev svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sv2-tm__chev polyline {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .92;
    transition: opacity .15s ease;
}

.sv2-tm__chev:hover polyline {
    opacity: 1;
}

.sv2-tm__chev--prev {
    left: clamp(16px, 6vw, 120px);
}

.sv2-tm__chev--next {
    right: clamp(16px, 6vw, 120px);
}

@media (min-width:981px) {
    .sv2-tm__chev {
        display: block;
    }
}

/* ===== Lower CTA ===== */
.sv2-lcta {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 12vw, 180px) 0;
}

.sv2-lcta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(1000px 800px at 80% 0%, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, .45) 25%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(1100px 900px at 100% 100%, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .35) 30%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(90deg, rgba(232, 90, 0, 1) 0%, rgba(242, 130, 50, 1) 35%, rgba(150, 145, 135, 1) 100%);
}

.sv2-lcta::after {
    content: "";
    position: absolute;
    inset: -2%;
    z-index: 0;
    background: radial-gradient(120% 140% at 50% 50%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .12) 100%);
}

.sv2-lcta__inner {
    position: relative;
    z-index: 1;
    max-width: min(1120px, 92vw);
    margin-inline: auto;
    text-align: center;
}

.sv2-lcta__title {
    margin: 0 0 clamp(18px, 3vw, 28px);
    font-family: "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.05;
    font-size: clamp(34px, 6.4vw, 88px);
    color: #111;
}

.sv2-lcta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: clamp(12px, 1.2vw, 16px) clamp(22px, 2vw, 28px);
    border-radius: 999px;
    background: #0f0f0f;
    color: #fff;
    font-family: "Saans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.sv2-lcta__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
}

.sv2-lcta__btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.sv2-lcta__btn,
.sv2-lcta__btn:hover,
.sv2-lcta__btn:focus {
    color: #fff !important;
    transform: none !important;
    letter-spacing: normal !important;
}

.sv2-btn,
.sv2-btn:hover,
.sv2-btn:focus,
.sv2-btn:active,
.sv2-btn:visited {
    color: #fff !important;
    text-decoration: none !important;
}

/* ===== Responsive ===== */
@media (max-width:640px) {

    /* testimonials */
    .sv2-tm {
        min-height: clamp(520px, 88vh, 900px);
        padding: 72px 0;
    }

    .sv2-tm__tabs {
        gap: 16px;
    }

    .sv2-tm__tab {
        width: 56px;
    }

    /* lower cta */
    .sv2-lcta {
        padding: 64px 0;
    }

    .sv2-lcta::before {
        background:
            radial-gradient(600px 450px at 85% 0%, rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .35) 30%, rgba(255, 255, 255, 0) 60%),
            radial-gradient(700px 550px at 100% 100%, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .25) 30%, rgba(0, 0, 0, 0) 60%),
            linear-gradient(92deg, rgba(232, 90, 0, 1) 0%, rgba(242, 130, 50, 1) 42%, rgba(155, 150, 142, 1) 100%);
    }

    /* center CTA & icon under tabs */
    .sv2-cta,
    .sv2-btn {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }

    .sv2-slide__icon {
        justify-content: center !important;
        width: 100%;
    }

    .sv2-slide__icon img {
        margin-inline: auto;
    }

    .sv2-tm__title {
        margin: clamp(70px, 10vh, 120px) 0 14px;
    }

    /* single-column features grid */
    .sv2-features__body {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: "tabs" "icon" "cta";
        row-gap: 16px;
    }

    .sv2-tabs {
        display: contents;
    }

    .sv2-tabs__list {
        grid-area: tabs;
        position: relative;
        list-style: none;
        margin: 0;
        padding-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sv2-icon {
        grid-area: icon;
        justify-content: center;
		height: 300px;
		margin: auto;
    }

    .sv2-cta {
        grid-area: cta;
        justify-self: center;
        margin-top: 8px;
    }
}

@media (max-width:768px) {
    .sv2-hero__title {
        font-size: clamp(32px, 9vw, 42px);
    }

    .sv2-hero__text {
        font-size: clamp(16px, 4.5vw, 18px);
    }

    .sv2-ss__icon img {
        width: 100px;
    }
}

@media (max-width:980px) {
    .sv2-features__body {
        grid-template-columns: 1fr;
    }

    .sv2-icon {
        height: 300px;
    }

    .sv2-slide__card {
        grid-template-columns: 1fr;
        padding: clamp(28px, 6vw, 44px);
        min-height: unset;
    }

    .sv2-slide__icon {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .sv2-slide__icon img {
        width: clamp(120px, 40vw, 180px);
    }

    .sv2-tm {
        min-height: clamp(560px, 86vh, 980px);
    }

    .sv2-tm__title {
        margin: clamp(70px, 10vh, 120px) 0 14px;
    }
}

@media (min-width:769px) {
    .sv2-slide {
        justify-content: flex-start;
        padding-left: 0;
    }

    .sv2-ss__header {
        padding-left: 25px;
    }
}

@media (min-width:980px) {
    .sv2-icon {
        align-items: flex-start;
        justify-content: center;
        margin-left: -30px;
    }

    .sv2-icon__img {
        max-height: calc(100% + 60px);
        transform: translateY(-18px);
    }

    .sv2-tm__viewport {
        align-items: flex-start;
    }
}

@media (min-width:1024px) {
    .sv2-ss__intro {
        max-width: 980px;
    }
}

@media (min-width:1400px) {
    .sv2-ss__intro {
        max-width: 1100px;
    }
}

/* ===== Testimonials vertical offsets by width ===== */
@media (min-width:980px) and (max-width:1599px) {
    .sv2-tm__slide {
        padding-top: clamp(260px, 26vh, 420px);
    }
}

@media (min-width:1600px) and (max-width:1750px) {
    .services-v2 .sv2-tm__slide {
        padding-top: clamp(200px, 18vh, 340px);
    }
}

@media (min-width:1751px) and (max-width:1999px) {
    .services-v2 .sv2-tm__slide {
        padding-top: clamp(220px, 20vh, 380px);
    }
}

@media (min-width:2000px) and (max-width:2199px) {
    .services-v2 .sv2-tm__slide {
        padding-top: clamp(160px, 14vh, 300px);
    }
}

@media (min-width:2200px) and (max-width:2559px) {
    .sv2-tm__slide {
        padding-top: clamp(460px, 26vh, 700px);
    }
}

@media (min-width:2560px) and (max-width:2999px) {
    .sv2-tm__slide {
        padding-top: clamp(320px, 26vh, 620px);
    }
}

@media (min-width:3000px) {
    .sv2-tm__viewport {
        align-items: flex-start;
    }

    .services-v2 .sv2-tm__slide {
        padding-top: clamp(300px, 22vh, 520px);
    }

    .sv2-tm__title {
        font-size: clamp(70px, 5vw, 140px);
        margin-top: clamp(140px, 18vh, 240px);
    }

    .sv2-tm__name {
        font-size: clamp(38px, 3vw, 70px);
    }

    .sv2-tm__quote {
        font-size: clamp(22px, 1.6vw, 32px);
        line-height: 1.9;
        max-width: 1100px;
    }
}

/* ===== Dotted world map carrier & layer ===== */
.sv2-features,
.sv2-ss {
    position: relative;
    z-index: 0;
}

.sv2-features>*,
.sv2-ss>* {
    position: relative;
    z-index: 1;
}

.sv2-features::after,
.sv2-ss::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../images/footer-map1.webp");
    background-repeat: repeat-y;
    background-size: 3000px auto;
    background-position: center var(--map-offset, 0px);
    opacity: .6;
}

/* start map slightly later on features; smaller offset on services */
.sv2-features {
    --map-offset: 80px;
}

.sv2-ss {
    --map-offset: 40px;
}

/* ===== Footer overrides (this template only) ===== */
body.page-template-page-services-v2 footer .footer {
    background: #1d1516;
}

body.page-template-page-services-v2 footer .footer-top-flex::before {
    display: none;
}