/* Motikat Entsorgung – Modern Website Styles */

:root {
    --color-primary: #1a6b45;
    --color-primary-dark: #145538;
    --color-primary-light: #e8f5ef;
    --color-accent: #008080;
    --color-accent-light: #e0f4f4;
    --color-dark: #1a2332;
    --color-text: #374151;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --color-bg: #f8faf9;
    --color-border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    --header-height: 76px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    z-index: 9999;
}

.skip-link:focus {
    top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1.5rem;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 52px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    flex-wrap: nowrap;
}

.nav-list > li {
    position: relative;
}

.nav-list a,
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.nav-list a:hover,
.nav-list a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-active > .nav-dropdown-toggle {
    color: var(--color-primary-dark);
    background: var(--color-primary-light);
}

.nav-dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.875rem;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta {
    font-size: 0.8125rem;
    padding: 0.55rem 1rem;
    flex-shrink: 0;
}

.nav-cta span {
    display: none;
}

@media (min-width: 1100px) {
    .nav-cta span {
        display: inline;
    }
}

main {
    padding-top: var(--header-height);
}

/* Hero */
.hero {
    position: relative;
    height: min(85vh, 700px);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 107, 69, 0.88) 0%, rgba(0, 80, 80, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin-inline: auto;
    padding-block: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.hero-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

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

.hero-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.is-active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* Intro */
.intro {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(26, 107, 69, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.intro-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.intro-lead {
    font-size: 1.125rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.75rem 0;
    padding: 0;
}

.intro-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
}

.intro-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.intro-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.intro-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.35) 0%, transparent 50%);
    pointer-events: none;
}

.intro-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.intro-visual {
    display: flex;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.intro-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}

.intro-card strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.intro-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.intro-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.intro-contact:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-contact svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.intro-contact span {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.intro-contact small {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
}

.intro-contact strong {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Stats – ensure light text on green */
.stats {
    padding: 3rem 0;
    background: var(--color-primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.service-card-body {
    padding: 2rem 1.5rem 1.5rem;
}

.service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.service-link:hover {
    color: var(--color-accent);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-inner p {
    opacity: 0.9;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

/* Certificates */
.certificates-preview {
    background: var(--color-bg);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
}

.cert-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cert-actions {
    text-align: center;
}

/* Gallery */
/* Gallery */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 961 / 243;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

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

.gallery-cert-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.gallery-cert {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: var(--color-white);
    padding: 0.5rem;
}

/* Home career */
.home-career {
    background: var(--color-white);
    padding-top: 0;
}

.home-career-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.home-career-visual {
    position: relative;
    min-height: 100%;
    isolation: isolate;
}

.home-career-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.home-career-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 35, 50, 0.15) 0%,
        rgba(26, 35, 50, 0.55) 55%,
        rgba(20, 85, 56, 0.92) 100%
    );
}

.home-career-visual-content {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 7.5rem;
    z-index: 1;
    color: var(--color-white);
}

.home-career-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-career-visual-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.95;
}

.home-career-stats {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-career-stats li {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 0.85rem 0.75rem;
    text-align: center;
    color: var(--color-white);
}

.home-career-stats strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.home-career-stats span {
    display: block;
    font-size: 0.72rem;
    line-height: 1.3;
    opacity: 0.9;
}

.home-career-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-career-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.85rem;
}

.home-career-lead {
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 52ch;
}

.home-career-jobs {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.home-job-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.home-job-teaser:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    color: inherit;
}

.home-job-teaser-main {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.home-job-teaser-main strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.35;
}

.home-job-teaser-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.home-job-teaser-meta svg {
    width: 15px;
    height: 15px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.home-job-teaser-arrow {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
}

.home-job-teaser:hover .home-job-teaser-arrow {
    background: var(--color-primary);
    color: var(--color-white);
}

.home-career-empty {
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-light);
}

.home-career-empty p {
    margin: 0;
}

.home-career-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-image: var(--page-hero-image);
    background-size: cover;
    background-position: center;
}

.page-hero-simple {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    min-height: 240px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.85) 0%, rgba(26, 35, 50, 0.4) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    color: var(--color-white);
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.breadcrumb a {
    color: var(--color-white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Content */
.page-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 2rem 0 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-main-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.content-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.content-sidebar img {
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.sidebar-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.sidebar-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.sidebar-card svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-card-accent {
    background: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
}

.sidebar-card-accent p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0.25rem 0 0;
}

/* Contact cards */
.contact-cards {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.contact-card strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.contact-card p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-page .contact-intro {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.65;
}

.contact-form-wrap {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.contact-cards-stacked {
    margin-bottom: 0;
}

.contact-sidebar-card {
    margin-bottom: 1rem;
}

.contact-sidebar-card h3 {
    margin-bottom: 1rem;
}

.contact-form.application-form {
    padding: 1.75rem;
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-note {
    text-align: center;
    color: var(--color-text-light);
}

/* Ankauf highlight */
.ankauf-section {
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5ef 55%, #f8faf9 100%);
}

.ankauf-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
}

.ankauf-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.85rem;
}

.ankauf-lead {
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 52ch;
}

.ankauf-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.ankauf-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.ankauf-highlights svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ankauf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ankauf-prices-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.ankauf-prices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-primary);
    color: var(--color-white);
}

.ankauf-prices-header strong {
    font-size: 1rem;
}

.ankauf-prices-header span {
    font-size: 0.82rem;
    opacity: 0.9;
}

.ankauf-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ankauf-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.ankauf-price-list li:last-child {
    border-bottom: none;
}

.ankauf-price-material {
    font-weight: 500;
    color: var(--color-dark);
}

.ankauf-price-value {
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.ankauf-price-value small {
    font-weight: 500;
    color: var(--color-text-light);
}

.ankauf-prices-link {
    display: block;
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 600;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.ankauf-callout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.ankauf-callout h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: var(--color-white);
}

.ankauf-callout p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.55;
    max-width: 56ch;
}

.ankauf-callout-icon svg {
    width: 42px;
    height: 42px;
    color: var(--color-white);
}

.ankauf-callout .btn-primary {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
    white-space: nowrap;
}

.ankauf-callout .btn-primary:hover {
    background: var(--color-bg);
}

.ankauf-sidebar-card h3 {
    margin-bottom: 0.5rem;
}

.ankauf-sidebar-card p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

.page-hero-ankauf {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
}

.container-callout .ankauf-callout-icon svg {
    width: 42px;
    height: 42px;
}

.container-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.container-price-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.container-price-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
}

.container-price-card-header svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.container-price-card-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
}

.container-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.container-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.container-price-list li:last-child {
    border-bottom: none;
}

.container-price-size {
    font-weight: 500;
    color: var(--color-dark);
}

.container-price-amount {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.container-price-hint {
    margin: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    color: var(--color-text-light);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.price-on-request-banner {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f1 100%);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
}

.price-on-request-banner strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
}

.price-on-request-banner p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.55;
}

.price-on-request {
    font-weight: 600;
    color: var(--color-text-light);
    font-style: italic;
}

.container-prices-card .ankauf-prices-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* Price tables */
.price-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-tab {
    padding: 0.75rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
}

.price-tab.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.price-tab-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.price-tab-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.price-tab:not(.is-active) .price-tab-badge {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.price-panel-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.price-table-highlight {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.price-tab:hover:not(.is-active) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.price-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.price-table th,
.price-table td {
    padding: 0.875rem 1.25rem;
    text-align: left;
}

.price-table tbody tr:nth-child(even) {
    background: var(--color-bg);
}

.price-table tbody tr:hover {
    background: var(--color-primary-light);
}

.price-disclaimer {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--color-accent-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* Legal */
.legal-content .legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.legal-block p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Related services */
.related-services h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--color-white);
    font-weight: 600;
}

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

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.footer-brand img {
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-cert {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

.footer-col a:hover {
    color: var(--color-white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    border-top: 3px solid var(--color-primary);
}

.cookie-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    flex: 1;
    font-size: 0.9rem;
    min-width: 280px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.cookie-actions a {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Career */
.career-intro {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.career-lead {
    font-size: 1.125rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.career-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.career-empty p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.job-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.job-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.job-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.job-card-header h2 a {
    color: var(--color-dark);
    text-decoration: none;
}

.job-card-header h2 a:hover {
    color: var(--color-primary);
}

.job-card-header time {
    font-size: 0.85rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

.job-department {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.job-summary {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.job-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.job-meta svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.job-meta-hero {
    margin-top: 0.75rem;
}

.job-meta-hero .job-department {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.job-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.job-link:hover {
    color: var(--color-accent);
}

.career-apply {
    background: var(--color-bg);
}

.career-apply-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.career-apply h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.career-apply-details {
    display: grid;
    gap: 1.25rem;
}

.career-apply-details strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

.career-apply-details p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.5;
}

.application-section {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.application-header {
    max-width: 640px;
    margin-bottom: 2rem;
}

.application-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.application-header p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.6;
}

.application-form {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    font: inherit;
    color: var(--color-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input[type="file"] {
    font: inherit;
    color: var(--color-text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.12);
}

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

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #c0392b;
}

.form-error {
    font-size: 0.85rem;
    color: #c0392b;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.form-field-checkbox {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-actions {
    margin-top: 1.5rem;
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.form-alert-success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}

.form-alert-success p {
    margin: 0.35rem 0 0;
}

.form-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.job-lead {
    font-size: 1.125rem;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.job-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.job-detail-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.job-details {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.job-details dt {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
}

.job-details dd {
    margin: 0;
    font-weight: 500;
    color: var(--color-dark);
}

.job-sidebar-card {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .home-career-panel {
        grid-template-columns: 1fr;
    }

    .ankauf-panel {
        grid-template-columns: 1fr;
    }

    .home-career-visual img {
        min-height: 320px;
    }

    .home-career-content {
        padding: 2rem 1.5rem;
    }
    .related-grid,
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        justify-content: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-list > li {
        width: 100%;
    }

    .nav-list a,
    .nav-dropdown-toggle {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        display: none;
        background: var(--color-bg);
        border-radius: var(--radius);
        margin-top: 0.25rem;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.is-open:hover .nav-dropdown-menu {
        display: block;
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .nav-cta span {
        display: inline;
    }

    .logo img {
        height: 44px;
    }

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

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

    .application-form {
        padding: 1.25rem;
    }

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

    .home-career-visual-content {
        bottom: auto;
        top: 1.5rem;
    }

    .home-career-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .job-card-header {
        flex-direction: column;
    }

    .intro-grid,
    .content-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .intro-content {
        text-align: left;
    }

    .intro-visual {
        order: -1;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cert-grid,
    .cert-grid-full {
        grid-template-columns: 1fr;
    }

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

    .hero {
        height: min(75vh, 600px);
    }

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

    .cta-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero {
        height: min(75vh, 600px);
    }

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

    .price-tabs {
        flex-direction: column;
    }

    .price-tab {
        text-align: center;
    }

    .ankauf-panel,
    .ankauf-callout {
        grid-template-columns: 1fr;
    }

    .ankauf-callout .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .ankauf-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
