:root {
    --blue: #123381;
    --blue-dark: #0f224e;
    --blue-deep: #101a32;
    --yellow: #ffd500;
    --orange: #ff5421;
    --text: #111111;
    --muted: #6f6f6f;
    --soft: #f8f8f8;
    --white: #ffffff;
    --border: #e8e8e8;
    --container: 1230px;
    --shadow: 0 16px 45px rgba(17, 34, 80, .12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Rubik", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Nunito", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.container--content {
    width: min(calc(100% - 48px), 1120px);
}

.container--form {
    width: min(calc(100% - 48px), 900px);
}

.section {
    padding: 90px 0;
}

.section--soft {
    background: var(--soft);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px;
    border: 0;
    border-radius: 3px;
    font-family: "Rubik", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--yellow {
    color: #050505;
    background: var(--yellow);
}

.button--yellow:hover,
.button--yellow:focus-visible {
    color: var(--white);
    background: var(--blue-dark);
}

.button--light {
    min-width: 235px;
    color: #000;
    background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
    color: #fff;
    background: #171f32;
}

.button--blue {
    color: #fff;
    background: var(--blue);
}

.button--blue:hover,
.button--blue:focus-visible {
    color: #000;
    background: var(--yellow);
}

/* Header */
.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
}

.site-header.is-sticky {
    position: fixed;
    color: #222;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
    animation: slideDown .25s ease-out;
}

.site-header.is-sticky .brand img {
    filter: invert(1);
}

.site-header.is-sticky .topbar {
    display: none;
}

.site-header.is-sticky .main-nav__inner {
    min-height: 78px;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.topbar__inner {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
}

.topbar__contact,
.topbar__social {
    display: flex;
    align-items: center;
}

.topbar__contact a {
    display: inline-flex;
    min-height: 52px;
    padding: 0 28px;
    align-items: center;
    gap: 9px;
    border-right: 1px solid rgba(255, 255, 255, .22);
    font-size: 14px;
}

.topbar__contact a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.topbar__contact svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.topbar__social {
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
}

.topbar__social a {
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.language-switcher {
    display: flex;
    min-height: 24px;
    align-items: center;
    gap: 7px;
}

.language-switcher__button {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s ease, transform .2s ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible,
.language-switcher__button[aria-pressed="true"] {
    opacity: 1;
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
    transform: translateY(-1px);
}

.language-switcher__button img {
    display: block;
    width: 24px;
    height: 24px;
}

.primary-nav > ul > li.mobile-language-menu {
    display: none;
}

.main-nav__inner {
    display: flex;
    min-height: 110px;
    align-items: center;
}

.brand {
    flex: 0 0 auto;
    width: 205px;
}

.brand img,
.footer-logo {
    width: 100%;
    height: auto;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav > ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.primary-nav li {
    position: relative;
}

.primary-nav > ul > li > a {
    display: block;
    padding: 42px 0;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
    color: var(--yellow);
}

.submenu {
    position: absolute;
    top: calc(100% - 20px);
    left: -24px;
    width: 290px;
    margin: 0;
    padding: 14px 0;
    visibility: hidden;
    list-style: none;
    color: #222;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.submenu a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    line-height: 1.35;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.submenu-open .submenu {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.submenu-toggle {
    display: none;
}

.nav-actions {
    display: flex;
    margin-left: 34px;
    align-items: center;
    gap: 24px;
}

.nav-actions .button {
    min-width: 145px;
}

.search-toggle,
.menu-toggle {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.search-toggle svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.menu-toggle {
    display: none;
    width: 34px;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.search-panel {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 17, 42, .96);
}

.search-panel[hidden] {
    display: none;
}

.search-panel form {
    width: min(calc(100% - 48px), 760px);
}

.search-panel label {
    display: block;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
    font-size: 38px;
    font-weight: 800;
}

.search-panel__field {
    display: flex;
    border-bottom: 2px solid #fff;
}

.search-panel input {
    width: 100%;
    padding: 18px 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 20px;
}

.search-panel__field button,
.search-panel__close {
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.search-panel__field button {
    font-size: 34px;
}

.search-panel__close {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 48px;
}

/* Inner page hero */
.page-hero {
    position: relative;
    min-height: 400px;
    color: #fff;
    background-color: #111827;
    background-image: linear-gradient(rgba(0, 0, 0, .52), rgba(0, 0, 0, .52)), url("../images/common/page-hero.jpg");
    background-position: center;
    background-size: cover;
}

.page-hero__inner {
    display: grid;
    min-height: 400px;
    padding-top: 125px;
    place-items: center;
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-family: "Rubik", Arial, sans-serif;
    font-size: 48px;
    font-weight: 400;
}

/* Home hero */
.home-hero {
    position: relative;
    height: 960px;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    background-image: linear-gradient(90deg, rgba(1, 8, 22, .46), rgba(0, 0, 0, .36)), var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hero-slide__content {
    display: flex;
    height: 100%;
    padding-top: 205px;
    padding-bottom: 260px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-slide .eyebrow,
.intro-card .eyebrow {
    margin-bottom: 24px;
    color: var(--yellow);
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.hero-slide h1,
.hero-slide h2 {
    max-width: 800px;
    margin-bottom: 38px;
    font-family: "Rubik", Arial, sans-serif;
    font-size: clamp(46px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.14;
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 49%;
    display: grid;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    place-items: center;
    color: #fff;
    background: rgba(20, 20, 20, .22);
    font-size: 52px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
}

.hero-arrow--prev { left: 28px; }
.hero-arrow--next { right: 28px; }

.advantages {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 103px;
    left: 0;
    display: grid;
    width: min(calc(100% - 48px), 1120px);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    display: flex;
    min-height: 137px;
    padding: 29px 28px;
    align-items: center;
    gap: 25px;
    border-radius: 5px;
    background: #193b91;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.advantage-card svg {
    width: 58px;
    flex: 0 0 58px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.advantage-card > img {
    width: 58px;
    max-height: 72px;
    flex: 0 0 58px;
    object-fit: contain;
}

.advantage-card h2 {
    margin-bottom: 6px;
    font-size: 20px;
}

.advantage-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Home sections */
.intro-section {
    padding-top: 40px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: start;
}

.intro-card {
    min-height: 495px;
    padding: 48px 62px;
    color: #fff;
    background: var(--blue);
}

.intro-card .eyebrow {
    margin-bottom: 12px;
    font-size: 18px;
}

.intro-card h2 {
    margin-bottom: 16px;
    font-size: 38px;
}

.intro-card p {
    margin-bottom: 38px;
    line-height: 1.75;
}

.intro-media {
    padding: 24px 0 0 50px;
}

.media-placeholder {
    position: relative;
    overflow: hidden;
    background-color: #dce2ee;
    background-image: linear-gradient(135deg, rgba(18, 51, 129, .10) 25%, transparent 25%, transparent 50%, rgba(18, 51, 129, .10) 50%, rgba(18, 51, 129, .10) 75%, transparent 75%);
    background-size: 34px 34px;
}

.media-placeholder--video {
    display: grid;
    min-height: 237px;
    place-items: center;
    background-color: #ced7e9;
}

.company-video {
    display: block;
    width: 100%;
    height: 237px;
    border: 0;
    background: #111;
    object-fit: cover;
}

.play-icon {
    display: grid;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    place-items: center;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .35);
}

.stats-grid {
    display: grid;
    margin-top: 42px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    padding: 31px 15px 24px;
    color: #fff;
    background: var(--blue);
    text-align: center;
}

.stat strong,
.stat > span {
    font-family: "Nunito", sans-serif;
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

.stat > span {
    color: #fff;
}

.stat p {
    margin: 8px 0 0;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    line-height: 1.35;
}

.why-section {
    display: grid;
    min-height: 590px;
    grid-template-columns: 1fr 1fr;
}

.why-section__image {
    background-color: #c7cfda;
    background-image: linear-gradient(rgba(10, 30, 65, .10), rgba(10, 30, 65, .10)), var(--why-image);
    background-position: center;
    background-size: cover;
}

.why-section__content {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--blue);
    background-image: linear-gradient(90deg, rgba(18, 51, 129, .91), rgba(18, 51, 129, .96)), var(--why-overlay);
    background-position: center;
    background-size: cover;
}

.why-content-inner {
    width: min(100%, 615px);
    padding: 75px 70px;
}

.why-content-inner > h2 {
    margin-bottom: 36px;
    font-size: 42px;
}

.why-content-inner article {
    display: flex;
    margin-bottom: 24px;
    gap: 17px;
}

.why-content-inner article > span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    place-items: center;
    color: var(--blue);
    background: #fff;
    font-size: 13px;
}

.why-content-inner h3 {
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

.why-content-inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.why-content-inner .button {
    margin-top: 12px;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading--center {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading > p:first-child {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: 42px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    display: grid;
    min-height: 230px;
    padding: 28px;
    place-items: end start;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg, #1c2f58, #8996aa);
}

.product-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(transparent 38%, rgba(8, 17, 39, .88));
}

.product-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.035);
}

.product-card__media span {
    position: relative;
    z-index: 1;
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.product-card__content {
    padding: 28px;
}

.product-card__content h2,
.product-card__content h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.product-card__content p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
}

.product-grid--home .product-card {
    position: relative;
    min-height: 330px;
    border-radius: 4px;
    box-shadow: none;
}

.product-grid--home .product-card__media {
    position: absolute;
    inset: 0;
    display: block;
    min-height: 0;
    padding: 0;
}

.product-grid--home .product-card__media::after {
    background: rgba(18, 51, 129, .78);
    transition: background-color .3s ease;
}

.product-grid--home .product-card:hover .product-card__media::after,
.product-grid--home .product-card:focus-within .product-card__media::after {
    background: rgba(15, 34, 78, .88);
}

.product-grid--home .product-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 330px;
    padding: 36px 30px 50px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.product-grid--home .product-card__content h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.product-grid--home .product-card__content h3 a,
.product-grid--home .product-card__content p,
.product-grid--home .product-card__content .text-link {
    color: #fff;
}

.product-grid--home .product-card__content p {
    max-width: 320px;
    margin-bottom: 15px;
    font-size: 15px;
}

.product-grid--home .text-link {
    font-weight: 700;
}

.text-link {
    color: var(--blue);
    font-weight: 500;
}

.text-link::after {
    content: " →";
}

.product-more {
    display: flex;
    min-height: 230px;
    padding: 35px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: var(--blue);
}

.product-more h3 {
    font-size: 23px;
}

.testimonials-section {
    padding: 70px 0 100px;
    color: #fff;
    background: var(--blue-dark);
}

.testimonials-section .section-heading > p:first-child {
    color: var(--yellow);
    text-transform: uppercase;
}

.testimonials-section .section-heading h2 {
    color: #fff;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform .45s ease;
    will-change: transform;
}

.testimonial-track blockquote {
    position: relative;
    display: flex;
    min-height: 365px;
    margin: 0;
    padding: 100px 45px 70px;
    flex: 0 0 calc((100% - 20px) / 2);
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    background: var(--blue);
    text-align: center;
}

.testimonial-quote {
    position: absolute;
    top: 38px;
    left: 50%;
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
    transform: translateX(-50%);
}

.testimonial-track blockquote p {
    margin-bottom: 24px;
    color: #fff;
    font-size: 20px;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-track cite {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
}

.testimonial-dots {
    display: flex;
    margin-top: 26px;
    justify-content: center;
    gap: 10px;
}

.testimonial-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.testimonial-dots button.is-active {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.faq-grid h2 {
    margin-bottom: 30px;
    font-size: 36px;
}

.faq-grid details {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.faq-grid summary {
    padding: 18px 22px;
    color: #222;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    cursor: pointer;
}

.faq-grid details[open] summary {
    color: #fff;
    background: var(--blue);
}

.faq-grid details p {
    padding: 20px 22px;
    color: var(--muted);
    font-size: 14px;
}

.media-placeholder--portrait {
    min-height: 520px;
}

.media-placeholder--portrait img,
.about-quality__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.media-placeholder--landscape {
    min-height: 380px;
}

.home-gallery-mount,
.gallery-mount {
    min-height: 1px;
}

/* Product galleries */
.product-copy + .product-gallery {
    margin-top: 42px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery__item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #edf0f5;
}

.product-gallery__item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform .3s ease, filter .3s ease;
}

.product-gallery__zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(19, 52, 128, .55);
    opacity: 0;
    transition: opacity .25s ease;
}

.product-gallery__zoom::before,
.product-gallery__zoom::after {
    position: absolute;
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.product-gallery__zoom::after {
    transform: rotate(90deg);
}

.product-gallery__item:hover img,
.product-gallery__item:focus-visible img {
    transform: scale(1.04);
}

.product-gallery__item:hover .product-gallery__zoom,
.product-gallery__item:focus-visible .product-gallery__zoom {
    opacity: 1;
}

.product-gallery__item:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

body.lightbox-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    color: #fff;
    background: rgba(4, 8, 17, .96);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__stage {
    position: absolute;
    inset: 0;
    display: grid;
    padding: 66px 82px 54px;
    place-items: center;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.lightbox__stage::before {
    position: absolute;
    z-index: -1;
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    animation: lightbox-spin .8s linear infinite;
}

.lightbox__stage.is-loading::before {
    z-index: 0;
    opacity: 1;
}

.lightbox__image {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity .2s ease;
    -webkit-user-drag: none;
}

.lightbox__stage.is-loading .lightbox__image {
    opacity: .18;
}

.lightbox__button {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-family: Arial, sans-serif;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.lightbox__button:hover,
.lightbox__button:focus-visible {
    background: var(--blue);
    outline: none;
}

.lightbox__previous,
.lightbox__next {
    top: 50%;
    font-size: 48px;
    line-height: 1;
    transform: translateY(-50%);
}

.lightbox__previous {
    left: 16px;
}

.lightbox__next {
    right: 16px;
}

.lightbox__close {
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    font-size: 34px;
    font-weight: 300;
}

.lightbox__counter {
    position: absolute;
    z-index: 2;
    top: max(28px, calc(env(safe-area-inset-top) + 14px));
    left: 50%;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    transform: translateX(-50%);
}

@keyframes lightbox-spin {
    to { transform: rotate(360deg); }
}

/* Generic inner content */
.product-content h2,
.content-copy h2 {
    margin-bottom: 24px;
    font-size: 38px;
}

.product-content p,
.content-copy p {
    margin-bottom: 27px;
    color: var(--muted);
}

.content-list {
    margin: -10px 0 28px;
    padding-left: 22px;
    color: var(--muted);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
}

.about-intro {
    min-height: 445px;
    padding-top: 72px;
    padding-bottom: 28px;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
}

.about-intro > .container,
.about-values > .container {
    width: min(calc(100% - 30px), 1120px);
}

.about-intro .content-copy {
    max-width: 500px;
}

.about-intro .content-copy h2,
.about-quality__copy h2,
.value-panel h2 {
    font-family: "Rubik", Arial, sans-serif;
    font-weight: 400;
}

.about-intro .content-copy h2 {
    margin-bottom: 4px;
    font-size: 42px;
}

.about-intro .content-copy p,
.about-quality__copy p,
.career-section .content-copy p {
    color: #111;
}

.about-intro .content-copy p,
.about-quality__copy p {
    text-align: justify;
}

.about-quality {
    display: grid;
    min-height: 680px;
    grid-template-columns: 1fr 1fr;
}

.about-quality__media {
    min-height: 680px;
    overflow: hidden;
}

.about-quality__copy {
    display: flex;
    align-items: center;
    background: var(--soft);
}

.about-quality__copy > div {
    width: min(100%, 650px);
    padding: 70px 76px;
}

.about-quality__copy h2 {
    margin-bottom: 24px;
    font-size: 36px;
}

.about-quality__copy p {
    margin-bottom: 36px;
    font-size: 15px;
}

.about-values {
    padding: 100px 0 8px;
}

.value-tabs {
    display: flex;
    margin-bottom: 64px;
    justify-content: center;
    gap: 20px;
}

.value-tab {
    display: flex;
    width: 132px;
    min-height: 115px;
    padding: 15px;
    border: 0;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    background: #171f32;
    cursor: pointer;
}

.value-tab.is-active {
    background: var(--blue);
}

.value-tab span {
    display: grid;
    font-size: 32px;
    line-height: 1;
    place-items: center;
}

.value-tab svg {
    width: 45px;
    height: 45px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.value-tab strong {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
}

.value-panel {
    min-height: 200px;
    padding: 50px;
    background: #fff;
    box-shadow: 0 8px 35px rgba(17, 34, 80, .08);
}

.value-panel h2 {
    margin-bottom: 22px;
    font-size: 36px;
}

.value-panel p {
    font-size: 16px;
}

/* Services */
.services-section {
    padding: 88px 0 96px;
}

.services-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: 70px;
}

.services-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #a98500;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.services-intro h2 {
    margin-bottom: 0;
    color: var(--blue);
    font-size: 42px;
}

.services-intro > p {
    margin-bottom: 3px;
    color: #626771;
    font-size: 16px;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    margin-top: 52px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 34px 30px 32px;
    border: 1px solid #e5e8ef;
    border-top: 3px solid var(--blue);
    background: #fff;
    box-shadow: 0 16px 42px rgba(19, 52, 128, .07);
}

.service-card__number {
    position: absolute;
    top: 29px;
    right: 27px;
    color: #e3e6ec;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.service-card__icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 26px;
    border-radius: 3px;
    color: var(--yellow);
    background: var(--blue);
    place-items: center;
}

.service-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.service-card h3 {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 26px;
}

.service-card > p {
    margin-bottom: 22px;
    color: #656a74;
    font-size: 14px;
    line-height: 1.7;
}

.service-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    color: #343841;
    font-size: 13px;
    list-style: none;
    gap: 8px;
}

.service-card li {
    position: relative;
    padding-left: 17px;
}

.service-card li::before {
    position: absolute;
    top: .72em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    content: "";
    transform: translateY(-50%);
}

.services-process {
    padding: 88px 0 92px;
    color: #fff;
    background: var(--blue);
}

.services-process__header {
    max-width: 680px;
    margin-bottom: 46px;
}

.services-process .services-eyebrow {
    color: var(--yellow);
}

.services-process__header h2 {
    margin-bottom: 12px;
    font-size: 38px;
}

.services-process__header p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
}

.services-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.services-process__grid article {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .23);
}

.services-process__grid article > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #111;
    background: var(--yellow);
    font-weight: 700;
    place-items: center;
}

.services-process__grid h3 {
    margin-bottom: 9px;
    font-size: 21px;
}

.services-process__grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.7;
}

.services-cta {
    padding: 72px 0;
}

.services-cta__inner {
    display: flex;
    padding: 38px 42px;
    border-left: 4px solid var(--yellow);
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    background: #f5f6f9;
}

.services-cta__inner h2 {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 31px;
}

.services-cta__inner p {
    margin-bottom: 0;
    color: #676c76;
    font-size: 14px;
}

.services-cta__inner .button {
    flex: 0 0 auto;
}

.product-grid--listing {
    gap: 32px;
}

.product-grid--listing .product-card {
    box-shadow: none;
}

.product-grid--listing .product-card__media {
    min-height: 280px;
}

.product-grid--listing .product-card__content {
    display: none;
}

/* Contact and forms */
.contact-page {
    padding: 88px 0 110px;
    background: #f6f7fa;
}

.contact-page__header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-page__header > span,
.contact-card__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #b48f00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-page__header h2 {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 42px;
}

.contact-page__header p {
    margin-bottom: 0;
    color: #5f6470;
    font-size: 17px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(330px, .85fr) minmax(0, 1.35fr);
    grid-template-areas:
        "details form"
        "map form";
    grid-template-rows: auto minmax(310px, 1fr);
    align-items: stretch;
    gap: 24px;
}

.contact-details-card,
.contact-form-panel,
.contact-map-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(19, 52, 128, .1);
}

.contact-details-card {
    padding: 38px 36px;
    color: #fff;
    background: var(--blue);
    grid-area: details;
}

.contact-details-card .contact-card__eyebrow {
    color: var(--yellow);
}

.contact-details-card h3 {
    margin-bottom: 10px;
    font-size: 30px;
}

.contact-details-card > p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.65;
}

.contact-detail-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 18px;
}

.contact-detail-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.contact-detail-list__icon {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--yellow);
    background: rgba(255, 255, 255, .07);
    place-items: center;
}

.contact-detail-list__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-detail-list small,
.contact-detail-list strong,
.contact-detail-list a {
    display: block;
}

.contact-detail-list small {
    margin-bottom: 1px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contact-detail-list strong,
.contact-detail-list a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.contact-detail-list a:hover,
.contact-detail-list a:focus-visible {
    color: var(--yellow);
}

.contact-social {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}

.contact-social a {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.contact-social a:hover,
.contact-social a:focus-visible {
    border-color: var(--yellow);
    color: #111;
    background: var(--yellow);
}

.contact-form-panel {
    padding: 42px 44px 46px;
    background: #fff;
    grid-area: form;
    scroll-margin-top: 140px;
}

.contact-form-panel > h2 {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 34px;
}

.contact-form-panel > p {
    margin-bottom: 28px;
    color: #6a6e78;
    font-size: 14px;
    line-height: 1.65;
}

.contact-map-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    background: #fff;
    grid-area: map;
}

.contact-map-card__header {
    display: flex;
    padding: 18px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.contact-map-card__header .contact-card__eyebrow {
    margin-bottom: 1px;
}

.contact-map-card__header h3 {
    margin-bottom: 0;
    color: var(--blue);
    font-size: 21px;
}

.contact-map-card__header a {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.contact-map-card__header a:hover,
.contact-map-card__header a:focus-visible {
    color: #9a7900;
}

.contact-map {
    display: block;
    width: 100%;
    min-height: 250px;
    border: 0;
    background: #e6e5e2;
    flex: 1;
    filter: grayscale(.45);
}

.contact-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.contact-form--contact {
    margin-top: 0;
    padding: 0;
    box-shadow: none;
}

.contact-form--contact .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form--contact .field--full {
    grid-column: 1 / -1;
}

.contact-form--contact .field input {
    height: 50px;
    box-shadow: none;
}

.contact-form--contact .field textarea {
    min-height: 145px;
    box-shadow: none;
}

.contact-form--contact .button {
    min-width: 170px;
    min-height: 48px;
    padding: 11px 22px;
    font-size: 13px;
}

.contact-submit__busy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.contact-submit__busy[hidden] {
    display: none;
}

.contact-submit__spinner {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-submit-spin .7s linear infinite;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: .82;
}

@keyframes contact-submit-spin {
    to { transform: rotate(360deg); }
}

.form-grid {
    display: grid;
    margin-bottom: 25px;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.field--full {
    grid-column: 1 / -1;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #f1f1f1;
    outline: 0;
    color: #222;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    transition: border-color .2s ease;
}

.field input {
    height: 56px;
    padding: 0 18px;
}

.field textarea {
    padding: 16px 18px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
}

.field small {
    display: block;
    margin-top: 5px;
    color: #b42318;
}

.file-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.file-field input {
    height: auto;
    padding: 14px;
    box-shadow: none;
}

.form-notice {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-left: 4px solid;
}

.form-notice--success {
    border-color: #16803a;
    color: #0d5726;
    background: #eaf8ef;
}

.form-notice--error {
    border-color: #b42318;
    color: #7a271a;
    background: #fff0ee;
}

.contact-captcha {
    display: grid;
    padding: 18px 20px;
    border: 1px solid #e1e4eb;
    border-left: 3px solid var(--yellow);
    border-radius: 3px;
    background: #f8f9fb;
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: end;
    gap: 20px;
}

.contact-captcha__intro > strong {
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-family: "Nunito", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.contact-captcha__intro p {
    margin-bottom: 7px;
    color: #6a6e78;
    font-size: 13px;
    line-height: 1.45;
}

.contact-captcha__question {
    display: flex;
    color: #111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    gap: 11px;
}

.contact-captcha__answer label {
    display: block;
    margin-bottom: 6px;
    color: #4f535c;
    font-size: 13px;
    font-weight: 500;
}

.contact-form--contact .contact-captcha__answer input {
    height: 46px;
    border-color: #d9dce3;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.contact-captcha__answer small {
    color: #777b84;
    font-size: 12px;
    line-height: 1.4;
}

.contact-captcha__answer small.is-error {
    color: #b42318;
    font-weight: 700;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 20px;
    pointer-events: none;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__card {
    display: grid;
    width: min(100%, 920px);
    margin-inline: auto;
    padding: 25px 28px;
    border: 1px solid rgba(18, 51, 129, .14);
    border-top: 4px solid var(--yellow);
    border-radius: 8px;
    color: var(--text);
    background: #fff;
    box-shadow: 0 18px 55px rgba(7, 20, 52, .24);
    pointer-events: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.cookie-consent__copy h2 {
    margin-bottom: 7px;
    color: var(--blue-dark);
    font-size: 23px;
}

.cookie-consent__copy p {
    max-width: 640px;
    margin-bottom: 0;
    color: #565b66;
    font-size: 14px;
    line-height: 1.65;
}

.cookie-consent__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent__button {
    min-width: 112px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--blue);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.cookie-consent__button--reject {
    color: var(--blue);
    background: #fff;
}

.cookie-consent__button--accept {
    color: #fff;
    background: var(--blue);
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    color: #101010;
    border-color: var(--yellow);
    outline: 0;
    background: var(--yellow);
}

/* Footer */
.site-footer {
    padding-top: 70px;
    color: #fff;
    background: var(--blue);
}

.footer-grid {
    display: grid;
    padding-bottom: 90px;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-logo {
    width: 285px;
    margin-bottom: 24px;
}

.footer-about p,
.footer-list {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.9;
}

.footer-about p {
    max-width: 360px;
}

.site-footer h2 {
    margin: 10px 0 20px;
    font-size: 18px;
}

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

.footer-list li {
    margin-bottom: 14px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 16px;
}

.footer-contact svg {
    width: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.footer-list:not(.footer-contact) li::before {
    margin-right: 8px;
    content: "•";
}

.footer-social {
    display: flex;
    margin-top: 30px;
    gap: 14px;
}

.footer-social a {
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    place-items: center;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    padding: 25px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.footer-cookie-settings {
    padding: 3px 0;
    border: 0;
    color: rgba(255, 255, 255, .88);
    background: transparent;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
    color: var(--yellow);
}

@media (max-width: 1199px) {
    .primary-nav > ul { gap: 20px; }
    .primary-nav > ul > li > a { font-size: 14px; }
    .nav-actions { margin-left: 22px; gap: 16px; }
    .nav-actions .button { min-width: 125px; padding-inline: 20px; }
    .brand { width: 178px; }
    .advantage-card { padding: 24px 20px; gap: 18px; }
    .advantage-card h2 { font-size: 18px; }
}

@media (max-width: 991px) {
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 65px 0; }
    .topbar { display: none; }
    .main-nav__inner { min-height: 92px; justify-content: space-between; }
    .brand { width: 200px; }
    .menu-toggle { display: block; margin-left: auto; }
    .nav-actions { display: none; }
    .primary-nav {
        position: fixed;
        z-index: 200;
        top: 92px;
        right: 0;
        bottom: 0;
        width: min(88vw, 390px);
        padding: 20px 26px 40px;
        overflow-y: auto;
        visibility: hidden;
        color: #fff;
        background: var(--blue-dark);
        opacity: 0;
        transform: translateX(100%);
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    }
    .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .primary-nav > ul { display: block; }
    .primary-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .primary-nav > ul > li > a { padding: 16px 0; }
    .primary-nav > ul > li.mobile-language-menu {
        display: block;
    }
    .mobile-language-menu__trigger {
        display: flex;
        width: 100%;
        padding: 16px 0;
        border: 0;
        align-items: center;
        justify-content: space-between;
        color: inherit;
        background: transparent;
        font-family: "Nunito", Arial, sans-serif;
        font-size: 15px;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
    }
    .mobile-language-menu__trigger > span:last-child { font-size: 24px; transition: transform .2s ease; }
    .mobile-language-menu.submenu-open .mobile-language-menu__trigger > span:last-child { transform: rotate(45deg); }
    .language-submenu { padding-left: 14px; }
    .language-submenu__button {
        display: flex;
        width: 100%;
        padding: 9px 0;
        border: 0;
        align-items: center;
        color: inherit;
        background: transparent;
        font-size: 14px;
        text-align: left;
        cursor: pointer;
    }
    .language-submenu__button:hover,
    .language-submenu__button:focus-visible,
    .language-submenu__button[aria-pressed="true"] { color: var(--yellow); }
    .has-submenu > a { padding-right: 42px !important; }
    .submenu-toggle {
        position: absolute;
        top: 5px;
        right: 0;
        display: block;
        width: 40px;
        height: 43px;
        border: 0;
        color: #fff;
        background: transparent;
        font-size: 24px;
    }
    .submenu {
        position: static;
        display: none;
        width: auto;
        padding: 0 0 12px 14px;
        visibility: visible;
        color: #fff;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }
    .submenu a { padding: 8px 0; }
    .submenu-open .submenu { display: block; }
    .submenu-open .submenu-toggle { transform: rotate(45deg); }
    .site-header.is-sticky { color: #222; background: #fff; }
    .site-header.is-sticky .brand img { filter: invert(1); }
    .site-header.is-sticky .main-nav__inner { min-height: 118px; }
    .site-header.is-sticky .primary-nav { top: 118px; }
    .page-hero,
    .page-hero__inner { min-height: 330px; }
    .page-hero__inner { padding-top: 90px; }
    .home-hero { display: flow-root; height: auto; min-height: 0; overflow: visible; background: #fff; }
    .hero-slide { bottom: auto; height: 600px; min-height: 600px; }
    .hero-slide__content { height: 600px; min-height: 600px; padding: 105px 30px 55px; }
    .hero-slide h1,
    .hero-slide h2 { margin-bottom: 40px; font-size: 48px; }
    .hero-slide .eyebrow { font-size: 18px; }
    .hero-arrow { width: 52px; height: 52px; font-size: 40px; }
    .advantages {
        position: relative;
        bottom: auto;
        width: min(calc(100% - 50px), 700px);
        margin-top: 600px;
        padding-top: 30px;
        grid-template-columns: 1fr;
    }
    .advantage-card {
        min-height: 190px;
        padding: 30px;
        justify-content: center;
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .advantage-card > img { width: 68px; max-height: 72px; flex-basis: 68px; }
    .intro-grid,
    .two-column,
    .why-section,
    .about-intro__grid,
    .about-quality { grid-template-columns: 1fr; }
    .intro-media { padding: 35px 0 0; }
    .why-section__image { min-height: 450px; }
    .why-content-inner { width: 100%; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .testimonial-track blockquote { flex-basis: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
    .footer-about { grid-column: 1 / -1; }
    .about-quality__media { min-height: 500px; }
    .about-quality__copy > div { width: 100%; max-width: 650px; padding: 65px 50px; }
    .services-intro { grid-template-columns: 1fr; align-items: start; gap: 20px; }
    .services-intro > p { max-width: 760px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .services-process__grid { grid-template-columns: 1fr; gap: 28px; }
    .services-cta__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
    .contact-page { padding: 72px 0 90px; }
    .contact-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "details"
            "form"
            "map";
        grid-template-rows: auto;
    }
    .contact-map { height: 340px; flex: none; }
}

@media (max-width: 767px) {
    body { font-size: 15px; }
    .container,
    .container--content,
    .container--form { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 52px 0; }
    .brand { width: 200px; }
    .main-nav__inner { min-height: 82px; }
    .primary-nav { top: 82px; }
    .page-hero,
    .page-hero__inner { min-height: 305px; }
    .page-hero__inner { padding-top: 45px; }
    .page-hero h1 { font-size: 40px; }
    .home-hero { min-height: 0; }
    .hero-slide { height: 450px; min-height: 450px; }
    .hero-slide__content { height: 450px; min-height: 450px; padding: 82px 28px 28px; }
    .hero-slide h1,
    .hero-slide h2 { max-width: 450px; margin-bottom: 20px; font-size: 40px; line-height: 1.08; }
    .hero-slide h1 br,
    .hero-slide h2 br { display: none; }
    .hero-slide .eyebrow { margin-bottom: 8px; font-size: 13px; }
    .hero-arrow { display: none; }
    .advantages {
        width: min(calc(100% - 50px), 700px);
        margin-top: 450px;
        padding-top: 10px;
        gap: 20px;
    }
    .advantage-card { min-height: 203px; padding: 30px 20px; }
    .intro-card { min-height: 0; padding: 38px 30px; }
    .intro-card h2,
    .product-content h2,
    .content-copy h2 { font-size: 31px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { min-height: 145px; }
    .why-section__image { display: none; }
    .why-section__content { min-height: 740px; }
    .why-content-inner { padding: 70px 25px 60px; text-align: center; }
    .why-content-inner > h2 { margin-bottom: 38px; }
    .why-content-inner article {
        margin-bottom: 28px;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    .why-content-inner .button { margin-top: 3px; }
    .why-content-inner > h2,
    .section-heading h2 { font-size: 34px; }
    .products-section { padding-top: 30px; padding-bottom: 40px; }
    .products-section .section-heading { margin-bottom: 36px; }
    .product-grid,
    .faq-grid,
    .form-grid { grid-template-columns: 1fr; }
    .products-page-section { padding-top: 125px; }
    .product-grid--listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }
    .product-grid--listing .product-card__media {
        min-height: 170px;
        padding: 16px;
    }
    .product-grid--listing .product-card__media span {
        font-size: 16px;
        line-height: 1.25;
    }
    .product-grid--listing .product-card:last-child { grid-column: 1 / -1; }
    .product-grid--home .product-card,
    .product-grid--home .product-card__content { min-height: 270px; }
    .product-grid--home .product-card__content { padding: 30px 25px 45px; }
    .product-grid--home .product-card__content h3 { font-size: 20px; }
    .product-grid--home .product-card__content p { font-size: 14px; }
    .product-grid--home .product-more { min-height: 270px; align-items: center; text-align: center; }
    .field--full { grid-column: auto; }
    .product-card__media { min-height: 210px; }
    .product-copy + .product-gallery { margin-top: 30px; }
    .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .product-gallery__zoom { display: none; }
    .lightbox__stage { padding: 70px 10px 86px; }
    .lightbox__previous,
    .lightbox__next {
        top: auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
        transform: none;
    }
    .lightbox__previous { left: calc(50% - 74px); }
    .lightbox__next { right: calc(50% - 74px); }
    .lightbox__counter {
        top: auto;
        bottom: max(32px, calc(env(safe-area-inset-bottom) + 18px));
    }
    .faq-grid { gap: 35px; }
    .faq-section .faq-grid { width: calc(100% - 20px); }
    .faq-section .faq-grid > div:first-child {
        padding: 50px 15px 30px;
        background: #f9f8f8;
    }
    .faq-section .faq-grid h2 {
        font-family: "Rubik", Arial, sans-serif;
        font-size: 30px;
        font-weight: 400;
    }
    .faq-section .media-placeholder--portrait { min-height: 500px; margin-inline: 15px; }
    .testimonials-section { padding: 60px 0 75px; }
    .testimonials-section .section-heading { margin-bottom: 30px; }
    .testimonials-section .section-heading h2 { font-size: 30px; }
    .testimonial-track blockquote {
        min-height: 410px;
        padding: 110px 20px 80px;
    }
    .testimonial-track blockquote p { font-size: 16px; line-height: 1.8; }
    .testimonial-quote { top: 38px; font-size: 68px; }
    .two-column { gap: 35px; }
    .two-column--reverse .media-placeholder { order: 2; }
    .about-intro { min-height: 0; }
    .about-intro > .container { width: calc(100% - 40px); }
    .about-intro .content-copy h2 { font-size: 26px; }
    .about-intro .content-copy p { font-size: 16px; }
    .about-quality { min-height: 0; }
    .about-quality__media { display: none; }
    .about-quality__copy > div { padding: 64px 20px 54px; }
    .about-quality__copy h2 { margin-bottom: 15px; font-size: 27px; letter-spacing: -.45px; }
    .about-values { padding: 47px 0 10px; }
    .about-values > .container { width: calc(100% - 50px); }
    .services-section { padding: 54px 0 62px; }
    .services-intro { gap: 15px; }
    .services-intro h2 { font-size: 31px; }
    .services-intro > p { font-size: 15px; line-height: 1.7; }
    .services-grid { margin-top: 34px; gap: 16px; }
    .service-card { padding: 28px 24px 27px; }
    .service-card__number { top: 24px; right: 22px; }
    .service-card__icon { width: 60px; height: 60px; margin-bottom: 22px; }
    .service-card__icon svg { width: 36px; height: 36px; }
    .service-card h3 { font-size: 24px; }
    .service-card > p { font-size: 14px; }
    .services-process { padding: 58px 0 62px; }
    .services-process__header { margin-bottom: 34px; }
    .services-process__header h2 { font-size: 30px; }
    .services-process__grid { gap: 24px; }
    .services-process__grid article { padding-top: 22px; }
    .services-cta { padding: 52px 0; }
    .services-cta__inner { padding: 28px 24px; }
    .services-cta__inner h2 { font-size: 27px; }
    .services-cta__inner .button { width: 100%; }
    .value-tabs {
        margin-bottom: 23px;
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }
    .value-tab {
        width: 100%;
        min-height: 117px;
        flex-direction: row;
        gap: 0;
    }
    .value-tab span { width: 30%; }
    .value-tab svg { width: 50px; height: 50px; }
    .value-tab strong { width: 70%; padding-right: 30%; text-align: center; }
    .value-panel { min-height: 213px; padding: 30px; }
    .value-panel h2 { font-size: 36px; }
    .value-panel p { font-size: 16px; line-height: 1.65; }
    .contact-page { padding: 54px 0 70px; }
    .contact-page > .container { width: calc(100% - 30px); }
    .contact-page__header { margin-bottom: 30px; text-align: left; }
    .contact-page__header h2 { margin-bottom: 10px; font-size: 31px; }
    .contact-page__header p { font-size: 15px; line-height: 1.65; }
    .contact-layout { gap: 18px; }
    .contact-details-card { padding: 30px 24px; }
    .contact-details-card h3 { font-size: 27px; }
    .contact-detail-list { gap: 16px; }
    .contact-detail-list li { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
    .contact-detail-list__icon { width: 42px; height: 42px; }
    .contact-form-panel { padding: 30px 20px 32px; }
    .contact-form-panel > h2 { font-size: 29px; }
    .contact-form-panel > p { margin-bottom: 23px; }
    .contact-form--contact .form-grid { grid-template-columns: 1fr; }
    .contact-form--contact .field--full { grid-column: auto; }
    .contact-form--contact .button { width: 100%; }
    .contact-map-card { min-height: 0; }
    .contact-map { height: 320px; min-height: 320px; }
    .contact-captcha {
        padding: 18px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }
    .contact-captcha__answer input { width: 100%; }
    .career-section { padding-top: 50px; padding-bottom: 89px; }
    .career-section > .container { width: calc(100% - 40px); }
    .career-section .content-copy h2 {
        margin-bottom: 2px;
        font-family: "Rubik", Arial, sans-serif;
        font-size: 28px;
        font-weight: 400;
    }
    .career-section .content-copy p {
        font-size: 16px;
        line-height: 1.7;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-about { grid-column: auto; }
    .site-footer { padding-top: 70px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; line-height: 1.6; }
    .cookie-consent {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        left: 12px;
    }
    .cookie-consent__card {
        padding: 21px 20px 20px;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cookie-consent__copy h2 { font-size: 21px; }
    .cookie-consent__copy p { font-size: 13px; line-height: 1.55; }
    .cookie-consent__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cookie-consent__button { width: 100%; min-width: 0; }
}

@media (min-width: 768px) {
    .career-section {
        padding-top: 78px;
        padding-bottom: 75px;
    }

    .career-section .content-copy h2 {
        margin-bottom: 8px;
        font-family: "Rubik", Arial, sans-serif;
        font-size: 42px;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .home-hero { min-height: 0; }
    .hero-slide h1,
    .hero-slide h2 { font-size: 34px; }
    .hero-slide__content { padding-inline: 24px; }
    .advantages { margin-top: 450px; padding-top: 10px; }
    .advantage-card h2 { font-size: 18px; }
    .advantage-card p { font-size: 13px; }
    .intro-card .button { width: 100%; padding-inline: 16px; }
    .value-tab { width: 100%; min-height: 117px; }
    .product-content h2 { font-size: 29px; }
    .cookie-consent__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
