/* ==========================================================================
   RÜF BAU — Alpine Industrial Design System
   Gebrüder Rüf · Bau & Transport seit 1948
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --green: #009438;
    --green-dark: #006828;
    --green-light: #00b545;
    --green-glow: rgba(0, 148, 56, 0.25);
    --dark: #0C1115;
    --dark-card: #131920;
    --dark-surface: #1a2028;
    --gray-900: #1a1d21;
    --gray-800: #2a2e33;
    --gray-700: #3a3f45;
    --gray-600: #6a6b6c;
    --gray-400: #9a9b9c;
    --gray-200: #d4d5d6;
    --gray-100: #edeef0;
    --gray-50: #f5f6f7;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-green: 0 4px 24px rgba(0, 148, 56, 0.3);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1366px;
    --header-h: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

.display-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.01em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

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

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

.accent-text {
    color: var(--green);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(0, 148, 56, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

/* --- Header / Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: all var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(12, 17, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 64px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom-color: rgba(255,255,255,0.06);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

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

.scrolled .logo-img {
    height: 38px;
}

/* Nav list */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.nav-chevron {
    transition: transform var(--transition);
    opacity: 0.5;
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    padding-top: 8px;
}

.nav-item:hover > .mega-menu,
.nav-item.mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-inner {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-width: 480px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    color: var(--white);
}

.mega-link:hover {
    background: rgba(255,255,255,0.05);
}

.mega-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    color: var(--green-light);
}

.mega-icon i,
.mega-icon svg {
    width: 20px;
    height: 20px;
}

.mega-link strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mega-link span {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(12, 17, 21, 0.15) 0%, rgba(12, 17, 21, 0.45) 60%, rgba(12, 17, 21, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 160px 24px 0;
    text-align: center;
}

.hero-kicker {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--green-light);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--green);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.6);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding: 36px 24px 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-value .counter-suffix {
    color: var(--green-light);
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    font-weight: 500;
}

/* =========================================================================
   SECTIONS — General
   ========================================================================= */
.section {
    padding: 100px 0;
}

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

.section-gray {
    background: var(--gray-50);
}

.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================================
   LEISTUNGEN (Tabs)
   ========================================================================= */
.leistungen-tabs {
    position: relative;
}

.leistungen-tab-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0;
}

.leistungen-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-600);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.leistungen-tab-btn:hover {
    color: var(--gray-900);
}

.leistungen-tab-btn.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.leistungen-tab-btn i,
.leistungen-tab-btn svg {
    width: 18px;
    height: 18px;
}

.leistungen-tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.leistungen-tab-panel.active {
    display: grid;
    animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.leistungen-tab-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.leistungen-tab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leistungen-tab-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.leistungen-tab-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green);
}

.leistungen-tab-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.leistungen-tab-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.leistungen-tab-list {
    list-style: none;
    margin-bottom: 32px;
}

.leistungen-tab-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.leistungen-tab-list li i,
.leistungen-tab-list li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

/* =========================================================================
   STATS BAR
   ========================================================================= */
.stats-bar {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 6px;
    font-weight: 500;
}

/* =========================================================================
   PROJECTS / REFERENZEN
   ========================================================================= */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

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

.project-card-clean {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.project-card-clean:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gray-200);
}

.project-card-clean-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-card-clean-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-clean:hover .project-card-clean-img img {
    transform: scale(1.04);
}

.project-card-clean-body {
    padding: 24px;
}

.project-card-clean-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.project-card-clean-cat {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
}

.project-card-clean-year {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
}

.project-card-clean h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-card-clean p {
    color: var(--gray-600);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-card-clean-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
}

.project-card-clean-location i,
.project-card-clean-location svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* =========================================================================
   ABOUT INTRO (Company)
   ========================================================================= */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-intro-visual {
    position: relative;
}

.about-intro-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-xl);
}

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

.about-intro-img-main:hover img {
    transform: scale(1.03);
}

.about-intro-badge {
    position: absolute;
    top: 32px;
    right: -24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-green);
    z-index: 2;
}

.about-intro-badge-year {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-intro-badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 6px;
    line-height: 1.3;
}

.about-intro-img-inset {
    position: absolute;
    bottom: -32px;
    right: -40px;
    width: 200px;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-intro-img-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-text .section-title {
    margin-bottom: 24px;
}

.about-intro-lead {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.about-intro-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 36px;
}

.about-intro-generations {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
    padding-left: 24px;
}

.about-intro-generations::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--gray-200);
}

.about-gen {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    position: relative;
}

.about-gen-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
    margin-left: -24px;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.about-gen-marker.active {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 0 4px var(--green-glow);
}

.about-gen-content strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.about-gen-content span {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* =========================================================================
   KARRIERE TEASER
   ========================================================================= */
.karriere-teaser {
    background:
        linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
}

.karriere-teaser::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 148, 56, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.karriere-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.karriere-teaser-left h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.karriere-teaser-hashtag {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--green-light);
    margin-bottom: 20px;
}

.karriere-teaser-left p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.karriere-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.karriere-preview-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all var(--transition);
    text-decoration: none;
}

.karriere-preview-card:hover {
    border-color: var(--green);
    background: rgba(0, 148, 56, 0.05);
    transform: translateX(4px);
}

.karriere-preview-card-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.karriere-preview-card-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.karriere-preview-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.karriere-preview-card-arrow {
    color: var(--green);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.karriere-preview-card:hover .karriere-preview-card-arrow {
    transform: translateX(4px);
}

/* =========================================================================
   KARRIERE V2 — Green gradient variant
   ========================================================================= */
.karriere-v2 {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.karriere-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 90%, rgba(0, 0, 0, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.karriere-v2-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.karriere-v2-bg::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.karriere-v2-inner {
    position: relative;
    z-index: 1;
}

.karriere-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

.karriere-v2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.karriere-v2-kicker::before {
    content: '';
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.karriere-v2-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.karriere-v2-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.karriere-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.karriere-v2-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--gray-900);
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.karriere-v2-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.karriere-v2-card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    min-width: 36px;
}

.karriere-v2-card-body {
    flex: 1;
    min-width: 0;
}

.karriere-v2-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.karriere-v2-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.karriere-v2-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.karriere-v2-card-meta svg,
.karriere-v2-card-meta .lucide {
    width: 13px;
    height: 13px;
}

.karriere-v2-card-arrow {
    flex-shrink: 0;
    color: var(--green);
    opacity: 0.4;
    transition: all var(--transition);
}

.karriere-v2-card:hover .karriere-v2-card-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}

.karriere-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.karriere-v2-stats {
    display: flex;
    gap: 48px;
}

.karriere-v2-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.karriere-v2-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.karriere-v2-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.karriere-v2-btn {
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}

.karriere-v2-btn:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* =========================================================================
   SHOP TEASER
   ========================================================================= */
.shop-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.shop-teaser-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.shop-teaser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================================
   CTA / SALES SECTION
   ========================================================================= */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 148, 56, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 148, 56, 0.05) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    font-weight: 500;
}

.cta-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(0, 148, 56, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-light);
    fill: none;
    stroke-width: 2;
}

/* =========================================================================
   KARRIERE PAGE
   ========================================================================= */
.karriere-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.karriere-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://www.ruefbau.com/wp-content/uploads/2024/07/dsc06122-500x333.jpg') center/cover;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
}

.karriere-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.karriere-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.7;
}

/* Job filters */
.job-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* Job cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.job-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.job-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.job-card-badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0, 148, 56, 0.08);
    color: var(--green);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.job-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 500;
}

.job-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-card-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

/* Job card arrow on hover */
.job-card::after {
    content: '→';
    position: absolute;
    bottom: 28px;
    right: 28px;
    color: var(--green);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
}

.job-card {
    position: relative;
}

.job-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Culture section */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.culture-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.culture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.culture-img:hover img {
    transform: scale(1.05);
}

.culture-img:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: rgba(0, 148, 56, 0.3);
    background: rgba(0, 148, 56, 0.05);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0, 148, 56, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green-light);
}

.benefit-icon i,
.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h4 {
    color: var(--white);
    margin-bottom: 6px;
}

.benefit-card p {
    color: var(--gray-400);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* =========================================================================
   JOB DETAIL PAGE
   ========================================================================= */
.job-detail-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    padding: 140px 0 60px;
}

.job-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.job-detail-breadcrumb a {
    color: var(--gray-400);
    transition: color var(--transition);
}

.job-detail-breadcrumb a:hover {
    color: var(--green-light);
}

.job-detail-breadcrumb .separator {
    opacity: 0.4;
}

.job-detail-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
}

.job-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-detail-meta svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-light);
    fill: none;
    stroke-width: 2;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 60px 0;
}

.job-detail-main {}

.job-detail-section {
    margin-bottom: 40px;
}

.job-detail-section h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.job-detail-section p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.job-detail-list {
    list-style: none;
}

.job-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.job-detail-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Job detail sidebar */
.job-detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-apply-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.sidebar-apply-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.sidebar-apply-card p {
    opacity: 0.85;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sidebar-apply-card .btn {
    width: 100%;
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
}

.sidebar-apply-card .btn:hover {
    background: var(--gray-50);
}

.sidebar-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    transition: color var(--transition);
}

.sidebar-contact a:hover {
    color: var(--white);
}

.sidebar-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sidebar-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sidebar-info-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-info-item strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Job detail benefits */
.job-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.job-benefit-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.job-benefit-card:hover {
    background: rgba(0, 148, 56, 0.06);
    transform: translateY(-2px);
}

.job-benefit-icon {
    margin-bottom: 10px;
    color: var(--green);
}

.job-benefit-icon i,
.job-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.job-benefit-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.job-benefit-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Related jobs */
.related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* =========================================================================
   SHOP PAGE
   ========================================================================= */
.shop-hero {
    background: var(--dark);
    padding: 140px 0 60px;
    text-align: center;
}

.shop-hero h1 {
    color: var(--white);
}

.shop-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 16px auto 0;
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-img {
    aspect-ratio: 1;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--green);
    color: var(--white);
    letter-spacing: 0.02em;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card-body .product-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.product-price .btn-cart {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.product-price .btn-cart:hover {
    background: var(--green-dark);
    transform: scale(1.1);
}

.product-price .btn-cart svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

/* Shop cart mockup */
.shop-cart-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.shop-cart-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cart-icon-wrap {
    position: relative;
}

.cart-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-text {
    font-size: 0.88rem;
    font-weight: 600;
}

/* =========================================================================
   PLATZHALTER / SALES PAGE
   ========================================================================= */
.platzhalter-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.platzhalter-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.platzhalter-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.platzhalter-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

.platzhalter-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.platzhalter-card.live {
    border-color: var(--green);
    background: rgba(0, 148, 56, 0.03);
}

.platzhalter-card-icon {
    margin-bottom: 14px;
    color: var(--green);
}

.platzhalter-card-icon i,
.platzhalter-card-icon svg {
    width: 28px;
    height: 28px;
}

.platzhalter-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.platzhalter-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.platzhalter-card .status-badge {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.platzhalter-card.live .status-badge {
    background: rgba(0, 148, 56, 0.1);
    color: var(--green);
}

.platzhalter-card:not(.live) .status-badge {
    background: var(--gray-50);
    color: var(--gray-400);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-tradition {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-location {
    margin-bottom: 16px;
}

.footer-location strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
}

.footer-location span {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-contact-item:hover {
    color: var(--green-light);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--green);
    flex-shrink: 0;
}

.footer-karriere-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-badge {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray-600);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--green-light);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .leistungen-tab-panel.active {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-intro-badge {
        right: 16px;
    }

    .about-intro-img-inset {
        right: -16px;
        width: 160px;
    }

    .karriere-teaser-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .karriere-v2-grid {
        grid-template-columns: 1fr;
    }

    .karriere-v2-footer {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .karriere-v2-stats {
        justify-content: center;
    }

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

    .job-detail-layout {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

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

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

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .section {
        padding: 64px 0;
    }

    /* Mobile nav */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        z-index: 999;
        padding: 100px 24px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        padding: 16px 0;
        font-size: 1.15rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        justify-content: space-between;
    }

    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s ease, visibility 0.4s;
    }

    .nav-item.mega-open > .mega-menu {
        visibility: visible;
        max-height: 500px;
    }

    .mega-inner {
        grid-template-columns: 1fr;
        min-width: unset;
        border: none;
        background: rgba(255,255,255,0.03);
        border-radius: var(--radius-sm);
        padding: 8px;
        box-shadow: none;
        margin-bottom: 8px;
    }

    .hamburger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    /* Grid adjustments */
    .leistungen-tab-nav {
        flex-wrap: wrap;
    }

    .leistungen-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

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

    .about-intro-img-main {
        aspect-ratio: 3 / 4;
    }

    .karriere-v2-stats {
        gap: 32px;
    }

    .karriere-v2-card {
        padding: 20px 22px;
    }

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

    .benefits-grid,
    .job-benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .culture-img:first-child {
        grid-row: auto;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        flex: 1;
        min-width: 100px;
    }

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

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

    .related-jobs-grid {
        grid-template-columns: 1fr;
    }

    .shop-categories {
        flex-wrap: wrap;
    }
}

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

    .hero-content {
        padding: 130px 16px 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-intro-badge {
        right: 12px;
        top: 16px;
        padding: 14px 18px;
    }

    .about-intro-badge-year {
        font-size: 1.6rem;
    }

    .about-intro-img-inset {
        width: 120px;
        bottom: -20px;
        right: -8px;
    }

    .karriere-v2-card-number {
        display: none;
    }

    .karriere-v2-stats {
        gap: 24px;
    }

    .karriere-v2-stat strong {
        font-size: 1.3rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

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

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