/* #01 Grundvariablen */
:root {
    --kinzer-navy: #020814;
    --kinzer-navy-2: #051324;
    --kinzer-blue: #063b82;
    --kinzer-blue-light: #0b5cc4;
    --kinzer-red: #d71920;
    --kinzer-red-dark: #980711;
    --kinzer-white: #ffffff;
    --kinzer-text: #e9eef7;
    --kinzer-muted: #9ba7b8;
    --kinzer-border: rgba(255, 255, 255, 0.18);
    --kinzer-card: rgba(255, 255, 255, 0.05);
    --font-main: Arial, Helvetica, sans-serif;
    --font-display: 'Arial Narrow', 'Roboto Condensed', 'Oswald', Arial, sans-serif;
}

/* #02 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* #03 HTML Basis */
html {
    scroll-behavior: smooth;
}

/* #04 Body */
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 70% 20%, rgba(6, 59, 130, 0.22), transparent 34%),
        linear-gradient(135deg, #01040b 0%, #06111f 45%, #01040b 100%);
    color: var(--kinzer-text);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* #05 Globale Links */
a {
    color: inherit;
    text-decoration: none;
}

/* #06 Globale Bilder */
img {
    max-width: 100%;
    display: block;
}

/* #07 Button Basis */
button {
    font-family: inherit;
    cursor: pointer;
}

/* #08 Hauptseite */
.site {
    position: relative;
    min-height: 100vh;
}

/* #09 Moderne Kinzer Sidebar */
.side-rail {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    width: 230px;
    height: 100vh;
    padding: 36px 30px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 42% 12%, rgba(6, 59, 130, 0.26), transparent 34%),
        linear-gradient(180deg, rgba(2, 8, 20, 0.98), rgba(2, 13, 30, 0.98));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* #10 Dezente Innenkante */
.side-rail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    pointer-events: none;
}

/* #11 Logo Bereich */
.side-logo {
    width: 100%;
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

/* #12 Logo */
.side-logo img {
    width: 145px;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38));
}

/* #13 Sidebar Menü */
.side-menu {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* #14 Menü Link */
.side-menu-link {
    position: relative;
    min-height: 58px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.70);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

/* #15 Trennlinien zwischen Menüeinträgen */
.side-menu-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.075);
}

/* #16 Aktiver roter Balken links */
.side-menu-link::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 5px;
    height: 36px;
    border-radius: 0 999px 999px 0;
    background: transparent;
    box-shadow: none;
    transition: 0.25s ease;
}

/* #17 Menü Icon */
.side-menu-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    color: rgba(255, 255, 255, 0.74);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* #18 SVG Icon */
.side-menu-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* #19 Aktiver und Hover Zustand */
.side-menu-link:hover,
.side-menu-link.active {
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.14), rgba(255, 255, 255, 0.025));
}

/* #20 Aktiver Balken sichtbar */
.side-menu-link:hover::before,
.side-menu-link.active::before {
    background: var(--kinzer-red);
    box-shadow:
        0 0 18px rgba(215, 25, 32, 0.75),
        0 0 38px rgba(215, 25, 32, 0.35);
}

/* #21 Icon Hover */
.side-menu-link:hover .side-menu-icon,
.side-menu-link.active .side-menu-icon {
    color: var(--kinzer-red);
    transform: translateX(2px);
}

/* #22 Kontaktbox unten */
.side-contact-box {
    margin-top: auto;
    padding: 26px 18px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 25, 32, 0.13), transparent 44%),
        rgba(255, 255, 255, 0.025);
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.20);
}

/* #23 Kontakt Icon Kreis */
.side-contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--kinzer-red);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #24 Kontakt Icon SVG */
.side-contact-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* #25 Kontaktbox Text */
.side-contact-box span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* #26 Kontaktbox Telefonnummer */
.side-contact-box a {
    display: block;
    color: var(--kinzer-red);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

/* #27 Kontaktbox Öffnungszeiten */
.side-contact-box small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.5;
}

/* #28 Social Icons */
.side-socials {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* #29 Social Icon */
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* #30 Social SVG */
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

/* #31 Social Hover */
.social-icon:hover {
    background: var(--kinzer-red);
    border-color: var(--kinzer-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.28);
}

/* #32 Header */
.top-header {
    position: fixed;
    top: 0;
    left: 230px;
    right: 0;
    height: 92px;
    z-index: 60;
    padding: 0 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(1, 5, 13, 0.88), rgba(1, 5, 13, 0.08));
    backdrop-filter: blur(8px);
}

/* #33 Hauptnavigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

/* #34 Hauptnavigation Links */
.main-nav a {
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
    color: var(--kinzer-white);
    transition: 0.25s ease;
    white-space: nowrap;
}

/* #35 Hauptnavigation Unterstrich */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 0;
    height: 3px;
    background: var(--kinzer-red);
    transition: 0.25s ease;
}

/* #36 Hauptnavigation Aktiv */
.main-nav a:hover,
.main-nav a.active {
    color: var(--kinzer-white);
}

/* #37 Hauptnavigation Hover Linie */
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* #38 Menü Button */
.menu-btn {
    border: 0;
    background: transparent;
    color: var(--kinzer-white);
    display: flex;
    align-items: center;
    gap: 18px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* #39 Menü Button Icon */
.menu-btn i {
    width: 28px;
    height: 18px;
    display: block;
    position: relative;
}

/* #40 Menü Linien */
.menu-btn i::before,
.menu-btn i::after {
    content: "";
    position: absolute;
    right: 0;
    height: 2px;
    background: var(--kinzer-white);
}

/* #41 Menü Linie oben */
.menu-btn i::before {
    top: 2px;
    width: 28px;
}

/* #42 Menü Linie unten */
.menu-btn i::after {
    bottom: 2px;
    width: 18px;
}

/* #43 Mobile Menü Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background:
        radial-gradient(circle at 70% 20%, rgba(215, 25, 32, 0.16), transparent 32%),
        linear-gradient(135deg, #01040b, #061326);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

/* #44 Mobile Menü offen */
.mobile-menu.is-open {
    display: flex;
}

/* #45 Mobile Menü Links */
.mobile-menu a {
    text-transform: uppercase;
    font-size: clamp(28px, 8vw, 70px);
    font-family: var(--font-display);
    letter-spacing: 2px;
    color: var(--kinzer-white);
}

/* #46 Mobile Menü Schließen */
.mobile-menu-close {
    position: absolute;
    top: 26px;
    right: 30px;
    border: 0;
    background: transparent;
    color: var(--kinzer-white);
    font-size: 54px;
    line-height: 1;
}

/* #47 Hauptinhalt Abstand wegen Sidebar */
.main-content {
    margin-left: 230px;
}

/* #48 Hero Bereich */
.hero {
    position: relative;
    min-height: 720px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 130px 54px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* #49 Hero Hintergrund */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* #50 Hero Hintergrund Bild */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.02);
}

/* #51 Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(2, 8, 20, 0.98) 0%, rgba(2, 8, 20, 0.82) 32%, rgba(2, 8, 20, 0.22) 68%, rgba(2, 8, 20, 0.72) 100%),
        linear-gradient(180deg, rgba(2, 8, 20, 0.22), rgba(2, 8, 20, 0.84));
}

/* #52 Hero Inhalt */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 760px;
}

/* #53 Kleine Überschrift */
.eyebrow {
    color: var(--kinzer-red);
    text-transform: uppercase;
    letter-spacing: 7px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* #54 Hero Typing Headline */
.typing-headline {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(50px, 4.5vw, 118px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--kinzer-white);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    max-width: 920px;
    min-height: 310px;
    display: block;
}

/* #55 Geschriebener Text */
#typingText {
    display: inline;
    white-space: pre-line;
}

/* #56 Schreibcursor */
.typing-cursor {
    display: inline-block;
    width: 6px;
    height: 0.78em;
    margin-left: 10px;
    background: var(--kinzer-red);
    animation: cursorBlink 0.75s infinite;
    vertical-align: -0.03em;
}

/* #57 Cursor Animation */
@keyframes cursorBlink {
    0%, 45% {
        opacity: 1;
    }

    46%, 100% {
        opacity: 0;
    }
}

/* #58 Hero Text */
.hero-text {
    max-width: 520px;
    margin-top: 34px;
    color: var(--kinzer-text);
    font-size: 18px;
    line-height: 1.8;
}

/* #59 Hero Actions */
.hero-actions {
    margin-top: 52px;
}

/* #60 Text Link */
.text-link {
    border: 0;
    background: transparent;
    color: var(--kinzer-white);
    text-transform: uppercase;
    letter-spacing: 7px;
    font-weight: 900;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    line-height: 1;
    position: relative;
}

/* #61 Mehr entdecken Linie */
.text-link span {
    width: 118px;
    height: 2px;
    background: var(--kinzer-red);
    display: inline-block;
    position: relative;
    transition: 0.25s ease;
}

/* #62 Mehr entdecken Pfeil */
.text-link span::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    width: 13px;
    height: 13px;
    border-top: 2px solid var(--kinzer-red);
    border-right: 2px solid var(--kinzer-red);
    transform: translateY(-50%) rotate(45deg);
}

/* #63 Mehr entdecken Hover */
.text-link:hover span {
    width: 145px;
}

/* #64 Runder Event CTA */
.round-cta {
    position: absolute;
    z-index: 5;
    right: 74px;
    top: 205px;
    width: 210px;
    height: 210px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--kinzer-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* #65 Außenkreis-Schrift */
.round-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    animation: rotateCircleText 18s linear infinite;
}

/* #66 Außenkreis-Schrift Optik */
.round-svg text {
    fill: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* #67 Innerer roter Kreis */
.round-inner {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.20), transparent 26%),
        linear-gradient(145deg, #ef1b24 0%, #d71920 48%, #980711 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 58px rgba(215, 25, 32, 0.38),
        0 10px 24px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -20px 34px rgba(0, 0, 0, 0.22);
}

/* #68 Lichtkante im Kreis */
.round-inner::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 24px;
    right: 24px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.24),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
}

/* #69 Text im roten Kreis */
.round-inner strong {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.30);
}

/* #70 Klick-Icon im roten Kreis */
.round-inner i.cta-click-icon {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 18px rgba(0, 0, 0, 0.20);
    transition: 0.25s ease;
}

/* #71 Klick-Icon SVG */
.round-inner i.cta-click-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    overflow: visible;
    transition: 0.25s ease;
}

/* #72 Klick-Strahlen */
.round-inner i.cta-click-icon .click-ray {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0.95;
}

/* #73 Cursor-Form */
.round-inner i.cta-click-icon .click-cursor {
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 2.4;
    stroke-linejoin: round;
}

/* #74 Cursor-Linie */
.round-inner i.cta-click-icon .click-line {
    fill: none;
    stroke: var(--kinzer-red);
    stroke-width: 3.2;
    stroke-linecap: round;
}

/* #75 CTA Hover */
.round-cta:hover {
    transform: scale(1.04);
}

/* #76 CTA Icon Hover */
.round-cta:hover .round-inner i.cta-click-icon {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.06);
}

/* #77 CTA SVG Hover */
.round-cta:hover .round-inner i.cta-click-icon svg {
    transform: rotate(-5deg);
}

/* #78 Kreis Rotation */
@keyframes rotateCircleText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* #79 Intro Sektion */
.intro-section {
    position: relative;
    padding: 58px 54px 42px;
    background:
        radial-gradient(circle at 74% 20%, rgba(6, 59, 130, 0.18), transparent 32%),
        linear-gradient(180deg, #020814, #061222);
    display: grid;
    grid-template-columns: 0.85fr 0.95fr 1.15fr 0.45fr;
    gap: 44px;
    align-items: center;
    min-height: 310px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* #80 Intro Überschrift */
.intro-left h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(44px, 3.8vw, 66px);
    line-height: 0.94;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--kinzer-white);
}

/* #81 Intro Überschrift Span */
.intro-left h2 span {
    display: block;
}

/* #82 Kleine rote Linie */
.small-line {
    width: 58px;
    height: 3px;
    margin-top: 28px;
    background: var(--kinzer-red);
}

/* #83 Intro Text */
.intro-text p {
    color: var(--kinzer-text);
    line-height: 1.85;
    font-size: 16px;
    max-width: 470px;
}

/* #84 Intro Bild */
.intro-media {
    position: relative;
    min-height: 230px;
    height: 230px;
    overflow: hidden;
    clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
    background: rgba(255, 255, 255, 0.04);
}

/* #85 Intro Bild direkt */
.intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.62) saturate(1.15);
}

/* #86 Play Bereich */
.video-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* #87 Play Button */
.play-btn {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.78);
    background: rgba(2, 8, 20, 0.28);
    color: var(--kinzer-white);
    font-size: 22px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* #88 Play Button Hover */
.play-btn:hover {
    background: var(--kinzer-red);
    border-color: var(--kinzer-red);
    transform: scale(1.05);
}

/* #89 Video Text */
.video-label {
    text-transform: uppercase;
    letter-spacing: 7px;
}

/* #90 Video Label oben */
.video-label span {
    display: block;
    color: #8ebcff;
    font-size: 13px;
    margin-bottom: 10px;
}

/* #91 Video Label unten */
.video-label small {
    color: var(--kinzer-white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 6px;
}

/* #92 Angebot Sektion */
.offer-section {
    padding: 54px 54px 86px;
    background: linear-gradient(180deg, #061222, #020814);
}

/* #93 Angebot Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* #94 Angebot Karte */
.offer-card {
    position: relative;
    height: 240px;
    overflow: hidden;
    border: 1px solid var(--kinzer-border);
    background: var(--kinzer-card);
}

/* #95 Angebot Bild */
.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.08);
    transform: scale(1.03);
    transition: 0.35s ease;
}

/* #96 Angebot Overlay */
.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 20, 0.08), rgba(2, 8, 20, 0.86));
    z-index: 2;
}

/* #97 Angebot Inhalt */
.offer-card-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
}

/* #98 Angebot Titel */
.offer-card h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 38px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--kinzer-white);
}

/* #99 Karten Link */
.card-link {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--kinzer-white);
    font-size: 15px;
    position: relative;
    padding-bottom: 9px;
}

/* #100 Karten Link Linie */
.card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--kinzer-red);
}

/* #101 Angebot Hover */
.offer-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.82) saturate(1.18);
}

/* #102 Referenzen */
.references-section {
    padding: 90px 54px;
    background:
        linear-gradient(180deg, rgba(2, 8, 20, 0.95), rgba(2, 8, 20, 0.96)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 35%);
}

/* #103 Section Heading */
.section-heading h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(54px, 6vw, 100px);
    line-height: 0.95;
    font-weight: 700;
}

/* #104 Referenz Grid */
.reference-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* #105 Referenz Kachel */
.reference-grid div {
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kinzer-white);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
}

/* #106 Kontakt CTA */
.contact-cta {
    padding: 90px 54px;
    background:
        linear-gradient(90deg, rgba(2, 8, 20, 0.94), rgba(2, 8, 20, 0.68)),
        url("../img/bilder/event-table.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* #107 Kontakt CTA Titel */
.contact-cta h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(54px, 6vw, 94px);
    line-height: 0.95;
    font-weight: 700;
}

/* #108 Kontakt CTA Text */
.contact-cta p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--kinzer-text);
    line-height: 1.7;
}

/* #109 Primärer Button */
.primary-btn {
    min-width: 190px;
    height: 58px;
    border: 0;
    background: var(--kinzer-red);
    color: var(--kinzer-white);
    padding: 0 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 18px 38px rgba(215, 25, 32, 0.25);
    transition: 0.25s ease;
}

/* #110 Primärer Button Hover */
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(215, 25, 32, 0.35);
}

/* #111 Laptop 15/17 Zoll */
@media (max-width: 1440px) {
    .side-rail {
        width: 200px;
        padding: 30px 24px 26px;
    }

    .side-logo {
        min-height: 112px;
    }

    .side-logo img {
        width: 130px;
    }

    .side-menu-link {
        min-height: 54px;
        gap: 13px;
        font-size: 11px;
    }

    .side-contact-box {
        padding: 22px 14px;
    }

    .side-contact-box a {
        font-size: 15px;
    }

    .top-header {
        left: 200px;
        padding: 0 40px;
    }

    .main-content {
        margin-left: 200px;
    }

    .main-nav {
        gap: 28px;
    }

    .typing-headline {
        font-size: clamp(48px, 5.6vw, 102px);
    }

    .round-cta {
        right: 44px;
        width: 180px;
        height: 180px;
    }

    .round-svg text {
        font-size: 11px;
        letter-spacing: 3.5px;
    }

    .round-inner {
        width: 112px;
        height: 112px;
    }

    .round-inner strong {
        font-size: 16px;
    }

    .round-inner i.cta-click-icon {
        width: 31px;
        height: 31px;
    }

    .round-inner i.cta-click-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* #112 Tablet */
@media (max-width: 1100px) {
    .side-rail {
        width: 110px;
        padding: 22px 14px;
    }

    .side-logo {
        min-height: 86px;
        padding-bottom: 16px;
    }

    .side-logo img {
        width: 82px;
    }

    .side-menu {
        margin-top: 24px;
        gap: 8px;
    }

    .side-menu-link {
        min-height: 48px;
        justify-content: center;
        padding: 0;
    }

    .side-menu-link span:last-child {
        display: none;
    }

    .side-menu-link::after {
        left: 12px;
        right: 12px;
    }

    .side-menu-link::before {
        left: -14px;
        height: 28px;
    }

    .side-contact-box {
        display: none;
    }

    .side-socials {
        flex-direction: column;
        align-items: center;
        margin-top: auto;
    }

    .top-header {
        left: 110px;
        padding: 0 28px;
    }

    .main-content {
        margin-left: 110px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 120px 32px 70px;
    }

    .round-cta {
        top: 132px;
        right: 32px;
        width: 168px;
        height: 168px;
    }

    .round-svg {
        display: block;
    }

    .round-inner {
        width: 108px;
        height: 108px;
    }

    .round-inner strong {
        font-size: 15px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        padding: 70px 32px 34px;
        gap: 28px;
    }

    .intro-media {
        clip-path: none;
        height: 290px;
    }

    .video-action {
        justify-content: flex-start;
    }

    .offer-section,
    .references-section,
    .contact-cta {
        padding-left: 32px;
        padding-right: 32px;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* #113 Mobile */
@media (max-width: 760px) {
    body {
        background: #020814;
    }

    .side-rail {
        position: fixed;
        width: 100%;
        height: 86px;
        padding: 12px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: rgba(2, 8, 20, 0.94);
        backdrop-filter: blur(10px);
        overflow: visible;
    }

    .side-rail::after {
        display: none;
    }

    .side-logo {
        width: auto;
        min-height: auto;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .side-logo img {
        width: 104px;
    }

    .side-menu,
    .side-contact-box,
    .side-socials {
        display: none;
    }

    .top-header {
        left: 0;
        height: 86px;
        padding: 0 18px;
        justify-content: flex-end;
        background: transparent;
        backdrop-filter: none;
        z-index: 90;
        pointer-events: none;
    }

    .top-header .menu-btn {
        pointer-events: auto;
    }

    .main-nav {
        display: none !important;
    }

    .menu-btn {
        position: relative;
        z-index: 95;
        gap: 12px;
        font-size: 13px;
        letter-spacing: 1.4px;
    }

    .menu-btn i {
        width: 26px;
    }

    .main-content {
        margin-left: 0;
    }

    .hero {
        min-height: 720px;
        height: auto;
        padding: 150px 22px 80px;
        align-items: flex-end;
    }

    .hero-bg img {
        object-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(2, 8, 20, 0.38), rgba(2, 8, 20, 0.96)),
            linear-gradient(90deg, rgba(2, 8, 20, 0.95), rgba(2, 8, 20, 0.42));
    }

    .hero-content {
        max-width: 100%;
    }

    .eyebrow {
        letter-spacing: 4px;
        font-size: 11px;
    }

    .typing-headline {
        font-size: clamp(34px, 10.8vw, 54px);
        line-height: 1.05;
        letter-spacing: -0.4px;
        max-width: 100%;
        min-height: 185px;
        display: block;
        font-weight: 700;
    }

    #typingText {
        display: inline;
        white-space: pre-line;
    }

    .typing-cursor {
        width: 5px;
        height: 0.78em;
        margin-left: 6px;
        vertical-align: -0.06em;
        position: relative;
        top: 0;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 24px;
    }

    .hero-actions {
        margin-top: 34px;
    }

    .text-link {
        letter-spacing: 4px;
        font-size: 12px;
        gap: 20px;
    }

    .text-link span {
        width: 80px;
    }

    .text-link:hover span {
        width: 96px;
    }

    .round-cta {
        width: 150px;
        height: 150px;
        right: 14px;
        top: 104px;
    }

    .round-svg {
        display: block;
    }

    .round-svg text {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .round-inner {
        width: 96px;
        height: 96px;
        gap: 6px;
    }

    .round-inner strong {
        font-size: 13px;
        line-height: 0.95;
        letter-spacing: 0.4px;
    }

    .round-inner i.cta-click-icon {
        width: 26px;
        height: 26px;
    }

    .round-inner i.cta-click-icon svg {
        width: 17px;
        height: 17px;
    }

    .intro-section {
        padding: 54px 22px 34px;
        gap: 30px;
    }

    .intro-left h2 {
        font-size: 44px;
        line-height: 1.02;
    }

    .intro-media {
        height: 240px;
        clip-path: none;
    }

    .intro-media img {
        height: 100%;
    }

    .video-action {
        gap: 16px;
    }

    .play-btn {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 18px;
    }

    .video-label {
        letter-spacing: 4px;
    }

    .video-label small {
        letter-spacing: 4px;
    }

    .offer-section {
        padding: 34px 22px 64px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        height: 260px;
    }

    .offer-card h3 {
        font-size: 34px;
    }

    .references-section {
        padding: 70px 22px;
    }

    .reference-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .reference-grid div {
        min-height: 92px;
        font-size: 12px;
    }

    .contact-cta {
        padding: 70px 22px;
    }

    .contact-cta h2 {
        font-size: 46px;
    }
}

/* #114 Kleine Mobile Geräte */
@media (max-width: 420px) {
    .menu-btn span {
        display: none;
    }

    .typing-headline {
        font-size: clamp(31px, 11vw, 46px);
        min-height: 165px;
    }

    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .round-cta {
        width: 132px;
        height: 132px;
        right: 10px;
        top: 100px;
    }

    .round-svg text {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .round-inner {
        width: 86px;
        height: 86px;
    }

    .round-inner strong {
        font-size: 12px;
    }

    .round-inner i.cta-click-icon {
        width: 23px;
        height: 23px;
    }

    .round-inner i.cta-click-icon svg {
        width: 15px;
        height: 15px;
    }

    .offer-card h3 {
        font-size: 30px;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }
}

.round-svg text {
    font-size: 10px;
    letter-spacing: 2px;
}