/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --orange: #ED7A30;
    --orange-dark: #C96518;
    --orange-light: #F5922E;
    --orange-glow: rgba(237, 122, 48, 0.35);

    /* Industrial Dark Palette */
    --black: #0A0A0A;
    --dark-1: #111113;
    --dark-2: #18181C;
    --dark-3: #1F1F25;
    --dark-4: #28282F;
    --gray-700: #3A3A44;
    --gray-600: #50505C;
    --gray-500: #6E6E7A;
    --gray-400: #9494A0;
    --gray-300: #B8B8C4;
    --gray-200: #D4D4DC;
    --gray-100: #ECECF0;
    --white: #FFFFFF;

    /* Functional */
    --surface-main: var(--dark-1);
    --surface-raised: var(--dark-2);
    --surface-overlay: var(--dark-3);
    --text-primary: var(--white);
    --text-secondary: var(--gray-400);
    --text-muted: var(--gray-500);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-subhead: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Misc */
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1320px;
}

/* ==========================================
   Reset & Base
   ========================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.05;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-8);
}

/* ==========================================
   Navigation – Transparent with reveal
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--sp-5) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--sp-3) 0;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo img {
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: var(--sp-1);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-subhead);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--sp-3) var(--sp-5);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu a.nav-cta {
    background: var(--orange);
    color: var(--white);
    margin-left: var(--sp-4);
    padding: var(--sp-3) var(--sp-6);
}

.nav-menu a.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-2);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ==========================================
   Hero – Full viewport, dramatic
   ========================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroSlow 25s ease-in-out infinite alternate;
}

@keyframes heroSlow {
    0% {
        transform: scale(1.08) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.1) 30%,
            rgba(10, 10, 10, 0.5) 65%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--sp-8) var(--sp-20);
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-subhead);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--sp-6);
    animation: heroFadeUp 0.8s ease-out;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.92;
    color: var(--white);
    margin-bottom: var(--sp-6);
    animation: heroFadeUp 0.8s ease-out 0.15s both;
}

.hero h1 .accent {
    color: var(--orange);
    position: relative;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: var(--sp-10);
    animation: heroFadeUp 0.8s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: var(--sp-4);
    animation: heroFadeUp 0.8s ease-out 0.45s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-subhead);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: calc(1rem - 1.5px) calc(2rem - 1.5px);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-subhead);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   Section Shared Styles
   ========================================== */

.section {
    padding: var(--sp-32) 0;
    position: relative;
}

.section-label {
    font-family: var(--font-subhead);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5);
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-6);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* ==========================================
   About Section – Split layout with stats strip
   ========================================== */

.about {
    background: var(--dark-1);
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.about-image-col {
    position: relative;
    overflow: hidden;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-col:hover img {
    transform: scale(1.05);
}

.about-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--dark-1) 100%);
}

.about-text-col {
    padding: var(--sp-24) var(--sp-16);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-col p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--sp-6);
}

.about-text-col p strong {
    color: var(--white);
    font-weight: 600;
}

/* Stats Strip */
.stats-strip {
    background: var(--dark-2);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-block {
    padding: var(--sp-10) var(--sp-8);
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block:hover {
    background: var(--dark-3);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.stat-label {
    font-family: var(--font-subhead);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ==========================================
   Services Section – Alternating grid
   ========================================== */

.services {
    background: var(--black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(237, 122, 48, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(237, 122, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--sp-20);
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before {
    display: none;
}

.services-header .section-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.services-header .section-subtitle {
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.service-card {
    background: var(--dark-2);
    border: 1px solid var(--border-subtle);
    padding: var(--sp-10) var(--sp-8);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height var(--transition-slow);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 122, 48, 0.08);
    border: 1px solid rgba(237, 122, 48, 0.15);
    margin-bottom: var(--sp-6);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrap {
    background: var(--orange);
    border-color: var(--orange);
}

.service-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--orange);
    transition: color var(--transition-base);
}

.service-card:hover .service-icon-wrap svg {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-subhead);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-3);
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   Maschinenpark – Horizontal scroll gallery
   ========================================== */

.maschinenpark {
    background: var(--dark-1);
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-24);
    overflow: hidden;
}

.maschinenpark-header {
    max-width: var(--max-w);
    margin: 0 auto var(--sp-12);
    padding: 0 var(--sp-8);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.maschinenpark-header .section-subtitle {
    margin-bottom: 0;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-subhead);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    flex-shrink: 0;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: scrollRight 1.5s ease-in-out infinite;
}

@keyframes scrollRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

.machine-track {
    display: flex;
    gap: var(--sp-6);
    padding: 0 var(--sp-8);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.machine-track::-webkit-scrollbar {
    display: none;
}

.machine-track:active {
    cursor: grabbing;
}

.machine-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--dark-2);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.machine-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.machine-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.machine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.machine-card:hover .machine-img img {
    transform: scale(1.08);
}

.machine-badge {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-subhead);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--sp-1) var(--sp-4);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.machine-body {
    padding: var(--sp-6);
}

.machine-body h3 {
    font-family: var(--font-subhead);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--sp-3);
}

.machine-location {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--gray-500);
    font-size: 0.88rem;
    margin-bottom: var(--sp-4);
}

.machine-location svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
}

.machine-specs {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.machine-specs span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-400);
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    padding: var(--sp-1) var(--sp-3);
}

/* ==========================================
   Region – Full-width parallax banner
   ========================================== */

.region-banner {
    position: relative;
    padding: var(--sp-32) 0;
    overflow: hidden;
}

.region-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.region-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(10, 10, 10, 0.88) 100%);
}

.region-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.region-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--sp-6);
}

.region-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: var(--sp-10);
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}

.region-tag {
    font-family: var(--font-subhead);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--sp-3) var(--sp-6);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.region-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* ==========================================
   Contact Section – Dark split
   ========================================== */

.contact {
    background: var(--dark-2);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
}

.contact-info-side {
    padding-top: var(--sp-4);
}

.contact-block {
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
    padding: var(--sp-6);
    border-left: 2px solid transparent;
    transition: all var(--transition-base);
    margin-bottom: var(--sp-2);
}

.contact-block:hover {
    background: var(--dark-3);
    border-left-color: var(--orange);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 122, 48, 0.1);
    border: 1px solid rgba(237, 122, 48, 0.15);
    color: var(--orange);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-block h4 {
    font-family: var(--font-subhead);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--sp-1);
}

.contact-block p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-block a {
    color: var(--orange);
    font-weight: 500;
}

.contact-block a:hover {
    color: var(--orange-light);
}

/* Form */
.contact-form-side {
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    padding: var(--sp-10);
}

.contact-form-side h3 {
    font-family: var(--font-subhead);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.form-field {
    margin-bottom: var(--sp-5);
}

.form-field label {
    display: block;
    font-family: var(--font-subhead);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: var(--sp-2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: var(--dark-1);
    border: 1px solid var(--border-medium);
    outline: none;
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(237, 122, 48, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-600);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E7A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-subhead);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
}

.btn-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   Footer – Minimal industrial style
   ========================================== */

.footer {
    background: var(--black);
    border-top: 1px solid var(--border-subtle);
    padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-12);
    padding-bottom: var(--sp-12);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 45px;
    width: auto;
    margin-bottom: var(--sp-5);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-subhead);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--sp-6);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--sp-8);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-700);
}

/* ==========================================
   Cookie Banner
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-subtle);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-8);
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(237, 122, 48, 0.1);
    border: 1px solid rgba(237, 122, 48, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: var(--font-subhead);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--sp-1);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: var(--sp-3);
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.4rem;
    font-family: var(--font-subhead);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-btn-accept {
    background: var(--orange);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

.cookie-btn-essential {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-400);
    border: 1px solid var(--border-medium);
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ==========================================
   Scroll Animations
   ========================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

/* Stagger */
.services-grid [data-reveal]:nth-child(2) {
    transition-delay: 0.12s;
}

.services-grid [data-reveal]:nth-child(3) {
    transition-delay: 0.24s;
}

.services-grid [data-reveal]:nth-child(4) {
    transition-delay: 0.36s;
}

.services-grid [data-reveal]:nth-child(5) {
    transition-delay: 0.48s;
}

.services-grid [data-reveal]:nth-child(6) {
    transition-delay: 0.60s;
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        height: 400px;
    }

    .about-image-col::after {
        background: linear-gradient(180deg, transparent 40%, var(--dark-1) 100%);
    }

    .about-text-col {
        padding: var(--sp-12) var(--sp-8);
    }

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

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--sp-8);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
        color: var(--white) !important;
    }

    .nav-menu a.nav-cta {
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-content {
        padding-bottom: var(--sp-12);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }

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

    .machine-card {
        flex: 0 0 310px;
    }

    .maschinenpark-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-4);
    }

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

    .stat-num {
        font-size: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-5);
    }

    .cookie-icon {
        display: none;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-5);
    }

    .section {
        padding: var(--sp-20) 0;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-block {
        padding: var(--sp-6) var(--sp-4);
    }

    .stat-num {
        font-size: 2rem;
    }

    .contact-form-side {
        padding: var(--sp-6);
    }

    .machine-card {
        flex: 0 0 280px;
    }
}

/* ==========================================
   Legal Pages
   ========================================== */

.legal-hero {
    padding-top: 140px;
    padding-bottom: var(--sp-12);
    background: var(--dark-2);
    border-bottom: 1px solid var(--border-subtle);
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--sp-3);
}

.legal-hero-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
}

.legal-content {
    padding: var(--sp-16) 0;
    background: var(--dark-1);
}

.legal-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--dark-2);
    border: 1px solid var(--border-subtle);
    padding: var(--sp-12) var(--sp-16);
}

.legal-section {
    margin-bottom: var(--sp-10);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-subhead);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.legal-section h3 {
    font-family: var(--font-subhead);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-3);
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: var(--sp-4);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(237, 122, 48, 0.3);
}

.legal-section a:hover {
    color: var(--orange-light);
    text-decoration-color: var(--orange);
}

.legal-info-box {
    background: var(--dark-3);
    border-left: 3px solid var(--orange);
    padding: var(--sp-5) var(--sp-6);
    margin: var(--sp-4) 0;
}

.legal-info-box p {
    margin-bottom: 0;
    color: var(--gray-400);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: var(--sp-4) 0;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--sp-3);
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--orange);
}

.legal-divider {
    border: none;
    height: 1px;
    background: var(--border-subtle);
    margin: var(--sp-10) 0;
}

@media (max-width: 768px) {
    .legal-card {
        padding: var(--sp-6) var(--sp-5);
    }

    .legal-hero {
        padding-top: 110px;
    }
}