/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Scroll Animasyonları */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-fade.active {
    opacity: 1;
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.active {
    opacity: 1;
    transform: scale(1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    color: white;
    padding: 0.9rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    height: 60px;
}

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

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar-item:hover {
    color: #1fc9ba;
}

.top-bar-item svg {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-promo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31, 201, 186, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #1fc9ba;
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-bar-promo svg {
    flex-shrink: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(31, 201, 186, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(31, 201, 186, 0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 60px;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 2rem;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-logo h2 {
    color: #1fc9ba;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 20%,
        rgba(0, 0, 0, 0.15) 80%,
        transparent 100%
    );
    margin: 0 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #1fc9ba;
    background: rgba(31, 201, 186, 0.05);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 201, 186, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 201, 186, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-outline {
    background: white;
    color: #1fc9ba;
    border: 2px solid #1fc9ba;
}

.btn-outline:hover {
    background: #1fc9ba;
    color: white;
}

.btn-large {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
}

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

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 201, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 201, 186, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31, 201, 186, 0.15);
    color: #1fc9ba;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(31, 201, 186, 0.3);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1fc9ba;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b2a;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-stat {
    display: flex;
    flex-direction: column;
}

/* Trust Card */
.trust-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 2rem 1.75rem;
    border-radius: 20px;
    box-shadow: 
        0 0 0 1px rgba(31, 201, 186, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(31, 201, 186, 0.04);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1fc9ba 0%, #18b5a3 50%, #1fc9ba 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.trust-badge-main {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 
        0 8px 20px rgba(31, 201, 186, 0.2),
        0 0 0 6px rgba(31, 201, 186, 0.04);
    position: relative;
}

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

.trust-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.15), transparent);
    opacity: 0;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.trust-badge-main h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b2a;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.875rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.trust-item:hover {
    transform: translateX(6px);
    background: rgba(31, 201, 186, 0.04);
    border-color: rgba(31, 201, 186, 0.12);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(31, 201, 186, 0.08);
}

.trust-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(31, 201, 186, 0.2));
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Made in Germany - Modern German flag background */
.trust-item:nth-child(2) {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.25) 25%, 
        rgba(110, 0, 0, 0.22) 35%, 
        rgba(221, 0, 0, 0.25) 50%, 
        rgba(221, 100, 0, 0.25) 65%, 
        rgba(255, 206, 0, 0.3) 75%, 
        rgba(255, 206, 0, 0.35) 100%
    );
    border-color: rgba(0, 0, 0, 0.12);
}

.trust-item:nth-child(2):hover {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.3) 25%, 
        rgba(110, 0, 0, 0.27) 35%, 
        rgba(221, 0, 0, 0.3) 50%, 
        rgba(221, 100, 0, 0.3) 65%, 
        rgba(255, 206, 0, 0.35) 75%, 
        rgba(255, 206, 0, 0.4) 100%
    );
    transform: translateX(8px);
    border-color: rgba(0, 0, 0, 0.15);
}

.trust-rating {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(31, 201, 186, 0.1);
}

.stars {
    font-size: 1.75rem;
    color: #fbbf24;
    letter-spacing: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    display: inline-block;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-compact {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 0rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Otomat Tipleri Kayan Banner */
.automaten-slider {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.automaten-slider::before,
.automaten-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.automaten-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.automaten-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.automaten-track {
    display: flex;
    gap: 4rem;
    animation: scrollAutomaten 30s linear infinite;
}

@keyframes scrollAutomaten {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.automaten-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.automaten-item:hover {
    opacity: 1;
}

.automaten-item svg {
    stroke: #999;
    transition: stroke 0.3s ease;
}

.automaten-item:hover svg {
    stroke: #1fc9ba;
}

.automaten-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* Vorteile Section - Modern Split Layout */
.vorteile {
    background: #fafafa;
    overflow: hidden;
    padding: 50px 0 70px;
}

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

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.feature-row:last-child {
    border-bottom: none;
}

/* Separator line - middle column */
.feature-row > :nth-child(2) {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #d0d0d0 15%,
        #d0d0d0 85%,
        transparent 100%
    );
    width: 1px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 3.5rem;
    background: white;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.02);
}

.feature-content:first-child {
    grid-column: 1;
}

.feature-content:last-child {
    grid-column: 3;
}

.feature-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.45rem 1rem;
    background: #1fc9ba;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
}

.feature-content h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.feature-content > p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: #444;
    font-weight: 500;
}

.feature-list svg {
    color: #1fc9ba;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Funktioniert Section */
.funktioniert {
    background: #fafafa;
    padding: 0 0 50px;
}

.funktioniert .section-header-compact {
    background: 
        linear-gradient(
            rgba(31, 201, 186, 0.55) 0%,
            rgba(31, 201, 186, 0.6) 100%
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(13, 27, 42, 0.15) 20px,
            rgba(13, 27, 42, 0.15) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(13, 27, 42, 0.15) 20px,
            rgba(13, 27, 42, 0.15) 21px
        ),
        url('../assets/automat.jpg') center/cover no-repeat;
    padding: 120px 40px;
    margin: 0 -100vw 4rem;
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    position: relative;
}

.funktioniert .section-header-compact .section-title {
    color: white;
}

.funktioniert .section-header-compact .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.steps-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-compact {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    border: 2px solid rgba(31, 201, 186, 0.12);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Animasyonlu bağlantı çizgileri */
.step-compact:nth-child(1)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    width: 0.75rem;
    height: 2px;
    background: linear-gradient(to right, #1fc9ba, rgba(31, 201, 186, 0.3));
    transform: translateY(-50%);
}

.step-compact:nth-child(1)::before {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #1fc9ba;
    border-radius: 50%;
    transform: translate(50%, -50%);
    animation: flowDot 2s ease-in-out infinite;
}

.step-compact:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.75rem;
    width: 2px;
    height: 0.75rem;
    background: linear-gradient(to bottom, #1fc9ba, rgba(31, 201, 186, 0.3));
    transform: translateX(-50%);
}

.step-compact:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.75rem;
    width: 6px;
    height: 6px;
    background: #1fc9ba;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    animation: flowDotVertical 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.step-compact:nth-child(3)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    width: 0.75rem;
    height: 2px;
    background: linear-gradient(to right, #1fc9ba, rgba(31, 201, 186, 0.3));
    transform: translateY(-50%);
}

.step-compact:nth-child(3)::before {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #1fc9ba;
    border-radius: 50%;
    transform: translate(50%, -50%);
    animation: flowDot 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes flowDot {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 0 0 rgba(31, 201, 186, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 4px rgba(31, 201, 186, 0.1);
    }
}

@keyframes flowDotVertical {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 0 0 rgba(31, 201, 186, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 4px rgba(31, 201, 186, 0.1);
    }
}

.step-compact:hover {
    border-color: #1fc9ba;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.step-compact-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-compact-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 0.5rem 0;
}

.step-compact-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.step-compact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.step-compact-list li {
    color: #444;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
    padding-left: 1.25rem;
    position: relative;
}

.step-compact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1fc9ba;
    font-weight: 700;
}

.step-compact-time {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(31, 201, 186, 0.08);
    border-radius: 6px;
    color: #1fc9ba;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-compact-time-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.funktioniert-cta {
    margin-top: 2.5rem;
    padding: 2.5rem 3rem;
    background: 
        linear-gradient(135deg, rgba(31, 201, 186, 0.03) 0%, rgba(31, 201, 186, 0.08) 100%),
        white;
    border-radius: 20px;
    border: 2px solid rgba(31, 201, 186, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(31, 201, 186, 0.12);
    position: relative;
    overflow: hidden;
}

.funktioniert-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1fc9ba 0%, #18b5a3 50%, #1fc9ba 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31, 201, 186, 0.1);
    color: #1fc9ba;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(31, 201, 186, 0.2);
}

.cta-badge svg {
    width: 16px;
    height: 16px;
}

.funktioniert-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0d1b2a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.funktioniert-cta-content > p {
    color: #666;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-stat svg {
    color: #1fc9ba;
    flex-shrink: 0;
}

.btn-cta {
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(31, 201, 186, 0.35);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(31, 201, 186, 0.5);
}

/* Preise Section */
.preise {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.featured {
    border-color: #1fc9ba;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(31, 201, 186, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(31, 201, 186, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(31, 201, 186, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1fc9ba;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #333;
    font-size: 0.95rem;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: #1fc9ba;
    flex-shrink: 0;
}

/* Bewerbung Section */
.bewerbung {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    color: white;
}

.bewerbung-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.bewerbung-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bewerbung-info > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: #1fc9ba;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.bewerbung-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 0.95rem;
}

.bewerbung-form input,
.bewerbung-form select,
.bewerbung-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.bewerbung-form input:focus,
.bewerbung-form select:focus,
.bewerbung-form textarea:focus {
    outline: none;
    border-color: #1fc9ba;
    background: white;
    box-shadow: 0 0 0 5px rgba(31, 201, 186, 0.08);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Checkbox group için düzgün hizalama */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

.link {
    color: #1fc9ba;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #000814 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-column h4 {
    color: #1fc9ba;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #1fc9ba;
    transform: translateX(5px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(31, 201, 186, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(31, 201, 186, 0.2);
    color: #1fc9ba;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .bewerbung-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Über uns Section */
.ueber-uns {
    background: #ffffff;
    padding: 100px 0;
}

.ueber-uns-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(31, 201, 186, 0.1);
    color: #1fc9ba;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.ueber-uns-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ueber-uns-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ueber-uns-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ueber-uns-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.ueber-uns-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ueber-uns-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.35rem;
}

.ueber-uns-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ueber-uns-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(31, 201, 186, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #1fc9ba;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(31, 201, 186, 0.15);
}

.stat-card .stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1fc9ba;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Karriere Section */
.karriere {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.karriere-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.keine-stellen-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.keine-stellen-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.keine-stellen-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
}

.keine-stellen-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.karriere-vorteile {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.karriere-vorteile h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1.25rem;
}

.karriere-vorteile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.karriere-vorteile li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.karriere-vorteile svg {
    color: #1fc9ba;
    flex-shrink: 0;
}

.karriere-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(31, 201, 186, 0.1);
}

.karriere-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.karriere-form-container > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.karriere-form input,
.karriere-form select,
.karriere-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.karriere-form input:focus,
.karriere-form select:focus,
.karriere-form textarea:focus {
    outline: none;
    border-color: #1fc9ba;
    background: white;
    box-shadow: 0 0 0 5px rgba(31, 201, 186, 0.08);
}

.karriere-form .form-group {
    margin-bottom: 1.25rem;
}

.karriere-form label {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 0.95rem;
}

/* Hilfe Center Section */
.hilfe-center {
    background: #ffffff;
    padding: 100px 0;
}

.hilfe-search {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

.hilfe-search svg {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.hilfe-search input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.hilfe-search input:focus {
    outline: none;
    border-color: #1fc9ba;
    background: white;
    box-shadow: 0 8px 32px rgba(31, 201, 186, 0.12);
}

.hilfe-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.hilfe-category {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hilfe-category:hover {
    background: white;
    border-color: rgba(31, 201, 186, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.hilfe-category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.1) 0%, rgba(31, 201, 186, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fc9ba;
    margin-bottom: 1.25rem;
}

.hilfe-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.hilfe-category > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.hilfe-articles {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hilfe-articles li a {
    color: #1fc9ba;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hilfe-articles li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.hilfe-articles li a:hover {
    color: #18b5a3;
}

.hilfe-articles li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.hilfe-contact {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hilfe-contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(31, 201, 186, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fc9ba;
    flex-shrink: 0;
}

.hilfe-contact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
}

.hilfe-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hilfe-contact .btn {
    margin-left: auto;
}

/* Status Section */
.status-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.status-overview {
    margin-bottom: 3rem;
}

.status-main {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.15) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.status-indicator {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-indicator.operational {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    }
    50% {
        box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.1);
    }
}

.status-main-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.35rem;
}

.status-main-text p {
    font-size: 0.95rem;
    color: #666;
}

.status-log {
    background: #0d1b2a;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', monospace;
}

.status-log-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-log-header h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.status-live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    font-family: 'Inter', sans-serif;
}

.status-live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-log-entries {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.log-entry {
    display: grid;
    grid-template-columns: 50px 45px 100px 1fr;
    gap: 1rem;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    align-items: center;
}

.log-entry:last-child {
    border-bottom: none;
}

.log-time {
    color: rgba(255, 255, 255, 0.4);
}

.log-status {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
}

.log-status.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.log-service {
    color: #1fc9ba;
    font-weight: 500;
}

.log-message {
    color: rgba(255, 255, 255, 0.7);
}

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

.status-service {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 0, 0, 0.04);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.service-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
}

.service-status {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-status.operational {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.service-uptime {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.uptime-bar {
    display: flex;
    gap: 3px;
}

.uptime-bar span {
    flex: 1;
    height: 24px;
    background: #10b981;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.uptime-bar span:hover {
    transform: scaleY(1.2);
    background: #059669;
}

.uptime-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive für neue Sections */
@media (max-width: 1024px) {
    .ueber-uns-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ueber-uns-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .karriere-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hilfe-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hilfe-contact {
        flex-wrap: wrap;
    }
    
    .hilfe-contact .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .status-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ueber-uns-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hilfe-categories {
        grid-template-columns: 1fr;
    }
    
    .hilfe-contact {
        padding: 2rem;
        text-align: center;
        flex-direction: column;
    }
    
    .log-entry {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .log-entry .log-time,
    .log-entry .log-service {
        display: inline;
    }
}

/* Page Header für Unterseiten */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 201, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 201, 186, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Über uns Page */
.ueber-uns-page {
    padding: 80px 0;
    background: #ffffff;
}

.ueber-uns-page .ueber-uns-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ueber-uns-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.ueber-uns-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Werte Section */
.werte-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.wert-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wert-card:hover {
    border-color: rgba(31, 201, 186, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wert-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.1) 0%, rgba(31, 201, 186, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fc9ba;
    margin: 0 auto 1.25rem;
}

.wert-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
}

.wert-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-cta {
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.08) 0%, rgba(31, 201, 186, 0.15) 100%);
    border: 2px solid rgba(31, 201, 186, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.team-cta h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.team-cta p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Karriere Page */
.karriere-page {
    padding: 80px 0;
    background: #ffffff;
}

/* Hilfe Center Page */
.hilfe-center-page {
    padding: 80px 0;
    background: #ffffff;
}

/* Status Page */
.status-page {
    padding: 80px 0;
    background: #ffffff;
}

.status-page .status-services {
    margin-bottom: 3rem;
}

.status-history {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
}

.status-history h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.history-empty {
    text-align: center;
    padding: 2rem;
    color: #10b981;
}

.history-empty svg {
    margin-bottom: 1rem;
}

.history-empty p {
    font-size: 1rem;
    font-weight: 500;
}

/* Kontakt Page */
.kontakt-page {
    padding: 80px 0;
    background: #ffffff;
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.kontakt-info > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.kontakt-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.kontakt-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.kontakt-method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.1) 0%, rgba(31, 201, 186, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fc9ba;
    flex-shrink: 0;
}

.kontakt-method h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.25rem;
}

.kontakt-method a {
    color: #1fc9ba;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.kontakt-method a:hover {
    text-decoration: underline;
}

.kontakt-method p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.kontakt-links {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.kontakt-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.kontakt-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1fc9ba;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.kontakt-link:hover {
    transform: translateX(5px);
}

.kontakt-form-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
}

.kontakt-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.kontakt-form-container > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: #1fc9ba;
    box-shadow: 0 0 0 5px rgba(31, 201, 186, 0.08);
}

.kontakt-form .form-group {
    margin-bottom: 1.25rem;
}

.kontakt-form label {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 0.95rem;
}

/* Responsive für Unterseiten */
@media (max-width: 1024px) {
    .werte-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ueber-uns-page .ueber-uns-content {
        grid-template-columns: 1fr;
    }
    
    .kontakt-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .werte-grid {
        grid-template-columns: 1fr;
    }
}
