/* =========================================================
   ANTON LANZ
   LEIMBINDER / BRETTSCHICHTHOLZ LANDINGPAGE
========================================================= */


/* =========================================================
   1. DESIGN SYSTEM
========================================================= */

:root {
    --orange: #E17A19;
    --orange-hover: #C96812;
    --orange-focus: rgba(225, 122, 25, 0.18);

    --anthrazit: #242422;
    --anthrazit-hell: #30302e;

    --schwarz: #111111;
    --weiss: #ffffff;

    --hellgrau: #f3f3f1;
    --mittelgrau: #e8e8e5;
    --linie: #d8d8d4;

    --text: #202020;
    --text-grau: #686865;
    --text-hell: #ffffff;
    --text-dunkel-hell: #d0d0cc;

    --container: 1280px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--weiss);

    font-family: Arial, Helvetica, sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea,
a {
    outline-offset: 3px;
}

.container {
    width: min(var(--container), 88%);
    margin: 0 auto;
}


/* =========================================================
   3. ANKER
========================================================= */

#vorteile,
#einsatzbereiche,
#projekt,
#faq,
#kontakt {
    scroll-margin-top: 40px;
}


/* =========================================================
   4. HEADER
========================================================= */

.header {
    position: relative;
    z-index: 50;

    width: 100%;
    padding: 27px 0;

    background: var(--weiss);
    border-bottom: 1px solid var(--linie);
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   5. LOGO
========================================================= */

.logo {
    flex-shrink: 0;

    color: var(--schwarz);
    text-decoration: none;

    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.5px;
}

.logo span {
    display: block;

    margin-top: 7px;

    color: var(--text-grau);

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   6. NAVIGATION
========================================================= */

nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

nav a {
    position: relative;

    color: var(--text);
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

nav a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}

nav a:not(.nav-cta):hover {
    color: var(--orange);
}

nav a:not(.nav-cta):hover::after {
    width: 100%;
}


/* =========================================================
   7. NAVIGATION CTA
========================================================= */

.nav-cta {
    padding: 17px 27px;

    color: var(--weiss);
    background: var(--orange);

    border: 1px solid var(--orange);

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    color: var(--weiss);

    background: var(--orange-hover);
    border-color: var(--orange-hover);

    transform: translateY(-1px);
}


/* =========================================================
   8. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 650px;
    height: 76vh;

    display: flex;
    align-items: center;

    background-image: url("bilder/brettschichtholz-leimbinder-holztragwerk-halle.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.52) 38%,
            rgba(0, 0, 0, 0.18) 70%,
            rgba(0, 0, 0, 0.04) 100%
        );
}


/*
   KORREKTUR:
   Hero-Inhalt auf Desktop weiter nach links.
*/

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 940px;

    transform: translateX(-100px);
}

.hero-label {
    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 2.7px;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;

    margin-top: 19px;

    color: var(--weiss);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(55px, 5.2vw, 82px);
    font-weight: 700;
    line-height: 1.02;

    letter-spacing: -2.8px;
}

.hero-text {
    max-width: 720px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;
}


/* =========================================================
   9. BUTTONS
========================================================= */

.button {
    display: inline-block;

    padding: 18px 27px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--weiss);

    background: var(--orange);
    border: 1px solid var(--orange);
}

.button-primary:hover {
    color: var(--weiss);

    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

.button-secondary {
    color: var(--weiss);

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.button-secondary:hover {
    color: var(--schwarz);

    background: var(--weiss);
    border-color: var(--weiss);
}

.button-dark {
    margin-top: 25px;

    color: var(--weiss);

    background: var(--orange);
    border: 1px solid var(--orange);
}

.button-dark:hover {
    color: var(--weiss);

    background: var(--orange-hover);
    border-color: var(--orange-hover);
}


/* =========================================================
   10. SECTION LABEL
========================================================= */

.section-label {
    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   11. SECTION HEADERS
========================================================= */

.section-header {
    max-width: 970px;

    margin-bottom: 65px;
}

.section-header h2,
.ablauf-header h2 {
    max-width: 900px;

    margin-top: 15px;

    color: var(--schwarz);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(43px, 4.4vw, 68px);
    font-weight: 700;
    line-height: 1.04;

    letter-spacing: -2.3px;
}

.section-intro {
    max-width: 760px;

    margin-top: 25px;

    color: var(--text-grau);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   12. VORTEILSLEISTE
========================================================= */

.vorteilsleiste {
    background: var(--weiss);

    border-bottom: 1px solid var(--linie);
}

.vorteilsleiste-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.vorteil-item {
    min-height: 155px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 30px 26px;

    border-right: 1px solid var(--linie);
}

.vorteil-item:first-child {
    border-left: 1px solid var(--linie);
}

.vorteil-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);
}

.vorteil-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vorteil-text {
    min-width: 0;
}

.vorteil-item strong {
    display: block;

    margin-bottom: 7px;

    color: var(--schwarz);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.vorteil-item span {
    display: block;

    color: var(--text-grau);

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   13. PRODUKTDETAIL
========================================================= */

.produkt-detail {
    padding: 145px 0;

    color: var(--weiss);

    background: var(--anthrazit);
}

.produkt-detail-grid {
    display: grid;

    grid-template-columns: 1.08fr 0.92fr;

    align-items: center;

    gap: 100px;
}

.produkt-detail-image {
    height: 700px;

    overflow: hidden;

    background: var(--anthrazit-hell);
}

.produkt-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.produkt-detail-image:hover img {
    transform: scale(1.02);
}

.produkt-detail-content .section-label {
    color: var(--orange);
}

.produkt-detail-content h2 {
    margin-top: 16px;

    color: var(--weiss);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(43px, 4.2vw, 66px);
    font-weight: 700;
    line-height: 1.04;

    letter-spacing: -2.2px;
}

.produkt-detail-lead {
    margin-top: 30px;

    color: var(--weiss);

    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
}

.produkt-detail-text {
    margin-top: 18px;

    color: var(--text-dunkel-hell);

    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   14. DETAILPUNKTE
========================================================= */

.detail-punkte {
    margin-top: 38px;

    border-top: 1px solid #4a4a47;
}

.detail-punkt {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 15px;

    padding: 22px 0;

    border-bottom: 1px solid #4a4a47;
}

.detail-punkt > span {
    padding-top: 2px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.detail-punkt strong {
    display: block;

    margin-bottom: 6px;

    color: var(--weiss);

    font-size: 16px;
    font-weight: 700;
}

.detail-punkt p {
    color: var(--text-dunkel-hell);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   15. KOMPETENZ BUTTON
========================================================= */

.kompetenz-button {
    display: inline-block;

    margin-top: 31px;
    padding: 18px 27px;

    color: var(--weiss);

    background: var(--orange);
    border: 1px solid var(--orange);

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.kompetenz-button:hover {
    color: var(--weiss);

    background: var(--orange-hover);
    border-color: var(--orange-hover);

    transform: translateY(-2px);
}


/* =========================================================
   16. TECHNISCHE DATEN
========================================================= */

.technische-daten {
    padding: 145px 0;

    background: var(--weiss);
}

.technik-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--linie);
    border-bottom: 1px solid var(--linie);
}

.technik-card {
    min-height: 340px;

    padding: 42px 31px;

    border-right: 1px solid var(--linie);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.technik-card:first-child {
    border-left: 1px solid var(--linie);
}

.technik-card:hover {
    background: var(--hellgrau);
}

.technik-nummer {
    display: block;

    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.technik-card h3 {
    margin-top: 29px;

    color: var(--schwarz);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.technik-card p {
    margin-top: 18px;

    color: var(--text-grau);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   17. TECHNIK CTA
========================================================= */

.technik-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    margin-top: 50px;
    padding: 38px 41px;

    background: var(--hellgrau);

    border-left: 5px solid var(--orange);
}

.technik-cta strong {
    display: block;

    color: var(--schwarz);

    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.technik-cta p {
    margin-top: 9px;

    color: var(--text-grau);

    font-size: 16px;
    line-height: 1.7;
}

.technik-cta .button {
    flex-shrink: 0;

    margin-top: 0;
}


/* =========================================================
   18. EINSATZBEREICHE
========================================================= */

.einsatzbereiche {
    padding: 145px 0;

    background: var(--hellgrau);
}

.einsatz-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.einsatz-card {
    display: flex;
    flex-direction: column;

    background: var(--weiss);

    overflow: hidden;
}

.einsatz-image {
    height: 430px;

    overflow: hidden;

    background: var(--mittelgrau);
}

.einsatz-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.einsatz-card:hover .einsatz-image img {
    transform: scale(1.035);
}

.einsatz-content {
    flex: 1;

    padding: 32px 30px 37px;
}

.einsatz-content > span {
    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.einsatz-content h3 {
    margin-top: 15px;

    color: var(--schwarz);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 29px;
    font-weight: 700;
    line-height: 1.18;
}

.einsatz-content p {
    margin-top: 16px;

    color: var(--text-grau);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   19. PROJEKTABLAUF
========================================================= */

.ablauf {
    padding: 145px 0;

    color: var(--weiss);

    background: var(--anthrazit);
}

.ablauf-header {
    max-width: 900px;

    margin-bottom: 65px;
}

.ablauf .section-label {
    color: var(--orange);
}

.ablauf-header h2 {
    color: var(--weiss);
}

.ablauf-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #4a4a47;
    border-bottom: 1px solid #4a4a47;
}

.ablauf-schritt {
    min-height: 300px;

    padding: 42px 37px;

    border-right: 1px solid #4a4a47;
}

.ablauf-schritt:first-child {
    border-left: 1px solid #4a4a47;
}

.ablauf-schritt > span {
    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ablauf-schritt h3 {
    margin-top: 31px;

    color: var(--weiss);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 29px;
    font-weight: 700;
    line-height: 1.2;
}

.ablauf-schritt p {
    margin-top: 17px;

    color: var(--text-dunkel-hell);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   20. FAQ
========================================================= */

.faq {
    padding: 145px 0;

    background: var(--weiss);
}

.faq-liste {
    max-width: 1000px;

    border-top: 1px solid var(--linie);
}

.faq-item {
    border-bottom: 1px solid var(--linie);
}

.faq-item summary {
    position: relative;

    padding: 30px 65px 30px 0;

    cursor: pointer;
    list-style: none;

    color: var(--schwarz);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 7px;

    transform: translateY(-50%);

    color: var(--orange);

    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-antwort {
    max-width: 800px;

    padding: 0 60px 31px 0;
}

.faq-antwort p {
    color: var(--text-grau);

    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   21. FAQ CTA
========================================================= */

.faq-cta {
    max-width: 1000px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 50px;
    padding: 36px 39px;

    background: var(--hellgrau);

    border-left: 5px solid var(--orange);
}

.faq-cta p {
    color: var(--schwarz);

    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-cta .button {
    flex-shrink: 0;

    margin-top: 0;
}


/* =========================================================
   22. ZWISCHEN CTA
========================================================= */

.zwischen-cta {
    padding: 120px 0;

    background: var(--orange);
}

.zwischen-cta-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 105px;
}

.zwischen-cta .section-label {
    color: rgba(255, 255, 255, 0.82);
}

.zwischen-cta h2 {
    max-width: 760px;

    margin-top: 15px;

    color: var(--weiss);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(43px, 4.4vw, 66px);
    font-weight: 700;
    line-height: 1.04;

    letter-spacing: -2.3px;
}

.zwischen-cta-grid > div:last-child p {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 18px;
    line-height: 1.8;
}

.zwischen-cta .button-dark {
    color: var(--schwarz);

    background: var(--weiss);
    border-color: var(--weiss);
}

.zwischen-cta .button-dark:hover {
    color: var(--weiss);

    background: var(--schwarz);
    border-color: var(--schwarz);
}


/* =========================================================
   23. KONTAKT
========================================================= */

.kontakt {
    padding: 145px 0;

    background: var(--weiss);
}

.kontakt-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    align-items: start;

    gap: 105px;
}

.kontakt-info {
    position: sticky;
    top: 35px;
}

.kontakt-info h2 {
    margin-top: 15px;

    color: var(--schwarz);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(43px, 4.3vw, 66px);
    font-weight: 700;
    line-height: 1.04;

    letter-spacing: -2.3px;
}

.kontakt-einleitung {
    max-width: 500px;

    margin-top: 26px;

    color: var(--text-grau);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   24. KONTAKT HINWEIS
========================================================= */

.kontakt-hinweis {
    margin-top: 40px;
    padding: 29px;

    background: var(--hellgrau);

    border-left: 5px solid var(--orange);
}

.kontakt-hinweis strong {
    display: block;

    margin-bottom: 16px;

    color: var(--schwarz);

    font-size: 16px;
    font-weight: 800;
}

.kontakt-hinweis ul {
    padding-left: 18px;
}

.kontakt-hinweis li {
    margin: 9px 0;

    color: var(--text-grau);

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   25. FORMULAR
========================================================= */

.formular-box {
    padding: 52px;

    background: var(--anthrazit);
}

.projektformular {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.formular-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.formular-feld {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.formular-breit {
    grid-column: 1 / -1;
}

.formular-feld label {
    color: var(--weiss);

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}


/* =========================================================
   26. FORMULAR INPUTS
========================================================= */

.formular-feld input,
.formular-feld select,
.formular-feld textarea {
    width: 100%;

    padding: 17px 18px;

    color: var(--schwarz);

    background: var(--weiss);

    border: 1px solid var(--weiss);
    border-radius: 0;

    outline: none;

    font-size: 16px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.formular-feld input:focus,
.formular-feld select:focus,
.formular-feld textarea:focus {
    border-color: var(--orange);

    box-shadow: 0 0 0 2px var(--orange-focus);
}

.formular-feld textarea {
    resize: vertical;
}

.formular-feld small {
    color: #b9b9b5;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   27. FILE UPLOAD
========================================================= */

.formular-feld input[type="file"] {
    padding: 12px;

    background: var(--weiss);

    cursor: pointer;
}

.formular-feld input[type="file"]::file-selector-button {
    margin-right: 15px;
    padding: 12px 16px;

    color: var(--weiss);

    background: var(--orange);

    border: 0;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition: background 0.2s ease;
}

.formular-feld input[type="file"]::file-selector-button:hover {
    background: var(--orange-hover);
}


/* =========================================================
   28. CHECKBOX
========================================================= */

.formular-checkbox {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}

.formular-checkbox input {
    width: 18px;
    height: 18px;

    margin-top: 2px;

    flex-shrink: 0;

    accent-color: var(--orange);
}

.formular-checkbox label {
    color: #c4c4c0;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   29. FORMULAR BUTTON
========================================================= */

.formular-button {
    width: 100%;

    padding: 20px 25px;

    color: var(--weiss);

    background: var(--orange);

    border: 1px solid var(--orange);

    cursor: pointer;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.3px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.formular-button:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);

    transform: translateY(-1px);
}

.formular-button:disabled {
    cursor: wait;

    opacity: 0.6;

    transform: none;
}


/* =========================================================
   30. FORMULAR STATUS
========================================================= */

.formular-status {
    display: none;

    padding: 16px;

    color: var(--weiss);

    background: var(--anthrazit-hell);

    border-left: 4px solid var(--orange);

    font-size: 15px;
    line-height: 1.6;
}

.formular-status.aktiv {
    display: block;
}


/* =========================================================
   31. FOOTER
========================================================= */

.footer {
    padding: 85px 0 28px;

    color: #ccccca;

    background: var(--anthrazit);
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 70px;
}

.footer-logo {
    display: inline-block;

    color: var(--weiss);

    text-decoration: none;

    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.footer-logo span {
    display: block;

    margin-top: 7px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-grid strong {
    margin-bottom: 8px;

    color: var(--weiss);

    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer-grid a {
    color: #aaa9a5;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 28px;

    border-top: 1px solid #484845;

    color: #858581;

    font-size: 12px;
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color: #858581;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}


/* =========================================================
   32. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}


/* =========================================================
   33. TABLET
========================================================= */

@media (max-width: 950px) {

    .container {
        width: min(90%, var(--container));
    }

    /*
       Auf kleineren Displays keine Verschiebung nach links.
    */

    .hero-content {
        transform: none;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 13px;
    }

    .hero {
        min-height: 640px;
        height: auto;

        padding: 120px 0;
    }

    .hero h1 {
        font-size: clamp(52px, 8.5vw, 76px);
    }

    .hero-text {
        font-size: 18px;
    }

    .vorteilsleiste-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vorteil-item {
        justify-content: flex-start;

        border-bottom: 1px solid var(--linie);
    }

    .vorteil-item:nth-child(odd) {
        border-left: 1px solid var(--linie);
    }

    .produkt-detail {
        padding: 110px 0;
    }

    .produkt-detail-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .produkt-detail-image {
        height: 600px;
    }

    .technik-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technik-card {
        border-bottom: 1px solid var(--linie);
    }

    .technik-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .einsatz-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .einsatz-card:last-child {
        grid-column: 1 / -1;
    }

    .einsatz-card:last-child .einsatz-image {
        height: 500px;
    }

    .ablauf-grid {
        grid-template-columns: 1fr;
    }

    .ablauf-schritt,
    .ablauf-schritt:first-child {
        min-height: auto;

        border-left: 1px solid #4a4a47;
        border-right: 1px solid #4a4a47;
        border-bottom: 1px solid #4a4a47;
    }

    .faq-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .zwischen-cta-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .kontakt-info {
        position: static;
    }
}


/* =========================================================
   34. SMARTPHONE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(91%, var(--container));
    }

    .header {
        padding: 15px 0;
    }

    .navigation {
        gap: 14px;
    }

    .logo {
        font-size: 19px;
    }

    .logo span {
        font-size: 9px;
        letter-spacing: 2.4px;
    }

    nav a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 13px 15px;

        font-size: 11px;
    }

    .hero {
        min-height: 620px;

        padding: 90px 0;

        background-position: 60% center;
    }

    .hero-content {
        transform: none;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.82) 0%,
                rgba(0, 0, 0, 0.65) 65%,
                rgba(0, 0, 0, 0.30) 100%
            );
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(44px, 13vw, 60px);
        line-height: 1.02;

        letter-spacing: -2px;
    }

    .hero-label {
        font-size: 12px;
    }

    .hero-text {
        max-width: 96%;

        margin-top: 24px;

        font-size: 17px;
        line-height: 1.7;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .button {
        padding: 16px 19px;

        font-size: 13px;
    }

    .vorteilsleiste-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vorteil-item {
        min-height: 145px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 10px;

        padding: 20px 16px;

        border-left: 0;
        border-right: 1px solid var(--linie);
        border-bottom: 1px solid var(--linie);
    }

    .vorteil-item:first-child,
    .vorteil-item:nth-child(odd) {
        border-left: 0;
    }

    .vorteil-item:nth-child(even) {
        border-right: 0;
    }

    .vorteil-icon {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

    .vorteil-icon svg {
        width: 23px;
        height: 23px;
    }

    .vorteil-item strong {
        font-size: 14px;
    }

    .vorteil-item span {
        font-size: 12px;
    }

    .produkt-detail,
    .technische-daten,
    .einsatzbereiche,
    .ablauf,
    .faq,
    .kontakt {
        padding: 90px 0;
    }

    .produkt-detail-image {
        height: 450px;
    }

    .produkt-detail-content h2,
    .kontakt-info h2 {
        font-size: 40px;

        letter-spacing: -1.7px;
    }

    .produkt-detail-lead {
        font-size: 18px;
    }

    .produkt-detail-text {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2,
    .ablauf-header h2 {
        font-size: 39px;

        letter-spacing: -1.7px;
    }

    .section-intro {
        font-size: 17px;
    }

    .technik-grid {
        grid-template-columns: 1fr;
    }

    .technik-card {
        min-height: auto;

        padding: 32px 25px;

        border-left: 1px solid var(--linie);
    }

    .technik-card:first-child {
        border-left: 1px solid var(--linie);
    }

    .technik-card p {
        font-size: 16px;
    }

    .technik-cta {
        margin-top: 32px;

        padding: 29px 23px;
    }

    .technik-cta .button {
        width: 100%;

        text-align: center;
    }

    .einsatz-grid {
        grid-template-columns: 1fr;
    }

    .einsatz-card:last-child {
        grid-column: auto;
    }

    .einsatz-image,
    .einsatz-card:last-child .einsatz-image {
        height: 360px;
    }

    .einsatz-content {
        padding: 28px 24px 32px;
    }

    .einsatz-content p {
        font-size: 16px;
    }

    .ablauf-schritt {
        padding: 34px 27px;
    }

    .ablauf-schritt p {
        font-size: 16px;
    }

    .faq-item summary {
        padding: 25px 45px 25px 0;

        font-size: 20px;
    }

    .faq-item summary::after {
        right: 2px;

        font-size: 26px;
    }

    .faq-antwort {
        padding: 0 40px 25px 0;
    }

    .faq-antwort p {
        font-size: 16px;
    }

    .faq-cta {
        margin-top: 38px;

        padding: 29px 23px;
    }

    .faq-cta .button {
        width: 100%;

        text-align: center;
    }

    .zwischen-cta {
        padding: 88px 0;
    }

    .zwischen-cta h2 {
        font-size: 40px;

        letter-spacing: -1.7px;
    }

    .zwischen-cta-grid > div:last-child p {
        font-size: 17px;
    }

    .formular-box {
        padding: 30px 20px;
    }

    .formular-grid {
        grid-template-columns: 1fr;
    }

    .formular-breit {
        grid-column: auto;
    }

    .formular-feld label {
        font-size: 14px;
    }

    .formular-feld input,
    .formular-feld select,
    .formular-feld textarea {
        font-size: 16px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }
}


/* =========================================================
   35. KLEINE SMARTPHONES
========================================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;

        text-align: center;
    }

    .vorteilsleiste-grid {
        grid-template-columns: 1fr;
    }

    .vorteil-item {
        min-height: auto;

        flex-direction: row;
        align-items: center;

        padding: 19px 11px;

        border-right: 0;
    }

    .section-header h2,
    .ablauf-header h2,
    .zwischen-cta h2,
    .kontakt-info h2,
    .produkt-detail-content h2 {
        font-size: 35px;
    }

    .produkt-detail-image {
        height: 380px;
    }

    .einsatz-image,
    .einsatz-card:last-child .einsatz-image {
        height: 310px;
    }
}


/* =========================================================
   36. REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}