.home-header {
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-header-nav__link {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-header-nav__link:hover {
    color: #fff;
}

.home-header-nav--light .home-header-nav__link {
    color: rgba(12, 17, 24, 0.72);
}

.home-header-nav--light .home-header-nav__link:hover {
    color: #c8102e;
}

.home-header-logo img {
    transition: filter 0.35s ease;
}

.home-header-action {
    transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

/* Full-screen menu */
.home-menu-overlay {
    background: #003366;
}

.home-menu-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-menu-topbar__logo img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .home-menu-topbar__logo img {
        height: 4rem;
    }
}

.home-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.home-menu-close:hover {
    color: #fff;
}

.home-menu-layout {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .home-menu-layout {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: start;
    }
}

.home-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-menu-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #fff;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (min-width: 1024px) {
    .home-menu-item {
        font-size: 1.125rem;
        padding: 0.85rem 0;
    }
}

.home-menu-item:hover {
    color: #f4b4bc;
}

.home-menu-item--link {
    text-decoration: none;
}

.home-menu-chevron {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1;
    color: #c8102e;
    transition: transform 0.2s ease;
}

.home-menu-item:hover .home-menu-chevron {
    transform: translateX(4px);
}

.home-menu-aside {
    padding-top: 0.5rem;
}

@media (min-width: 1024px) {
    .home-menu-aside {
        padding-top: 0.75rem;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        padding-left: 2.5rem;
    }
}

.home-menu-aside__title {
    margin: 0 0 0.75rem;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.home-menu-aside__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.home-menu-aside__links a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-menu-aside__links a:hover {
    color: #c8102e;
}

.home-menu-aside__contact p {
    margin: 0 0 0.4rem;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.home-menu-aside__contact a {
    color: inherit;
    text-decoration: none;
}

.home-menu-aside__contact a:hover {
    color: #fff;
}

.home-menu-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.home-menu-back:hover {
    color: #c8102e;
}

.home-menu-panel-title {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #fff;
}

@media (min-width: 1024px) {
    .home-menu-panel-title {
        font-size: 1.5rem;
    }
}

.home-menu-sub-grid {
    display: grid;
    gap: 0.65rem 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .home-menu-sub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-menu-sub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-menu-sub-grid--single {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 36rem;
    }
}

.home-menu-sub-grid a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-menu-sub-grid a:hover {
    color: #fff;
}

.home-menu-sub-grid__featured {
    font-size: 1rem;
    font-weight: 600 !important;
    color: #fff !important;
    border-bottom: 2px solid #c8102e;
    padding-bottom: 0.25rem;
    width: fit-content;
}

/* Site footer */
.site-footer {
    background: #003366;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__main {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .site-footer__main {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
        gap: 2rem;
    }
}

.site-footer__logo img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer__tagline {
    margin: 1rem 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.site-footer__address {
    margin: 0;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer__contact-lines {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
}

.site-footer__contact-lines a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__contact-lines a:hover {
    color: #fff;
}

.site-footer__heading {
    margin: 0 0 1.125rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links li + li {
    margin-top: 0.55rem;
}

.site-footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.site-footer__social-link:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-footer__map {
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    filter: grayscale(0.4);
    opacity: 0.9;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .site-footer__bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.site-footer__copy {
    margin: 0;
}

.site-footer__credit {
    margin: 0;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-decoration: none;
}

.site-footer__credit a:hover {
    color: #fff;
}

.home-hero-block {
    margin-top: calc(2rem + 2.25rem);
}

@media (min-width: 1024px) {
    .home-hero-block {
        margin-top: calc(2rem + 4rem);
    }
}

.home-hero {
    position: relative;
    width: 100%;
    height: min(640px, 42vw);
    overflow: hidden;
    background: #f5f3ef;
}

.home-hero .homeHeroSwiper,
.home-hero .swiper-wrapper,
.home-hero .swiper-slide,
.home-hero > .home-hero-slide {
    height: 100% !important;
    min-height: 0 !important;
}

.home-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f3ef;
}

.home-hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-cta {
    background: #003366;
    color: #fff;
}

.home-hero-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-hero-cta__copy {
    min-width: 0;
}

.home-hero-cta__label {
    margin: 0;
    font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.home-hero-cta__sep,
.home-hero-cta__desc {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.home-hero-cta__learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #e63312;
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}

.home-hero-cta__learn-more:hover {
    opacity: 0.85;
    color: #fff;
}

.home-hero-cta__pagination {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.home-hero-cta__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #e63312;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.home-hero-cta__arrow:hover {
    opacity: 0.75;
}

.home-hero-cta__fraction {
    min-width: 2.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
}

.home-hero-sitebar {
    background: transparent;
    color: #0C1118;
    border-bottom: 1px solid rgba(12, 17, 24, 0.08);
}

.home-hero-sitebar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-hero-sitebar__label {
    margin: 0;
    font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.home-hero-sitebar__sep {
    font-weight: 500;
    color: rgba(12, 17, 24, 0.72);
}

.home-hero-sitebar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #003366;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.home-hero-sitebar__link:hover {
    opacity: 0.8;
    color: #003366;
}

.home-intro {
    background: #fff;
    padding: 2.5rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
    .home-intro {
        padding: 3.5rem 2.5rem 4rem;
    }
}

.home-intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.home-intro-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 2.5rem;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .home-intro-logo {
        height: 4.5rem;
        margin-bottom: 3rem;
    }
}

.home-intro-kicker {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.home-intro-title {
    margin: 0 0 2rem;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #c5cad1;
}

.home-intro-text {
    max-width: 44rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #6b7280;
}

.home-intro-text p {
    margin: 0;
}

.home-intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.75rem;
    padding: 0.8rem 2.25rem;
    border-radius: 9999px;
    background: #0c2340;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
    transition: background-color 0.2s ease;
}

.home-intro-btn:hover {
    background: #003366;
    color: #fff;
}

.home-tech {
    border-top: 1px solid rgba(12, 17, 24, 0.06);
    background: #fff;
    padding: 2.5rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
    .home-tech {
        padding: 3.5rem 2.5rem 4rem;
    }
}

.home-tech-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.home-tech-head {
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .home-tech-head {
        margin-bottom: 3.5rem;
    }
}

.home-tech-title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0C1118;
}

.home-tech-desc {
    margin: 1.25rem auto 0;
    max-width: 44rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(12, 17, 24, 0.6);
}

.home-tech-visual {
    width: 100%;
}

.home-tech-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-series-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.home-series-empty {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(12, 17, 24, 0.55);
    border: 1px dashed rgba(12, 17, 24, 0.12);
    border-radius: 0.75rem;
    background: #fafbfc;
}

.home-news {
    background: #fff;
    border-top: 1px solid rgba(12, 17, 24, 0.06);
}

.home-news-heading {
    margin: 0;
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0C1118;
}

.home-news-card {
    height: 100%;
    background: #fff;
}

.home-news-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.home-news-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f3f4f6;
}

.home-news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-news-card:hover .home-news-card__image {
    transform: scale(1.03);
}

.home-news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 0;
    text-align: center;
}

.home-news-card__date {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    color: #003366;
}

.home-news-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0C1118;
}

.home-news-card__excerpt {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(12, 17, 24, 0.65);
}

.home-news-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.65rem 1.75rem;
    border-radius: 9999px;
    background: #0c2340;
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: lowercase;
    color: #fff;
    transition: background-color 0.2s ease;
}

.home-news-card:hover .home-news-card__btn {
    background: #003366;
}

/* Blog section */
.home-blog {
    border-top: 1px solid rgba(12, 17, 24, 0.06);
    background: #fff;
}

.home-blog-head {
    margin-bottom: 1.75rem;
    text-align: center;
}

.home-blog-title {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0C1118;
}

.home-blog-desc {
    margin: 1rem auto 0;
    max-width: 44rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.65);
}

.home-blog-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .home-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.home-blog-card {
    height: 100%;
}

.home-blog-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-blog-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
}

.home-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 51, 102, 0) 0%, rgba(0, 51, 102, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.home-blog-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card:hover .home-blog-card__image {
    transform: scale(1.08);
}

.home-blog-card:hover .home-blog-card__overlay {
    opacity: 1;
}

.home-blog-card:hover .home-blog-card__caption {
    transform: translateY(0);
}

/* Complete Solutions as Standard */
.home-solutions {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.home-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 51, 102, 0.06) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.home-solutions:hover::before {
    opacity: 1;
}

.home-solutions__inner {
    position: relative;
    z-index: 1;
}

.home-solutions-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
}

.home-solutions-feature__orb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: #003366;
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(0, 51, 102, 0.45);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions-feature__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(0, 64, 128, 0.9) 70%);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions-feature__icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions-feature__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(12, 17, 24, 0.55);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.35s ease;
}

.home-solutions-feature:hover .home-solutions-feature__orb {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 36px -10px rgba(0, 51, 102, 0.55);
}

.home-solutions-feature:hover .home-solutions-feature__glow {
    clip-path: circle(150% at 50% 50%);
}

.home-solutions-feature:hover .home-solutions-feature__icon {
    transform: scale(1.12) rotate(-8deg);
}

.home-solutions-feature:hover .home-solutions-feature__label {
    transform: translateY(-2px);
    color: #003366;
}

.home-solutions__features .home-solutions-feature:nth-child(2) {
    transition-delay: 0.05s;
}

.home-solutions__features .home-solutions-feature:nth-child(3) {
    transition-delay: 0.1s;
}

.home-solutions__title {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #003366;
    transition: letter-spacing 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #003366, rgba(0, 51, 102, 0.2));
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions__content:hover .home-solutions__title,
.home-solutions:hover .home-solutions__title {
    letter-spacing: 0.01em;
}

.home-solutions__content:hover .home-solutions__title::after,
.home-solutions:hover .home-solutions__title::after {
    width: 100%;
}

.home-solutions__text {
    margin: 1.25rem 0 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.7);
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.35s ease;
}

.home-solutions__content:hover .home-solutions__text,
.home-solutions:hover .home-solutions__text {
    transform: translateY(-3px);
    color: rgba(12, 17, 24, 0.82);
}

.home-solutions__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: #003366;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions__btn::after {
    content: '\2192';
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-solutions__btn:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(0, 51, 102, 0.55);
    color: #fff;
}

.home-solutions__btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.home-progress-track {
    height: 10px;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
}

.home-progress-fill-red {
    height: 100%;
    background: linear-gradient(90deg, #c41e3a, #e8334f);
    border-radius: 2px;
}

.home-progress-fill-green {
    height: 100%;
    background: linear-gradient(90deg, #2d8a4e, #3cb371);
    border-radius: 2px;
}

.home-product-card:hover .home-product-more {
    transform: translateX(4px);
}

/* Brands / clients carousel */
.home-brands {
    background: #ffffff;
    border-top: 1px solid rgba(12, 17, 24, 0.08);
}

.home-brands__title {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0C1118;
}

.home-brands__logo {
    display: flex;
    height: 6rem;
    width: 6rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid rgba(12, 17, 24, 0.1);
    background: #fff;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-brands__logo:hover {
    border-color: rgba(0, 51, 102, 0.25);
    box-shadow: 0 10px 28px -14px rgba(0, 51, 102, 0.35);
    transform: translateY(-2px);
}

.home-brands__name {
    display: block;
    padding: 0.25rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    color: #003366;
    word-break: break-word;
}

.home-brands__pagination a,
.home-brands__pagination span {
    color: rgba(12, 17, 24, 0.65);
}

.home-brands__pagination a:hover {
    color: #003366;
}

/* ── Inner pages (shared with homepage design) ── */

.site-container {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 0.5rem;
}

@media (min-width: 640px) {
    .site-container {
        padding-left: 0;
        padding-right: 0;
    }
}

.site-container--flush {
    padding-top: 0;
    padding-bottom: 0;
}

.site-container--bar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

@media (min-width: 1024px) {
    .site-container--bar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.inner-page-main {
    padding-top: calc(2rem + 2.25rem);
}

@media (min-width: 1024px) {
    .inner-page-main {
        padding-top: calc(2rem + 4rem);
    }
}

.inner-page {
    background: #fff;
    color: #0c1118;
}

.inner-page-section {
    padding: 0;
}

.inner-page-hero {
    border-bottom: 1px solid rgba(12, 17, 24, 0.08);
}

.inner-page-hero__inner {
    text-align: center;
}

.inner-page-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(12, 17, 24, 0.45);
}

.inner-page-hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #003366;
}

.inner-page-hero__subtitle {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(12, 17, 24, 0.62);
}

.inner-page-hero--accent {
    border-bottom-color: transparent;
}

.inner-page-hero--light-text .inner-page-hero__eyebrow,
.inner-page-hero--light-text .inner-page-hero__title,
.inner-page-hero--light-text .inner-page-hero__subtitle {
    color: #fff;
}

.inner-page-hero--light-text .inner-page-hero__eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.inner-page-hero--light-text .inner-page-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.category-detail-page__content {
    background: color-mix(in srgb, var(--category-color, #003366) 12%, #ffffff);
}

.inner-section-head {
    margin-bottom: 2rem;
}

.inner-section-head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.inner-section-head__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(12, 17, 24, 0.45);
}

.inner-section-head__title {
    margin: 0;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #003366;
}

.inner-section-head__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #003366;
    text-decoration: none;
    white-space: nowrap;
}

.inner-panel {
    border: 1px solid rgba(12, 17, 24, 0.1);
    background: #fff;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .inner-panel {
        padding: 2rem;
    }
}

.inner-panel__title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #003366;
}

.inner-panel__body {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.72);
}

.inner-panel__body p + p {
    margin-top: 1rem;
}

.inner-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(12, 17, 24, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-back-link:hover {
    color: #003366;
}

.inner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: #003366;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.inner-btn:hover {
    background: #004080;
    color: #fff;
}

.inner-btn--outline {
    background: transparent;
    border: 1px solid #0c1118;
    color: #0c1118;
}

.inner-btn--outline:hover {
    background: #0c1118;
    color: #fff;
}

.inner-gallery-card {
    overflow: hidden;
    border: 1px solid rgba(12, 17, 24, 0.1);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inner-gallery-card:hover {
    border-color: rgba(12, 17, 24, 0.2);
    box-shadow: 0 12px 32px -20px rgba(12, 17, 24, 0.25);
}

.inner-client-card {
    border: 1px solid rgba(12, 17, 24, 0.1);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.inner-client-card:hover {
    border-color: rgba(0, 51, 102, 0.35);
    transform: translateY(-2px);
}

.inner-detail-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .inner-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.inner-detail-media {
    position: sticky;
    top: 6rem;
    align-self: start;
}

.inner-detail-image {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(12, 17, 24, 0.1);
    background: #f8f8f8;
}

.inner-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.inner-thumb {
    overflow: hidden;
    border: 1px solid rgba(12, 17, 24, 0.12);
    padding: 0.35rem;
    background: #fff;
    transition: border-color 0.2s ease;
}

.inner-thumb:hover {
    border-color: #003366;
}

.inner-share-btn {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(12, 17, 24, 0.15);
    color: rgba(12, 17, 24, 0.65);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.inner-share-btn:hover {
    border-color: #003366;
    color: #003366;
    background: rgba(0, 51, 102, 0.05);
}

.inner-article {
    display: block;
}

.inner-article__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #003366;
}

.inner-article__meta {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #003366;
}

.inner-article__body {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.75);
}

.inner-map {
    overflow: hidden;
    border: 1px solid rgba(12, 17, 24, 0.1);
}

.inner-map img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* —— Tederic-style homepage sections —— */

.home-partner {
    background: #fff;
}

.home-partner__inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .home-partner__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.home-partner__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0C1118;
}

.home-partner__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(12, 17, 24, 0.68);
}

.home-partner__text p {
    margin: 0 0 1rem;
}

.home-partner__text p:last-child {
    margin-bottom: 0;
}

.home-tederic-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8102e;
    text-decoration: none;
    border-bottom: 2px solid #c8102e;
    padding-bottom: 0.15rem;
    transition: opacity 0.2s ease;
}

.home-tederic-link:hover {
    opacity: 0.75;
    color: #c8102e;
}

.home-partner__map-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(12, 17, 24, 0.08);
    border-radius: 0.5rem;
    background: #f8f9fa;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}

.home-partner__map-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(145deg, rgba(0, 51, 102, 0) 20%, rgba(0, 51, 102, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.home-partner__map-wrap:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 51, 102, 0.24);
    box-shadow: 0 18px 40px -16px rgba(12, 17, 24, 0.22);
}

.home-partner__map-wrap:hover::after {
    opacity: 1;
}

.home-partner__map {
    display: block;
    width: 100%;
    opacity: 0.92;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        filter 0.45s ease;
}

.home-partner__map-wrap:hover .home-partner__map {
    transform: scale(1.06);
    opacity: 1;
    filter: saturate(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .home-partner__map-wrap,
    .home-partner__map-wrap::after,
    .home-partner__map {
        transition: none;
    }

    .home-partner__map-wrap:hover {
        transform: none;
    }

    .home-partner__map-wrap:hover .home-partner__map {
        transform: none;
    }
}

.home-partner__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    font-size: 0.8125rem;
    color: rgba(12, 17, 24, 0.65);
}

.home-partner__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-partner__legend-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.home-partner__legend-dot--hq {
    background: #c8102e;
}

.home-partner__legend-dot--sub {
    background: #0C1118;
}

.home-partner__legend-dot--service {
    background: #9ca3af;
}

.home-who {
    background: #DDD6CA;
    border-top: 1px solid rgba(12, 17, 24, 0.1);
}

.home-who__head {
    margin-bottom: 1.75rem;
    text-align: center;
}

.home-who__title {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #0C1118;
}

.home-who__subtitle {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(12, 17, 24, 0.6);
}

.home-who-swiper-wrap {
    position: relative;
}

.home-who-card {
    position: relative;
    z-index: 0;
    height: 100%;
    padding: 2rem 1.5rem;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid rgba(12, 17, 24, 0.08);
    text-align: center;
    cursor: default;
    transition:
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.55s ease;
}

.home-who-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(145deg, #c5d2df 0%, #a8bccc 48%, #b8c8d8 100%);
    opacity: 0;
    transition: opacity 0.55s ease;
}

.home-who-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 51, 102, 0.32);
    box-shadow: 0 14px 32px rgba(12, 17, 24, 0.14);
}

.home-who-card:hover::before {
    opacity: 1;
}

.home-who-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    color: #c8102e;
    font-size: 1.75rem;
    transition:
        color 0.55s ease,
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-who-card:hover .home-who-card__icon {
    color: #003366;
    transform: scale(1.06);
}

.home-who-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0C1118;
    transition: color 0.55s ease;
}

.home-who-card:hover .home-who-card__title {
    color: #002847;
}

.home-who-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(12, 17, 24, 0.62);
    transition: color 0.55s ease;
}

.home-who-card:hover .home-who-card__text {
    color: rgba(12, 17, 24, 0.85);
}

.home-who-prev,
.home-who-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: -1.125rem;
    border: none;
    background: none;
    color: #c8102e;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.home-who-prev:hover,
.home-who-next:hover {
    opacity: 0.7;
}

.home-who-prev {
    left: 0;
}

.home-who-next {
    right: 0;
}

.home-products {
    background: #fff;
}

.home-products__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-products__intro {
    max-width: 40rem;
    text-align: center;
    align-self: center;
}

.home-products__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0C1118;
}

.home-products__kicker {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(12, 17, 24, 0.55);
}

.home-products__text {
    margin: 1.25rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.65);
}

.home-news-tederic {
    background: #fff;
    border-top: 1px solid rgba(12, 17, 24, 0.06);
}

.home-news-tederic__head {
    margin-bottom: 1.75rem;
}

.home-news-tederic__title {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #0C1118;
}

.home-news-tederic__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 639px) {
    .home-news-tederic__grid {
        grid-template-columns: 1fr;
    }
}

.home-news-tile {
    background: #fff;
    border: 1px solid rgba(12, 17, 24, 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-news-tile:hover {
    border-color: rgba(0, 51, 102, 0.25);
    box-shadow: 0 8px 24px -16px rgba(12, 17, 24, 0.2);
}

.home-news-tile__link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
}

.home-news-tile__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #0C1118;
    transition: color 0.2s ease;
}

.home-news-tile:hover .home-news-tile__title {
    color: #003366;
}

.home-news-tile__date {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: rgba(12, 17, 24, 0.5);
}

.home-contact-strip {
    background: #fff;
    border-top: 1px solid rgba(12, 17, 24, 0.08);
}

.home-contact-strip__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-contact-strip__head {
    max-width: 40rem;
}

.home-contact-strip__label {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c8102e;
}

.home-contact-strip__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0C1118;
}

.home-contact-strip__lead {
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(12, 17, 24, 0.65);
}

.home-contact-strip__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .home-contact-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    .home-contact-strip__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.home-contact-strip__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-contact-strip__item--social {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .home-contact-strip__item--social {
        grid-column: auto;
    }
}

.home-contact-strip__item-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(0, 51, 102, 0.08);
    color: #003366;
    font-size: 0.9375rem;
}

.home-contact-strip__item-label {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(12, 17, 24, 0.45);
}

.home-contact-strip__item-value {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #0C1118;
}

.home-contact-strip__item-link {
    display: inline-block;
    text-decoration: none;
    transition: color 0.25s ease;
}

.home-contact-strip__item-link:hover {
    color: #003366;
}

.home-contact-strip__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.home-contact-strip__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(12, 17, 24, 0.12);
    border-radius: 999px;
    color: #0C1118;
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.home-contact-strip__social-link:hover {
    color: #fff;
    background: #003366;
    border-color: #003366;
    transform: translateY(-2px);
}

.home-contact-strip__actions {
    padding-top: 0.5rem;
}

.home-newsletter {
    background: #003366;
    color: #fff;
}

.home-newsletter__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .home-newsletter__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.home-newsletter__title {
    margin: 0;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
}

.home-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 28rem;
}

.home-newsletter__input {
    flex: 1 1 12rem;
    min-width: 0;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
}

.home-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.home-newsletter__input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.home-newsletter__btn {
    padding: 0.75rem 1.25rem;
    border: none;
    background: #fff;
    color: #003366;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.home-newsletter__btn:hover {
    opacity: 0.9;
}

.home-section-cta {
    margin-top: 1.75rem;
    text-align: center;
}

