/* FRONTLANDS - Clean & Modern */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #f5f5f7;
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;
    --blue: #3b82f6;
    --blue-dark: #1e40af;
    --green: #10b981;
    --green-dark: #059669;
    --text: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --border: #e5e5e5;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --transition: 0.2s ease;
    
    /* Nordlicht Gradient */
    --nordlicht: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    --nordlicht-hover: linear-gradient(135deg, #2563eb 0%, #059669 100%);
    --nordlicht-text: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
}

html { scroll-behavior: smooth; height: 100%; }
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Page Wrapper für Sticky Footer */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0a0f1a 0%, #1e3a8a 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader-logo-wrapper {
    position: relative; width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center;
}
.preloader-ring {
    position: absolute; width: 100%; height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--blue); border-right-color: rgba(59,130,246,0.3);
    border-radius: 50%; animation: spin 1.2s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.preloader-logo {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid rgba(59,130,246,0.3);
    box-shadow: 0 0 30px rgba(59,130,246,0.4);
}
.preloader-text { 
    font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 18px;
    font-weight: 700; color: white; letter-spacing: 2px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 64px; 
    background: linear-gradient(to top, #0a0a0a 0%, #151515 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-avatar { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.logo-text { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; font-weight: 700; }
.logo-blue { color: var(--blue); }
.logo-byte { color: white; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 4px; }
.nav-link {
    padding: 8px 14px; color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 14px; position: relative;
    display: flex; align-items: center;
    transition: color 0.2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover i { color: var(--blue); }
.nav-link.active { color: white; }
.nav-link.active i { color: var(--blue); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link i { margin-right: 6px; transition: color 0.2s ease; }

/* CONTACT BUTTON */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-left: 12px;
    border: 1px solid transparent;
}
.contact-btn:hover {
    background: var(--blue-dark);
}
.contact-btn.active {
    background: var(--blue-dark);
}
.contact-btn i {
    font-size: 14px;
}

/* USER DROPDOWN */
.user-menu-dropdown { position: relative; }
.user-menu-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 14px; background: rgba(255,255,255,0.1); border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1); color: white; cursor: pointer;
    transition: var(--transition); font-size: 14px; font-weight: 500;
}
.user-menu-btn:hover { background: rgba(255,255,255,0.15); }
.user-menu-btn .user-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-menu-btn i.fa-chevron-down { font-size: 11px; opacity: 0.7; transition: var(--transition); }
.user-menu-dropdown:hover .user-menu-btn i.fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px; background: var(--bg-dark); border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.2s ease; z-index: 1001; overflow: hidden;
}
.user-menu-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; color: rgba(255,255,255,0.8);
    text-decoration: none; font-size: 14px; transition: var(--transition);
}
.dropdown-item:hover { background: rgba(255,255,255,0.1); color: white; }
.dropdown-item i { width: 18px; color: var(--blue); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; }

.mobile-menu-toggle { display: none; }

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
    z-index: 999; opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 300px; max-width: 85vw;
    background: var(--bg-dark); z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex; flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    padding: 20px; background: rgba(0,0,0,0.3);
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    color: white; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.15); }

.mobile-menu-content {
    flex: 1; overflow-y: auto; padding: 20px;
    display: flex; flex-direction: column;
}

.mobile-user-info {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; background: rgba(255,255,255,0.05);
    border-radius: 12px; margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}
.mobile-user-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid var(--blue);
}
.mobile-user-name {
    color: white; font-weight: 600; font-size: 16px;
}

.mobile-nav-links {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 24px;
}
.mobile-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; color: rgba(255,255,255,0.7);
    text-decoration: none; border-radius: 10px;
    transition: all 0.2s ease; font-size: 15px;
    border: 1px solid transparent;
}
.mobile-nav-link i {
    width: 20px;
    transition: color 0.2s ease;
}
.mobile-nav-link:hover { 
    background: rgba(255,255,255,0.05); 
    color: white;
    border-color: rgba(255,255,255,0.1);
}
.mobile-nav-link:hover i {
    color: var(--blue);
}
.mobile-nav-link.active {
    background: rgba(59,130,246,0.1);
    color: white;
    border: 1px solid rgba(59,130,246,0.25);
}
.mobile-nav-link.active i {
    color: var(--blue);
}

.mobile-menu-footer {
    margin-top: auto; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; border-radius: 8px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-btn.primary {
    background: var(--blue);
    border-color: var(--blue);
}
.mobile-menu-btn.logout {
    background: rgba(220,38,38,0.1);
    border-color: rgba(220,38,38,0.3);
    color: #dc2626;
}
.mobile-menu-btn.logout:hover {
    background: rgba(220,38,38,0.2);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius);
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary { 
    background: var(--blue); 
    color: white; 
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
    font-size: 13px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-primary:hover { 
    background: var(--blue-dark);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline { 
    background: rgba(255,255,255,0.1); 
    border: 2px solid rgba(255,255,255,0.3); 
    color: white;
    backdrop-filter: blur(10px);
}
.btn-outline:hover { 
    background: rgba(255,255,255,0.2); 
    border-color: rgba(255,255,255,0.5);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: 
        url('../img/hero-overlay.png') center/cover no-repeat,
        linear-gradient(160deg, #0a0f1a 0%, #0f172a 20%, #1e3a8a 45%, #10b981 85%, #059669 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute;
    width: 800px; height: 800px; top: -300px; right: -200px;
    background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 60%);
    filter: blur(60px);
}
.hero::after {
    content: ''; position: absolute;
    width: 500px; height: 500px; bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 60%);
    filter: blur(50px);
}

.hero-container {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-left { color: white; }

.hero-profile {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 24px;
}
.hero-profile img {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.hero-greeting { font-size: 14px; opacity: 0.7; display: block; margin-bottom: 4px; }
.hero-title {
    font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900; letter-spacing: 2px; line-height: 1.1;
}
.hero-tagline { font-size: 14px; opacity: 0.7; margin-top: 8px; }

.hero-desc {
    font-size: 15px; opacity: 0.8; line-height: 1.7;
    max-width: 450px; margin-bottom: 28px;
}

.hero-stats {
    display: flex; gap: 32px; margin-bottom: 28px;
}
.hero-stat { text-align: center; min-width: 90px; }
.hero-stat .stat-value {
    font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    font-size: 32px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px;
    font-variant-numeric: tabular-nums;
}
.hero-stat .stat-value i {
    font-size: 24px;
    opacity: 0.8;
}
.hero-stat .stat-label {
    font-size: 12px; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons { display: flex; gap: 12px; margin-bottom: 24px; }

.hero-socials { display: flex; gap: 10px; }
.hero-socials a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; font-size: 18px;
    transition: all 0.2s ease; border: 1px solid rgba(255,255,255,0.15);
}
.hero-socials a:hover { 
    background: var(--c); 
    border-color: var(--c);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.6;
    font-size: 13px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* HERO RECHTS - CREDENTIALS BOX */
.hero-right { 
    display: flex; 
    justify-content: flex-end; 
}

.hero-credentials {
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
}

.hero-credentials h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.5);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.credential-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.credential-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon i {
    font-size: 18px;
    color: #60a5fa;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential-text strong {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.credential-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.credentials-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: #3b82f6;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 24px;
}

.credentials-cta:hover {
    background: #2563eb;
}

.credentials-cta i {
    font-size: 14px;
}

.refresh-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.refresh-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==================== QUICK SECTION ==================== */
.quick-section { padding: 48px 24px; background: var(--bg-dark); }
.container { max-width: 1200px; margin: 0 auto; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px; background: rgba(255,255,255,0.05);
    border-radius: var(--radius); text-decoration: none;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.05);
}
.quick-card:hover { background: rgba(255,255,255,0.08); }
.quick-icon {
    width: 48px; height: 48px; background: var(--blue);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white; flex-shrink: 0;
}
.quick-card-text strong { display: block; color: white; font-size: 15px; margin-bottom: 2px; }
.quick-card-text span { color: #888; font-size: 13px; }

/* ==================== HOME TEASER ==================== */
.home-teaser { padding: 80px 24px; background: var(--bg-white); }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.teaser-card {
    padding: 32px; background: var(--bg);
    border-radius: var(--radius-lg); text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.teaser-card:hover { box-shadow: var(--shadow); }
.teaser-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: var(--blue); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: white;
}
.teaser-card h3 { font-size: 20px; margin-bottom: 12px; }
.teaser-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.teaser-card a { color: var(--blue); text-decoration: none; font-weight: 600; margin-top: auto; }

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 120px 24px 60px;
    background: linear-gradient(160deg, #0a0f1a 0%, #1e3a8a 60%, #2563eb 100%);
    text-align: center; color: white;
}
.page-header h1 { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 32px; margin-bottom: 8px; }
.page-header p { opacity: 0.8; font-size: 16px; }
.section { padding: 60px 24px; background: var(--bg-white); }

/* ==================== CONTACT ==================== */
.contact-box {
    max-width: 600px; margin: 0 auto;
    background: var(--bg); padding: 32px;
    border-radius: var(--radius-lg); text-align: center;
}
.contact-box i { font-size: 48px; color: var(--blue); margin-bottom: 24px; }
.contact-box h2 { font-size: 24px; margin-bottom: 12px; }
.contact-box p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }

/* ==================== RULES ==================== */
.rules-intro { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.rules-content { max-width: 900px; margin: 0 auto; }
.rule-section {
    background: var(--bg); padding: 32px;
    border-radius: var(--radius-lg); margin-bottom: 32px;
}
.rule-section h2 {
    display: flex; align-items: center; gap: 12px;
    font-size: 24px; margin-bottom: 20px;
}
.rule-section h2 i { color: var(--blue); }
.rule-section ul { list-style: none; }
.rule-section li {
    padding: 12px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 12px;
}
.rule-section li:last-child { border-bottom: none; }
.rule-section li i { color: var(--blue); margin-top: 4px; }

.punishment-table, .respawn-table {
    width: 100%; border-collapse: collapse;
    background: white; border-radius: var(--radius);
    overflow: hidden;
}
.punishment-table th, .respawn-table th { background: var(--bg); padding: 12px; text-align: left; font-size: 14px; }
.punishment-table td, .respawn-table td { padding: 12px; border-top: 1px solid var(--border); }

/* ==================== SERVER PAGE ==================== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.info-card {
    background: var(--bg); padding: 24px;
    border-radius: var(--radius-lg);
}
.info-card h3 {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; margin-bottom: 16px;
}
.info-card h3 i { color: var(--blue); }
.info-table { width: 100%; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
    padding: 10px 0; font-size: 14px;
}
.info-table td:first-child { color: var(--text-light); width: 40%; }

.server-stats-box {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 40px; border-radius: var(--radius-lg);
    text-align: center; color: white;
}
.server-stats-box h3 { font-size: 24px; margin-bottom: 24px; }

.connect-guide {
    background: var(--bg); padding: 32px;
    border-radius: var(--radius-lg);
}
.connect-guide h3 { font-size: 20px; margin-bottom: 20px; }
.connect-guide ol { padding-left: 24px; }
.connect-guide li { margin-bottom: 12px; color: var(--text-light); }

/* ==================== TEAM PAGE ==================== */
.user-avatar {
    width: 48px; height: 48px;
    border-radius: 50%; object-fit: cover;
}

/* ==================== MAP PAGE ==================== */
.quick-section .quick-card.map-card {
    grid-column: span 2;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(37,99,235,0.05) 100%);
}
.quick-section .quick-card.map-card i {
    font-size: 64px;
    color: var(--blue);
    margin-bottom: 20px;
}

/* ==================== FOOTER - KOMPLETT NEU ==================== */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f172a 100%);
    padding: 60px 24px 24px;
    color: white;
    margin-top: auto;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: var(--c, rgba(255,255,255,0.1));
    border-color: var(--c, rgba(255,255,255,0.3));
}

.footer-nav h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a i {
    width: 16px;
    opacity: 0.7;
}

/* FOOTER SERVER STATUS - RECHTE SEITE */
/* FOOTER KONTAKT BOX */
.footer-contact-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px;
}

.footer-contact-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.footer-contact-item i {
    width: 16px;
    color: #60a5fa;
    font-size: 14px;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-contact-btn:hover {
    background: var(--blue-dark);
}
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-copy-btn:hover {
    background: var(--blue-dark);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-visitor-count i {
    color: var(--blue);
    font-size: 14px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom i {
    color: var(--blue);
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* ==================== MOBILE RESPONSIVE - KOMPLETT ÜBERARBEITET ==================== */

/* TABLET */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .contact-btn { display: none; }
    .user-menu-dropdown { display: none; }
    .mobile-menu-toggle { 
        display: flex; 
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 20px;
        cursor: pointer;
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px; 
    }
    .hero-left { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-profile { justify-content: center; }
    .hero-right { justify-content: center; }
    .hero-desc { margin: 0 auto 28px; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; width: 100%; flex-wrap: wrap; }
    .hero-socials { justify-content: center; }
    .hero-credentials { max-width: 420px; }
    
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .teaser-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-container { padding: 0 16px; }
    .logo-text { font-size: 13px; }
    .logo-avatar { width: 30px; height: 30px; }
    
    .hero { 
        padding: 100px 16px 60px; 
        min-height: auto;
    }
    .hero-container { gap: 32px; }
    .hero-profile {
        flex-direction: column;
        gap: 16px;
    }
    .hero-profile img {
        width: 70px;
        height: 70px;
    }
    .hero-profile-info { text-align: center; }
    .hero-title { font-size: 24px; letter-spacing: 1px; }
    .hero-tagline { font-size: 12px; }
    .hero-desc { 
        font-size: 14px; 
        max-width: 100%;
        padding: 0 8px;
    }
    .hero-stats { gap: 24px; }
    .hero-stat .stat-value { font-size: 26px; }
    .hero-stat .stat-label { font-size: 11px; }
    .hero-buttons { 
        flex-direction: column; 
        width: 100%;
        gap: 10px;
    }
    .hero-buttons .btn { 
        width: 100%; 
        justify-content: center;
        padding: 14px 20px;
    }
    .hero-socials a { width: 44px; height: 44px; }
    
    /* Hero Credentials Mobile */
    .hero-credentials { 
        max-width: 100%; 
        padding: 24px;
        text-align: center;
    }
    .hero-credentials h3 { 
        font-size: 20px; 
        margin-bottom: 20px; 
        text-align: center;
    }
    .credential-item { 
        padding: 12px 0; 
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .credential-icon { width: 48px; height: 48px; }
    .credential-icon i { font-size: 20px; }
    .credential-text { 
        align-items: center; 
        text-align: center;
    }
    .credential-text strong { font-size: 15px; }
    .credential-text span { font-size: 13px; }
    .credentials-cta { padding: 14px 20px; font-size: 14px; }
    
    /* Quick Section Mobile */
    .quick-section { padding: 32px 16px; }
    .quick-grid { 
        grid-template-columns: 1fr; 
        gap: 12px; 
    }
    .quick-card { padding: 16px; }
    .quick-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .quick-card-text strong { font-size: 14px; }
    .quick-card-text span { font-size: 12px; }
    
    /* Teaser Section Mobile */
    .home-teaser { padding: 48px 16px; }
    .teaser-grid { gap: 16px; }
    .teaser-card { padding: 24px; }
    .teaser-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    .teaser-card h3 { font-size: 18px; }
    .teaser-card p { font-size: 14px; }
    
    /* Footer Mobile */
    .footer { padding: 40px 16px 20px; }
    .footer-main { 
        grid-template-columns: 1fr; 
        gap: 24px;
        text-align: center;
    }
    .footer-brand { max-width: 100%; }
    .footer-socials { justify-content: center; }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    .footer-nav a:hover { transform: none; }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero { padding: 90px 12px 50px; }
    .hero-profile img {
        width: 60px;
        height: 60px;
    }
    .hero-title { 
        font-size: 20px; 
        letter-spacing: 0.5px;
    }
    .hero-tagline { font-size: 11px; }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .hero-stat .stat-value { font-size: 28px; }
    .hero-socials {
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-socials a { 
        width: 40px; 
        height: 40px; 
        font-size: 16px; 
    }
    
    .contact-card { padding: 20px; }
    .contact-card-title { font-size: 20px; }
    .contact-card-subtitle { font-size: 13px; }
    .contact-feature-text strong { font-size: 13px; }
    .contact-feature-text span { font-size: 11px; }
    
    .quick-card {
        padding: 14px;
        gap: 12px;
    }
    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .teaser-card { padding: 20px; }
    
    .page-header { padding: 100px 16px 40px; }
    .page-header h1 { font-size: 24px; }
    .page-header p { font-size: 14px; }
    
    .section { padding: 40px 16px; }
    
    .user-menu-btn { padding: 6px 10px; font-size: 13px; gap: 8px; }
    .user-menu-btn .user-avatar { width: 24px; height: 24px; }
    .user-name { display: none; }
}

.starterpaket-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.starterpaket-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 24px rgba(59,130,246,0.4);
}

.starterpaket-header h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text);
}

.starterpaket-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.starterpaket-category {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.starterpaket-category:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.starterpaket-category h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.starterpaket-category h3 i {
    color: var(--blue);
    font-size: 20px;
}

.starterpaket-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.starterpaket-category li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.starterpaket-category li i {
    color: #10b981;
    font-size: 12px;
    flex-shrink: 0;
}

.starterpaket-howto {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.starterpaket-howto h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.howto-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}

.howto-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.starterpaket-note {
    background: linear-gradient(135deg, rgba(234,179,8,0.1) 0%, rgba(234,179,8,0.05) 100%);
    padding: 16px 24px;
    border-radius: var(--radius);
    border-left: 4px solid #eab308;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.starterpaket-note i {
    color: #eab308;
    font-size: 18px;
}

.starterpaket-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(88,101,242,0.4);
}

.starterpaket-btn:hover {
    background: #4752C4;
    
    box-shadow: 0 8px 30px rgba(88,101,242,0.6);
}

@media (max-width: 768px) {
    .starterpaket-section {
        padding: 60px 16px;
    }
    
    .starterpaket-header h2 {
        font-size: 24px;
    }
    
    .starterpaket-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .starterpaket-category {
        padding: 20px;
    }
    
    .starterpaket-howto {
        padding: 32px 24px;
    }
    
    .howto-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.starterpaket-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.starterpaket-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 10px 40px rgba(59,130,246,0.4);
}

.starterpaket-hero h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text);
}

.starterpaket-hero p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.starterpaket-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.starterpaket-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.starterpaket-box:hover {
    
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--blue);
}

.box-header {
    padding: 24px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 3px solid var(--blue);
}

.box-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.box-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
}

.box-items {
    padding: 20px 24px;
}

.item {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.item:last-child {
    border-bottom: none;
}

.item i {
    color: var(--blue);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.starterpaket-instructions {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.instructions-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--blue);
}

.instructions-header i {
    font-size: 28px;
    color: var(--blue);
}

.instructions-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.instructions-steps {
    margin-bottom: 32px;
}

.instruction-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.instructions-footer {
    border-top: 2px solid var(--border);
    padding-top: 24px;
}

.instructions-warning {
    background: linear-gradient(135deg, rgba(234,179,8,0.1) 0%, rgba(234,179,8,0.05) 100%);
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #eab308;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.instructions-warning i {
    color: #eab308;
    font-size: 20px;
}

.starterpaket-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(88,101,242,0.4);
}

.starterpaket-cta:hover {
    background: #4752C4;
    
    box-shadow: 0 10px 35px rgba(88,101,242,0.6);
}

.starterpaket-cta i {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .starterpaket-content {
        grid-template-columns: 1fr;
    }
    
    .starterpaket-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .starterpaket-section {
        padding: 60px 16px;
    }
    
    .starterpaket-hero h2 {
        font-size: 28px;
    }
    
    .starterpaket-items {
        grid-template-columns: 1fr;
    }
    
    .starterpaket-instructions {
        padding: 24px;
    }
    
    .instruction-step {
        flex-direction: column;
        gap: 12px;
    }
}

/* STARTERPAKET SECTION - NEU & EINFACH */
.starterpaket-section {
    padding: 80px 24px;
    background: var(--bg);
}

.starterpaket-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.starterpaket-header i {
    font-size: 60px;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
}

.starterpaket-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text);
}

.starterpaket-header p {
    font-size: 18px;
    color: var(--text-light);
}

.starterpaket-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.starterpaket-items-box,
.starterpaket-howto-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.starterpaket-items-box h3,
.starterpaket-howto-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--blue);
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.item-group h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.item-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-group li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.item-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
}

.howto-steps {
    margin-bottom: 28px;
}

.howto-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
}

.step-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.starterpaket-warning {
    background: rgba(234,179,8,0.1);
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid #eab308;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.starterpaket-warning i {
    color: #eab308;
    font-size: 20px;
}

.starterpaket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88,101,242,0.4);
}

.starterpaket-btn:hover {
    background: #4752C4;
    
    box-shadow: 0 8px 24px rgba(88,101,242,0.6);
}

@media (max-width: 1024px) {
    .starterpaket-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .starterpaket-section {
        padding: 60px 16px;
    }
    
    .starterpaket-header h2 {
        font-size: 28px;
    }
    
    .starterpaket-items-box,
    .starterpaket-howto-box {
        padding: 24px;
    }
}

/* ==================== KONTAKT SEITE ==================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Linke Seite - Info */
.contact-info-side {
    padding-right: 24px;
}

.contact-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(37,99,235,0.05) 100%);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
}

.contact-trust-badge i {
    font-size: 14px;
}

.contact-info-side h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.contact-feature-icon i {
    color: white;
    font-size: 20px;
}

.contact-feature-content {
    display: flex;
    flex-direction: column;
}

.contact-feature-content strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-feature-content span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-direct {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-direct h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.contact-direct-link:last-child {
    margin-bottom: 0;
}

.contact-direct-link:hover {
    background: var(--blue);
    color: white;
}

.contact-direct-link i {
    color: var(--blue);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-direct-link:hover i {
    color: white;
}

.contact-direct-link.whatsapp:hover {
    background: #25d366;
}

.contact-direct-link.whatsapp i {
    color: #25d366;
}

.contact-direct-link.whatsapp:hover i {
    color: white;
}

/* Rechte Seite - Formular */
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-form-header {
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    color: white;
}

.contact-form-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-header p {
    font-size: 14px;
    opacity: 0.85;
}

.required-star {
    color: #ef4444;
}

.contact-form-header .required-star {
    color: #fca5a5;
}

.contact-form {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 16px;
}

.textarea-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

/* Checkbox */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    background: var(--bg);
}

.checkbox-label input:checked + .checkmark {
    background: var(--blue);
    border-color: var(--blue);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
}

.checkbox-text a {
    color: var(--blue);
    text-decoration: none;
}

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

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(59,130,246,0.35);
}

.submit-btn:hover {
    
    box-shadow: 0 10px 32px rgba(59,130,246,0.45);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 18px;
}

.form-note {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(59,130,246,0.06);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.form-note i {
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
}

/* Kontakt Page Mobile */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-features-list {
        max-width: 400px;
        margin: 0 auto 32px;
        text-align: left;
    }
    
    .contact-direct {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-info-side h2 {
        font-size: 26px;
    }
    
    .contact-form-header {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-feature-item {
        gap: 14px;
    }
    
    .contact-feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-feature-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-form-header h3 {
        font-size: 20px;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }
    
    .input-wrapper i {
        left: 14px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

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

/* 4er Grid für Teaser */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .teaser-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
}

/* ==================== TRUSTPILOT SECTION ==================== */
.trustpilot-section {
    padding: 80px 24px;
    background: var(--bg);
}

.trustpilot-widget {
    max-width: 900px;
    margin: 0 auto;
}

.trustpilot-placeholder {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border);
}

.trustpilot-placeholder i {
    font-size: 48px;
    color: #00b67a;
    margin-bottom: 20px;
}

.trustpilot-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .trustpilot-section {
        padding: 60px 16px;
    }
    
    .trustpilot-placeholder {
        padding: 40px 24px;
    }
    
    .trustpilot-placeholder i {
        font-size: 36px;
    }
}

/* ==================== LEGAL PAGES (Impressum, Datenschutz) ==================== */
.legal-section {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.legal-card.highlight-card {
    border: 2px solid var(--blue);
}

.legal-card-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.legal-card-header i {
    font-size: 24px;
    color: var(--blue);
}

.legal-card-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.legal-card-body {
    padding: 28px;
}

.legal-card-body .company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-card-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-card-body p:last-child {
    margin-bottom: 0;
}

.legal-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 12px;
}

.legal-card-body h3:first-child {
    margin-top: 0;
}

.legal-card-body ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-card-body ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-card-body a {
    color: var(--blue);
    text-decoration: none;
}

.legal-card-body a:hover {
    text-decoration: underline;
}

.legal-card-body strong {
    color: var(--text);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 40px 16px 60px;
    }
    
    .legal-card-header {
        padding: 16px 20px;
    }
    
    .legal-card-header i {
        font-size: 20px;
    }
    
    .legal-card-header h2 {
        font-size: 16px;
    }
    
    .legal-card-body {
        padding: 20px;
    }
    
    .legal-card-body .company-name {
        font-size: 18px;
    }
}

/* ==================== LEGAL PAGES LIGHT VARIANT ==================== */
.legal-section-light {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.legal-card-light {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.legal-card-light h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg);
}

.legal-card-light h2 i {
    color: var(--blue);
    font-size: 20px;
}

.legal-card-body-light p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-card-body-light p:last-child {
    margin-bottom: 0;
}

.legal-card-body-light .company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-card-body-light a {
    color: var(--blue);
    text-decoration: none;
}

.legal-card-body-light a:hover {
    text-decoration: underline;
}

.legal-card-body-light strong {
    color: var(--text);
}

.legal-card-body-light em {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-section-light {
        padding: 40px 16px 60px;
    }
    
    .legal-card-light {
        padding: 20px;
    }
    
    .legal-card-light h2 {
        font-size: 16px;
    }
}

/* ==================== CONSTRUCTION SECTION ==================== */
.construction-section {
    padding: 40px 24px;
    background: var(--bg);
}

.construction-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.construction-box i {
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.construction-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.construction-text strong {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.construction-text span {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .construction-section {
        padding: 30px 16px;
    }
    
    .construction-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .construction-box i {
        font-size: 28px;
    }
    
    .construction-text strong {
        font-size: 16px;
    }
    
    .construction-text span {
        font-size: 14px;
    }
}

.legal-card-light.highlight {
    border: 2px solid var(--blue);
}

.legal-card-body-light h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 10px;
}

.legal-card-body-light h3:first-child {
    margin-top: 0;
}

.legal-card-body-light ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-card-body-light ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ==================== DROPDOWN NAVIGATION ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f1419;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

.dropdown-item:hover i {
    color: var(--blue);
}

.dropdown-item.active {
    background: rgba(59,130,246,0.1);
    color: white;
}

.dropdown-item.active i {
    color: var(--blue);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    transition: color 0.2s ease;
}

/* Mobile Submenu */
.mobile-nav-group {
    display: flex;
    flex-direction: column;
}

.mobile-nav-submenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 8px;
    gap: 6px;
}

.mobile-nav-group.open .mobile-nav-submenu {
    display: flex;
}

.mobile-nav-group .mobile-nav-link {
    position: relative;
}

.mobile-nav-group .mobile-nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.mobile-nav-group.open .mobile-nav-link::after {
    transform: rotate(180deg);
}

.mobile-nav-sublink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 2px solid rgba(255,255,255,0.1);
}

.mobile-nav-sublink:hover {
    background: rgba(255,255,255,0.05);
    color: white;
    border-left-color: var(--blue);
}

.mobile-nav-sublink:hover i {
    color: var(--blue);
}

.mobile-nav-sublink.active {
    background: rgba(59,130,246,0.1);
    color: white;
    border-left-color: var(--blue);
}

.mobile-nav-sublink.active i {
    color: var(--blue);
}

.mobile-nav-sublink i {
    width: 18px;
    font-size: 13px;
}

/* ==================== SERVICE DETAIL PAGES ==================== */
.service-detail {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.service-intro {
    margin-bottom: 60px;
}

.service-intro-content {
    margin-bottom: 30px;
}

.service-intro-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text);
}

.service-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 800px;
}

.service-intro-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

/* Orange Highlight Box - für Akzent */
.highlight-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-box i {
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.highlight-box-content {
    color: white;
}

.highlight-box-content strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.highlight-box-content span {
    font-size: 14px;
    opacity: 0.9;
}

.service-warning-signs,
.service-help,
.service-benefits {
    margin-bottom: 60px;
}

.service-warning-signs h2,
.service-help h2,
.service-benefits h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-warning-signs h2 i {
    color: #f59e0b;
}

.service-help h2 i {
    color: var(--blue);
}

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

.warning-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.warning-item i {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 16px;
}

.warning-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
}

.warning-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.help-step {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    font-size: 24px;
    color: var(--blue);
}

.benefit-item span {
    font-weight: 600;
    color: var(--text);
}

/* CTA Box - Hell statt Dark */
.service-cta {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--blue);
}

.service-cta h2 {
    color: var(--text);
    font-size: 28px;
    margin-bottom: 12px;
}

.service-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ==================== SERVICES OVERVIEW PAGE ==================== */
.services-overview {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--blue);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-icon i {
    font-size: 28px;
    color: white;
}

.service-card-content h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.services-guarantee {
    margin-bottom: 60px;
}

.services-guarantee h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

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

.guarantee-item {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.guarantee-item i {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
}

.guarantee-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

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

.services-cta {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--blue);
}

.services-cta h2 {
    color: var(--text);
    font-size: 28px;
    margin-bottom: 12px;
}

.services-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ==================== BLOG PAGE ==================== */
.blog-section {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.blog-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.blog-intro p {
    color: var(--text-light);
    font-size: 17px;
}

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

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow);
}

.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-category.warning {
    background: #f59e0b;
}

.blog-card-category.tip {
    background: #10b981;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bg);
}

.blog-card-meta span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

.blog-note {
    background: white;
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-note i {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.blog-note p {
    color: var(--text-light);
    margin: 0;
}

/* ==================== RESPONSIVE FOR NEW PAGES ==================== */
@media (max-width: 1024px) {
    .service-intro-stats {
        justify-content: flex-start;
    }
    
    .warning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-intro-stats {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .help-step {
        padding: 20px;
        gap: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .benefits-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta,
    .services-cta {
        padding: 32px 20px;
    }
    
    .service-cta h2,
    .services-cta h2 {
        font-size: 22px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-note {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card-icon {
        margin: 0 auto;
    }
}

/* ==================== BUNDESWEIT SEKTION ==================== */
.bundesweit-section {
    padding: 80px 24px;
    background: var(--bg);
}

.bundesweit-content {
    max-width: 1100px;
    margin: 0 auto;
}

.bundesweit-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.bundesweit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.bundesland-group {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.bundesland-group h3 {
    font-size: 16px;
    color: var(--blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.bundesland-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundesland-group li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

.bundesland-group li i {
    color: var(--blue);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.bundesweit-note {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid var(--blue);
}

.bundesweit-note i {
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .bundesweit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bundesweit-grid {
        grid-template-columns: 1fr;
    }
    
    .bundesweit-note {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--blue);
    }
}

/* ==================== ABOUT PAGE ==================== */
.about-section {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.about-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 5px;
}

.about-subtitle {
    color: var(--blue);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}

.about-quote {
    background: white;
    padding: 24px 28px;
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content strong {
    color: var(--text);
}

/* Timeline */
.about-timeline {
    margin-bottom: 80px;
}

.about-timeline h2 {
    font-size: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-timeline h2 i {
    color: var(--blue);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue), rgba(59,130,246,0.2));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--blue);
    border-radius: 50%;
}

.timeline-item.highlight::before {
    background: var(--blue);
    width: 18px;
    height: 18px;
    left: -38px;
    top: 6px;
}

.timeline-year {
    background: var(--blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-item.highlight .timeline-year {
    background: #f59e0b;
}

.timeline-content {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.timeline-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Why Section */
.about-why {
    margin-bottom: 80px;
}

.about-why h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-why h2 i {
    color: var(--blue);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(59,130,246,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: var(--blue);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Skills Section */
.about-skills {
    margin-bottom: 60px;
}

.about-skills h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-skills h2 i {
    color: var(--blue);
}

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

.skill-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-icon i {
    font-size: 22px;
    color: white;
}

.skill-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text);
}

.skill-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--blue);
    margin-top: 60px;
}

.about-cta h2 {
    color: var(--text);
    font-size: 28px;
    margin-bottom: 12px;
}

.about-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Responsive About */
@media (max-width: 900px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .about-cta {
        padding: 32px 20px;
    }
}

/* ==================== REFERENZEN PAGE ==================== */
.referenzen-section {
    padding: 60px 24px 80px;
    background: var(--bg);
}

.referenzen-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.referenzen-notice {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid #f59e0b;
    box-shadow: var(--shadow-sm);
}

.referenzen-notice > i {
    font-size: 28px;
    color: #f59e0b;
    flex-shrink: 0;
}

.referenzen-notice h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
}

.referenzen-notice p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.referenzen-preview {
    margin-bottom: 60px;
}

.referenzen-preview > h2 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.referenzen-preview > h2 i {
    color: var(--blue);
}

.preview-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.referenzen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.referenz-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.referenz-card.preview {
    opacity: 0.7;
    position: relative;
}

.referenz-card.preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.02) 10px,
        rgba(0,0,0,0.02) 20px
    );
    pointer-events: none;
}

.referenz-header {
    padding: 16px 20px;
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.referenz-kategorie {
    background: var(--blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.referenz-status {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.referenz-content {
    padding: 24px;
}

.referenz-content h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
}

.referenz-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.referenz-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    color: var(--text-light);
}

.referenz-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--bg);
}

.referenz-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

.referenz-badge i {
    font-size: 16px;
}

/* Garantie Section */
.referenzen-garantie {
    margin-bottom: 60px;
}

.referenzen-garantie h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.referenzen-garantie h2 i {
    color: var(--blue);
}

.garantie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.garantie-item {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.garantie-item > i {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
}

.garantie-item h3 {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 10px;
}

.garantie-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA */
.referenzen-cta {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--blue);
}

.referenzen-cta h2 {
    color: var(--text);
    font-size: 28px;
    margin-bottom: 12px;
}

.referenzen-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .referenzen-grid,
    .garantie-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .referenzen-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .referenzen-cta {
        padding: 32px 20px;
    }
}

/* ==================== AGB HIGHLIGHT BLOCKS ==================== */
.legal-block.highlight-block {
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(16,185,129,0.08) 100%);
    border: 2px solid var(--blue);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 32px 0;
}

.legal-block.highlight-block h2 {
    color: var(--blue);
}

.legal-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 40px;
}

.legal-notice p {
    margin: 0;
    font-size: 14px;
    color: #92400e;
}

.legal-notice p + p {
    margin-top: 8px;
}

/* ==================== LEGAL CARD HIGHLIGHT & NOTICE ==================== */
.legal-card-light.highlight {
    border-left: 4px solid var(--blue);
    background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(16,185,129,0.05) 100%);
}

.legal-card-light.highlight h2 {
    color: var(--blue);
}

.legal-card-light.notice {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.legal-card-light.notice h2 {
    color: #b45309;
}

.legal-card-light.notice p {
    color: #92400e;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Spezielle Animationen für verschiedene Elemente */
.teaser-card.fade-in,
.service-card.fade-in,
.quick-card.fade-in {
    transform: translateY(40px) scale(0.95);
}

.teaser-card.fade-in.visible,
.service-card.fade-in.visible,
.quick-card.fade-in.visible {
    transform: translateY(0) scale(1);
}

/* Timeline von links/rechts */
.timeline-item.fade-in:nth-child(odd) {
    transform: translateX(-30px);
    opacity: 0;
}

.timeline-item.fade-in:nth-child(even) {
    transform: translateX(30px);
    opacity: 0;
}

.timeline-item.fade-in.visible {
    transform: translateX(0);
    opacity: 1;
}

/* Cards mit leichtem Zoom */
.why-card.fade-in,
.skill-item.fade-in,
.garantie-item.fade-in {
    transform: translateY(20px) scale(0.9);
}

.why-card.fade-in.visible,
.skill-item.fade-in.visible,
.garantie-item.fade-in.visible {
    transform: translateY(0) scale(1);
}

/* Counter Animation Glow */
.stat-value,
.stat-number {
    transition: text-shadow 0.3s ease;
}

.stat-value.counting,
.stat-number.counting {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* ==================== NAVBAR SCROLL EFFECT ==================== */
.navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

/* ==================== HOVER LIFT EFFECTS ==================== */
.teaser-card,
.service-card,
.quick-card,
.why-card,
.skill-item,
.referenz-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out;
}

.teaser-card:hover,
.service-card:hover,
.quick-card:hover,
.why-card:hover,
.referenz-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==================== STAGGER DELAYS ==================== */
.teaser-grid .teaser-card:nth-child(1) { transition-delay: 0ms; }
.teaser-grid .teaser-card:nth-child(2) { transition-delay: 100ms; }
.teaser-grid .teaser-card:nth-child(3) { transition-delay: 200ms; }
.teaser-grid .teaser-card:nth-child(4) { transition-delay: 300ms; }

.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 100ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 200ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 300ms; }

.quick-grid .quick-card:nth-child(1) { transition-delay: 0ms; }
.quick-grid .quick-card:nth-child(2) { transition-delay: 100ms; }
.quick-grid .quick-card:nth-child(3) { transition-delay: 200ms; }
.quick-grid .quick-card:nth-child(4) { transition-delay: 300ms; }

.warning-grid .warning-item:nth-child(1) { transition-delay: 0ms; }
.warning-grid .warning-item:nth-child(2) { transition-delay: 80ms; }
.warning-grid .warning-item:nth-child(3) { transition-delay: 160ms; }
.warning-grid .warning-item:nth-child(4) { transition-delay: 240ms; }
.warning-grid .warning-item:nth-child(5) { transition-delay: 320ms; }
.warning-grid .warning-item:nth-child(6) { transition-delay: 400ms; }

/* ==================== PULSE ANIMATION FOR CTAs ==================== */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.7);
    }
}

.service-cta .btn-primary,
.services-cta .btn-primary,
.about-cta .btn-primary,
.referenzen-cta .btn-primary {
    animation: pulse-glow 2s infinite;
}

.service-cta .btn-primary:hover,
.services-cta .btn-primary:hover,
.about-cta .btn-primary:hover,
.referenzen-cta .btn-primary:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.6);
}

/* ==================== WORK SECTION (Bilder-Sektion) ==================== */
.work-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.work-items {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.work-item.reverse {
    direction: rtl;
}

.work-item.reverse > * {
    direction: ltr;
}

.work-item-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.work-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-item-image::before {
    opacity: 1;
}

.work-item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.work-item-content {
    padding: 20px 0;
}

.work-item-icon {
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.work-item-icon i {
    font-size: 24px;
    color: white;
}

.work-item-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.work-item-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.work-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 15px;
    padding: 8px 0;
}

.work-features li i {
    color: var(--blue);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .work-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .work-item.reverse {
        direction: ltr;
    }
    
    .work-item-image img {
        height: 250px;
    }
    
    .work-item-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .work-section {
        padding: 60px 0;
    }
    
    .work-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .work-items {
        gap: 40px;
        margin-top: 30px;
    }
    
    .work-item {
        gap: 20px;
    }
    
    .work-item-image img {
        height: 220px;
    }
    
    .work-item-content h3 {
        font-size: 22px;
    }
    
    .work-item-content p {
        font-size: 15px;
    }
    
    .work-item-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .work-item-icon i {
        font-size: 20px;
    }
    
    .work-features li {
        font-size: 14px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .work-section {
        padding: 50px 0;
    }
    
    .work-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .work-items {
        gap: 35px;
    }
    
    .work-item-image img {
        height: 200px;
    }
    
    .work-item-content h3 {
        font-size: 20px;
    }
    
    .work-item-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .work-item-icon {
        width: 45px;
        height: 45px;
    }
    
    .work-item-icon i {
        font-size: 18px;
    }
}

/* Animation für Work Items */
.work-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.work-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-item:nth-child(1) { transition-delay: 0ms; }
.work-item:nth-child(2) { transition-delay: 200ms; }
.work-item:nth-child(3) { transition-delay: 400ms; }
