/* =================================================================
   AUTOVERSCHROTTUNG BOCHUM - MODERN CSS
   Farben: Scarlett (#93000E), Royal White (#FDFDFD), 
           Classic Orange (#F3AC26), Schwarz (#060604)
   ================================================================= */

/* =================================================================
   RESET & BASE STYLES
   ================================================================= */

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

:root {
    /* Primärfarben */
    --scarlett: #93000E;
    --scarlett-dark: #6b000a;
    --scarlett-light: #b30010;
    
    /* Akzentfarben */
    --orange: #F3AC26;
    --orange-dark: #d99520;
    --orange-light: #f5b840;
    
    /* Neutral */
    --white: #FDFDFD;
    --black: #060604;
    --gray-900: #1a1a18;
    --gray-800: #2d2d2a;
    --gray-700: #4a4a46;
    --gray-600: #6b6b66;
    --gray-500: #8c8c86;
    --gray-400: #adadaa;
    --gray-300: #cfcfcc;
    --gray-200: #e6e6e4;
    --gray-100: #f5f5f3;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(6, 6, 4, 0.05);
    --shadow: 0 1px 3px 0 rgba(6, 6, 4, 0.1), 0 1px 2px 0 rgba(6, 6, 4, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(6, 6, 4, 0.1), 0 2px 4px -1px rgba(6, 6, 4, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(6, 6, 4, 0.1), 0 4px 6px -2px rgba(6, 6, 4, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(6, 6, 4, 0.1), 0 10px 10px -5px rgba(6, 6, 4, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

/* =================================================================
   NAVIGATION
   ================================================================= */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 253, 253, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(253, 253, 253, 1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--scarlett);
}

.logo:hover {
    color: var(--scarlett);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--scarlett);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--scarlett);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--scarlett);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    background: var(--scarlett-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

/* =================================================================
   HERO SECTION - KOMPLETT NEU
   ================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 0, 14, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(243, 172, 38, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Animiertes Gitter-Muster */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(147, 0, 14, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 0, 14, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

/* Kompakte Trust Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(253, 253, 253, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(253, 253, 253, 0.15);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(253, 253, 253, 0.12);
    border-color: var(--orange);
}

.badge svg {
    opacity: 0.9;
    color: var(--orange);
}

/* Moderner Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.hero-main {
    font-size: 3.75rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--gray-400);
    max-width: 600px;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--white);
}

/* Moderne Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(253, 253, 253, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(253, 253, 253, 0.1);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(253, 253, 253, 0.08);
    border-color: var(--orange);
}

.feature svg {
    flex-shrink: 0;
    color: var(--orange);
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: var(--scarlett);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(147, 0, 14, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--scarlett-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 0, 14, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(253, 253, 253, 0.2);
}

.btn-secondary:hover {
    background: rgba(253, 253, 253, 0.1);
    border-color: var(--white);
}

/* Modernes Contact Card */
.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(6, 6, 4, 0.15);
    position: sticky;
    top: 100px;
    border: 1px solid var(--gray-200);
}

.card-urgent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #ffcc80;
}

.card-urgent svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.5rem;
}

.hero-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 12px;
    text-decoration: none;
    color: var(--black);
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.card-phone:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.02);
}

.card-phone svg {
    color: var(--scarlett);
    flex-shrink: 0;
    transition: var(--transition);
}

.card-phone:hover svg {
    color: var(--white);
}

.card-phone strong {
    font-size: 1.125rem;
}

.card-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.card-divider::before,
.card-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--gray-300);
}

.card-divider::before {
    left: 0;
}

.card-divider::after {
    right: 0;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--scarlett);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(147, 0, 14, 0.2);
}

.btn-card:hover {
    background: var(--scarlett-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 0, 14, 0.3);
}

.card-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.card-note svg {
    color: var(--orange);
}

/* =================================================================
   SECTIONS
   ================================================================= */

section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(147, 0, 14, 0.1), rgba(243, 172, 38, 0.1));
    color: var(--scarlett);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid var(--scarlett);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.highlight {
    color: var(--scarlett);
}

/* =================================================================
   VORTEILE SECTION
   ================================================================= */

.vorteile-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vorteil-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.vorteil-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange);
}

.vorteil-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--scarlett), var(--scarlett-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(147, 0, 14, 0.2);
}

.vorteil-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.75rem;
}

.vorteil-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* =================================================================
   ABLAUF SECTION
   ================================================================= */

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

.ablauf-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr 80px;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -50px;
    width: 3px;
    background: linear-gradient(180deg, var(--scarlett), var(--orange));
    border-radius: 2px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--scarlett), var(--scarlett-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(147, 0, 14, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

.timeline-content strong {
    color: var(--scarlett);
    font-weight: 700;
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.ablauf-cta {
    background: linear-gradient(135deg, var(--scarlett), var(--scarlett-dark));
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 20px 60px rgba(147, 0, 14, 0.3);
}

.cta-content {
    color: var(--white);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.ablauf-cta .btn-primary {
    background: var(--white);
    color: var(--scarlett);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(253, 253, 253, 0.2);
}

.ablauf-cta .btn-primary:hover {
    background: var(--orange);
    color: var(--black);
}

/* =================================================================
   SERVICE SECTION
   ================================================================= */

.service-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

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

.service-area {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.service-area:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

.service-area h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-area h3 svg {
    color: var(--scarlett);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tags span {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
    border: 1px solid transparent;
}

.area-tags span:hover {
    background: var(--scarlett);
    color: var(--white);
    border-color: var(--scarlett);
}

.service-note {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.service-note svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-note p {
    color: var(--gray-900);
    line-height: 1.7;
}

.service-note strong {
    font-weight: 700;
    color: var(--black);
}

/* =================================================================
   FAQ SECTION
   ================================================================= */

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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--scarlett);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--scarlett);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(147, 0, 14, 0.05), rgba(243, 172, 38, 0.05));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--scarlett);
    font-weight: 700;
}

/* =================================================================
   KONTAKT SECTION
   ================================================================= */

.kontakt-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.kontakt-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kontakt-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.kontakt-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(147, 0, 14, 0.1), rgba(243, 172, 38, 0.1));
    color: var(--scarlett);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid var(--scarlett);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kontakt-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.kontakt-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.kontakt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.kontakt-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.kontakt-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.75rem;
}

.kontakt-card h3 svg {
    color: var(--scarlett);
}

.kontakt-card p {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.kontakt-card a {
    color: var(--scarlett);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.kontakt-card a:hover {
    color: var(--orange);
}

.kontakt-card span {
    color: var(--gray-700);
    font-weight: 500;
}

/* Kontaktformular */
.kontakt-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.kontakt-form-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-200);
}

.kontakt-form-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.kontakt-form-box input,
.kontakt-form-box select,
.kontakt-form-box textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.kontakt-form-box input:focus,
.kontakt-form-box select:focus,
.kontakt-form-box textarea:focus {
    outline: none;
    border-color: var(--scarlett);
    box-shadow: 0 0 0 3px rgba(147, 0, 14, 0.1);
}

.kontakt-form-box textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--scarlett);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--scarlett), var(--scarlett-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(147, 0, 14, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--scarlett-light), var(--scarlett));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(147, 0, 14, 0.4);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.form-note svg {
    color: var(--orange);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

/* =================================================================
   FOOTER
   ================================================================= */

footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--scarlett), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--orange);
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column h4 span {
    color: var(--orange);
}

.footer-column p {
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-column svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

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

/* =================================================================
   LEGAL PAGES
   ================================================================= */

.legal-page {
    padding: 8rem 0 4rem;
    background: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.legal-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(147, 0, 14, 0.1), rgba(243, 172, 38, 0.1));
    color: var(--scarlett);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid var(--scarlett);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.legal-content {
    background: var(--white);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gray-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--scarlett);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.legal-section strong {
    color: var(--black);
    font-weight: 700;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

.legal-back .btn-primary {
    background: var(--scarlett);
    display: inline-flex;
}

.legal-back .btn-primary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

/* =================================================================
   MODALS
   ================================================================= */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 4, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(6, 6, 4, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gray-200);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.modal-close:hover {
    background: var(--scarlett);
    color: var(--white);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-main {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 2px solid var(--gray-200);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-icon {
        display: none;
    }
    
    .ablauf-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .kontakt-form-box {
        padding: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 2rem;
    }
    
    .hero-eyebrow {
        font-size: 0.85rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}