:root {
    --yellow: #ffed00;
    --yellow-deep: #e7d600;
    --black: #121212;
    --ink: #202020;
    --muted: #666666;
    --line: #dddddd;
    --soft: #f6f6f4;
    --white: #ffffff;
    --container: 1560px;
    --radius: 3px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

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

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 88px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: #ececec;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: block;
    width: 148px;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 31px;
    font-size: 14px;
    font-weight: 700;
}

.main-navigation > a:not(.button),
.nav-dialog-button {
    position: relative;
}

.main-navigation > a:not(.button)::after,
.nav-dialog-button::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-navigation > a:hover::after,
.main-navigation > a:focus-visible::after,
.nav-dialog-button:hover::after,
.nav-dialog-button:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dialog-button {
    padding: 0;
    background: transparent;
    border: 0;
    font-weight: inherit;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--black);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    color: var(--black);
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
    background: var(--yellow-deep);
    border-color: var(--yellow-deep);
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding: 9px 18px;
    font-size: 13px;
}

.button-dark {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

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

.hero {
    position: relative;
    min-height: 790px;
    padding: 150px 0 78px;
    overflow: hidden;
    background: var(--soft);
}

.hero::before {
    position: absolute;
    right: -150px;
    bottom: -35px;
    width: 940px;
    height: 290px;
    background: url("grafiken/S-waben-f9f9f9.png") center / contain no-repeat;
    content: "";
    opacity: 0.7;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 560px;
    align-items: center;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 68px;
}

.hero-copy {
    padding-bottom: 24px;
}

.eyebrow,
.kicker {
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow img {
    width: 24px;
    height: auto;
}

.hero h1,
.section h2,
.contact-section h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 mark {
    display: inline-block;
    padding: 0 8px 5px;
    color: var(--black);
    background: var(--yellow);
}

.hero-lead {
    max-width: 580px;
    margin: 28px 0 30px;
    color: #454545;
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    padding: 7px 0;
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.play-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding-left: 2px;
    background: var(--white);
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    font-size: 11px;
}

.hero-points {
    display: flex;
    margin: 32px 0 0;
    padding: 0;
    gap: 25px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
}

.hero-points li::before {
    color: var(--yellow-deep);
    content: "●";
    margin-right: 7px;
}

.hero-media {
    position: relative;
}

.hero-frame {
    position: relative;
    border: 8px solid var(--white);
    border-bottom: 11px solid var(--yellow);
    box-shadow: var(--shadow);
}

.hero-frame::after {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-top: 3px solid var(--yellow);
    border-right: 3px solid var(--yellow);
    content: "";
}

.hero-frame img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    right: -25px;
    bottom: -30px;
    display: flex;
    width: 260px;
    padding: 18px 21px;
    background: var(--black);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    flex-direction: column;
}

.hero-badge strong {
    color: var(--yellow);
    font-size: 14px;
}

.hero-badge span {
    margin-top: 2px;
    color: #cacaca;
    font-size: 11px;
}

.proof-strip {
    padding: 31px 0;
    background: var(--black);
}

.proof-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.proof-strip p {
    margin: 0;
    color: #a7a7a7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.proof-names {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(22px, 3.2vw, 48px);
    color: var(--white);
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section {
    padding: 120px 0;
}

.section-heading {
    display: grid;
    align-items: start;
    margin-bottom: 66px;
    grid-template-columns: 105px minmax(0, 850px);
}

.section-number {
    display: inline-flex;
    width: 50px;
    height: 29px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 12px;
    font-weight: 800;
}

.section-heading .kicker,
.compact-heading .kicker,
.detail-copy .kicker,
.force-heading .kicker,
.value-heading .kicker,
.contact-copy .kicker {
    margin: 0 0 13px;
}

.section-heading h2,
.compact-heading h2,
.detail-copy h2,
.force-heading h2,
.value-heading h2,
.contact-section h2 {
    font-size: clamp(39px, 5vw, 66px);
}

.section-heading p:last-child {
    max-width: 750px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.system-section {
    background: var(--white);
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    position: relative;
    display: grid;
    min-height: 740px;
    padding: 34px 42px 42px;
    overflow: hidden;
    background: var(--soft);
    grid-template-rows: 72px 290px auto;
}

.product-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--yellow);
    content: "";
}

.product-card-logo img {
    width: 110px;
    height: 68px;
    object-fit: contain;
    object-position: top left;
}

.product-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    max-width: 88%;
    max-height: 310px;
    object-fit: contain;
}

.product-card-force .product-card-image img {
    max-width: 74%;
}

.product-card-copy h3 {
    max-width: 470px;
    margin: 5px 0 20px;
    color: var(--black);
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.check-list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 25px;
    color: #565656;
    font-size: 15px;
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--black);
    content: "✓";
    font-weight: 800;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 800;
}

.arrow-link span {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
}

.process-section {
    background: var(--black);
}

.compact-heading {
    max-width: 850px;
    margin-bottom: 64px;
}

.process-section .kicker,
.cloud-section .kicker {
    color: var(--yellow);
}

.process-section h2,
.cloud-section h2 {
    color: var(--white);
}

.process-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.process-grid li {
    min-height: 220px;
    padding: 27px 28px;
    border-top: 1px solid #4b4b4b;
    border-right: 1px solid #4b4b4b;
}

.process-grid li:last-child {
    border-right: 0;
}

.process-grid span {
    display: block;
    margin-bottom: 48px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
}

.process-grid strong {
    display: block;
    color: var(--white);
    font-size: 22px;
}

.process-grid p {
    margin: 9px 0 0;
    color: #a8a8a8;
    font-size: 14px;
}

.detail-section {
    overflow: hidden;
}

.detail-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 0.92fr;
    gap: 90px;
}

.detail-media {
    position: relative;
    min-height: 640px;
    background: var(--soft);
}

.detail-media::before {
    position: absolute;
    right: 12px;
    bottom: 15px;
    left: 12px;
    height: 180px;
    background: url("grafiken/S-waben-f9f9f9.png") center bottom / 100% auto no-repeat;
    content: "";
    opacity: 0.8;
}

.detail-media > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 640px;
    padding: 45px;
    object-fit: contain;
}

.detail-stat {
    position: absolute;
    z-index: 2;
    right: -30px;
    bottom: 36px;
    display: flex;
    width: 215px;
    padding: 19px 23px;
    background: var(--yellow);
    flex-direction: column;
}

.detail-stat strong {
    color: var(--black);
    font-size: 27px;
}

.detail-stat span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.detail-copy .section-number,
.force-heading .section-number {
    margin-bottom: 28px;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.detail-copy > .lead {
    margin: 25px 0 33px;
}

.feature-list {
    display: grid;
    margin-bottom: 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.feature-list > div {
    padding: 19px 22px 19px 0;
    border-top: 1px solid var(--line);
}

.feature-list > div:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

.feature-list strong {
    font-size: 15px;
}

.feature-list p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.field-gallery {
    padding-top: 0;
}

.gallery-grid {
    display: grid;
    min-height: 610px;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 13px;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid .gallery-wide {
    grid-row: 1 / 3;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.025);
}

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

.force-heading {
    display: grid;
    align-items: end;
    margin-bottom: 55px;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
}

.force-heading .lead {
    margin: 0 0 5px;
}

.force-content {
    display: grid;
    margin-bottom: 18px;
    background: var(--white);
    grid-template-columns: 0.78fr 1.22fr;
}

.force-sensor {
    display: flex;
    min-height: 560px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.force-sensor img {
    max-width: 62%;
    max-height: 460px;
    object-fit: contain;
}

.force-benefits {
    padding: 20px 48px;
}

.force-benefits article {
    display: grid;
    padding: 35px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 48px 1fr;
}

.force-benefits article:last-child {
    border-bottom: 0;
}

.force-benefits span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.force-benefits h3 {
    margin: 0;
    color: var(--black);
    font-size: 24px;
}

.force-benefits p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.force-benefits h3,
.force-benefits p {
    grid-column: 2;
}

.action-image {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.action-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 370px;
    padding: 24px 28px;
    background: var(--yellow);
    flex-direction: column;
}

.action-caption strong {
    font-size: 17px;
}

.action-caption span {
    font-size: 12px;
}

.cloud-section {
    color: var(--white);
    background: var(--black);
}

.section-heading.light p:last-child {
    color: #a9a9a9;
}

.cloud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cloud-card {
    overflow: hidden;
    color: var(--black);
    background: var(--white);
}

.cloud-image {
    height: 300px;
    padding: 24px;
    background: #ececea;
}

.cloud-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cloud-card > div:last-child {
    padding: 31px 35px 36px;
}

.cloud-card > div:last-child > span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 9px;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cloud-card h3 {
    margin: 0;
    font-size: 27px;
    letter-spacing: -0.03em;
}

.cloud-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.value-section {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.value-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.value-list article {
    display: grid;
    padding: 33px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 70px 1fr;
}

.value-list article:last-child {
    border-bottom: 1px solid var(--line);
}

.value-list article > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.value-list h3 {
    margin: 0;
    color: var(--black);
    font-size: 24px;
}

.value-list p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.video-section {
    padding-top: 0;
}

.video-poster {
    position: relative;
    display: block;
    width: 100%;
    height: 620px;
    padding: 0;
    overflow: hidden;
    background: var(--black);
    border: 0;
    cursor: pointer;
}

.video-poster > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
    transition: transform 600ms ease, filter 300ms ease;
}

.video-poster:hover > img {
    filter: brightness(0.6);
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 22px;
    text-align: left;
}

.large-play {
    display: inline-flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: var(--black);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 24px;
}

.video-overlay small,
.video-overlay strong {
    display: block;
}

.video-overlay small {
    margin-bottom: 3px;
    color: #dedede;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.video-overlay strong {
    font-size: 25px;
}

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

.references-section .compact-heading h2 {
    color: var(--black);
}

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

.reference-card {
    display: flex;
    min-height: 410px;
    padding: 36px;
    background: var(--white);
    border-bottom: 5px solid transparent;
    flex-direction: column;
    transition: border-color 180ms ease, transform 180ms ease;
}

.reference-card:hover {
    border-bottom-color: var(--yellow);
    transform: translateY(-5px);
}

.reference-brand {
    min-height: 72px;
    color: var(--black);
    font-size: 33px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.reference-brand-small {
    font-size: 20px;
    letter-spacing: 0;
}

.reference-summary {
    margin: 20px 0 32px;
    color: #404040;
    font-size: 18px;
    line-height: 1.6;
}

.reference-summary::before {
    display: block;
    width: 42px;
    height: 5px;
    margin-bottom: 23px;
    background: var(--yellow);
    content: "";
}

.reference-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

.contact-section {
    padding: 120px 0;
    background: var(--yellow);
}

.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.contact-copy > p:not(.kicker) {
    max-width: 480px;
    margin: 27px 0;
    font-size: 18px;
}

.contact-direct {
    display: flex;
    align-items: flex-start;
    margin-top: 34px;
    flex-direction: column;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
}

.contact-form {
    padding: 42px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

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

.contact-form label > span,
.contact-form legend {
    display: block;
    margin-bottom: 7px;
    color: #4c4c4c;
    font-size: 12px;
    font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    margin-bottom: 19px;
    padding: 12px 2px;
    color: var(--black);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;
    outline: 0;
    transition: border-color 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--black);
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form fieldset {
    margin: 2px 0 24px;
    padding: 0;
    border: 0;
}

.choice-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.choice-row label {
    cursor: pointer;
}

.choice-row input {
    position: absolute;
    opacity: 0;
}

.choice-row label span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    margin: 0;
    padding: 8px 13px;
    background: var(--soft);
    border: 1px solid #e3e3e3;
    font-size: 12px;
}

.choice-row input:checked + span {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
}

.privacy-check {
    display: grid;
    align-items: start;
    margin: 3px 0 22px;
    grid-template-columns: 20px 1fr;
}

.privacy-check input {
    margin-top: 3px;
    accent-color: var(--black);
}

.privacy-check span {
    margin: 0 !important;
    font-weight: 500 !important;
    line-height: 1.45;
}

.form-submit {
    width: 100%;
    justify-content: space-between;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 22px;
    margin: 16px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.form-status.is-success {
    color: #176b36;
}

.form-status.is-error {
    color: #a21e1e;
}

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

.site-footer {
    color: #c9c9c9;
    background: var(--black);
}

.footer-main {
    display: grid;
    padding-top: 70px;
    padding-bottom: 65px;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
}

.footer-logo {
    width: 145px;
    height: auto;
    margin-bottom: 20px;
    filter: invert(1);
}

@media (min-width: 1700px) {
    .hero-grid {
        grid-template-columns: 0.76fr 1.24fr;
        gap: 82px;
    }

    .hero-copy {
        padding-left: 18px;
    }
}

.footer-main p,
.footer-main address {
    margin: 0;
    color: #888888;
    font-size: 13px;
    font-style: normal;
}

.footer-main strong {
    display: block;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-main > div:not(:first-child) a {
    display: block;
    margin: 8px 0;
    color: #999999;
    font-size: 13px;
}

.footer-main a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 23px;
    padding-bottom: 23px;
    border-top: 1px solid #303030;
    color: #696969;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.video-dialog {
    width: min(1100px, calc(100% - 40px));
    max-width: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}

.video-dialog::backdrop {
    background: rgba(0, 0, 0, 0.88);
}

.video-dialog-inner {
    position: relative;
}

.video-dialog video {
    display: block;
    width: 100%;
    max-height: 82vh;
    background: #000000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    z-index: 2;
    top: -48px;
    right: 0;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 34px;
    cursor: pointer;
}

/* BEGIN: Sales partners dialog */
.partners-dialog {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    max-height: 88vh;
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border: 0;
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.48);
}

.partners-dialog::backdrop {
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(5px);
}

.partners-dialog-shell {
    display: flex;
    max-height: 88vh;
    flex-direction: column;
}

.partners-dialog-header {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    justify-content: space-between;
    padding: 34px 88px 32px 40px;
    color: var(--white);
    background: var(--black);
    border-top: 5px solid var(--yellow);
}

.partners-dialog-header::after {
    position: absolute;
    right: 39px;
    bottom: 0;
    width: 96px;
    height: 5px;
    background: var(--yellow);
    content: "";
}

.partners-dialog-header .kicker {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.partners-dialog-header h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.partners-dialog-header > div > p:last-child {
    max-width: 620px;
    margin: 19px 0 0;
    color: #b8b8b8;
    font-size: 15px;
}

.partners-close {
    position: absolute;
    top: 24px;
    right: 28px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    color: var(--white);
    background: #252525;
    border: 1px solid #3a3a3a;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.partners-close:hover,
.partners-close:focus-visible {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
    transform: rotate(90deg);
}

.partners-dialog-content {
    padding: 28px;
    overflow-y: auto;
    background: #f2f2f0;
}

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

.partner-card {
    position: relative;
    display: flex;
    min-height: 215px;
    padding: 25px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e2df;
    flex-direction: column;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.partner-card:hover {
    border-color: #cfcfca;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-region {
    display: flex;
    min-height: 31px;
    align-items: center;
    gap: 9px;
    color: #5b5b5b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.partner-region svg {
    width: 25px;
    height: 25px;
    padding: 5px;
    overflow: visible;
    background: var(--yellow);
    border-radius: 50%;
    flex: 0 0 25px;
    fill: none;
    stroke: var(--black);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.partner-card h3 {
    margin: 18px 0 5px;
    color: var(--black);
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.partner-card > p {
    margin: 0 0 19px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.partner-links {
    display: flex;
    margin-top: auto;
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
}

.partner-links a {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.partner-links a:first-child {
    text-decoration: underline;
    text-decoration-color: #c2c2c2;
    text-underline-offset: 3px;
}

.partner-links a:hover,
.partner-links a:focus-visible {
    color: #8c8200;
}

.partner-links a:last-child span {
    color: #b0a500;
}

.partner-card-netbee {
    border-color: var(--yellow-deep);
    background: linear-gradient(145deg, #ffffff 65%, #fffbd1 100%);
}

.partners-dialog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 18px 22px;
    color: var(--white);
    background: var(--black);
    font-size: 13px;
}

.partners-dialog-footer span {
    color: #a9a9a9;
}

.partners-dialog-footer a {
    font-weight: 800;
}

.partners-dialog-footer a strong {
    margin-left: 8px;
    color: var(--yellow);
}

.partners-dialog-footer a:hover,
.partners-dialog-footer a:focus-visible {
    color: var(--yellow);
}

@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .partners-dialog {
        width: calc(100% - 20px);
        max-height: 94vh;
    }

    .partners-dialog-shell {
        max-height: 94vh;
    }

    .partners-dialog-header {
        padding: 27px 66px 25px 24px;
    }

    .partners-dialog-header::after {
        right: 23px;
        width: 65px;
    }

    .partners-dialog-header h2 {
        font-size: 35px;
    }

    .partners-dialog-header > div > p:last-child {
        margin-top: 14px;
        font-size: 13px;
    }

    .partners-close {
        top: 18px;
        right: 17px;
        width: 39px;
        height: 39px;
    }

    .partners-dialog-content {
        padding: 12px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .partner-card {
        min-height: 198px;
        padding: 22px;
    }

    .partners-dialog-footer {
        align-items: flex-start;
        gap: 5px;
        flex-direction: column;
    }
}
/* END: Sales partners dialog */

/* BEGIN: Downloads dialog */
.downloads-dialog {
    width: min(1040px, calc(100% - 40px));
}

.downloads-dialog-header {
    background:
        linear-gradient(105deg, rgba(255, 237, 0, 0.06), transparent 45%),
        var(--black);
}

.downloads-dialog-content {
    padding: 30px;
}

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

.download-card {
    position: relative;
    display: flex;
    min-height: 345px;
    padding: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e0e0dc;
    flex-direction: column;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--yellow);
    content: "";
}

.download-card:hover {
    border-color: #cacac5;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.download-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.language-code {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.download-card-top svg {
    width: 37px;
    height: 43px;
    fill: none;
    stroke: #b5b5b0;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.download-language {
    margin: 25px 0 6px;
    color: #6c6c6c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.download-card h3 {
    margin: 0;
    color: var(--black);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.download-meta {
    margin: 12px 0 24px;
    color: var(--muted);
    font-size: 12px;
}

.download-actions {
    display: grid;
    margin-top: auto;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.download-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 11px 0 0;
    font-size: 11px;
    font-weight: 800;
    transition: color 180ms ease;
}

.download-actions a + a {
    padding-right: 0;
    padding-left: 11px;
    border-left: 1px solid var(--line);
}

.download-actions a span {
    color: #a69b00;
    font-size: 16px;
}

.download-actions a:hover,
.download-actions a:focus-visible {
    color: #8c8200;
}

.downloads-note {
    display: flex;
    align-items: center;
    margin-top: 14px;
    padding: 17px 20px;
    color: #acacac;
    background: var(--black);
    gap: 12px;
    font-size: 12px;
}

.downloads-note svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: var(--yellow);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 760px) {
    .downloads-dialog-content {
        padding: 12px;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .download-card {
        min-height: 305px;
        padding: 23px;
    }

    .downloads-note {
        align-items: flex-start;
    }
}
/* END: Downloads dialog */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .main-navigation {
        gap: 20px;
    }

    .hero-grid {
        gap: 35px;
    }

    .detail-grid,
    .contact-grid {
        gap: 55px;
    }

    .product-card {
        padding-inline: 32px;
    }
}

@media (max-width: 900px) {
    .site-header,
    .site-header.is-scrolled {
        height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 45px 24px;
        visibility: hidden;
        background: var(--white);
        flex-direction: column;
        font-size: 21px;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .main-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation .button {
        margin-top: 12px;
    }

    .hero {
        padding-top: 118px;
    }

    .hero-grid,
    .detail-grid,
    .force-heading,
    .value-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 52px;
    }

    .hero-frame img {
        min-height: 450px;
    }

    .proof-strip .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .proof-names {
        justify-content: flex-start;
    }

    .system-grid,
    .cloud-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid li:nth-child(2) {
        border-right: 0;
    }

    .detail-media {
        width: calc(100% - 25px);
    }

    .detail-grid,
    .force-heading,
    .value-grid,
    .contact-grid {
        gap: 50px;
    }

    .force-heading .lead {
        max-width: 650px;
    }

    .value-heading {
        position: static;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }

    .reference-card {
        min-height: 330px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    body {
        font-size: 16px;
    }

    .section,
    .contact-section {
        padding: 82px 0;
    }

    .brand {
        width: 126px;
    }

    .hero {
        min-height: auto;
        padding: 105px 0 65px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .text-button {
        justify-content: center;
    }

    .hero-points {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-frame {
        border-width: 5px;
        border-bottom-width: 8px;
    }

    .hero-frame img {
        min-height: 390px;
        object-position: 56% center;
    }

    .hero-badge {
        right: -7px;
        bottom: -37px;
        width: 225px;
    }

    .proof-strip {
        padding: 28px 0;
    }

    .proof-names {
        gap: 17px 24px;
        font-size: 15px;
    }

    .section-heading {
        margin-bottom: 42px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-heading h2,
    .compact-heading h2,
    .detail-copy h2,
    .force-heading h2,
    .value-heading h2,
    .contact-section h2 {
        font-size: 40px;
    }

    .section-heading p:last-child,
    .lead {
        font-size: 16px;
    }

    .product-card {
        min-height: 690px;
        padding: 28px 24px 32px;
        grid-template-rows: 66px 260px auto;
    }

    .product-card-copy h3 {
        font-size: 27px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid li,
    .process-grid li:nth-child(2) {
        min-height: 185px;
        border-right: 0;
    }

    .process-grid span {
        margin-bottom: 30px;
    }

    .detail-media,
    .detail-media > img {
        min-height: 450px;
        height: 450px;
    }

    .detail-media > img {
        padding: 25px;
    }

    .detail-stat {
        right: -22px;
        width: 190px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-list > div:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .gallery-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 420px 260px 260px;
    }

    .gallery-grid .gallery-wide {
        grid-row: auto;
    }

    .force-content {
        grid-template-columns: 1fr;
    }

    .force-sensor {
        min-height: 470px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .force-benefits {
        padding: 10px 25px;
    }

    .force-benefits article {
        grid-template-columns: 38px 1fr;
    }

    .action-image {
        height: 390px;
    }

    .action-caption {
        width: calc(100% - 30px);
    }

    .cloud-image {
        height: 240px;
        padding: 15px;
    }

    .cloud-card > div:last-child {
        padding: 25px;
    }

    .value-list article {
        grid-template-columns: 45px 1fr;
    }

    .video-poster {
        height: 450px;
    }

    .video-overlay {
        align-items: center;
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .large-play {
        width: 68px;
        height: 68px;
    }

    .reference-card {
        min-height: 360px;
        padding: 29px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .choice-row {
        align-items: stretch;
        flex-direction: column;
    }

    .choice-row label span {
        width: 100%;
    }

    .footer-main {
        padding-top: 55px;
        padding-bottom: 45px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* START: Hero proportions v3 */
.hero {
    min-height: 0;
    padding: 118px 0 56px;
}

.hero-grid {
    min-height: 0;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
}

.hero-copy {
    padding-bottom: 0;
}

.hero h1 {
    font-size: clamp(60px, 4.8vw, 90px);
    line-height: 0.95;
}

.hero-lead {
    max-width: 660px;
    margin: 25px 0 27px;
    font-size: 20px;
}

.hero-media {
    align-self: center;
}

.hero-frame img {
    width: 100%;
    height: 510px;
    min-height: 0;
    object-fit: cover;
    object-position: center 52%;
}

@media (min-width: 1700px) {
    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 72px;
    }

    .hero-copy {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 105px 0 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-frame img {
        height: 440px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 98px 0 58px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-frame img {
        height: 360px;
        min-height: 0;
        object-position: 56% center;
    }
}
/* END: Hero proportions v3 */

/* START: InnoTrans announcement */
.event-bar {
    position: fixed;
    z-index: 1100;
    top: 5px;
    right: 0;
    left: 0;
    height: 44px;
    overflow: hidden;
    color: var(--black);
    background: linear-gradient(110deg, #f0c900 0%, #ffed00 32%, #fff58a 50%, #ffed00 68%, #f0c900 100%);
    background-size: 220% 100%;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    animation: event-bar-gradient 9s ease-in-out infinite;
}

.event-bar::after {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 420px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 70%);
    content: "";
    opacity: 0.45;
    pointer-events: none;
    transform: translateX(-50%);
}

.event-bar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.event-bar p {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 20px;
    font-size: 12.5px;
    letter-spacing: 0.01em;
    animation: event-text-pulse 3.6s ease-in-out infinite;
}

.event-session {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    white-space: nowrap;
}

.event-session svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.event-session strong {
    letter-spacing: 0.02em;
}

.event-bar .event-session strong::before {
    display: none;
}

.event-bar p strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.event-bar p strong::before {
    width: 7px;
    height: 7px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(18, 18, 18, 0.42);
    content: "";
    animation: event-dot-pulse 2.4s ease-out infinite;
}

.event-bar p span {
    position: relative;
}

.event-bar p span::before {
    margin-right: 20px;
    color: rgba(0, 0, 0, 0.35);
    content: "|";
}

@keyframes event-bar-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes event-text-pulse {
    0%, 100% {
        opacity: 0.82;
    }

    50% {
        opacity: 1;
    }
}

@keyframes event-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 18, 18, 0.42);
    }

    70%, 100% {
        box-shadow: 0 0 0 7px rgba(18, 18, 18, 0);
    }
}

.site-header {
    top: 49px;
}

.hero {
    padding-top: 167px;
}

section[id] {
    scroll-margin-top: 130px;
}

@media (max-width: 1050px) {
    .event-bar p {
        gap: 10px;
        font-size: 10.5px;
    }

    .event-bar p span::before {
        margin-right: 10px;
    }

    .event-booth span:last-child {
        display: none;
    }
}

@media (max-width: 700px) {
    .event-bar {
        height: 76px;
    }

    .event-bar-inner {
        width: min(calc(100% - 24px), var(--container));
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .event-bar p {
        display: flex;
        font-size: 10px;
        line-height: 1.25;
        text-align: center;
    }

    .event-bar p strong,
    .event-bar p span {
        display: inline;
    }

    .event-bar p strong::before {
        display: inline-block;
        margin-right: 7px;
        vertical-align: 1px;
    }

    .event-bar p span::before {
        margin: 0 5px;
    }

    .event-booth span:last-child {
        display: none;
    }

    .event-session {
        padding: 4px 8px;
        font-size: 9.5px !important;
        white-space: normal;
    }

    .event-session svg {
        width: 14px;
        height: 14px;
    }

    .site-header {
        top: 81px;
    }

    .main-navigation {
        top: 153px;
    }

    .hero {
        padding-top: 170px;
    }

    section[id] {
        scroll-margin-top: 167px;
    }
}
/* END: InnoTrans announcement */

/* START: Made in Austria badge */
.hero-badge {
    width: 280px;
    padding: 18px 29px 18px 23px;
    overflow: hidden;
}

.hero-badge::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(
        to bottom,
        #c8102e 0%,
        #c8102e 33.333%,
        #ffffff 33.333%,
        #ffffff 66.666%,
        #c8102e 66.666%,
        #c8102e 100%
    );
    content: "";
    opacity: 0.88;
}

.hero-badge strong {
    letter-spacing: 0.01em;
}

.hero-badge span {
    line-height: 1.5;
}

.hero-badge span b {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .hero-badge {
        width: 235px;
        padding: 16px 24px 16px 18px;
    }
}
/* END: Made in Austria badge */

/* START: Product headings above cards */
.system-grid {
    grid-template-areas:
        "brake-title force-title"
        "brake-card force-card";
    column-gap: 28px;
    row-gap: 20px;
}

.product-column-title {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 6px 17px;
    border-bottom: 1px solid #d5d5d5;
    gap: 24px;
}

.product-column-title h3 {
    margin: 0;
    color: var(--black);
    font-size: clamp(38px, 3.2vw, 54px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 0.9;
}

.product-column-title h3 strong {
    font-weight: 900;
}

.product-column-title > span {
    padding-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-align: right;
    text-transform: uppercase;
}

.product-column-title-brake {
    grid-area: brake-title;
}

.product-column-title-force {
    grid-area: force-title;
}

.product-card-brake {
    grid-area: brake-card;
}

.product-card-force {
    grid-area: force-card;
}

.product-card-logo {
    display: none;
}

.product-card {
    min-height: 680px;
    grid-template-rows: 315px auto;
}

@media (max-width: 900px) {
    .system-grid {
        grid-template-areas:
            "brake-title"
            "brake-card"
            "force-title"
            "force-card";
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .product-column-title-force {
        margin-top: 34px;
    }
}

@media (max-width: 640px) {
    .product-column-title {
        align-items: flex-start;
        padding-inline: 3px;
        flex-direction: column;
        gap: 8px;
    }

    .product-column-title h3 {
        font-size: 42px;
    }

    .product-column-title > span {
        padding-bottom: 0;
        text-align: left;
    }

    .product-card {
        min-height: 620px;
        grid-template-rows: 260px auto;
    }
}
/* END: Product headings above cards */

/* START: Premium digital workflow */
.process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 237, 0, 0.075), transparent 26%),
        linear-gradient(135deg, #101010 0%, #151515 52%, #0d0d0d 100%);
}

.process-section::before {
    position: absolute;
    right: -110px;
    bottom: -30px;
    width: 760px;
    height: 235px;
    background: url("grafiken/S-waben-f9f9f9.png") center / contain no-repeat;
    content: "";
    filter: invert(1);
    opacity: 0.035;
    pointer-events: none;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-heading {
    display: grid;
    max-width: none;
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
    gap: 90px;
}

.process-intro {
    margin: 0 0 5px;
    padding-left: 23px;
    color: #a8a8a8;
    border-left: 3px solid var(--yellow);
    font-size: 16px;
    line-height: 1.65;
}

.process-grid {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
}

.process-grid li {
    position: relative;
    display: flex;
    min-height: 330px;
    padding: 27px 27px 24px;
    overflow: visible;
    background: linear-gradient(145deg, rgba(34, 34, 34, 0.96), rgba(22, 22, 22, 0.98));
    border: 1px solid #343434;
    border-radius: 2px;
    flex-direction: column;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-grid li:hover {
    border-color: rgba(255, 237, 0, 0.58);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    transform: translateY(-7px);
}

.process-grid li:not(:last-child)::after {
    position: absolute;
    z-index: 3;
    top: 57px;
    right: -19px;
    width: 20px;
    height: 2px;
    background: var(--yellow);
    content: "";
}

.process-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 41px;
}

.process-grid .process-icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--black);
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255, 237, 0, 0.07);
}

.process-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.process-grid .process-number {
    display: block;
    margin-bottom: 0;
    color: #626262;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-card-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: 25px;
    letter-spacing: -0.025em;
}

.process-card-copy p {
    margin: 10px 0 25px;
    color: #a8a8a8;
    font-size: 14px;
    line-height: 1.6;
}

.process-grid li small {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    color: #d2d2d2;
    border-top: 1px solid #3a3a3a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.process-grid li small::before {
    width: 6px;
    height: 6px;
    margin-right: 9px;
    background: var(--yellow);
    border-radius: 50%;
    content: "";
}

@media (max-width: 1000px) {
    .process-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process-intro {
        max-width: 620px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid li {
        min-height: 290px;
    }

    .process-heading {
        margin-bottom: 44px;
    }
}
/* END: Premium digital workflow */

/* START: BrakeBEE image information bar */
.detail-media {
    display: flex;
    min-height: 0;
    flex-direction: column;
}

.detail-media > img {
    width: 100%;
    height: 558px;
    min-height: 0;
    flex: 0 0 auto;
}

.detail-stat {
    position: relative;
    z-index: 3;
    right: auto;
    bottom: auto;
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    padding: 16px 25px;
    color: var(--white);
    background: linear-gradient(100deg, #111111 0%, #252525 100%);
    border-top: 4px solid var(--yellow);
    box-shadow: none;
    flex-direction: row;
}

.detail-stat strong {
    margin-right: 22px;
    padding-right: 22px;
    color: var(--yellow);
    border-right: 1px solid #4a4a4a;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.detail-stat span {
    max-width: none;
    margin-top: 0;
    color: #dddddd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.45;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .detail-media > img {
        height: 520px;
    }
}

@media (max-width: 640px) {
    .detail-media,
    .detail-media > img {
        min-height: 0;
    }

    .detail-media > img {
        height: 410px;
        padding: 22px;
    }

    .detail-stat {
        min-height: 68px;
        padding: 15px 19px;
    }

    .detail-stat strong {
        margin-right: 15px;
        padding-right: 15px;
        font-size: 25px;
    }

    .detail-stat span {
        font-size: 9px;
    }
}
/* END: BrakeBEE image information bar */

/* START: Cloud and tablet presentation */
.cloud-card {
    position: relative;
    border: 1px solid #2f2f2f;
    transition: border-color 220ms ease, transform 220ms ease;
}

.cloud-card:hover {
    border-color: rgba(255, 237, 0, 0.55);
    transform: translateY(-5px);
}

.cloud-image {
    position: relative;
    display: flex;
    height: 350px;
    align-items: center;
    justify-content: center;
    padding: 26px;
    overflow: hidden;
}

.cloud-image-config {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 237, 0, 0.3), transparent 23%),
        linear-gradient(145deg, #eeeeeb 0%, #d9d9d5 100%);
}

.cloud-symbol {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 24px;
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cloud-symbol svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.cloud-browser {
    position: relative;
    width: 84%;
    padding-top: 25px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #c5c5c2;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.cloud-browser-bar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 25px;
    align-items: center;
    padding: 0 10px;
    background: #262626;
    gap: 5px;
}

.cloud-browser-bar span {
    width: 6px;
    height: 6px;
    background: #777777;
    border-radius: 50%;
}

.cloud-browser-bar span:first-child {
    background: var(--yellow);
}

.cloud-browser img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.drag-drop-badge {
    position: absolute;
    z-index: 3;
    right: 23px;
    bottom: 20px;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 13px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drag-drop-badge svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: none;
    stroke: var(--yellow);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cloud-image-tablet {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 237, 0, 0.22), transparent 25%),
        linear-gradient(145deg, #e7e7e4 0%, #cececa 100%);
}

.tablet-device {
    position: relative;
    width: min(82%, 465px);
    aspect-ratio: 1.47 / 1;
    margin: 0 auto;
    padding: 17px 26px;
    background: linear-gradient(145deg, #252525, #080808);
    border: 2px solid #3c3c3c;
    border-radius: 24px;
    box-shadow: 0 25px 48px rgba(0, 0, 0, 0.27);
}

.tablet-device::after {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 4px;
    height: 42px;
    background: #3d3d3d;
    border-radius: 3px;
    content: "";
    transform: translateY(-50%);
}

.tablet-camera {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 5px;
    height: 5px;
    background: #555555;
    border-radius: 50%;
    transform: translateY(-50%);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: 4px;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cloud-card-copy {
    padding: 31px 35px 34px !important;
}

.cloud-card-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.cloud-card-label span {
    display: inline-flex;
    padding: 5px 9px;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cloud-card-label svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: var(--black);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.cloud-card-copy h3 {
    margin: 0;
    color: var(--black);
    font-size: 28px;
    letter-spacing: -0.035em;
}

.cloud-card-copy > p {
    min-height: 48px;
    margin: 10px 0 21px;
    color: var(--muted);
    font-size: 14px;
}

.cloud-feature-list {
    display: flex;
    margin: 0;
    padding: 17px 0 0;
    border-top: 1px solid var(--line);
    gap: 11px;
    flex-wrap: wrap;
    list-style: none;
}

.cloud-feature-list li {
    position: relative;
    padding-left: 17px;
    color: #3e3e3e;
    font-size: 11px;
    font-weight: 700;
}

.cloud-feature-list li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    content: "";
}

@media (max-width: 900px) {
    .cloud-image {
        height: 330px;
    }

    .cloud-card-copy > p {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .cloud-image {
        height: 275px;
        padding: 17px;
    }

    .cloud-browser {
        width: 91%;
    }

    .cloud-symbol {
        top: 14px;
        left: 14px;
        width: 51px;
        height: 51px;
    }

    .cloud-symbol svg {
        width: 27px;
        height: 27px;
    }

    .drag-drop-badge {
        right: 14px;
        bottom: 13px;
    }

    .tablet-device {
        width: min(96%, 350px);
        padding: 12px 20px;
        border-radius: 17px;
    }

    .cloud-card-copy {
        padding: 25px !important;
    }

    .cloud-card-copy h3 {
        font-size: 25px;
    }

    .cloud-feature-list {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* END: Cloud and tablet presentation */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
