/* ScanWorx - Futuristic Minimal Design */

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

:root {
    --red: #dc2626;
    --red-dark: #991b1b;
    --red-light: #ef4444;
    --black: #f8f9fa;
    --gray: #e9ecef;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --gray-text: #6c757d;
    --dark-text: #212529;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 16px;
    background: var(--white);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Top Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

/* Logo Scanner Effekt (Hero-Box) */
.logo-scanner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    z-index: 2;
}

.logo-scan-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(
        to bottom,
        black var(--scan-pos, 0%),
        transparent calc(var(--scan-pos, 0%) + 2px)
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black var(--scan-pos, 0%),
        transparent calc(var(--scan-pos, 0%) + 2px)
    );
}

/* Der leuchtende Scan-Balken */
.logo-scan-beam {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 15%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.3) 85%,
        transparent 100%
    );
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.9),
        0 0 18px rgba(255, 255, 255, 0.5),
        0 3px 12px rgba(255, 255, 255, 0.3);
    z-index: 3;
    pointer-events: none;
    top: var(--scan-pos, 0%);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--red);
    border: 2px solid var(--red);
    box-shadow: 
        0 0 10px rgba(220, 38, 38, 0.5),
        inset 0 0 10px rgba(220, 38, 38, 0.1);
}

/* Side Navigation Dots */
.sidenav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gray-text);
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active,
.dot:hover {
    border-color: var(--red);
    background: var(--red);
}

/* Fullscreen Sections */
.fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-left {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-right {
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

/* Scanner Visualization */
.scanner-viz {
    position: relative;
    width: 400px;
    height: 400px;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: scanDown 3s ease-in-out infinite;
}

.scan-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255, 255, 255, 0.2) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255, 255, 255, 0.2) 20px);
}

.scan-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.scan-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    animation: pulse 2s ease-in-out infinite;
}

.scan-point:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.scan-point:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.4s; }
.scan-point:nth-child(3) { top: 80%; left: 20%; animation-delay: 0.8s; }
.scan-point:nth-child(4) { top: 40%; left: 80%; animation-delay: 1.2s; }
.scan-point:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.6s; }

@keyframes scanDown {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 0.9;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-content .big {
    display: block;
}

.tagline {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--red);
}

.cta-button:hover {
    background: transparent;
    color: var(--red);
}

/* Hero Features */
.hero-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 600;
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--red);
    color: var(--red);
}

.cta-button.secondary:hover {
    background: var(--red);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* Zielgruppe Section */
/* Anwendungsbereiche Section */
.anwendung-section {
    background: var(--gray-light);
    flex-direction: column;
    padding: 120px 80px 100px 80px;
}

.anwendung-container {
    max-width: 1000px;
    width: 100%;
}

/* Problem-Statement */
.anwendung-problem {
    text-align: center;
    margin-bottom: 60px;
}

.anwendung-problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.anwendung-problem .section-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.anwendung-lead {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Lösung */
.anwendung-loesung {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-left: 4px solid var(--red);
}

.anwendung-claim {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 15px;
}

.anwendung-loesung p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.anwendung-highlight {
    font-weight: 700;
    color: var(--dark-text) !important;
    font-style: italic;
}

/* Einsatzbereiche */
.anwendung-bereiche {
    margin-bottom: 50px;
}

.anwendung-bereiche h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
}

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

.anwendung-card {
    background: var(--white);
    border: 2px solid var(--gray);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.anwendung-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.12);
}

.anwendung-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.anwendung-card span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Vorteile */
.anwendung-vorteile {
    text-align: center;
}

.anwendung-vorteile h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

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

.vorteil-item {
    background: var(--white);
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    border: 2px solid var(--gray);
    transition: all 0.3s;
}

.vorteil-item:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Leistungen Section */
.leistungen-section {
    background: var(--white);
    flex-direction: column;
    padding: 100px 80px;
}

.leistungen-container {
    max-width: 1000px;
    width: 100%;
}

.leistung-block {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray);
}

.leistung-block:last-child {
    border-bottom: none;
}

.leistung-number {
    font-size: 15px;
    color: var(--red);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.leistung-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.leistung-lead {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.leistung-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.list-item {
    padding: 8px 16px;
    background: var(--gray-light);
    border-left: 3px solid var(--red);
    font-size: 14px;
    color: var(--dark-text);
}

.leistung-note {
    font-size: 15px;
    color: var(--gray-text);
    font-style: italic;
}

/* Process Timeline */
.process-section {
    background: var(--gray-light);
    flex-direction: column;
    padding: 100px 80px;
}

.process-note {
    margin-top: 60px;
    text-align: center;
    font-size: 16px;
    color: var(--dark-text);
}

.section-title {
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 80px;
    text-align: center;
}

.timeline {
    max-width: 1200px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    height: 3px;
    background: var(--red);
}

.timeline-item {
    position: relative;
    text-align: center;
    padding-top: 100px;
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: var(--red);
    letter-spacing: 2px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 52px;
    width: 20px;
    height: 20px;
    background: var(--red);
    border: 3px solid var(--gray-light);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--red-light);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--white);
    flex-direction: column;
    padding: 100px 80px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.6;
}

.about-text p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 600;
}

.about-claim {
    margin-top: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-left: 4px solid var(--red);
    font-size: 16px;
    color: var(--dark-text);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray-light);
    border-left: 3px solid var(--red);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray-text);
    text-transform: uppercase;
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    display: inline-block;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Referenzen Section */
.referenzen-section {
    background: var(--gray-light);
    flex-direction: column;
    padding: 100px 80px;
}

.referenzen-container {
    max-width: 1200px;
    width: 100%;
}

.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.referenz-card {
    background: var(--white);
    border: 2px solid var(--gray);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.referenz-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.referenz-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.referenz-placeholder {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
}

.referenz-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--dark);
    transition: transform 0.4s ease;
}

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

.referenz-info {
    padding: 30px;
}

.referenz-info h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.referenz-info p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    flex-direction: column;
    padding: 100px 80px;
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    max-width: 1200px;
}

.contact-left h2 {
    font-size: 48px;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.info-block {
    margin-bottom: 40px;
}

.info-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.info-value {
    font-size: 16px;
    line-height: 1.8;
}

.muted {
    color: var(--gray-text);
    font-size: 15px;
}

/* Minimal Form */
.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 2px;
    font-size: 12px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Footer */
.footer-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.captcha-field {
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.captcha-field input[type="number"] {
    width: 100px;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.captcha-field input[type="number"]:focus {
    border-bottom-color: var(--white);
}

.captcha-field input[type="number"]::placeholder {
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 2px;
    font-size: 12px;
}

/* Firefox: Zahlen-Spinner verstecken */
.captcha-field input[type="number"] { -moz-appearance: textfield; }
.captcha-field input[type="number"]::-webkit-outer-spin-button,
.captcha-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 12px;
    transition: color 0.2s;
}

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

/* ========== BURGER MENU ========== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 6px;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s;
}

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

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

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

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 6px 10px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-left {
        min-height: 40vh;
    }

    .split-right {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

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

    /* Sections allgemein */
    .anwendung-section,
    .leistungen-section,
    .process-section,
    .about-section,
    .referenzen-section,
    .contact-section {
        padding: 80px 40px;
    }

    .anwendung-grid,
    .vorteile-grid,
    .referenzen-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-top: 60px;
    }

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

    .sidenav {
        display: none;
    }

    .scanner-viz {
        width: 280px;
        height: 280px;
    }

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

    .contact-left h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .footer-minimal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Burger anzeigen, Nav verstecken */
    .burger {
        display: flex;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        z-index: 9999;
        overflow: hidden;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 12px 20px;
        letter-spacing: 2px;
        color: var(--dark-text);
        border: none;
        background: none;
    }

    .header {
        padding: 15px 0;
        background: rgba(255, 255, 255, 1);
    }

    .header-content {
        padding: 0 20px;
    }

    .logo-image {
        height: 38px;
    }

    /* Hero */
    .split-left {
        min-height: 35vh;
    }

    .split-right {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .tagline {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .label {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        margin-top: 25px;
    }

    .feature-item {
        font-size: 14px;
    }

    .scanner-viz {
        width: 200px;
        height: 200px;
    }

    .logo-scanner {
        width: 180px;
    }

    /* Alle Sections */
    .anwendung-section,
    .leistungen-section,
    .process-section,
    .about-section,
    .referenzen-section,
    .contact-section {
        padding: 60px 20px;
    }

    .fullscreen {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .section-title {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    /* Anwendungsbereiche */
    .anwendung-problem .section-title {
        font-size: 18px;
    }

    .anwendung-lead {
        font-size: 14px;
    }

    .anwendung-loesung {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .anwendung-claim {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .anwendung-card {
        padding: 20px;
    }

    .anwendung-card span {
        font-size: 14px;
    }

    .vorteil-item {
        padding: 15px 20px;
        font-size: 14px;
    }

    /* Leistungen */
    .leistung-block {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }

    .leistung-block h3 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .leistung-lead {
        font-size: 14px;
    }

    .leistung-list {
        gap: 10px;
    }

    .list-item {
        font-size: 13px;
        padding: 6px 12px;
    }

    /* Timeline */
    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-item {
        padding-top: 50px;
        text-align: left;
        padding-left: 40px;
    }

    .timeline-item::before {
        left: 0;
        transform: none;
    }

    .timeline-dot {
        left: 0;
        transform: none;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .process-note {
        margin-top: 30px;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text .lead {
        font-size: 17px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-claim {
        padding: 15px;
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    /* Referenzen */
    .referenzen-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .referenz-info {
        padding: 20px;
    }

    .referenz-info h3 {
        font-size: 14px;
    }

    .referenz-info p {
        font-size: 13px;
    }

    /* Kontakt */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .info-block {
        margin-bottom: 25px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .footer-minimal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 50px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .captcha-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .captcha-field input[type="number"] {
        width: 100%;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .anwendung-problem .section-title {
        font-size: 16px;
    }

    .anwendung-claim {
        font-size: 14px;
    }

    .contact-left h2 {
        font-size: 24px;
    }
}
