.ServicesTabSection {
    --advx-cream: #F5F2EA;
    --advx-panel: #FFFFFF;
    --advx-ink: #2A2820;
    --advx-body: #6E6759;
    --advx-body-soft: #8A8374;
    --advx-accent: #E17B36;
    --advx-accent-dark: #C4632A;
    --advx-accent-tint: #FBEAD9;
    --advx-line: color-mix(in srgb,
            var(--e-global-color-d49ac81) 10%,
            black 18%);
    --advx-radius: 5px;
    color: var(--advx-ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 5px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.ServicesTabSection *,
.ServicesTabSection *::before,
.ServicesTabSection *::after {
    box-sizing: border-box;
}

/* ---------- MAIN COLUMN ---------- */
.ServicesTabSection__main {
    min-width: 0;
}


.ServicesTabSection__heading {}



.ServicesTabSection__lede {
    max-width: 640px;
    margin: 0 0 18px;
}

.ServicesTabSection__lede:last-of-type {
    margin-bottom: 44px;
}



/* ---------- FUNNEL / SIGNATURE ELEMENT ---------- */
.ServicesTabSection__funnelLabel {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--advx-body-soft);
    margin-bottom: 18px;
}

.ServicesTabSection__funnel {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--advx-panel);
    border: 1px solid var(--advx-line);
    border-top-right-radius: 5px;
    padding: 6px;
    box-shadow: 0 1px 2px rgba(42, 40, 32, .04);
    width: 100%;
    border-top-left-radius: 5px;
}

.ServicesTabSection__funnelIndicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: 0;
    border-radius: 5px;
    box-shadow: 0 6px 16px -6px rgba(225, 123, 54, .6);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1), width .28s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, color-mix(in srgb, var(--e-global-color-d49ac81) 65%, white 35%) 0%, color-mix(in srgb, var(--e-global-color-d49ac81) 90%, black 10%) 50%);
}

.ServicesTabSection__stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    margin: 0;
    padding: 10px 18px;
    white-space: nowrap;
    transition: background .2s ease;
}

.ServicesTabSection__stage:hover {
    color: #000;
    background: none;
}

.ServicesTabSection__stage[aria-selected="true"]:hover {
    background: none;
}

.ServicesTabSection__stageIcon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--advx-body-soft);
    transition: color .2s ease;
    flex-shrink: 0;
}

.ServicesTabSection__stageIcon svg,
.ServicesTabSection__stageIcon i {
    width: 100%;
    height: 100%;
}

.ServicesTabSection__stageName {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--advx-body);
    transition: color .2s ease;
}

.ServicesTabSection__stage[aria-selected="true"] .ServicesTabSection__stageIcon {
    color: #fff;
}

.ServicesTabSection__stage[aria-selected="true"] .ServicesTabSection__stageName {
    color: #fff;
}

.ServicesTabSection__stage:focus-visible {
    outline: 2px solid var(--advx-accent-dark);
    outline-offset: 2px;
}

.ServicesTabSection__panelWrap {
    /* margin-top: 38px; */
}

.ServicesTabSection__panel {
    display: none;
    background: var(--advx-panel);
    border: 1px solid var(--advx-line);
    border-top: none;
    border-bottom-left-radius: var(--advx-radius);
    padding: 36px 16px;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    border-bottom-right-radius: var(--advx-radius);
}

.ServicesTabSection__panel.is-active {
    display: grid;
}

.ServicesTabSection__panelEyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--advx-accent-dark);
    margin-bottom: 10px;
}

.ServicesTabSection__panelTitle {
    margin: 0 0 12px;
}

.ServicesTabSection__panelBody {
    color: var(--advx-body);
    font-size: 15px;
    margin: 0;
}

.ServicesTabSection__panelArt {
    aspect-ratio: 4 / 3;
    border-radius: 5px;
    background: linear-gradient(155deg, var(--advx-accent-tint), var(--advx-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--e-global-color-d49ac81);
    font-size: 64px;
    border: 1px solid var(--e-global-color-d49ac81);
}

.ServicesTabSection__panelArt i {
    font-size: 110px;
}

.ServicesTabSection__panelArt svg {
    width: 40%;
    height: 40%;
}

/* ---------- SIDEBAR ---------- */
.ServicesTabSection__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 32px;
}

.ServicesTabSection__card {
    background: var(--advx-panel);
    border: 1px solid var(--advx-line);
    border-radius: var(--advx-radius);
    padding: 26px 24px;
}



.ServicesTabSection__services {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ServicesTabSection__services li {
    border-top: 1px solid var(--advx-line);
}

.ServicesTabSection__services li:first-child {
    border-top: none;
}

.ServicesTabSection__services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14.5px;
    color: var(--advx-body);
    text-decoration: none;
}

.ServicesTabSection__services li.active a {
    color: var(--advx-ink);
    font-weight: 600;
}

.ServicesTabSection__services .ic {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--advx-accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ServicesTabSection__services li.active .ic {
    background: var(--advx-accent);
}

.ServicesTabSection__services .ic svg,
.ServicesTabSection__services .ic i {
    width: 15px;
    height: 15px;
    color: var(--advx-accent-dark);
}

.ServicesTabSection__services li.active .ic svg,
.ServicesTabSection__services li.active .ic i {
    color: #fff;
}

.ServicesTabSection__helpCard {
    background: linear-gradient(135deg, var(--advx-accent-tint), #fff);
    border: 1px solid var(--advx-line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ServicesTabSection__helpCard .tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--advx-accent-dark);
    margin-bottom: -6px;
}

.ServicesTabSection__helpCard .ServicesTabSection__helpEmail {
    color: var(--advx-ink);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 2px solid var(--advx-accent);
}

.ServicesTabSection__helpCard .DotButton {
    margin-top: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .ServicesTabSection * {
        transition: none !important;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .ServicesTabSection {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 44px;
    }

    .ServicesTabSection__side {
        position: static;
    }
}

@media (max-width: 680px) {
    .ServicesTabSection__funnel {
        display: flex;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ServicesTabSection__stage {
        flex: 0 0 auto;
    }

    .ServicesTabSection__panel {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .ServicesTabSection__panelArt {
        order: -1;
        aspect-ratio: 16 / 9;
    }
}