* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/jost-500.woff2") format("woff2");
}

@font-face {
    font-family: 'Jost';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url("assets/fonts/jost-500-italic.woff2") format("woff2");
}

body.legal-body {
    background: #000;
    color: white;
    font-family: 'Jost', sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

.legal-shell {
    min-height: 100vh;
    background: #000;
}

.legal-main {
    width: min(100% - 44px, 960px);
    margin: 0 auto;
    padding: 76px 0 64px;
}

.legal-page-title {
    margin: 0 0 26px 12px;
    color: white;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.legal-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 28px 12px;
    color: #d5ff45;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
}

.legal-home-link::before {
    content: "";
    width: 9px;
    height: 9px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.legal-home-link:hover {
    color: white;
}

.legal-panel {
    min-height: 640px;
    padding: 58px 54px;
    border-radius: 24px;
    background: #17191a;
    color: white;
}

.legal-panel--compact {
    min-height: 0;
}

.language-toggle {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 34px;
    padding: 4px;
    border: 1px solid #44484c;
    border-radius: 999px;
    background: #0f1011;
}

.language-toggle__button {
    min-width: 54px;
    min-height: 34px;
    padding: 8px 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #aeb0b5;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.language-toggle__button.is-active {
    background: #d5ff45;
    color: #111;
}

.legal-copy[hidden] {
    display: none;
}

.legal-section {
    margin-top: 28px;
}

.legal-section:first-child {
    margin-top: 0;
}

.legal-section h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0;
}

.legal-section h3,
.legal-section h4 {
    margin: 18px 0 8px;
    color: white;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 0;
}

.legal-copy--agb strong,
.legal-details dt {
    color: white;
    font-weight: 800;
}

.legal-section p,
.legal-section li,
.legal-details dt,
.legal-details dd {
    color: white;
    font-size: 13px;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.legal-section p {
    margin: 0 0 9px;
}

.legal-section ul {
    margin: 0 0 12px 18px;
}

.legal-section li {
    margin-bottom: 4px;
}

.legal-section a {
    color: #d5ff45;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-details {
    display: grid;
    grid-template-columns: minmax(170px, 0.36fr) 1fr;
    column-gap: 24px;
    row-gap: 8px;
    margin: 0 0 28px;
}

.legal-details dd {
    margin: 0;
}

.legal-clause {
    margin-top: 20px;
}

.legal-copy--agb p {
    margin-bottom: 16px;
}

.legal-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 8px;
    padding: 12px 22px;
    background: #d5ff45;
    border-radius: 999px;
    color: white;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.legal-section .legal-download {
    color: #111;
}

.legal-download:hover {
    background: white;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .legal-main {
        padding: 58px 0 52px;
    }

    .legal-page-title {
        margin-left: 0;
        font-size: 38px;
    }

    .legal-details {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .legal-details dd {
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    body.legal-body {
        background: #000;
        color: white;
        font-family: 'Jost', sans-serif;
    }

    .legal-main {
        width: calc(100% - 44px);
        padding: 42px 0 44px;
    }

    .legal-page-title {
        margin-bottom: 18px;
        font-size: 31px;
    }

    .legal-home-link {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .legal-panel {
        min-height: 0;
        padding: 34px 24px;
        border-radius: 16px;
    }

    .language-toggle {
        margin-bottom: 24px;
    }

    .legal-section h2 {
        font-size: 16px;
    }

    .legal-section h3,
    .legal-section h4 {
        font-size: 14px;
    }

    .legal-details {
        grid-template-columns: 1fr;
        row-gap: 3px;
    }

    .legal-section p,
    .legal-section li,
    .legal-details dt,
    .legal-details dd {
        font-size: 0.96rem;
        line-height: 1.65;
    }
}

body {
    overflow-x: hidden;
}

.hero {
    width: 100%;
    aspect-ratio: 16 / 9; /* Erzwingt 16:9 Verhältnis */
    background-image: url('assets/backgrounds/HeroLedCoatings.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative; /* Wichtig für absolute Positionierung des Logos */
}
.logo {
    position: absolute;
    /* Positioniere den Container relativ zur Hero-Section */
    top: 7%; /* Behält 5% Abstand vom oberen Rand der Hero-Section */
    left: 50%; /* Zentriert den Container horizontal */
    transform: translateX(-50%); /* Korrektur für perfekte Zentrierung */

    /* Der Container braucht keine feste Höhe mehr */
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-logo {
    /* --- HIER IST DIE MAGIE --- */
    /* Anstatt 10% der Höhe, nutzen wir die Bildschirmbreite (vw) */
    /* Ein Wert von z.B. 15vw bedeutet: 15% der gesamten Bildschirmbreite. */
    width: 15vw;
    height: auto; /* Behält das Seitenverhältnis des Logos bei */

    /* Optional: Begrenzung für sehr große Bildschirme hinzufügen */
    max-width: 300px;
}
.hero-content {
    position: absolute;
    top: 16vw;
    left: 38vw;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero-title h1{
    font-size: 4vw;
    color: white;
    font-family: 'Jost', sans-serif;
}

.hero-sub-title p{
    font-family: 'Jost', sans-serif;
    font-size: 2vw;
    color: white;
}
.hero-text {
    padding-top: 2vw;
}
.hero-text p{
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 1vw;
}

.hero-sub-text {
    padding-top: 2vw;
    display: flex;
    justify-content: left;
    flex-direction: row;
}
.hero-sub-text img{
    justify-content: left;
    width: 5vw;
    height: 5vw;
}
.hero-sub-text p {
    padding-top: 0.5vw;
    padding-left: 1vw;
    font-family: 'Jost', sans-serif;
    font-size: 2.5vw;
    color: #D5FF45;
    text-decoration-line: underline;
}
.hero-button {
    padding-top: 3vw;
}
.hero-button-btn {
    background-color: #b02a60; /* Dein Beere-Ton */
    color: white;
    min-width: 10.8vw;
    min-height: 3vw;
    padding: 0.65vw 2.65vw;
    text-decoration: none;
    font-weight: 800;          /* "Learn more" sieht nach einer sehr fetten Schrift aus */
    font-size: 1.18vw;
    font-family: 'Jost', sans-serif;;    /* Standard serifenlose Schrift */
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* WICHTIG: Entfernt Standard-Rahmen und Effekte */
    border: none;
    outline: none;
    box-shadow: none;

    /* Optional: Ein leichter Hover-Effekt für bessere UX */
    transition: background-color 0.3s ease;
}


.icons {
    display: flex;
    flex-direction: column; /* Stacks your rows vertically */
    padding-top: 2vw;
    background-image: url("assets/backgrounds/IconsBackground.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

/* The row container */
.icon-row {

    padding: 1.7vw 8.5vw 3.3vw;
    display: flex;          /* This makes left, center, and right sit side-by-side */
    justify-content: space-evenly; /* Spaces a, b, and c evenly across the row */
    align-items: center;    /* Centers them vertically if they have different heights */
}

/* Optional: Styling the individual icon boxes */
.icon-left, .icon-center, .icon-right {
    text-align: center;
    width: 25%;             /* Ensures they all take up equal space */
}

.icon {
    display: grid;
    grid-template-rows: 7.4vw 2vw;
    justify-items: center;
    align-items: end;
    row-gap: 0.95vw;
    color: white;
    font-size: 1.36vw;
    line-height: 1.1;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

.icon p {
    grid-row: 2;
    min-height: 2vw;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.icon img{
    grid-row: 1;
    width: 8.6vw;
    height: 7.4vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.content {

    display: flex;
    flex-direction: column;

    text-align: center;

}

.content-top {
    padding-top: 2vw;
    display: flex;
    background-position: center;
    background-size: cover;
    background-color: #191221;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.content-media {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 5vw;
}

.content-slider {
    padding: 4vw 6vw 4vw 10vw;
    width: 51vw;
}

.content-slider__frame {
    position: relative;
    width: 35vw;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #050505;
}

.content-slider__picture,
.content-slider__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.content-slider__picture {
    display: block;
}

.content-slider__image {
    display: block;
    object-fit: cover;
}

.content-slider__picture--incoming,
.content-slider__picture--outgoing,
.content-slider__image--incoming,
.content-slider__image--outgoing {
    animation-duration: 880ms;
    animation-timing-function: cubic-bezier(0.08, 0.82, 0.12, 1);
    animation-fill-mode: both;
}

.content-slider__picture--incoming,
.content-slider__image--incoming {
    z-index: 1;
}

.content-slider__picture--outgoing,
.content-slider__image--outgoing {
    z-index: 0;
}

.content-slider__picture--incoming.is-next,
.content-slider__image--incoming.is-next {
    animation-name: contentRevealFromRight;
}

.content-slider__picture--incoming.is-prev,
.content-slider__image--incoming.is-prev {
    animation-name: contentRevealFromLeft;
}

.content-slider__picture--outgoing.is-next,
.content-slider__picture--outgoing.is-prev,
.content-slider__image--outgoing.is-next,
.content-slider__image--outgoing.is-prev {
    animation-name: none;
}

@keyframes contentRevealFromRight {
    from {
        clip-path: inset(0 0 0 100%);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes contentRevealFromLeft {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.content-slider__nav {
    position: absolute;
    top: 50%;
    width: 2.35vw;
    height: 2.35vw;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #686868;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: filter 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.content-slider__nav img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.content-slider__nav::before,
.content-slider__nav::after {
    content: none;
}

.content-slider__nav:hover {
    filter: brightness(1.05);
    transform: translateY(-50%) scale(1.06);
}

.content-slider__nav--prev {
    left: 0.75vw;
}

.content-slider__nav--prev img {
    transform: scaleX(-1);
}

.content-slider__nav--prev::before {
    transform: translate(-50%, -50%) translateY(-0.24vw) rotate(-45deg);
}

.content-slider__nav--prev::after {
    transform: translate(-50%, -50%) translateY(0.24vw) rotate(45deg);
}

.content-slider__nav--next {
    right: 0.75vw;
}

.content-slider__nav--next::before {
    transform: translate(-50%, -50%) translateY(-0.24vw) rotate(45deg);
}

.content-slider__nav--next::after {
    transform: translate(-50%, -50%) translateY(0.24vw) rotate(-45deg);
}

.content-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45vw;
    width: 35vw;
    margin-top: 0.62vw;
}

.content-slider__dot {
    width: 0.56vw;
    height: 0.56vw;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.content-slider__dot.is-active {
    width: 1vw;
    background: #d83a8f;
}
.content-video p {
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 1.5vw;
}

.content-video__placeholder {
    width: 25vw;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Jost', sans-serif;
    background:
        linear-gradient(135deg, rgba(216, 58, 143, 0.2), rgba(25, 18, 33, 0.15)),
        #050505;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: default;
    user-select: none;
}

.content-video__play {
    width: 4.4vw;
    height: 3.1vw;
    display: grid;
    place-items: center;
    border-radius: 0.75vw;
    background: rgba(255, 255, 255, 0.9);
}

.content-video__play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 0.22vw;
    border-top: 0.72vw solid transparent;
    border-bottom: 0.72vw solid transparent;
    border-left: 1.05vw solid #191221;
}

.content-video__notice {
    position: absolute;
    left: 0.8vw;
    right: 0.8vw;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.content-video__notice {
    bottom: 0.75vw;
    padding: 0.34vw 0.55vw;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(25, 18, 33, 0.78);
    font-size: 0.82vw;
}

.content-text-box {
    position: absolute;
    left: 66vw;
    width: 19.8vw;
    min-height: 7.5vw;
    padding: 1.55vw 1.1vw 1.25vw;
    color: #1a1222;
    font-family: 'Jost', sans-serif;
    font-size: 1.48vw;
    line-height: 1.3;
    font-weight: 800;
    background-image: none;
    background-color: #e9acd0;
    text-align: left;
    bottom: -2.4vw;
    z-index: 10;

}

.content-text-box::after {
    content: "";
    position: absolute;
    top: 0.45vw;
    right: 0.45vw;
    width: 1.25vw;
    height: 1.1vw;
    border-top: 0.28vw solid #31203d;
    border-right: 0.28vw solid #31203d;
}

.content-media img {
    width: 25vw;
    height: auto;

}


.content-bottom {
    padding-top: 7vw;
    display: flex;
    background-position: center;
    background-color: #3d2c4b;
    background-size: cover;
    flex-direction: column;
    align-items: start;
    position: relative;
    text-align: left;
    padding-left: 10vw;
    font-family: 'Jost', sans-serif;
    color: white;
}

.content-bottom h1 {
    font-size: 2.75vw;
    line-height: 1.05;
    padding-bottom: 1.55vw;
}

.content-bottom > p {
    margin-top: 0;
    line-height: 1.45;
    font-size: 1.05vw;
    max-width: 62vw;
    font-weight: 400;
}

.content-bottom > h1 + p {
    margin-top: -0.55vw;
    font-size: 1.42vw;
    font-weight: 700;
    line-height: 1.05;
}

.content-bottom > h1 + p + p {
    margin-top: 0.75vw;
}

.content-columns {
    display: flex;
    flex-direction: row;
    padding-bottom: 5vw;
    justify-content: space-evenly;
}
.content-column-padding {
    padding-right: 4vw;
}
.content-column {
    width: 22.4vw;
    min-height: 20.4vw;
    padding: 2.35vw 2.1vw 2.65vw;
    display: flex;
    flex-direction: column;
    background-color: #30203d;
    background-size: cover;
}

.content-column h1 {
    font-size: 1.9vw;
    color: #D5FF45;
    padding-top: 0;
    padding-bottom: 0;
}
.content-column h2 {
    margin-top: 0.55vw;
    font-size: 1.08vw;
    color: white;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 100;
}
.content-column p,
.product-links a {
    font-size: 1vw;
    color: white;
    font-weight: 100;
}

.product-links {
    display: flex;
    flex-direction: column;
    gap: 1.05vw;
    margin: 2.05vw 0 0;
    padding-left: 1.08vw;
    list-style-position: outside;
}

.product-links a {
    text-decoration: underline;
    text-underline-offset: 0.18vw;
    text-decoration-thickness: 0.07vw;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.product-links a:hover {
    color: #a0a0a5;
    text-decoration-color: #a0a0a5;
}

.content-rows {
    display: flex;
    flex-direction: column;
}
.content-row {
    display: flex;
    flex-direction: row;
    background-color: #30203d;
    align-items: start;
    background-size: cover;
}
.content-rows h1{
    color: white;
    padding-top: 0;
    padding-bottom: 0;

    align-items: center;
}

.content-row-middle{
    display: flex;
    flex-direction: row;
}

.arrow-container {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    padding-left: 1vw;
}

.arrow {
    display: flex;
    align-items: center;
    width: 120%; /* Nimmt die gesamte Breite des Textes ein */
    margin-top: 0;
}

.line {
    height: 3px;
    background-color: #d4ff33; /* Dein Giftgrün */
    flex-grow: 1; /* Die Linie füllt den Platz aus */
}

.point {
    width: 0;
    height: 0;
    border-top: 0.5vw solid transparent;
    border-bottom: 0.5vw solid transparent;
    border-left: 8px solid #d4ff33; /* Die Pfeilspitze */
}

.solutions-shot {
    --bg: #3d2c4b;
    --text: #ffffff;
    --panel: #30203d;
    --accent: #d4ff33;
    --muted: #ffffff;
    min-height: 100vh;
    width: min(947px, 100%);
    margin: 0 auto;
    padding: 18px 18px 22px 25px;
    background: var(--bg);
    color: var(--text);
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.solutions-shot__header {
    margin-bottom: 30px;
}

.solutions-shot__header h2,
.solutions-shot__header h3,
.shot-row__name {
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", sans-serif;
}

.solutions-shot__header h2 {
    margin: 0 0 9px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.1px;
}

.solutions-shot__header h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1px;
}

.solutions-shot__header p {
    margin: 0;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 0.15px;
}

.solutions-shot__rows {
    display: grid;
    gap: 18px;
}

.shot-row {
    min-height: 63px;
    display: grid;
    grid-template-columns: 152px 1fr;
    align-items: center;
    gap: 22px;
    padding: 0 18px 0 23px;
    background: var(--panel);
}

.shot-row__lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.shot-row__name {
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
}

.shot-row__arrow {
    position: relative;
    display: block;
    width: 92px;
    height: 8px;
}

.shot-row__arrow::before,
.shot-row__arrow::after {
    content: "";
    position: absolute;
}

.shot-row__arrow::before {
    left: 0;
    top: 3px;
    width: 90px;
    height: 2px;
    background: var(--accent);
}

.shot-row__arrow::after {
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 9px solid var(--accent);
}

.shot-row__specs {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.shot-row--wide .shot-row__specs {
    gap: 42px;
}

.shot-row__spec {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    color: var(--muted);
}

.shot-row__label {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.15px;
}

.shot-row__value {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.55px;
}

@media (max-width: 760px) {
    .solutions-shot {
        padding: 18px 16px;
    }

    .solutions-shot__header {
        margin-bottom: 22px;
    }

    .shot-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
        padding: 16px 18px;
    }

    .shot-row__specs,
    .shot-row--wide .shot-row__specs {
        gap: 12px;
    }

    .shot-row__spec {
        white-space: normal;
        flex-wrap: wrap;
        gap: 6px;
    }
}

.standard-solutions {
    width: calc(100% - 6vw);
    padding-top: 1.7vw;
    padding-bottom: 5vw;
}

.standard-solutions__rows {
    display: flex;
    flex-direction: column;
    gap: 1.7vw;
    width: 100%;
}

.standard-row {
    min-height: 7.15vw;
    display: grid;
    grid-template-columns: 13.1vw minmax(0, 1fr);
    align-items: center;
    gap: 3.35vw;
    padding: 0.65vw 2.35vw 0.65vw 2.45vw;
    background-color: #31203d;
}

.standard-row__lead {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.02vw;
}

.standard-row__name {
    font-family: 'Jost', sans-serif;
    font-size: 1.9vw;
    font-weight: 500;
    line-height: 1;
    color: white;
}

.standard-row__arrow {
    position: relative;
    display: block;
    width: 6.85vw;
    height: 0.68vw;
}

.standard-row--wide .standard-row__arrow {
    width: 10.15vw;
}

.standard-row__arrow::before,
.standard-row__arrow::after {
    content: "";
    position: absolute;
}

.standard-row__arrow::before {
    top: 50%;
    left: 0;
    width: 6.38vw;
    height: 0.13vw;
    background-color: #D5FF45;
    transform: translateY(-50%);
}

.standard-row--wide .standard-row__arrow::before {
    width: 9.68vw;
}

.standard-row__arrow::after {
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 0.29vw solid transparent;
    border-bottom: 0.29vw solid transparent;
    border-left: 0.6vw solid #D5FF45;
    transform: translateY(-50%);
}

.standard-row__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1.35vw;
    width: 100%;
}

.standard-row__spec {
    display: flex;
    align-items: center;
    gap: 0.9vw;
    min-width: 0;
    white-space: nowrap;
    color: white;
    font-family: 'Jost', sans-serif;
}

.standard-row__label {
    font-size: 1.06vw;
    font-weight: 700;
    line-height: 1;
}

.standard-row__value {
    font-size: 0.86vw;
    letter-spacing: 0.05vw;
    line-height: 1;
    font-weight: 400;
}

@media (max-width: 900px) {
    .content-top {
        flex-direction: column;
        align-items: center;
        padding: 8vw 6vw 10vw;
    }

    .content-slider {
        width: 100vw;
        padding: 0 0 7vw;
    }

    .content-slider__frame,
    .content-slider__dots {
        width: 100%;
    }

    .content-slider__nav {
        width: 8vw;
        height: 8vw;
        font-size: 0;
    }

    .content-slider__nav::before {
        width: 2.15vw;
        height: 0.5vw;
    }

    .content-slider__nav::after {
        width: 2.15vw;
        height: 0.5vw;
    }

    .content-slider__nav--prev::before {
        transform: translate(-50%, -50%) translateY(-0.76vw) rotate(-45deg);
    }

    .content-slider__nav--prev::after {
        transform: translate(-50%, -50%) translateY(0.76vw) rotate(45deg);
    }

    .content-slider__nav--next::before {
        transform: translate(-50%, -50%) translateY(-0.76vw) rotate(45deg);
    }

    .content-slider__nav--next::after {
        transform: translate(-50%, -50%) translateY(0.76vw) rotate(-45deg);
    }

    .content-slider__nav--prev {
        left: 2.4vw;
    }

    .content-slider__nav--next {
        right: 2.4vw;
    }

    .content-slider__dots {
        gap: 1.2vw;
        margin-top: 2vw;
    }

    .content-slider__dot {
        width: 1.7vw;
        height: 1.7vw;
    }

    .content-slider__dot.is-active {
        width: 3.2vw;
    }

    .content-media img {
        width: 100%;
    }

    .content-video__placeholder {
        width: 100%;
    }

    .content-video__play {
        width: 12vw;
        height: 8.5vw;
        border-radius: 2vw;
    }

    .content-video__play::before {
        margin-left: 0.65vw;
        border-top-width: 1.9vw;
        border-bottom-width: 1.9vw;
        border-left-width: 2.8vw;
    }

    .content-video__notice {
        left: 2.2vw;
        right: 2.2vw;
    }

    .content-video__notice {
        bottom: 2vw;
        padding: 1vw 1.4vw;
        font-size: 2.1vw;
    }

    .content-video p {
        font-size: 3.8vw;
    }

    .content-bottom > p {
        margin-top: 0;
    }

    .content-bottom > h1 + p {
        margin-top: -0.5vw;
    }

    .standard-solutions {
        width: calc(100% - 5vw);
    }

    .standard-row {
        grid-template-columns: 1fr;
        gap: 1vw;
        padding: 1.6vw 1.8vw;
    }

    .standard-row__name {
        font-size: 3.2vw;
    }

    .standard-row__arrow {
        width: 14vw;
        height: 1.2vw;
    }

    .standard-row__arrow::before {
        width: 13.1vw;
        height: 0.22vw;
    }

    .standard-row__arrow::after {
        border-top-width: 0.55vw;
        border-bottom-width: 0.55vw;
        border-left-width: 1vw;
    }

    .standard-row__specs,
    .standard-row--wide .standard-row__specs {
        display: flex;
        flex-wrap: wrap;
        gap: 1vw 2.5vw;
    }

    .standard-row__label {
        font-size: 1.8vw;
    }

    .standard-row__value {
        font-size: 1.55vw;
        letter-spacing: 0.03vw;
    }
}

.slider-section {
    padding: 4.9vw 11.2vw 5.2vw;
    background: linear-gradient(
        180deg,
        #582b66 0%,
        #582b66 16.5%,
        #662b6e 16.5%,
        #662b6e 35.5%,
        #742b73 35.5%,
        #742b73 58.5%,
        #822c76 58.5%,
        #822c76 79.5%,
        #8e2d78 79.5%,
        #8e2d78 100%
    );
    color: white;
    font-family: 'Jost', sans-serif;
    overflow: hidden;
}

.slider-section h1 {
    font-size: 2.75vw;
    line-height: 1;
    margin-bottom: 0.95vw;
}

.slider-section h2 {
    max-width: 73vw;
    font-size: 1vw;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1vw;
}

.slider-section > p {
    margin-top: 1.35vw;
    font-size: 0.74vw;
    line-height: 1.2;
    opacity: 1;
}

.slider {
    display: block;
}

.slider__nav {
    position: relative;
    width: 3.35vw;
    height: 3.35vw;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #686868;
    font-size: 0;
    font-weight: 700;
    line-height: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.25s ease, filter 0.25s ease;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.14);
    z-index: 5;
}

.slider__nav img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.slider__nav::before,
.slider__nav::after {
    content: none;
}

.slider__nav:hover {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.slider__nav--prev img {
    transform: scaleX(-1);
}

.slider__nav--prev::before {
    transform: translate(-50%, -50%) translateY(-0.32vw) rotate(-45deg);
}

.slider__nav--prev::after {
    transform: translate(-50%, -50%) translateY(0.32vw) rotate(45deg);
}

.slider__nav--next::before {
    transform: translate(-50%, -50%) translateY(-0.32vw) rotate(45deg);
}

.slider__nav--next::after {
    transform: translate(-50%, -50%) translateY(0.32vw) rotate(-45deg);
}

.slider__stage {
    position: relative;
    min-height: 34.4vw;
    display: grid;
    place-items: center;
    margin-top: -1vw;
}

.slider__disc-glow,
.slider__disc,
.slider__orbit,
.slider__core {
    position: absolute;
}

.slider__disc-glow {
    display: none;
}

.slider__disc {
    display: none;
}

.slider__orbit {
    width: 100%;
    height: 100%;
}

.slider__swatch {
    position: absolute;
    top: 53.6%;
    left: 50%;
    width: 25.6vw;
    aspect-ratio: 1 / 1.04;
    margin-left: -12.8vw;
    margin-top: -12.2vw;
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    will-change: transform, opacity;
}

.slider__swatch-name {
    display: block;
    margin-bottom: 0.65vw;
    font-size: 1.5vw;
    line-height: 1;
    font-weight: 700;
    color: white;
    text-align: left;
}

.slider__swatch-frame {
    width: 100%;
    height: calc(100% - 1.95vw);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    contain: paint;
}

.slider__swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.slider__swatch.is-prev,
.slider__swatch.is-active,
.slider__swatch.is-next {
    opacity: 1;
}

.slider__swatch.is-prev {
    z-index: 1;
    transform: translate(-25.7vw, 2.2vw) scale(0.76);
}

.slider__swatch.is-active {
    z-index: 3;
    transform: translate(0, 0) scale(1);
}

.slider__swatch.is-next {
    z-index: 1;
    transform: translate(25.7vw, 2.2vw) scale(0.76);
}

.slider__swatch.is-hidden-left {
    transform: translate(-36vw, 2.4vw) scale(0.6);
}

.slider__swatch.is-hidden-right {
    transform: translate(36vw, 2.4vw) scale(0.6);
}

.slider__core {
    top: 3.4vw;
    width: 23vw;
    text-align: center;
    z-index: 3;
}

.slider__title {
    font-size: 0;
    line-height: 1;
    margin-bottom: 0;
}

.slider__counter {
    display: none;
}

.slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.45vw;
    position: relative;
    z-index: 6;
    margin-top: 1.35vw;
}

.slider__dot {
    width: 0.56vw;
    height: 0.56vw;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
}

.slider__dot.is-active {
    width: 1vw;
    border-radius: 999px;
    background: #442a60;
}

.slider__nav--prev,
.slider__nav--next {
    position: absolute;
    top: 62%;
}

.slider__nav--prev {
    left: 34.7%;
}

.slider__nav--next {
    right: 34.7%;
}

@media (max-width: 900px) {
    .slider-section {
        padding: 10vw 6vw 8vw;
    }

    .slider-section h1 {
        font-size: 6vw;
        margin-bottom: 2.2vw;
    }

    .slider-section h2 {
        max-width: none;
        font-size: 3vw;
        margin-bottom: 7vw;
    }

    .slider-section > p {
        margin-top: 5vw;
        font-size: 2vw;
    }

    .slider__stage {
        min-height: 66vw;
        width: 100%;
    }

    .slider__swatch {
        top: 61%;
        width: 38vw;
        margin-left: -19vw;
        margin-top: -18vw;
    }

    .slider__swatch-name {
        margin-bottom: 1.4vw;
        font-size: 3.8vw;
    }

    .slider__core {
        top: 7vw;
        width: 40vw;
    }

    .slider__swatch.is-prev {
        transform: translate(-41vw, 2.6vw) scale(0.66);
    }

    .slider__swatch.is-active {
        transform: translate(0, 0) scale(1);
    }

    .slider__swatch.is-next {
        transform: translate(41vw, 2.6vw) scale(0.66);
    }

    .slider__swatch.is-hidden-left {
        transform: translate(-56vw, 3vw) scale(0.54);
    }

    .slider__swatch.is-hidden-right {
        transform: translate(56vw, 3vw) scale(0.54);
    }

    .slider__dots {
        gap: 1.2vw;
        margin-top: 2vw;
    }

    .slider__dot {
        width: 1.7vw;
        height: 1.7vw;
    }

    .slider__dot.is-active {
        width: 3.2vw;
    }

    .slider__nav {
        width: 8.5vw;
        height: 8.5vw;
        font-size: 0;
    }

    .slider__nav::before,
    .slider__nav::after {
        width: 2.35vw;
        height: 0.5vw;
    }

    .slider__nav--prev::before {
        transform: translate(-50%, -50%) translateY(-0.83vw) rotate(-45deg);
    }

    .slider__nav--prev::after {
        transform: translate(-50%, -50%) translateY(0.83vw) rotate(45deg);
    }

    .slider__nav--next::before {
        transform: translate(-50%, -50%) translateY(-0.83vw) rotate(45deg);
    }

    .slider__nav--next::after {
        transform: translate(-50%, -50%) translateY(0.83vw) rotate(-45deg);
    }

    .slider__nav--prev {
        left: 22%;
    }

    .slider__nav--next {
        right: 22%;
    }
}

.site-footer {
    background: #000;
    color: #6f6f74;
    font-family: 'Jost', sans-serif;
}

.site-footer__inner {
    width: 61.5vw;
    min-height: 0;
    margin: 0 auto;
    padding: 2.4vw 0 3.2vw;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.1vw solid #6b6b6f;
}

.site-footer__column {
    min-height: 9.4vw;
    padding-left: 5.7vw;
}

.site-footer__column--social {
    padding-left: 3.8vw;
    border-left: 0.1vw solid #6b6b6f;
}

.site-footer__column h2 {
    margin: 0 0 0.95vw;
    color: #77777c;
    font-size: 1.45vw;
    line-height: 1;
    font-weight: 500;
}

.site-footer__row {
    display: flex;
    align-items: center;
    gap: 1.32vw;
    min-height: 2.35vw;
    margin-bottom: 0.48vw;
    color: #77777c;
    font-size: 0.9vw;
    line-height: 1;
    text-decoration: none;
}

.site-footer__row:hover,
.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
    color: #a0a0a5;
}

.site-footer__icon {
    position: relative;
    flex: 0 0 auto;
    width: 2.5vw;
    height: 2.05vw;
    display: inline-block;
}

.site-footer__icon--mail {
    height: 1.62vw;
    border: 0.16vw solid #77777c;
}

.site-footer__icon--mail::before,
.site-footer__icon--mail::after {
    content: "";
    position: absolute;
    top: 0.15vw;
    width: 1.68vw;
    height: 0.16vw;
    background: #77777c;
}

.site-footer__icon--mail::before {
    left: -0.1vw;
    transform: rotate(31deg);
    transform-origin: left center;
}

.site-footer__icon--mail::after {
    right: -0.1vw;
    transform: rotate(-31deg);
    transform-origin: right center;
}

.site-footer__icon--phone {
    width: 1.15vw;
    height: 2.35vw;
    margin-left: 0.62vw;
    margin-right: 0.72vw;
    border: 0.16vw solid #77777c;
    border-radius: 0.14vw;
}

.site-footer__icon--phone::before,
.site-footer__icon--phone::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #77777c;
}

.site-footer__icon--phone::before {
    top: 0.2vw;
    width: 0.36vw;
    height: 0.06vw;
}

.site-footer__icon--phone::after {
    bottom: 0.17vw;
    width: 0.16vw;
    height: 0.16vw;
    border-radius: 50%;
}

.site-footer__icon--instagram {
    width: 1.62vw;
    height: 1.62vw;
    margin: 0 0.42vw;
    border: 0.17vw solid #e73d6b;
    border-radius: 0.46vw;
}

.site-footer__icon--instagram::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.54vw;
    height: 0.54vw;
    border: 0.14vw solid #e73d6b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.site-footer__icon--instagram::after {
    content: "";
    position: absolute;
    right: 0.24vw;
    top: 0.22vw;
    width: 0.19vw;
    height: 0.19vw;
    border-radius: 50%;
    background: #e73d6b;
}

.site-footer__icon--youtube {
    width: 1.74vw;
    height: 1.22vw;
    margin: 0 0.36vw;
    border-radius: 0.26vw;
    background: #e23c39;
}

.site-footer__icon--youtube::before {
    content: "";
    position: absolute;
    left: 0.65vw;
    top: 0.34vw;
    width: 0;
    height: 0;
    border-top: 0.28vw solid transparent;
    border-bottom: 0.28vw solid transparent;
    border-left: 0.46vw solid white;
}

.site-footer__bottom {
    display: flex;
    justify-content: flex-end;
    gap: 2.2vw;
    padding-top: 1vw;
}

.site-footer__bottom--legal {
    justify-content: flex-end;
}

.site-footer__bottom--legal a:first-child {
    margin-right: auto;
}

.site-footer__bottom a {
    color: #77777c;
    font-size: 0.72vw;
    line-height: 1;
    text-decoration: none;
}

.site-footer__bottom button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #77777c;
    font: inherit;
    font-size: 0.72vw;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.site-footer__bottom button:hover {
    color: #a0a0a5;
}

.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;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(30, 47, 56, 0.92);
    color: #16191d;
    font-family: 'Jost', sans-serif;
}

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

.cookie-consent__panel {
    width: min(960px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    border: 1px solid #d8d8d8;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.cookie-consent__view {
    padding: 36px 42px 28px;
}

.cookie-consent h2 {
    margin: 0 0 34px;
    color: #252c35;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.cookie-consent__copy {
    max-width: 760px;
    font-size: clamp(18px, 2.2vw, 27px);
    line-height: 1.28;
}

.cookie-consent__copy p,
.cookie-consent__intro,
.cookie-consent__setting p {
    margin: 0;
}

.cookie-consent__copy p + p {
    margin-top: 28px;
}

.cookie-consent__intro {
    max-width: 790px;
    font-size: clamp(17px, 2vw, 25px);
    line-height: 1.28;
}

.cookie-consent__settings {
    display: grid;
    gap: 28px;
    margin-top: 34px;
}

.cookie-consent__setting {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.cookie-consent__setting h3 {
    margin: 0 0 4px;
    font-size: clamp(18px, 2vw, 27px);
    line-height: 1.2;
}

.cookie-consent__setting p {
    max-width: 740px;
    font-size: clamp(15px, 1.7vw, 23px);
    line-height: 1.36;
}

.cookie-consent__always-active {
    color: #777;
    font-size: clamp(13px, 1.5vw, 20px);
    white-space: nowrap;
}

.cookie-consent__switch-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-consent__switch-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-consent__switch {
    position: relative;
    display: inline-block;
    width: 76px;
    height: 44px;
    border-radius: 999px;
    background: #c7c7c7;
    transition: background 0.2s ease;
}

.cookie-consent__switch::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f8f8f2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
}

.cookie-consent__switch-input:checked + .cookie-consent__switch {
    background: #87946f;
}

.cookie-consent__switch-input:checked + .cookie-consent__switch::after {
    transform: translateX(32px);
}

.cookie-consent__switch-input:focus-visible + .cookie-consent__switch {
    outline: 3px solid #222;
    outline-offset: 4px;
}

.cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 32px;
    margin-top: 88px;
}

.cookie-consent__button {
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    border: 0;
    font-family: inherit;
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1;
    cursor: pointer;
}

.cookie-consent__button--plain {
    justify-self: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: #252525;
}

.cookie-consent__actions .cookie-consent__button:first-child {
    justify-self: start;
    justify-content: flex-start;
}

.cookie-consent__actions .cookie-consent__button:last-child {
    justify-self: end;
}

.cookie-consent__button--primary {
    justify-content: center;
    min-width: 290px;
    padding: 15px 34px 18px;
    background: #d75651;
    color: #141414;
}

@media (max-width: 900px) {
    .site-footer__inner {
        width: 88vw;
        padding: 7vw 0 6vw;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 7vw;
        padding-bottom: 5vw;
    }

    .site-footer__column,
    .site-footer__column--social {
        min-height: 0;
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__column h2 {
        margin-bottom: 3vw;
        font-size: 5vw;
    }

    .site-footer__row {
        gap: 4vw;
        min-height: 7vw;
        margin-bottom: 2vw;
        font-size: 3vw;
    }

    .site-footer__icon {
        width: 8vw;
        height: 6.5vw;
    }

    .site-footer__icon--mail {
        height: 5vw;
        border-width: 0.45vw;
    }

    .site-footer__icon--mail::before,
    .site-footer__icon--mail::after {
        top: 0.55vw;
        width: 5.4vw;
        height: 0.45vw;
    }

    .site-footer__icon--phone {
        width: 3.6vw;
        height: 7.2vw;
        margin-left: 2.2vw;
        margin-right: 2.2vw;
        border-width: 0.45vw;
        border-radius: 0.45vw;
    }

    .site-footer__icon--instagram {
        width: 5vw;
        height: 5vw;
        margin: 0 1.5vw;
        border-width: 0.45vw;
        border-radius: 1.4vw;
    }

    .site-footer__icon--instagram::before {
        width: 1.65vw;
        height: 1.65vw;
        border-width: 0.42vw;
    }

    .site-footer__icon--instagram::after {
        right: 0.75vw;
        top: 0.65vw;
        width: 0.55vw;
        height: 0.55vw;
    }

    .site-footer__icon--youtube {
        width: 5.6vw;
        height: 3.9vw;
        margin: 0 1.2vw;
        border-radius: 0.8vw;
    }

    .site-footer__icon--youtube::before {
        left: 2.1vw;
        top: 1.05vw;
        border-top-width: 0.9vw;
        border-bottom-width: 0.9vw;
        border-left-width: 1.45vw;
    }

    .site-footer__bottom {
        justify-content: flex-start;
        gap: 5vw;
        padding-top: 3vw;
    }

    .site-footer__bottom a {
        font-size: 2.5vw;
    }

    .site-footer__bottom button {
        font-size: 2.5vw;
    }
}

@media (max-width: 600px) {
    body {
        background: #000;
        color: white;
        font-family: 'Jost', sans-serif;
    }

    .hero {
        width: 100vw;
        max-width: 100vw;
        height: 289px;
        aspect-ratio: auto;
        overflow: hidden;
        background-image: url('assets/backgrounds/HeroLedCoatings.jpg');
        background-position: center;
        background-size: cover;
    }

    .logo {
        top: 15px;
        left: 50%;
        z-index: 2;
    }

    .img-logo {
        width: 86px;
        max-width: none;
    }

    .hero-content {
        inset: 0;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        transform: none;
        display: block;
        z-index: 3;
    }

    .hero-title,
    .hero-sub-title,
    .hero-text,
    .hero-sub-text,
    .hero-button {
        position: absolute;
        padding: 0;
    }

    .hero-title {
        top: 77px;
        left: 22px;
    }

    .hero-title h1 {
        font-size: 23px;
        line-height: 1.05;
        white-space: nowrap;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
    }

    .hero-sub-title {
        top: 139px;
        left: 22px;
        width: 320px;
    }

    .hero-sub-title p {
        font-size: 14px;
        line-height: 1.18;
    }

    .hero-text {
        left: 22px;
        bottom: 63px;
    }

    .hero-text p {
        font-size: 11px;
        line-height: 1.32;
    }

    .hero-sub-text {
        right: auto;
        left: 197px;
        bottom: 15px;
        width: 171px;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-sub-text img {
        width: 31px;
        height: 31px;
    }

    .hero-sub-text p {
        padding-top: 0;
        padding-left: 6px;
        font-size: 13px;
        line-height: 1;
    }

    .hero-button {
        left: 22px;
        bottom: 14px;
    }

    .hero-button-btn {
        min-width: 125px;
        min-height: 28px;
        padding: 5px 18px 6px;
        font-size: 12px;
    }

    .icons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 0;
        background-image: linear-gradient(180deg, #17101f 0%, #271437 35%, #55215f 78%, #7c2670 100%);
    }

    .icons .icon-row {
        display: contents;
    }

    .icon-left,
    .icon-center,
    .icon-right {
        width: 100%;
        height: 151px;
        min-height: 0;
    }

    .icons .icon-row:first-child .icon-left {
        order: 1;
        background: #201129;
        height: 178px;
    }

    .icons .icon-row:first-child .icon-center {
        order: 2;
        background: #201129;
        height: 178px;
    }

    .icons .icon-row:first-child .icon-right {
        order: 3;
        background: #3d1950;
    }

    .icons .icon-row:nth-child(2) .icon-left {
        order: 4;
        background: #3d1950;
    }

    .icons .icon-row:nth-child(2) .icon-center {
        order: 5;
        background: #5d2265;
    }

    .icons .icon-row:nth-child(2) .icon-right {
        order: 6;
        background: #5d2265;
    }

    .icon {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 4.4rem auto;
        row-gap: 1.05rem;
        justify-items: center;
        align-content: center;
        padding: 1.5rem 0.9rem 1.35rem;
        color: white;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
    }

    .icon p {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        min-height: 0;
        align-items: flex-start;
        justify-content: center;
    }

    .icon img {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        width: 4.35rem;
        height: 4.35rem;
        max-height: none;
        object-fit: contain;
    }

    .content {
        background: #17101f;
    }

    .content-top {
        flex-direction: column;
        align-items: center;
        padding: 42px 0 102px;
        background-color: #17101f;
    }

    .content-slider {
        width: 348px;
        max-width: calc(100vw - 44px);
        margin-left: 0;
        padding: 0;
    }

    .content-slider__frame {
        width: 100%;
        aspect-ratio: 317 / 214;
    }

    .content-slider__dots {
        width: 100%;
        gap: 4px;
        margin-top: 7px;
    }

    .content-slider__dot {
        width: 6px;
        height: 6px;
    }

    .content-slider__dot.is-active {
        width: 12px;
    }

    .content-slider__nav {
        width: 24px;
        height: 24px;
        font-size: 0;
    }

    .content-slider__nav::before {
        width: 8px;
        height: 2px;
    }

    .content-slider__nav::after {
        width: 8px;
        height: 2px;
    }

    .content-slider__nav--prev::before {
        transform: translate(-50%, -50%) translateY(-3px) rotate(-45deg);
    }

    .content-slider__nav--prev::after {
        transform: translate(-50%, -50%) translateY(3px) rotate(45deg);
    }

    .content-slider__nav--next::before {
        transform: translate(-50%, -50%) translateY(-3px) rotate(45deg);
    }

    .content-slider__nav--next::after {
        transform: translate(-50%, -50%) translateY(3px) rotate(-45deg);
    }

    .content-slider__nav--prev {
        left: 8px;
    }

    .content-slider__nav--next {
        right: 8px;
    }

    .content-media {
        width: 100%;
        padding: 34px 0 0;
        align-items: flex-start;
    }

    .content-video {
        margin-left: max(22px, calc((100vw - 348px) / 2));
    }

    .content-video__placeholder {
        width: 210px;
        height: 129px;
    }

    .content-video p {
        margin-top: 8px;
        color: white;
        font-size: 12px;
        line-height: 1;
        text-align: left;
    }

    .content-text-box {
        left: 148px;
        bottom: -41px;
        width: 206px;
        min-height: 82px;
        padding: 18px 12px 15px;
        background-image: none;
        background-color: #e9acd0;
        color: #1a1222;
        font-size: 17px;
        line-height: 1.3;
        font-weight: 800;
        text-align: left;
    }

    .content-text-box::after {
        content: "";
        position: absolute;
        top: 5px;
        right: 5px;
        width: 17px;
        height: 15px;
        border-top: 4px solid #31203d;
        border-right: 4px solid #31203d;
    }

    .content-bottom {
        align-items: stretch;
        padding: 112px 0 78px 22px;
        background-color: #3c2b4a;
        color: white;
    }

    .content-bottom > h1 {
        padding-bottom: 22px;
        font-size: 34px;
        line-height: 1.05;
        font-weight: 800;
    }

    .content-bottom > p {
        max-width: 310px;
        font-size: 15px;
        line-height: 1.55;
    }

    .content-bottom > h1 + p {
        margin-top: 0;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 800;
    }

    .content-bottom > h1 + p + p {
        margin-top: 18px;
    }

    .content-columns {
        flex-direction: column;
        padding-bottom: 38px;
    }

    .content-column-padding {
        padding-right: 0;
        padding-bottom: 26px;
    }

    .content-column {
        width: 307px;
        max-width: calc(100vw - 86px);
        min-height: 236px;
        padding: 25px 29px 28px;
        background-color: #30203d;
    }

    .content-column h1 {
        font-size: 20px;
        line-height: 1;
        color: #D5FF45;
    }

    .content-column h2 {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.25;
        font-weight: 400;
    }

    .content-column p {
        padding-top: 30px;
        font-size: 12px;
        line-height: 1;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .product-links {
        gap: 22px;
        margin-top: 30px;
        padding-left: 17px;
    }

    .product-links a {
        font-size: 12px;
        text-underline-offset: 2px;
        text-decoration-thickness: 1px;
    }

    .standard-solutions {
        width: 100%;
        padding: 38px 0 0;
    }

    .standard-solutions__rows {
        gap: 32px;
    }

    .standard-row {
        position: relative;
        display: grid;
        grid-template-columns: 0.9rem minmax(0, 1fr);
        grid-template-areas:
            "title title"
            "arrow specs";
        column-gap: 0;
        row-gap: 1.7rem;
        width: 22.9rem;
        max-width: calc(100vw - 3rem);
        min-height: 13.85rem;
        padding: 1.95rem 2rem 2.05rem 1.35rem;
        background-color: #30203d;
    }

    .standard-row--wide {
        min-height: 16.9rem;
    }

    .standard-row__lead {
        display: contents;
    }

    .standard-row__name {
        grid-area: title;
        display: block;
        padding-left: 1rem;
        font-size: 25px;
        line-height: 1;
        font-weight: 800;
    }

    .standard-row__arrow,
    .standard-row--wide .standard-row__arrow {
        grid-area: arrow;
        position: relative;
        align-self: stretch;
        justify-self: center;
        margin-top: -0.2rem;
        margin-bottom: -0.1rem;
        width: 0.75rem;
        height: auto;
    }

    .standard-row--wide .standard-row__arrow {
        height: auto;
    }

    .standard-row__arrow::before,
    .standard-row--wide .standard-row__arrow::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 0.18rem;
        height: auto;
        background-color: #D5FF45;
        transform: translateX(-50%);
    }

    .standard-row__arrow::after,
    .standard-row--wide .standard-row__arrow::after {
        right: auto;
        top: auto;
        bottom: -0.36rem;
        left: 50%;
        border-top: 8px solid #D5FF45;
        border-right: 5px solid transparent;
        border-bottom: 0;
        border-left: 5px solid transparent;
        transform: translateX(-50%);
    }

    .standard-row__specs,
    .standard-row--wide .standard-row__specs {
        grid-area: specs;
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: min-content;
        align-items: flex-start;
        gap: 2.25rem;
        padding-left: 1.35rem;
        margin: 0;
    }

    .standard-row__spec {
        gap: 1.1rem;
        white-space: nowrap;
    }

    .standard-row__label {
        min-width: 3.55rem;
        font-size: 12px;
        font-weight: 500;
    }

    .standard-row__value {
        font-size: 12px;
        letter-spacing: 0;
    }

    .slider-section {
        padding: 74px 0 156px 20px;
        background: linear-gradient(
            180deg,
            #662562 0%,
            #662562 10.5%,
            #732562 10.5%,
            #732562 29.5%,
            #822863 29.5%,
            #822863 42%,
            #912c65 42%,
            #912c65 86.5%,
            #a23a6f 86.5%,
            #a23a6f 100%
        );
        overflow: hidden;
    }

    .slider-section h1 {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 7px;
    }

    .slider-section h2 {
        width: 285px;
        max-width: none;
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 34px;
    }

    .slider {
        width: 100vw;
        margin-left: -20px;
    }

    .slider__stage {
        width: 100vw;
        min-height: 382px;
        margin-top: 0;
        overflow: visible;
    }

    .slider__swatch {
        top: 50%;
        left: 50%;
        width: 264px;
        height: 292px;
        aspect-ratio: 1 / 1;
        margin-left: -132px;
        margin-top: -146px;
        transform-origin: 50% 50%;
    }

    .slider__swatch-name {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 1;
        font-weight: 800;
    }

    .slider__swatch:not(.is-active) .slider__swatch-name {
        visibility: hidden;
    }

    .slider__swatch-frame {
        height: 264px;
    }

    .slider__swatch.is-prev {
        transform: translate(-294px, 20px) scale(0.86);
    }

    .slider__swatch.is-active {
        transform: translate(0, 0) scale(1);
    }

    .slider__swatch.is-next {
        transform: translate(294px, 20px) scale(0.86);
    }

    .slider__swatch.is-hidden-left {
        transform: translate(-440px, 24px) scale(0.72);
    }

    .slider__swatch.is-hidden-right {
        transform: translate(440px, 24px) scale(0.72);
    }

    .slider__nav {
        width: 34px;
        height: 34px;
        font-size: 0;
        box-shadow: none;
    }

    .slider__nav::before,
    .slider__nav::after {
        width: 10px;
        height: 2px;
    }

    .slider__nav--prev::before {
        transform: translate(-50%, -50%) translateY(-4px) rotate(-45deg);
    }

    .slider__nav--prev::after {
        transform: translate(-50%, -50%) translateY(4px) rotate(45deg);
    }

    .slider__nav--next::before {
        transform: translate(-50%, -50%) translateY(-4px) rotate(45deg);
    }

    .slider__nav--next::after {
        transform: translate(-50%, -50%) translateY(4px) rotate(-45deg);
    }

    .slider__nav--prev,
    .slider__nav--next {
        top: 58%;
    }

    .slider__nav--prev {
        left: calc(50% - 116px);
    }

    .slider__nav--next {
        right: auto;
        left: calc(50% + 82px);
    }

    .slider__dots {
        justify-content: center;
        width: 100vw;
        gap: 5px;
        margin-left: -20px;
        margin-top: 4px;
        padding-right: 0;
        padding-left: 0;
    }

    .slider__dot {
        width: 6px;
        height: 6px;
    }

    .slider__dot.is-active {
        width: 12px;
    }

    .slider-section > p {
        width: 282px;
        margin: 14px 0 0 37px;
        font-size: 9px;
        line-height: 1.35;
    }

    .site-footer {
        background: #000;
    }

    .site-footer__inner {
        width: 100%;
        min-height: 0;
        padding: 24px 22px max(28px, env(safe-area-inset-bottom));
    }

    .site-footer__columns {
        display: block;
        border-bottom: 0;
    }

    .site-footer__column {
        padding-left: 0;
    }

    .site-footer__column h2 {
        margin-bottom: 22px;
        color: #76767a;
        font-size: 28px;
        line-height: 1;
    }

    .site-footer__row {
        gap: 28px;
        min-height: 43px;
        margin-bottom: 13px;
        color: #77777c;
        font-size: 13px;
    }

    .site-footer__icon {
        width: 39px;
        height: 31px;
    }

    .site-footer__icon--mail {
        height: 25px;
        border-width: 2px;
    }

    .site-footer__icon--mail::before,
    .site-footer__icon--mail::after {
        top: 4px;
        width: 27px;
        height: 2px;
    }

    .site-footer__icon--phone {
        width: 21px;
        height: 42px;
        margin-left: 8px;
        margin-right: 10px;
        border-width: 2px;
        border-radius: 3px;
    }

    .site-footer__column--social {
        display: flex;
        justify-content: center;
        gap: 22px;
        margin-top: 27px;
        padding: 18px 0 16px;
        border-top: 1px solid #77777c;
        border-bottom: 1px solid #77777c;
    }

    .site-footer__column--social h2,
    .site-footer__column--social .site-footer__row span:not(.site-footer__icon) {
        display: none;
    }

    .site-footer__column--social .site-footer__row {
        min-height: 0;
        margin-bottom: 0;
        gap: 0;
    }

    .site-footer__icon--instagram {
        width: 29px;
        height: 29px;
        margin: 0;
        border-width: 3px;
        border-radius: 8px;
    }

    .site-footer__icon--instagram::before {
        width: 9px;
        height: 9px;
        border-width: 2px;
    }

    .site-footer__icon--instagram::after {
        right: 5px;
        top: 4px;
        width: 3px;
        height: 3px;
    }

    .site-footer__icon--youtube {
        width: 30px;
        height: 22px;
        margin: 3px 0 0;
        border-radius: 5px;
    }

    .site-footer__icon--youtube::before {
        left: 11px;
        top: 6px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 8px;
    }

    .site-footer__bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        gap: 14px 22px;
        padding-top: 12px;
    }

    .site-footer__bottom--legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 14px 18px;
    }

    .site-footer__bottom--legal a:first-child {
        margin-right: 0;
        text-align: left;
    }

    .site-footer__bottom--legal a:not(:first-child),
    .site-footer__bottom--legal button {
        text-align: left;
    }

    .site-footer__bottom a,
    .site-footer__bottom button {
        flex: 0 1 auto;
        color: #77777c;
        font-size: 11px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .site-footer__bottom button {
        text-align: left;
    }

    .cookie-consent {
        align-items: flex-end;
        padding: 16px 0;
    }

    .cookie-consent__panel {
        position: fixed;
        right: 64px;
        bottom: max(16px, env(safe-area-inset-bottom));
        left: 16px;
        width: auto;
        max-height: calc(100vh - 32px);
    }

    .cookie-consent__view {
        padding: 24px 18px 18px;
    }

    .cookie-consent h2 {
        margin-bottom: 18px;
        font-size: 26px;
        line-height: 1.08;
    }

    .cookie-consent__copy {
        font-size: 15px;
        line-height: 1.4;
    }

    .cookie-consent__intro,
    .cookie-consent__setting p {
        font-size: 14px;
        line-height: 1.42;
    }

    .cookie-consent__copy p + p {
        margin-top: 14px;
    }

    .cookie-consent__settings {
        gap: 18px;
        margin-top: 22px;
    }

    .cookie-consent__setting {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-consent__setting--external {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 14px;
    }

    .cookie-consent__setting h3 {
        font-size: 17px;
        line-height: 1.2;
    }

    .cookie-consent__always-active {
        justify-self: start;
        font-size: 13px;
    }

    .cookie-consent__switch-label {
        justify-self: start;
    }

    .cookie-consent__setting--external .cookie-consent__switch-label {
        justify-self: end;
    }

    .cookie-consent__setting--external .cookie-consent__switch {
        width: 52px;
        height: 30px;
    }

    .cookie-consent__setting--external .cookie-consent__switch::after {
        top: 3px;
        left: 3px;
        width: 24px;
        height: 24px;
    }

    .cookie-consent__setting--external .cookie-consent__switch-input:checked + .cookie-consent__switch::after {
        transform: translateX(22px);
    }

    .cookie-consent__actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .cookie-consent__button {
        min-height: 50px;
        padding: 10px 14px 12px;
        font-size: 18px;
        line-height: 1.15;
        white-space: normal;
    }

    .cookie-consent__actions .cookie-consent__button {
        justify-self: stretch;
        justify-content: center;
    }

    .cookie-consent__actions .cookie-consent__button:first-child {
        justify-self: stretch;
        justify-content: center;
    }

    .cookie-consent__actions .cookie-consent__button:last-child {
        justify-self: stretch;
        justify-content: center;
    }

    .cookie-consent__button--plain,
    .cookie-consent__button--primary {
        justify-self: stretch;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cookie-consent__button--primary {
        min-width: 0;
        width: calc(100% - 16px);
    }
}
