/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - KFZ Technik / Automotive Style */
    --primary: #1e40af;
    --primary-hover: #1e3a8a;
    --primary-light: rgba(30, 64, 175, 0.1);
    --primary-pastel: #60a5fa;
    --primary-pastel-light: rgba(96, 165, 250, 0.15);
    
    /* Accent Colors - Metallic/Technical */
    --accent-steel: #475569;
    --accent-steel-light: rgba(71, 85, 105, 0.1);
    --accent-steel-hover: #334155;
    --accent-metal: #64748b;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-warm: #f8fafc;
    --bg-hero: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
    --bg-services: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-steel: rgba(71, 85, 105, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 20px;
    
    /* Transitions */
    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    display: block;
}

.trust-item-hide-mobile {
    display: flex;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: var(--section-padding);
    padding-top: 160px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 250, 252, 0.6) 50%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-label-top-right {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    right: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    background-image: 
        linear-gradient(90deg, rgba(30, 64, 175, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(30, 64, 175, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--primary);
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 
        0 12px 32px rgba(30, 64, 175, 0.25),
        0 6px 16px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 10;
    border-radius: 8px;
    padding-top: 28px;
    border: 2.5px solid rgba(30, 64, 175, 0.3);
    min-width: 320px;
    width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pin-Kopf (Runder Kopf der Pinnwand-Nadel) */
.hero-label-top-right::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: radial-gradient(circle at 35% 35%, var(--primary) 0%, var(--primary-hover) 35%, #1e3a8a 70%, #1e3a8a 100%);
    border-radius: 50%;
    box-shadow: 
        0 6px 16px rgba(30, 64, 175, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.3),
        inset 4px 4px 8px rgba(255, 255, 255, 0.4);
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    z-index: 11;
}

/* Pin-Nadel (Lange Nadel die durch den Zettel geht) */
.hero-label-top-right::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 22px;
    background: linear-gradient(to bottom, #64748b 0%, #475569 40%, #334155 80%, #1e293b 100%);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 0 4px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(0, 0, 0, 0.2);
    z-index: 12;
    border-radius: 2px;
}

.hero-label-top-right span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-family: 'Inter', var(--font-primary);
    font-size: 15px;
    line-height: 1.4;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(30, 64, 175, 0.15) 35%, rgba(30, 64, 175, 0.15) 75%, transparent 75%);
    padding: 3px 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hero-content {
    max-width: 700px;
    position: relative;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-light);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-title .accent {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-steel));
    opacity: 0.3;
    border-radius: 2px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}


.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: var(--bg-secondary);
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
    border: none;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--bg-services);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 50% 0%, rgba(30, 64, 175, 0.03), transparent 70%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary), var(--accent-steel));
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-steel));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.2);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--primary-light);
    border-radius: 8px;
    color: var(--primary);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   EXAMPLES SECTION
   ============================================ */
.examples {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.example-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: var(--transition);
}

.example-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.example-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.example-item:hover .example-image {
    transform: scale(1.05);
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 32px 24px 24px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.example-item:hover .example-overlay {
    transform: translateY(0);
    opacity: 1;
}

.example-overlay h3,
.example-overlay strong,
.example-overlay .example-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.example-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--section-padding);
    background: var(--bg-warm);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 50% 100%, rgba(30, 64, 175, 0.03), transparent 70%);
    pointer-events: none;
}

.benefits::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.04), transparent 70%);
    pointer-events: none;
    opacity: 0.6;
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.2);
    transform: translateY(-6px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-steel-light));
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent-steel));
    color: white;
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-item h3,
.benefit-item strong,
.benefit-item .benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: block;
}


.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.section-title .accent {
    color: var(--primary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process.visible {
    opacity: 1;
    transform: translateY(0);
}
    background: var(--bg-secondary);
}

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

.process-item {
    position: relative;
    padding-left: 80px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    border: 2px solid rgba(30, 64, 175, 0.15);
    line-height: 1;
    opacity: 1;
}

.process-item h3,
.process-item strong,
.process-item .process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: block;
}


.process-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--bg-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.expertise::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.expertise-item {
    text-align: center;
    padding: 32px 24px;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-4px);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}

.expertise-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expertise-item:hover .expertise-icon::before {
    opacity: 1;
    transform: scale(1.1);
}

.expertise-item:hover .expertise-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.expertise-icon svg {
    width: 32px;
    height: 32px;
}

.expertise-item h3,
.expertise-item strong,
.expertise-item .expertise-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: block;
}


.expertise-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.about-content {
    max-width: 800px;
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--primary);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-pastel-light);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h4,
.feature-item strong,
.feature-item .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: block;
}


.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4,
.contact-item strong,
.contact-item .contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}


.contact-item p {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-steel));
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.contact-form .btn {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 20px 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4,
.footer-column strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .examples-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-bar {
        padding: 8px 0;
    }
    
    .trust-bar .container {
        padding: 0 15px;
    }
    
    .trust-items {
        gap: 20px;
        font-size: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        padding: 0;
        scroll-behavior: smooth;
    }
    
    .trust-items::-webkit-scrollbar {
        display: none;
    }
    
    .trust-item {
        flex-shrink: 0;
    }
    
    .trust-item-hide-mobile {
        display: none;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        padding-left: 70px;
    }
    
    .process-number {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .trust-bar {
        padding: 6px 0;
    }
    
    .trust-bar .container {
        padding: 0 10px;
    }
    
    .trust-items {
        gap: 16px;
        font-size: 11px;
        padding: 0;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }
    
    .trust-items::-webkit-scrollbar {
        display: none;
    }
    
    .trust-item {
        flex-shrink: 0;
        gap: 6px;
    }
    
    .trust-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .trust-item span {
        white-space: nowrap;
        font-size: 11px;
    }
    
    .hero {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-label-top-right {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translateX(-50%) rotate(-1.5deg);
        right: auto;
        min-width: 260px;
        max-width: calc(100% - 30px);
        width: fit-content;
        padding: 14px 18px;
        font-size: 12px;
        z-index: 10;
    }
    
    .hero-label-top-right::before {
        top: -28px;
    }
    
    .hero-label-top-right::after {
        top: -8px;
        height: 24px;
    }
    
    .hero-label-top-right span {
        font-size: 13px;
        letter-spacing: 0.6px;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: nowrap;
        padding: 24px 0;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid,
    .process-grid,
    .expertise-grid,
    .certificates-grid,
    .testimonials-grid,
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-item {
        padding-left: 60px;
    }
    
    .process-number {
        font-size: 20px;
        width: 44px;
        height: 44px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .about-features {
        gap: 24px;
    }
    
    .hero-quick-contact {
        margin-top: 20px;
    }
    
    .quick-contact-text {
        font-size: 14px;
    }
}

/* ============================================
   SEHR KLEINE BILDSCHIRME (480px und kleiner)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 12px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .trust-bar {
        padding: 6px 0;
    }
    
    .trust-items {
        gap: 10px;
        font-size: 9px;
        padding: 0 12px;
    }
    
    .trust-icon {
        width: 12px;
        height: 12px;
    }
    
    .hero {
        padding-top: 90px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-label-top-right {
        top: -60px;
        min-width: 240px;
        max-width: calc(100% - 24px);
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .hero-label-top-right::before {
        top: -32px;
    }
    
    .hero-label-top-right::after {
        top: -10px;
        height: 26px;
    }
    
    .hero-label-top-right span {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: clamp(24px, 9vw, 32px);
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        gap: 12px;
        padding: 20px 0;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: clamp(22px, 8vw, 28px);
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .service-card,
    .benefit-item,
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .service-title,
    .benefit-item h3,
    .expertise-item h3,
    .certificate-item h3,
    .certificate-item strong {
        font-size: 18px;
    }
    
    .service-description,
    .benefit-item p,
    .expertise-item p,
    .certificate-item p {
        font-size: 14px;
    }
    
    .process-item {
        padding-left: 56px;
    }
    
    .process-number {
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
    
    .process-item h3,
    .process-item strong {
        font-size: 18px;
    }
    
    .process-item p {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .emergency-btn {
        bottom: 80px;
        right: 16px;
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .cookie-content {
        padding: 16px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.5);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong,
.testimonial-author .testimonial-name {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */
.certificates {
    padding: var(--section-padding);
    background: var(--bg-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.certificate-item {
    text-align: center;
    padding: 32px 24px;
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-4px);
}

.certificate-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.certificate-item:hover .certificate-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.certificate-icon svg {
    width: 32px;
    height: 32px;
}

.certificate-item h3,
.certificate-item strong,
.certificate-item .certificate-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: block;
}


.certificate-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-area.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.area-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
    transform: translateY(-2px);
}

.area-item h3,
.area-item strong,
.area-item .area-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: block;
}


.area-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.service-area-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
}

/* ============================================
   DOWNLOADS SECTION
   ============================================ */
.downloads {
    padding: var(--section-padding);
    background: var(--bg-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.download-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.download-item:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.15);
    transform: translateY(-4px);
}

.download-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    color: var(--primary);
    margin-bottom: 24px;
}

.download-icon svg {
    width: 28px;
    height: 28px;
}

.download-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.download-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    color: var(--primary-hover);
    gap: 12px;
}

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

/* ============================================
   EMERGENCY BUTTON
   ============================================ */
.emergency-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #dc2626;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    z-index: 999;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.emergency-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.5);
}

.emergency-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(220, 38, 38, 0.6);
    }
}

@media (max-width: 640px) {
    .emergency-btn {
        bottom: 90px;
        right: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .emergency-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--text-secondary);
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.cookie-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: scale(1.1);
}

.cookie-close svg {
    width: 16px;
    height: 16px;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 13px;
    flex: 1;
    margin: 0;
    padding-right: 40px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 10px 12px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-close {
        top: -6px;
        right: -6px;
        width: 24px;
        height: 24px;
    }
    
    .cookie-close svg {
        width: 14px;
        height: 14px;
    }
    
    .cookie-content p {
        font-size: 12px;
        padding-right: 30px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 8px;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   CONTACT LINKS
   ============================================ */
.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary);
}

/* ============================================
   HERO QUICK CONTACT
   ============================================ */
.hero-quick-contact {
    margin-top: 24px;
}

.quick-contact-text {
    color: var(--text-secondary);
    font-size: 15px;
}

.quick-contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.quick-contact-link:hover {
    text-decoration: underline;
}

/* ============================================
   FORM SELECT
   ============================================ */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
