:root {
    --peak-navy: #002d62;
    --peak-blue: #0979c6;
    --peak-link-hover: #0979c6;
    --peak-content-link: #0979c6;
    --peak-content-link-hover: #e8720a;
    --peak-white: #ffffff;
    --peak-header-border: #0979c6;
    --peak-font: "Montserrat", Arial, sans-serif;
    --peak-container: 1320px;
    --peak-gutter: 32px;
    --peak-gutter-mobile: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body.theme-peak {
    margin: 0;
    font-family: var(--peak-font);
    color: var(--peak-navy);
    background: var(--peak-white);
    overflow-x: clip;
    max-width: 100%;
}

body.theme-peak .ccm-page,
body.theme-peak .site-main {
    max-width: 100%;
}

body.theme-peak.peak-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--peak-white);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 14px var(--peak-gutter);
}

.site-header__logo {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    width: 268px;
    max-width: 100%;
    height: auto;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-header__nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__nav-item {
    position: relative;
}

.site-header__nav a {
    color: var(--peak-navy);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header__nav > ul > .site-header__nav-item > a:hover,
.site-header__nav > ul > .site-header__nav-item > a.is-active,
.site-header__nav-item--has-dropdown:hover > a {
    color: var(--peak-blue);
}

.site-header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 120;
    min-width: 230px;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-header__dropdown::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #001433;
    transform: translateX(-50%) rotate(45deg);
}

.site-header__dropdown ul {
    display: block;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    overflow: hidden;
    border-radius: 0;
    background: #001433;
    box-shadow: 0 16px 32px rgba(0, 20, 51, 0.28);
}

.site-header__dropdown li + li {
    margin-top: 0;
}

.site-header__dropdown a {
    display: block;
    padding: 14px 24px;
    color: var(--peak-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header__dropdown a:hover,
.site-header__dropdown a.is-active {
    background: var(--peak-blue);
    color: var(--peak-white);
}

.site-header__nav-item--has-dropdown:hover .site-header__dropdown,
.site-header__nav-item--has-dropdown:focus-within .site-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--peak-blue);
    color: var(--peak-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-header__phone:hover {
    background: #006aab;
    color: var(--peak-white);
    transform: translateY(-1px);
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.site-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--peak-navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-main {
    min-height: 40vh;
}

.site-footer {
    background: var(--peak-white);
    color: #4b5563;
}

.site-footer__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 0 var(--peak-gutter);
}

.site-footer__top {
    padding: 56px 0 40px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 0.9fr 0.9fr 0.8fr;
    gap: 28px 32px;
    align-items: start;
}

.site-footer__brand img {
    display: block;
    width: 268px;
    max-width: 100%;
    height: auto;
}

.site-footer__addresses {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.site-footer__address strong {
    display: block;
    color: var(--peak-blue);
    font-size: 15px;
    font-weight: 700;
}

.site-footer__address em {
    display: block;
    margin: 2px 0 6px;
    color: #374151;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
}

.site-footer__address p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav li + li {
    margin-top: 10px;
}

.site-footer__nav a,
.site-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav a::before,
.site-footer__contact-link::before {
    content: "» »";
    color: var(--peak-blue);
    font-weight: 700;
    letter-spacing: -2px;
}

.site-footer__nav a:hover,
.site-footer__contact-link:hover {
    color: #0979C6;
}

.site-footer__nav a:hover::before,
.site-footer__contact-link:hover::before {
    color: #0979C6;
}

.site-footer__contact-link {
    margin-bottom: 18px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--peak-navy);
    color: var(--peak-white);
    text-decoration: none;
    transition: background 0.2s ease;
}

.site-footer__social a:hover {
    background: #0979C6;
    color: var(--peak-white);
}

.site-footer__partners {
    padding: 4px 0 40px;
}

.site-footer__partners-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 18px;
}

.site-footer__partners-list img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    flex: 0 1 auto;
}

.partner-logo--ewtc {
    max-width: 170px;
    max-height: 22px;
}

.partner-logo--isn {
    max-width: 80px;
    max-height: 72px;
}

.partner-logo--osa {
    max-width: 80px;
    max-height: 72px;
}

.partner-logo--pbpa {
    max-width: 132px;
    max-height: 68px;
}

.partner-logo--tps {
    max-width: 130px;
    max-height: 64px;
}

.partner-logo--veriforce {
    max-width: 160px;
    max-height: 28px;
}

.site-footer__bottom {
    padding: 0 0 28px;
}

.site-footer__bottom-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 8px;
}

.site-footer__legal-left p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.site-footer__legal-left p + p {
    margin-top: 4px;
}

.site-footer__legal-left a {
    color: #6b7280;
    text-decoration: underline;
}

.site-footer__legal-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
}

.site-footer__legal-right a {
    color: #6b7280;
    text-decoration: none;
}

.site-footer__legal-right a:hover {
    color: #0979C6;
}

.site-footer__legal-left a:hover {
    color: #0979C6;
}

/* ~990–1100: keep footer in one horizontal row (logo → addresses → navs → contact) */
@media (max-width: 1100px) and (min-width: 992px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 0.75fr);
        gap: 24px 18px;
        align-items: start;
    }

    .site-footer__brand {
        grid-column: auto;
        text-align: left;
    }

    .site-footer__brand img {
        width: min(200px, 100%);
        margin: 0;
    }

    .site-footer__addresses {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: auto;
        max-width: none;
        margin: 0;
    }

    .site-footer__address:first-child,
    .site-footer__address:last-child {
        text-align: left;
        justify-self: start;
    }

    .site-footer__nav a,
    .site-footer__contact-link {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .site-footer__inner {
        padding: 0 var(--peak-gutter-mobile);
    }

    .site-footer__top {
        padding: 48px 0 32px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .site-footer__brand {
        text-align: center;
    }

    .site-footer__brand img {
        margin: 0 auto;
    }

    .site-footer__partners-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px 20px;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .site-header__inner {
        padding: 12px var(--peak-gutter-mobile);
    }

    .site-header.is-open {
        box-shadow: 0 10px 28px rgba(0, 45, 98, 0.12);
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .site-header__right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100dvh - 68px);
        padding: 8px 0 20px;
        background: var(--peak-white);
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 16px 32px rgba(0, 45, 98, 0.1);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-header.is-open .site-header__right {
        display: flex;
    }

    .site-header__nav {
        padding: 0 var(--peak-gutter-mobile);
    }

    .site-header__nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-header__nav > ul > .site-header__nav-item {
        width: 100%;
        border-bottom: 1px solid #eef2f7;
    }

    .site-header__nav > ul > .site-header__nav-item:last-child {
        border-bottom: 0;
    }

    .site-header__nav > ul > .site-header__nav-item > a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 8px 0;
        font-size: 15px;
    }

    .site-header__nav-item,
    .site-header__nav-item--has-dropdown {
        width: 100%;
    }

    .site-header__dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        margin: 0 0 8px;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .site-header__dropdown::before {
        display: none;
    }

    .site-header__dropdown ul {
        margin: 0;
        padding: 0 0 8px 16px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-header__dropdown li + li {
        margin-top: 0;
    }

    .site-header__dropdown a {
        min-height: 44px;
        padding: 10px 0;
        color: #4b5563;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
    }

    .site-header__dropdown a:hover,
    .site-header__dropdown a.is-active {
        background: transparent;
        color: var(--peak-blue);
    }

    .site-header__contact {
        padding: 16px var(--peak-gutter-mobile) 0;
        border-top: 1px solid #eef2f7;
    }

    .site-header__phone {
        width: 100%;
        min-height: 48px;
        text-align: center;
    }

    .site-header.is-open .site-header__toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .site-header__toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .site-header__toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.hero-slider {
    --hero-blue: #0979c6;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 490;
    min-height: 360px;
    max-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide__media {
    position: absolute;
    inset: 0;
}

.hero-slide__media img,
.hero-slide__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 52%;
}

.hero-slide__media img {
    transform: translateX(30%);
}

.hero-slide__panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: var(--hero-blue);
    clip-path: polygon(0 0, 52% 0, 42% 100%, 0 100%);
}

.hero-slide__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 0 var(--peak-gutter);
}

.hero-slide__content {
    max-width: min(480px, 36vw);
    padding-right: 16px;
    box-sizing: border-box;
}

.hero-slide__content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 2.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-slide__content h1 span {
    display: block;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__dot.is-active {
    background: var(--hero-blue);
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .hero-slider__track {
        aspect-ratio: auto;
        min-height: 0;
        max-height: none;
        height: auto;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .hero-slide.is-active {
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        z-index: 1;
    }

    .hero-slide__media {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 200px;
        max-height: 280px;
    }

    .hero-slide__media img,
    .hero-slide__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-position: center 35%;
        transform: none;
    }

    .hero-slide__panel {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        width: 100%;
        clip-path: none;
        align-items: stretch;
    }

    .hero-slide__inner {
        padding: 0 var(--peak-gutter-mobile);
    }

    .hero-slide__content {
        width: 100%;
        max-width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
    }

    .hero-slide__content h1 {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        line-height: 1.12;
        text-align: center;
    }

    .hero-slide__content h1 span {
        display: inline;
    }

    .hero-slide__content h1 span + span::before {
        content: " ";
    }

    .hero-slider__dots {
        bottom: 12px;
    }
}

.page-hero {
    --page-hero-blue: #0979c6;
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1440 / 320;
    min-height: 240px;
    max-height: 380px;
}

.page-hero__media {
    position: absolute;
    inset: 0;
}

.page-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    transform: translateX(30%);
}

.page-hero__panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: var(--page-hero-blue);
    clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
}

.page-hero__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 0 var(--peak-gutter);
}

.page-hero__title {
    max-width: 520px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .page-hero {
        aspect-ratio: auto;
        min-height: 0;
        max-height: none;
        display: flex;
        flex-direction: column;
    }

    .page-hero__media {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 180px;
        max-height: 240px;
    }

    .page-hero__media img {
        transform: none;
    }

    .page-hero__panel {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        width: 100%;
        clip-path: none;
        align-items: stretch;
    }

    .page-hero__inner {
        width: 100%;
        max-width: 100%;
        padding: 30px var(--peak-gutter-mobile);
    }

    .page-hero__title {
        max-width: none;
        font-size: clamp(1.35rem, 5.2vw, 1.75rem);
        line-height: 1.15;
    }
}

@media (max-width: 480px) {
    .page-hero__media {
        min-height: 160px;
        max-height: 220px;
    }

    .page-hero__inner {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.peak-page-sections {
    width: 100%;
}

/* Secondary page — headings 29px on wide desktop; wrap safely on tablet-landscape */
@media (min-width: 1280px) {
    .peak-secondary-page .page-hero__title,
    .peak-secondary-page .peak-page-h1 h1,
    .peak-secondary-page .peak-one-column__subhead,
    .peak-secondary-page .peak-two-column__subhead,
    .peak-secondary-page .peak-three-column__subhead,
    .peak-secondary-page .peak-four-column__subhead,
    .peak-secondary-page .peak-four-column__title {
        font-size: 29px;
    }
}

@media (min-width: 992px) and (max-width: 1279px) {
    .peak-secondary-page .page-hero__title,
    .peak-secondary-page .peak-page-h1 h1,
    .peak-secondary-page .peak-one-column__subhead,
    .peak-secondary-page .peak-two-column__subhead,
    .peak-secondary-page .peak-three-column__subhead,
    .peak-secondary-page .peak-four-column__subhead,
    .peak-secondary-page .peak-four-column__title {
        font-size: 24px;
    }

    .peak-secondary-page .peak-two-column__subhead {
        white-space: normal;
    }

    .peak-secondary-page .peak-three-column__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
        column-gap: 32px;
    }

    .peak-secondary-page .peak-three-column__list-wrap {
        padding-left: 4%;
    }
}

.peak-area {
    width: 100%;
}

.peak-page-h1 {
    padding: 56px var(--peak-gutter) 28px;
}

.peak-page-h1__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    text-align: center;
}

.peak-page-h1 h1 {
    margin: 0;
    color: var(--peak-navy);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.peak-one-column {
    padding: 0 var(--peak-gutter) 56px;
}

.peak-one-column__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
}

.peak-one-column__subhead {
    margin: 0 0 24px;
    color: var(--peak-blue);
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
    font-weight: 700;
    line-height: 1.3;
}

.peak-content-body {
    color: #4b5563;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.peak-content-body p {
    margin: 0 0 1.25em;
}

.peak-content-body p:last-child {
    margin-bottom: 0;
}

.peak-content-body a {
    color: var(--peak-content-link);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.peak-content-body a:hover {
    color: var(--peak-content-link-hover);
}

.peak-content-body ul,
.peak-content-body ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

.peak-content-body li + li {
    margin-top: 0.5em;
}

@media (max-width: 991px) {
    .peak-page-h1 {
        padding: 44px var(--peak-gutter-mobile) 24px;
    }

    .peak-one-column {
        padding: 0 var(--peak-gutter-mobile) 48px;
    }
}

@media (max-width: 480px) {
    .peak-page-h1 h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .peak-content-body {
        font-size: 15px;
    }
}

.peak-two-column {
    padding: 56px var(--peak-gutter);
    background: var(--peak-white);
}

.peak-two-column--alternate {
    background: #ededed;
}

.peak-two-column__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
}

/* Alternate (image left): text vertically centered to the photo */
.peak-two-column--alternate .peak-two-column__inner,
.peak-two-column--image-left .peak-two-column__inner {
    align-items: center;
}

.peak-two-column__content {
    min-width: 0;
    max-width: 100%;
}

.peak-two-column__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.peak-two-column__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: none;
    min-height: 0;
    background: #9ca3af;
}

.peak-two-column__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.peak-two-column__image--placeholder {
    min-height: 0;
}

.peak-two-column__caption {
    margin: 14px 0 0;
    color: var(--peak-blue);
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
}

.peak-two-column__subhead {
    margin: 0 0 24px;
    color: var(--peak-blue);
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* One-line titles only when there is enough width */
@media (min-width: 1280px) {
    .peak-two-column__subhead {
        font-size: clamp(1.25rem, 1.55vw, 1.625rem);
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (min-width: 992px) and (max-width: 1279px) {
    .peak-two-column__subhead {
        font-size: clamp(1.2rem, 1.8vw, 1.45rem);
        white-space: normal;
    }
}

@media (max-width: 991px) {
    .peak-two-column--alternate .peak-two-column__inner,
    .peak-two-column--image-left .peak-two-column__inner {
        align-items: start;
    }

    .peak-two-column__subhead {
        white-space: normal;
    }
}

.peak-two-column__content .peak-content-body {
    margin-bottom: 28px;
}

.peak-two-column__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 40px;
    border-radius: 6px;
    background: var(--peak-blue);
    color: var(--peak-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.peak-two-column__button:hover {
    background: #006aab;
    color: var(--peak-white);
    transform: translateY(-1px);
}

/* Secondary page CTA — slightly larger */
.peak-page-sections .cta-banner__button {
    min-height: 52px;
    padding: 13px 36px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .peak-two-column {
        padding: 48px var(--peak-gutter-mobile);
    }

    .peak-two-column__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .peak-two-column__media {
        order: -1;
    }
}

@media (max-width: 480px) {
    .peak-two-column {
        padding: 40px var(--peak-gutter-mobile);
    }

    .peak-two-column__button {
        width: 100%;
        max-width: 320px;
    }
}

.peak-three-column {
    padding: 56px var(--peak-gutter);
    background: var(--peak-white);
}

.peak-three-column__inner {
    display: grid;
    /* Wider text column; checklist sits further right (~10–15%) */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.8fr);
    column-gap: 48px;
    row-gap: 40px;
    align-items: start;
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
}

.peak-three-column__media {
    /* Photo sits a touch above the H2 */
    margin-top: -10px;
}

.peak-three-column__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #9ca3af;
}

.peak-three-column__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.peak-three-column__image--placeholder {
    min-height: 220px;
}

.peak-three-column__subhead {
    margin: 0 0 20px;
    color: var(--peak-blue);
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
    font-weight: 700;
    line-height: 1.3;
}

.peak-three-column__list-wrap {
    /* Checklist vertically centered; nudged toward the right edge */
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 100%;
    padding-left: 12%;
    box-sizing: border-box;
}

.peak-three-column__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.peak-three-column__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.peak-three-column__list li + li {
    margin-top: 14px;
}

.peak-three-column__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--peak-blue);
}

.peak-three-column__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .peak-three-column {
        padding: 48px var(--peak-gutter-mobile);
    }

    .peak-three-column__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .peak-three-column__media {
        order: -1;
        margin-top: 0;
    }

    .peak-three-column__list-wrap {
        align-self: stretch;
        justify-self: stretch;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .peak-three-column {
        padding: 40px var(--peak-gutter-mobile);
    }

    .peak-three-column__list li {
        font-size: 15px;
    }
}

.peak-four-column {
    padding: 56px var(--peak-gutter);
    background: #ededed;
}

.peak-four-column__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
}

.peak-four-column__subhead {
    margin: 0 0 40px;
    color: var(--peak-blue);
    font-size: clamp(1.5rem, 2.4vw, 2.125rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.peak-four-column__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.peak-four-column__title {
    margin: 0 0 16px;
    color: var(--peak-navy);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 800;
    line-height: 1.3;
}

.peak-four-column__col--text .peak-content-body p {
    margin: 0;
}

.peak-four-column__image {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #9ca3af;
}

.peak-four-column__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.peak-four-column__image--placeholder {
    min-height: 180px;
}

@media (max-width: 1100px) {
    .peak-four-column__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .peak-four-column {
        padding: 48px var(--peak-gutter-mobile);
    }

    .peak-four-column__subhead {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .peak-four-column__grid {
        grid-template-columns: 1fr;
    }

    .peak-four-column {
        padding: 40px var(--peak-gutter-mobile);
    }
}

.intro-block {
    padding: 72px 0 64px;
    background: var(--peak-white);
    border-bottom: 3px solid var(--peak-blue);
}

.intro-block__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 0 var(--peak-gutter);
    text-align: center;
}

.intro-block__title {
    margin: 0 0 36px;
    color: var(--peak-navy);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.intro-block__title span {
    display: block;
}

.intro-block__text {
    max-width: 960px;
    margin: 0 auto 56px;
}

.intro-block__text p {
    margin: 0;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.intro-block__text strong {
    font-weight: 700;
    color: #1a1a1a;
}

.intro-block__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.intro-block__features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.intro-block__features img {
    display: block;
    width: 110px;
    height: 110px;
}

.intro-block__features span {
    color: var(--peak-blue);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .intro-block {
        padding: 56px 0 48px;
    }

    .intro-block__inner {
        padding: 0 var(--peak-gutter-mobile);
    }

    .intro-block__text {
        margin-bottom: 40px;
    }

    .intro-block__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        max-width: none;
    }

    .intro-block__features img {
        width: 84px;
        height: 84px;
    }

    .intro-block__features span {
        font-size: 16px;
    }
}

.cta-banner {
    --cta-blue: #0979c6;
    --cta-pad-y: 36px;
    --cta-decor-gap: 30px;
    position: relative;
    overflow: hidden;
    background: var(--cta-blue);
}

/* Text + button centered as a group; decor anchors to that group */
.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: var(--cta-pad-y) var(--peak-gutter);
}

.cta-banner__group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 40px;
}

/* Peaks sit 30px from the text/button group — does not shift centering */
.cta-banner__decor {
    position: absolute;
    top: 50%;
    right: calc(100% + var(--cta-decor-gap));
    left: auto;
    z-index: 0;
    width: clamp(280px, 32vw, 560px);
    height: 220%;
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-banner__decor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

/* Home CTA 2 + Secondary — peaks 30px to the right of the group */
.peak-area--home-cta-2 .cta-banner__decor,
.peak-area--site-cta-bottom .cta-banner__decor,
.peak-page-sections .cta-banner__decor,
.cta-banner--decor-right .cta-banner__decor {
    right: auto;
    left: calc(100% + var(--cta-decor-gap));
}

.peak-area--home-cta-2 .cta-banner__decor img,
.peak-area--site-cta-bottom .cta-banner__decor img,
.peak-page-sections .cta-banner__decor img,
.cta-banner--decor-right .cta-banner__decor img {
    object-position: left center;
}

.cta-banner__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--peak-white);
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cta-banner__button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 30px;
    border: 2px solid var(--peak-white);
    border-radius: 999px;
    background: transparent;
    color: var(--peak-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-banner__button:hover {
    background: var(--peak-white);
    color: var(--cta-blue);
}

@media (min-width: 992px) {
    .cta-banner__group {
        flex-wrap: nowrap;
        gap: 40px;
    }

    .cta-banner__text {
        font-size: clamp(1.75rem, 2.3vw, 2.25rem);
    }

    .cta-banner__button {
        min-height: 54px;
        padding: 14px 36px;
        font-size: 22px;
    }

    .peak-page-sections .cta-banner__button {
        min-height: 56px;
        padding: 15px 40px;
        font-size: 22px;
    }

    .cta-banner__decor {
        width: clamp(360px, 40vw, 680px);
    }
}

@media (max-width: 991px) {
    .cta-banner__inner {
        padding: 28px var(--peak-gutter-mobile);
    }

    .cta-banner__group {
        gap: 20px;
    }

    .cta-banner__decor {
        width: min(72vw, 360px);
        opacity: 0.85;
    }
}

@media (max-width: 600px) {
    .cta-banner__group {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        width: 100%;
    }

    .cta-banner__button {
        width: 100%;
        max-width: 320px;
    }

    .cta-banner__decor {
        width: min(84vw, 280px);
        opacity: 0.45;
    }
}

.urgency-block {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.urgency-block__media {
    position: absolute;
    inset: 0;
}

.urgency-block__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.urgency-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.urgency-block__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 100px var(--peak-gutter);
    text-align: center;
}

.urgency-block__title {
    margin: 0 0 28px;
    color: var(--peak-white);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.urgency-block__title span {
    display: block;
}

.urgency-block__text {
    max-width: 920px;
    margin: 0;
    color: var(--peak-white);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
}

.urgency-block__br--pc {
    display: none;
}

.urgency-block__br--mobile {
    display: none;
}

/* Tablet + desktop: same 3-line break as PC */
@media (min-width: 768px) {
    .urgency-block__br--pc {
        display: block;
    }

    .urgency-block__br--mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .urgency-block__br--pc {
        display: none;
    }

    .urgency-block__br--mobile {
        display: block;
    }
}

@media (max-width: 991px) {
    .urgency-block,
    .urgency-block__inner {
        min-height: 440px;
    }

    .urgency-block__inner {
        padding: 80px var(--peak-gutter-mobile);
    }
}

@media (max-width: 480px) {
    .urgency-block,
    .urgency-block__inner {
        min-height: 400px;
    }

    .urgency-block__inner {
        padding: 64px var(--peak-gutter-mobile);
    }

    .urgency-block__title {
        margin-bottom: 20px;
    }
}

.products-block {
    padding: 72px 0 80px;
    background: #f5f7fa;
}

.products-block__inner {
    width: 100%;
    max-width: var(--peak-container);
    margin: 0 auto;
    padding: 0 var(--peak-gutter);
}

.products-block__title {
    margin: 0 0 48px;
    color: var(--peak-navy);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}

/* Break before "Delivered" only on tablet/mobile */
.products-block__title br {
    display: none;
}

.products-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: var(--peak-white);
    box-shadow: 0 8px 24px rgba(0, 45, 98, 0.08);
}

.product-card__header {
    padding: 18px 24px;
    background: #00284f;
}

.product-card__header h3 {
    margin: 0;
    color: var(--peak-white);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.product-card__body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 28px 56px;
}

.product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    margin-bottom: 24px;
}

.product-card__image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.product-card__body p {
    margin: 0;
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.65;
}

.product-card__link {
    position: absolute;
    right: 24px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--peak-blue);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.product-card__link:hover {
    color: #006aab;
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .products-block {
        padding: 56px 0 64px;
    }

    .products-block__inner {
        padding: 0 var(--peak-gutter-mobile);
    }

    .products-block__title br {
        display: block;
    }

    .products-block__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .products-block__title {
        margin-bottom: 32px;
        font-size: 1.35rem;
    }

    .product-card__body {
        padding: 24px 20px 52px;
    }

    .product-card__body p {
        font-size: 15px;
    }
}

.difference-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.difference-block__media {
    position: relative;
    min-height: 320px;
}

.difference-block__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.difference-block__content {
    display: flex;
    align-items: center;
    background: #00284f;
}

.difference-block__inner {
    width: 100%;
    padding: 56px clamp(32px, 5vw, 72px);
}

.difference-block__title {
    margin: 0 0 32px;
    color: var(--peak-white);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .difference-block__title {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .difference-block__title {
        white-space: normal;
    }
}

.difference-block__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.difference-block__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--peak-white);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.55;
}

.difference-block__list li > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
}

.difference-block__br--pc {
    display: none;
}

@media (min-width: 992px) {
    .difference-block__br--pc {
        display: inline;
    }

    /* Keep design line breaks only — no random mid-phrase wraps */
    .difference-block__list li > span:last-child {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .difference-block__list li > span:last-child {
        white-space: normal;
    }
}

.difference-block__list li + li {
    margin-top: 22px;
}

.difference-block__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--peak-blue);
}

.difference-block__icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

@media (max-width: 1100px) and (min-width: 992px) {
    .difference-block {
        min-height: 315px; /* 25% shorter than desktop 420px */
    }
}

@media (max-width: 991px) {
    .difference-block {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .difference-block__media {
        min-height: 210px; /* 25% less than 280px */
        max-height: 210px;
    }

    .difference-block__media img {
        height: 100%;
    }

    .difference-block__inner {
        padding: 48px var(--peak-gutter-mobile);
    }

    .difference-block__title {
        margin-bottom: 24px;
    }

    .difference-block__list li + li {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .difference-block__media {
        min-height: 220px;
        max-height: 220px;
    }

    .difference-block__inner {
        padding: 40px var(--peak-gutter-mobile);
    }
}

[data-peak-animate],
[data-peak-animate-child] {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition-delay: var(--peak-animate-delay, 0ms);
}

/* Vertical motion only — horizontal translate caused page-wide right gap on mid-scroll reload */
[data-peak-animate="left"],
[data-peak-animate-child][data-peak-animate="left"],
[data-peak-animate="right"],
[data-peak-animate-child][data-peak-animate="right"] {
    transform: translateY(28px);
}

[data-peak-animate].is-visible,
[data-peak-animate-child].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-peak-animate],
    [data-peak-animate-child] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--peak-navy);
    color: var(--peak-white);
    box-shadow: 0 10px 24px rgba(0, 45, 98, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--peak-link-hover);
}

.back-to-top svg {
    display: block;
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .back-to-top {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 44px;
        height: 44px;
    }
}

/* --------------------------------------------------------------------------
   Mobile UI/UX polish
   -------------------------------------------------------------------------- */

@media (min-width: 601px) and (max-width: 991px) {
    .site-footer__addresses {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 40px;
        max-width: none;
        margin: 0;
    }

    .site-footer__address:first-child {
        text-align: left;
    }

    .site-footer__address:last-child {
        text-align: right;
    }

    .site-footer__bottom-inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px 24px;
    }

    .site-footer__legal-right {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    [data-peak-animate="left"],
    [data-peak-animate-child][data-peak-animate="left"],
    [data-peak-animate="right"],
    [data-peak-animate-child][data-peak-animate="right"] {
        transform: translateY(20px);
    }
}

@media (max-width: 600px) {
    .site-footer__top {
        padding: 40px 0 28px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__brand {
        text-align: center;
    }

    .site-footer__brand img {
        width: 220px;
        margin: 0 auto;
    }

    .site-footer__addresses {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 24px;
    }

    .site-footer__nav ul {
        display: grid;
        gap: 2px;
    }

    .site-footer__nav li + li {
        margin-top: 0;
    }

    .site-footer__nav a,
    .site-footer__contact-link {
        min-height: 40px;
        align-items: center;
    }

    .site-footer__contact {
        padding-top: 8px;
        border-top: 1px solid #eef2f7;
    }

    .site-footer__contact-link {
        margin-bottom: 14px;
    }

    .site-footer__partners {
        padding: 12px 0 32px;
    }

    .site-footer__partners-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: center;
        gap: 28px 18px;
    }

    .site-footer__bottom {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .site-footer__legal-left p,
    .site-footer__legal-right {
        font-size: 12px;
    }

    .site-footer__legal-right {
        gap: 8px;
    }

    .peak-four-column__subhead {
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .site-header__logo img {
        width: 168px;
    }

    .peak-page-h1 {
        padding: 36px var(--peak-gutter-mobile) 20px;
    }

    .peak-one-column,
    .peak-two-column,
    .peak-three-column,
    .peak-four-column {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .peak-two-column__image--placeholder,
    .peak-three-column__image--placeholder {
        min-height: 0;
    }

    .peak-two-column__button {
        width: 100%;
        max-width: none;
    }

    .site-footer__partners-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .partner-logo--ewtc {
        max-width: 138px;
    }

    .partner-logo--isn,
    .partner-logo--osa {
        max-width: 58px;
        max-height: 58px;
    }

    .partner-logo--pbpa {
        max-width: 108px;
        max-height: 52px;
    }

    .partner-logo--tps {
        max-width: 96px;
        max-height: 50px;
    }

    .partner-logo--veriforce {
        max-width: 120px;
    }
}

@media (max-width: 390px) {
    .site-footer__partners-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .intro-block__features {
        max-width: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    .site-header__nav a,
    .site-header__dropdown a,
    .site-header__phone,
    .site-header__toggle,
    .peak-two-column__button,
    .cta-banner__button,
    .product-card__link,
    .back-to-top,
    .site-footer__social a {
        -webkit-tap-highlight-color: transparent;
    }

    .hero-slider__dot {
        width: 12px;
        height: 12px;
    }
}

/* -------------------------------------------------------------------------
   Concrete CMS Layout / Bootstrap 5 theme grid
   Match Peak content width (--peak-container) and side gutters.
   ------------------------------------------------------------------------- */
body.theme-peak .container,
body.theme-peak .peak-area--grid > .container {
    width: 100%;
    max-width: var(--peak-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--peak-gutter);
    padding-right: var(--peak-gutter);
}

body.theme-peak .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--peak-gutter) / -2);
    margin-right: calc(var(--peak-gutter) / -2);
}

body.theme-peak .row > [class*="col-"] {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-left: calc(var(--peak-gutter) / 2);
    padding-right: calc(var(--peak-gutter) / 2);
}

@media (min-width: 768px) {
    body.theme-peak .col-md-1 { flex: 0 0 auto; width: 8.33333333%; }
    body.theme-peak .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
    body.theme-peak .col-md-3 { flex: 0 0 auto; width: 25%; }
    body.theme-peak .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
    body.theme-peak .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
    body.theme-peak .col-md-6 { flex: 0 0 auto; width: 50%; }
    body.theme-peak .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
    body.theme-peak .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
    body.theme-peak .col-md-9 { flex: 0 0 auto; width: 75%; }
    body.theme-peak .col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
    body.theme-peak .col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
    body.theme-peak .col-md-12 { flex: 0 0 auto; width: 100%; }

    body.theme-peak .offset-md-1 { margin-left: 8.33333333%; }
    body.theme-peak .offset-md-2 { margin-left: 16.66666667%; }
    body.theme-peak .offset-md-3 { margin-left: 25%; }
    body.theme-peak .offset-md-4 { margin-left: 33.33333333%; }
    body.theme-peak .offset-md-5 { margin-left: 41.66666667%; }
    body.theme-peak .offset-md-6 { margin-left: 50%; }
    body.theme-peak .offset-md-7 { margin-left: 58.33333333%; }
    body.theme-peak .offset-md-8 { margin-left: 66.66666667%; }
    body.theme-peak .offset-md-9 { margin-left: 75%; }
    body.theme-peak .offset-md-10 { margin-left: 83.33333333%; }
    body.theme-peak .offset-md-11 { margin-left: 91.66666667%; }
}

/* Free-form / custom width layouts (Add Layout without theme grid columns) */
body.theme-peak .ccm-layout-column-wrapper {
    width: 100%;
    max-width: var(--peak-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--peak-gutter);
    padding-right: var(--peak-gutter);
    box-sizing: border-box;
}

body.theme-peak .ccm-layout-column-inner {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Native blocks dropped into layout columns */
body.theme-peak .peak-area--grid .ccm-block-content,
body.theme-peak .ccm-layout-column-inner .ccm-block-content {
    max-width: 100%;
}

body.theme-peak .peak-area--grid {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (max-width: 991px) {
    body.theme-peak .container,
    body.theme-peak .peak-area--grid > .container,
    body.theme-peak .ccm-layout-column-wrapper {
        padding-left: var(--peak-gutter-mobile);
        padding-right: var(--peak-gutter-mobile);
    }

    body.theme-peak .row {
        margin-left: calc(var(--peak-gutter-mobile) / -2);
        margin-right: calc(var(--peak-gutter-mobile) / -2);
    }

    body.theme-peak .row > [class*="col-"] {
        padding-left: calc(var(--peak-gutter-mobile) / 2);
        padding-right: calc(var(--peak-gutter-mobile) / 2);
    }
}
