@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/vdponestop/FiraSans-Light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/vdponestop/FiraSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/vdponestop/FiraSans-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    --onestop-blue: #324563;
    --onestop-magenta: #941b4d;
    --onestop-magenta-light: #c94769;
    --onestop-cyan: #17bbb8;
    --onestop-green: #36c5a1;
    --onestop-orange: #f59a2b;
    --onestop-purple: #8163ea;
    --onestop-ink: #343a52;
    --onestop-soft: #f0f0f0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    font-family: "Fira Sans", "Raleway", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    min-height: 78px;
    padding: 0.85rem 0;
    background: var(--onestop-blue);
    border: 0;
    box-shadow: 0 4px 22px rgba(17, 30, 51, 0.16);
    z-index: 1000;
}

.site-header .brand-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-header .logo {
    width: 176px;
    height: auto;
}

.header-actions {
    min-width: 0;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 2rem);
}

.mobile-navigation {
    display: none;
}

.site-navigation a,
.footer-navigation a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 180ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    color: #fff;
    opacity: 0.72;
}

.site-header .btn-light {
    color: var(--onestop-blue);
}

.home-main {
    width: 100%;
    margin: 78px 0 0;
    padding: 0;
}

.home-main > .alert {
    position: relative;
    z-index: 5;
    margin: 1rem auto;
    max-width: 1140px;
}

.onestop-hero {
    min-height: min(520px, 62vh);
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(25, 59, 105, 0.55), rgba(28, 72, 113, 0.24)),
        url("../img/vdponestop/hero.jpg") center 48% / cover no-repeat;
}

.onestop-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(11, 30, 52, 0.22));
    pointer-events: none;
}

.onestop-hero-content {
    position: relative;
    z-index: 1;
}

.onestop-hero h1 {
    max-width: 980px;
    margin: 0 0 2.2rem;
    color: #fff;
    font-family: "Fira Sans", sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(13, 38, 70, 0.2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.onestop-button {
    display: inline-flex;
    min-width: 176px;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    color: #fff;
    background: var(--onestop-magenta);
    border: 2px solid var(--onestop-magenta);
    border-radius: 999px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.onestop-button:hover,
.onestop-button:focus-visible {
    color: #fff;
    background: var(--onestop-magenta-light);
    border-color: var(--onestop-magenta-light);
    transform: translateY(-2px);
}

.onestop-button-secondary {
    background: rgba(50, 69, 99, 0.72);
    border-color: rgba(255, 255, 255, 0.72);
}

.logo-carousel {
    width: min(1180px, calc(100% - 2rem));
    height: 112px;
    margin: -24px auto 0;
    position: relative;
    overflow: hidden;
    background: var(--onestop-magenta);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(79, 24, 50, 0.18);
    z-index: 2;
}

.logo-carousel-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: logo-scroll 30s linear infinite;
}

.logo-carousel:hover .logo-carousel-track,
.logo-carousel:focus-within .logo-carousel-track {
    animation-play-state: paused;
}

.logo-carousel-set {
    width: min(1180px, calc(100vw - 2rem));
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-around;
    gap: 2.5rem;
    padding: 1.4rem 2.4rem;
}

.logo-carousel-set a {
    display: inline-flex;
    align-items: center;
}

.logo-carousel img {
    width: auto;
    height: 32px;
    max-width: 155px;
    object-fit: contain;
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section-heading {
    margin-bottom: 2.4rem;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--onestop-blue);
    font-size: clamp(2.2rem, 4.5vw, 3.7rem);
    font-weight: 300;
}

.section-heading > p:last-child {
    max-width: 700px;
    margin: 0.8rem auto 0;
    color: #60687a;
    font-size: 1.05rem;
}

.section-kicker {
    margin: 0 0 0.45rem;
    color: var(--onestop-magenta);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.network-section {
    display: none;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: #fff;
}

.network-map-wrap {
    width: min(1320px, calc(100% - 2rem));
    margin: 0 auto;
}

#network-map {
    position: relative;
    width: 100%;
    aspect-ratio: 797 / 414;
}

#network-map svg,
.network-map-fallback {
    display: block;
    width: 100%;
    height: auto;
}

#leistungen-svg .rectMouseOver {
    opacity: 0;
    fill: #fff;
}

#leistungen-svg .mOCircleViolet,
#leistungen-svg .MOShieldsViolet {
    fill: #8d70ff;
}

#leistungen-svg .RCircleViolet {
    fill: none;
    stroke: #8d70ff;
}

#leistungen-svg .mOCircleGreen,
#leistungen-svg .MOShieldsGreen {
    fill: #00cc99;
}

#leistungen-svg .RCircleGreen {
    fill: none;
    stroke: #00cc99;
}

#leistungen-svg .MOCircleAquamarin,
#leistungen-svg .MOShieldsAquamarin {
    fill: #00cccc;
}

#leistungen-svg .RCircleAquamarin {
    fill: none;
    stroke: #00cccc;
}

#leistungen-svg .MOCircleYellow,
#leistungen-svg .MOShieldYellow {
    fill: #fe9929;
}

#leistungen-svg .RCircleYellow {
    fill: none;
    stroke: #fe9929;
}

#leistungen-svg .MOCircleRed,
#leistungen-svg .MOShieldRed {
    fill: #da506e;
}

#leistungen-svg .RCircleRed {
    fill: none;
    stroke: #da506e;
}

#leistungen-svg .MOCircleBlue,
#leistungen-svg .MOShieldBlue {
    fill: #333399;
}

#leistungen-svg .RCircleBlue {
    fill: none;
    stroke: #333399;
}

#leistungen-svg .st0 {
    fill: #e5e5e5;
}

#leistungen-svg .st1 {
    fill: none;
    stroke: #e5e5e5;
    stroke-width: 0.4pt;
}

#leistungen-svg .st2 {
    display: none;
}

#leistungen-svg .st3 {
    display: inline;
    opacity: 0;
    fill: #fff;
}

#leistungen-svg .st4 {
    fill: none;
    stroke: #00cc99;
}

#leistungen-svg .st5 {
    fill: none;
    stroke: #00cccc;
}

#leistungen-svg .st6 {
    fill: none;
    stroke: url("#short-line_2_");
    stroke-width: 2;
}

#leistungen-svg .st7 {
    fill: none;
    stroke: #fe9929;
}

#leistungen-svg .st7v {
    fill: none;
    stroke: #8d70ff;
}

#leistungen-svg .st8 {
    fill: none;
    stroke: #333399;
}

#leistungen-svg .st9 {
    fill: none;
    stroke: #da506e;
}

#leistungen-svg .st10 {
    fill: #00cc99;
}

#leistungen-svg .st11,
#leistungen-svg .st18,
#leistungen-svg .st19,
#leistungen-svg .st20,
#leistungen-svg .st21,
#leistungen-svg .st30 {
    fill: #fff;
}

#leistungen-svg .st12 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
}

#leistungen-svg .st13 {
    font-size: 9px;
}

#leistungen-svg .st14,
#leistungen-svg .st23 {
    fill: #fe9929;
}

#leistungen-svg .st15 {
    fill: #333399;
}

#leistungen-svg .st16 {
    fill: #da506e;
}

#leistungen-svg .st16v {
    fill: #8d70ff;
}

#leistungen-svg .st17 {
    fill: #86214d;
}

#leistungen-svg .st18 {
    clip-path: url("#SVGID_1_");
}

#leistungen-svg .st19 {
    clip-path: url("#SVGID_2_");
}

#leistungen-svg .st20 {
    clip-path: url("#SVGID_3_");
}

#leistungen-svg .st21 {
    clip-path: url("#SVGID_4_");
}

#leistungen-svg .st22,
#leistungen-svg .st32 {
    enable-background: new;
}

#leistungen-svg .st24 {
    fill: #00cccc;
}

#leistungen-svg .st25 {
    fill: none;
    stroke: url("#SVGID_5_");
}

#leistungen-svg .st26,
#leistungen-svg .st29 {
    fill: none;
    stroke: #fff;
}

#leistungen-svg .st27,
#leistungen-svg .st29,
#leistungen-svg .st30,
#leistungen-svg .st32 {
    display: inline;
}

#leistungen-svg .st28 {
    display: inline;
    fill: #da506e;
}

#leistungen-svg .st28v {
    display: inline;
    fill: #8d70ff;
}

#leistungen-svg .st31 {
    font-size: 8.9px;
}

#leistungen-svg .st33 {
    font-size: 9.2995px;
}

#leistungen-svg .st34 {
    opacity: 0;
    fill: #00fffb;
}

#leistungen-svg .st35 {
    opacity: 0;
    fill: #fff;
}

#leistungen-svg .st36 {
    opacity: 0;
    fill: #da506e;
}

#leistungen-svg .linear-gradient-start-stop-color {
    stop-color: #fe9929;
}

#leistungen-svg .linear-gradient-end-stop-color {
    stop-color: #00cccc;
}

#leistungen-svg .mouseOver {
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
}

#leistungen-svg .regular {
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
}

#leistungen-svg [id^="MouseOverPath"] {
    cursor: pointer;
    outline: none;
}

#leistungen-svg [id$="-shield"] {
    cursor: pointer;
    outline: none;
}

.services-section {
    padding: 50px 0;
    color: var(--onestop-blue);
    background: var(--onestop-soft);
    font-weight: 400;
}

.services-section .container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.services-section .section-heading {
    margin-bottom: 50px;
}

.services-section .section-heading h2 {
    font-family: "Fira Sans", sans-serif;
    font-size: 55px;
    line-height: 1.2;
}

.service-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
}

.service-tab {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 10px 15px;
    color: var(--onestop-blue);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 400;
    transition: background-color 500ms ease;
}

.service-icon-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.service-tab-icon {
    display: block;
    width: 105px;
    height: 105px;
    flex: 0 0 auto;
    margin: 0 auto 10px;
    object-fit: contain;
}

.service-tab > span:last-child {
    margin: 0 0 8px;
    color: var(--onestop-blue);
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
}

.service-tab::after {
    width: 80%;
    height: 1px;
    flex: 0 0 auto;
    margin: 10px auto;
    background: var(--onestop-blue);
    content: "";
}

.service-tab:hover,
.service-tab:focus-visible {
    background: rgba(255, 255, 255, 0.45);
}

.service-tab.active {
    background: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.service-tab.active .service-tab-icon {
    filter: url("#service-tab-active-color");
}

.service-panels {
    width: 1250px;
    max-width: 100%;
    margin: 0 auto;
    padding: 25px 25px 25px 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.service-category-panel {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    min-height: 450px;
    padding-top: 20px;
}

.service-category-panel[hidden],
.service-item-panel[hidden] {
    display: none;
}

.service-item-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: #fff;
    border-right: 2px solid #eee;
}

.service-item-tab {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    padding: 15px 25px 15px 50px;
    color: var(--onestop-blue);
    background: transparent;
    border: 0;
    border-radius: 0;
    font: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    transition: color 500ms ease, background-color 500ms ease;
}

.service-item-tab:hover,
.service-item-tab:focus-visible {
    background: #f0f0f0;
}

.service-item-tab.active {
    color: #fff;
    background: var(--onestop-blue);
    border-radius: 0 20px 20px 0;
}

.service-item-panels {
    min-width: 0;
    padding-left: 50px;
}

.service-item-panel {
    min-height: 0;
    padding: 0;
    animation: panel-in 260ms ease both;
}

.service-item-panel h3 {
    margin: 25px 0 21px;
    color: #363b70;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.service-item-panel p {
    max-width: none;
    margin-bottom: 21px;
    color: #363b70;
    font-size: 14px;
    line-height: 25px;
    white-space: pre-line;
}

.service-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 30px;
    min-height: 80px;
}

.service-logos a,
.service-logos > img {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.service-logos img {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.service-logos img[src*="badge"] {
    width: 200px;
}

.service-logos img[src*="karl-logo"] {
    width: 120px;
}

#service-item-panel-valuation-3 .service-logos {
    flex-wrap: nowrap;
}

#service-item-panel-valuation-3 .service-logos a {
    min-width: 0;
    flex: 1 1 0;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.service-link {
    min-width: 0;
    margin-bottom: 10px;
    padding: 10px 20px;
    background: #821c48;
    border: 0;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 21px;
}

.service-link:not(:first-child) {
    background: var(--onestop-blue);
}

.service-link:hover,
.service-link:focus-visible {
    background: #ad2660;
    border-color: #ad2660;
}

.service-link:not(:first-child):hover,
.service-link:not(:first-child):focus-visible {
    background: #4c6791;
    border-color: #4c6791;
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .network-section {
        display: block;
    }
}

@media (max-width: 1600px) {
    .service-tabs,
    .service-panels {
        width: 1050px;
    }

    .service-tab > span:last-child {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    .service-tabs,
    .service-panels {
        width: 1000px;
    }

    .service-tab > span:last-child {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .service-tabs,
    .service-panels {
        width: 900px;
    }

    .service-tab > span:last-child {
        font-size: 16px;
    }

    .service-logos img {
        width: 130px;
    }

    .service-logos img[src*="karl-logo"] {
        width: 100px;
    }
}

@media (max-width: 1000px) {
    .service-tabs,
    .service-panels {
        width: 800px;
    }

    .service-tab {
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media (max-width: 850px) {
    .service-tabs,
    .service-panels {
        width: 700px;
    }

    .service-tab > span:last-child {
        font-size: 14px;
    }

    .service-logos img {
        width: 110px;
    }

    .service-logos img[src*="karl-logo"] {
        width: 80px;
    }
}

.tools-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.tools-heading {
    margin-bottom: 3rem;
}

.tools-section .filter-toolbar {
    padding-top: 0;
}

.tools-section .company-section h2 {
    margin-top: 0;
}

.companies-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
    color: var(--onestop-ink);
    background: #fff;
}

.companies-introduction h2 {
    max-width: 980px;
    margin: 2.5rem 0 3.5rem;
    color: var(--onestop-blue);
    font-family: "Fira Sans", sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.18;
    text-transform: uppercase;
}

.companies-intro-copy {
    max-width: 720px;
    margin-bottom: 2.5rem;
    font-size: 1.06rem;
    line-height: 1.7;
}

.companies-lead {
    font-weight: 500;
}

.companies-intro-copy a,
.company-profile a {
    color: var(--onestop-magenta);
    text-decoration: none;
}

.companies-intro-copy a:hover,
.companies-intro-copy a:focus-visible,
.company-profile a:hover,
.company-profile a:focus-visible {
    color: var(--onestop-magenta-light);
}

.companies-panorama {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 276;
    object-fit: cover;
}

.companies-details {
    padding-top: clamp(3.5rem, 6vw, 6rem);
}

.companies-details h3 {
    margin: 0 0 3rem;
    color: var(--onestop-blue);
    font-family: "Fira Sans", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    font-weight: 300;
}

.company-profiles {
    display: grid;
    gap: 2.4rem;
}

.company-profile {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.7fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 6rem);
}

.company-profile-logo {
    display: flex;
    min-height: 68px;
    align-items: center;
}

.company-profile-logo img {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 62px;
}

.company-profile p {
    max-width: 690px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.company-profile strong {
    font-weight: 500;
}

.site-footer {
    margin-top: 0;
    padding: 2.2rem 0 1rem;
    color: #fff;
    background: var(--onestop-blue);
    border: 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.newsletter-form label {
    white-space: nowrap;
    font-size: 0.9rem;
}

.newsletter-controls {
    display: flex;
}

.newsletter-controls input {
    width: min(260px, 42vw);
    padding: 0.65rem 0.8rem;
    border: 0;
    border-radius: 7px 0 0 7px;
}

.newsletter-controls button {
    padding: 0.65rem 1rem;
    color: #fff;
    background: var(--onestop-magenta);
    border: 0;
    border-radius: 0 7px 7px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-companies {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-company img {
    width: auto;
    height: 23px;
    max-width: 135px;
}

.footer-company .social-link {
    color: #fff;
    line-height: 1;
    text-decoration: none;
}

.footer-company .social-link:hover,
.footer-company .social-link:focus-visible {
    color: #fff;
    opacity: 0.7;
}

.footer-copyright {
    margin: 2rem 0 0;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .site-navigation {
        display: none;
    }

    .mobile-navigation {
        display: block;
    }

    .service-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-top: 0.6rem;
    }

    .service-tab {
        min-width: 190px;
        scroll-snap-align: start;
    }

    .service-category-panel {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 0;
    }

    .service-panels {
        padding: 20px;
    }

    .service-item-tabs {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        padding: 0;
        border-right: 0;
        border-bottom: 2px solid #eee;
        scroll-snap-type: x mandatory;
    }

    .service-item-tab {
        min-width: 210px;
        align-self: stretch;
        padding: 12px 18px;
        scroll-snap-align: start;
    }

    .service-item-tab.active {
        border-radius: 0;
    }

    .service-item-panels {
        padding-left: 0;
    }

    .service-item-panel {
        padding: 2rem 1rem 1rem;
    }

    .service-logos {
        justify-content: flex-start;
    }

    .footer-top,
    .newsletter-form {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-companies {
        justify-content: flex-start;
    }

    .company-profile {
        grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
        gap: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .site-header {
        min-height: 72px;
        padding: 0.75rem 0;
    }

    .site-header .logo {
        width: 120px;
    }

    .site-header .container {
        gap: 0.75rem !important;
    }

    .header-actions {
        gap: 0.5rem !important;
    }

    .account-actions .btn-outline-light {
        display: none;
    }

    .home-main {
        margin-top: 72px;
    }

    .onestop-hero {
        min-height: 430px;
        background-position: 57% center;
    }

    .onestop-hero h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .onestop-button {
        min-width: 0;
        padding: 0.7rem 1.1rem;
        font-size: 0.88rem;
    }

    .logo-carousel {
        height: 92px;
    }

    .logo-carousel-set {
        gap: 1.6rem;
        padding: 1.1rem;
        justify-content: flex-start;
    }

    .logo-carousel img {
        height: 25px;
        min-width: 110px;
    }

    .service-tab {
        min-height: 164px;
        min-width: 165px;
    }

    .service-tab-icon {
        width: 62px;
        height: 62px;
    }

    .service-item-panel {
        min-height: 0;
        padding: 1.6rem;
    }

    #service-item-panel-valuation-3 .service-logos {
        flex-wrap: wrap;
    }

    #service-item-panel-valuation-3 .service-logos a {
        flex-basis: calc(50% - 15px);
    }

    .newsletter-controls {
        width: 100%;
    }

    .newsletter-controls input {
        min-width: 0;
        flex: 1;
        width: auto;
    }

    .footer-navigation {
        gap: 0.75rem 1rem;
    }

    .footer-companies {
        flex-direction: column;
        gap: 1.25rem;
    }

    .companies-introduction h2 {
        margin: 1.8rem 0 2.4rem;
        font-size: clamp(1.75rem, 8vw, 2rem);
    }

    .company-profile {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .company-profile-logo {
        min-height: 54px;
    }

    .company-profile-logo img {
        max-width: 210px;
        max-height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .logo-carousel-track {
        animation: none;
    }
}
