/* CSS Custom Properties für Dareti Farbschema */
:root {
    /* Dareti Hauptfarben basierend auf Logo */
    --primary-color: #1a365d;           /* Dunkelblau aus Logo */
    --secondary-color: #f59e0b;         /* Orange aus Code-Brackets */
    --accent-color: #2b6cb0;            /* Helleres Blau für Akzente */
    --success-color: #10b981;           /* Grün für Erfolg */
    --warning-color: #f59e0b;           /* Orange für Warnungen */
    --info-color: #3b82f6;              /* Blau für Informationen */
    --dark-color: #1e293b;              /* Sehr dunkles Grau */
    --light-color: #f8fafc;             /* Sehr helles Grau */
    
    /* Dareti Gradient-Definitionen */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-accent: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    --gradient-gaming: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
    --gradient-mobile: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2563eb 25%, #3b82f6 75%, #1a365d 100%);
    
    /* Text-Farben */
    --text-primary: #1e293b;            /* Haupttext */
    --text-secondary: #4a5568;          /* Sekundärtext */
    --text-light: #64748b;              /* Heller Text */
    --text-inverse: #ffffff;            /* Weißer Text */
    
    /* Hintergrund-Farben */
    --bg-primary: #ffffff;              /* Weiß */
    --bg-secondary: #f8fafc;            /* Sehr helles Grau */
    --bg-dark: #1e293b;                 /* Dunkler Hintergrund */
    
    /* Schatten und Effekte */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 10px 30px rgba(26, 54, 93, 0.2);
    --shadow-gaming: 0 10px 30px rgba(124, 58, 237, 0.3);
    
    /* Übergänge und Animationen */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Radius und Spacing */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Montserrat Font System */
* {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 20%, 
        #334155 40%, 
        #1e293b 60%, 
        #0f172a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 400;
    position: relative;
}

/* Hintergrund-Logo */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    background-image: url('../images/dareti-logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    filter: saturate(80%) brightness(105%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Wide Container für bessere Platznutzung */
.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container,
    .container-wide {
        padding: 0 1rem;
    }
}

/* Header Styles - Professional Clean Design */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-height: 80px;
}

/* Logo und Branding */
.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    flex-shrink: 0;
}

.site-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-normal);
}

.site-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.site-title a {
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
    font-family: 'Montserrat', sans-serif;
}

.site-title a:hover {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Logo */
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .site-logo {
        height: 40px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-tagline {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Professional Page Styles - Mobile */
    .page-hero {
        padding: 6rem 0 4rem;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pro-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pro-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pro-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Navigation */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.menu-toggle:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-inverse);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-1px);
}

.nav-menu li:not(.menu-item-has-children) a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    background: var(--gradient-secondary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu li:not(.menu-item-has-children) a:hover::after {
    width: 60%;
}

/* Dezente Navigation Icons - Nur bei Hover sichtbar */
.nav-menu a[href*="speed-boatz"]::before {
    content: "🚤";
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-right: 0.3rem;
}

.nav-menu a[href*="speed-boatz"]:hover::before {
    opacity: 0.7;
}

.nav-menu a[href*="about"]::before {
    content: "•";
    font-size: 0.6rem;
    opacity: 0.4;
    margin-right: 0.5rem;
    color: #3b82f6;
}

.nav-menu a[href*="services"]::before {
    content: "•";
    font-size: 0.6rem;
    opacity: 0.4;
    margin-right: 0.5rem;
    color: #3b82f6;
}

/* Kontakt ohne Icon - Sauber und minimal */

/* Dropdown Navigation Styles */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    color: #9ca3af;
}

.nav-menu .menu-item-has-children:hover > a::after,
.nav-menu .menu-item-has-children.active > a::after,
.nav-menu .menu-item-has-children.hover > a::after {
    transform: rotate(180deg);
    color: #3b82f6;
}

.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.75rem;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children.active .sub-menu,
.nav-menu .menu-item-has-children.hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: translateX(8px);
}

.nav-menu .sub-menu a::after {
    display: none;
}

/* Entferne Icons für Dropdown-Items */
.nav-menu .sub-menu a::before {
    display: none;
}

/* Hero Section - Professional Gaming/Tech */
.hero-section {
    position: relative;
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

.hero-particles {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-badge {
    display: none;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #93c5fd;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: accentGlow 3s ease-in-out infinite alternate;
}

@keyframes accentGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.7;
    color: #cbd5e1;
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #fbbf24;
    font-weight: 600;
}

.hero-stats {
    display: none;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-actions {
    display: none;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-button:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-secondary {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
}

.btn-secondary:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.button-icon {
    font-size: 1.2rem;
}

.hero-scroll-indicator {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Content Area */
.site-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.content-area {
    padding: 3rem 0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.entry-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.entry-title a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #3498db;
}

.entry-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.entry-summary {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

/* Page Content - Professional Layout */
.page-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    margin: -2rem auto 4rem;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.page-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 50%, 
        rgba(245, 158, 11, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.page-content .entry-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 2rem 0 1rem 0;
    color: #2c3e50;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.widget-area {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #3498db;
}

.site-info {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #3498db;
}

.copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Font Loading Optimization */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat Regular'), local('Montserrat-Regular');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Montserrat SemiBold'), local('Montserrat-SemiBold');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Montserrat Bold'), local('Montserrat-Bold');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold');
}

/* Font Weight System für Montserrat */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Gaming Typography Classes */
.gaming-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.gaming-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.gaming-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.gaming-caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        overflow: hidden;
        border-top: 1px solid rgba(26, 54, 93, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    }
    
    .nav-menu a:hover {
        background: var(--gradient-primary);
        transform: none;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(26, 54, 93, 0.05);
        margin: 0;
        padding: 0;
        display: none;
    }
    
    .nav-menu .menu-item-has-children.active .sub-menu {
        display: block;
    }
    
    .nav-menu .sub-menu a {
        padding-left: 2.5rem;
        font-size: 0.85rem;
        background: rgba(26, 54, 93, 0.05);
    }
    
    .nav-menu .sub-menu a:hover {
        background: var(--gradient-primary);
        transform: none;
    }
    
    /* Mobile Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    /* Mobile Hero */
    .hero-section {
        height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 0.75rem 15px;
    }
    
    .site-logo {
        height: 35px;
    }
      .site-title {
        font-size: 1.25rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
    }
    
    .site-tagline {
        font-size: 0.7rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    }
    
    .hero-title {
        font-size: 2rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }
}

/* Utility Classes */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.card-gradient::before {
    background: var(--gradient-accent);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Homepage Sections */
.homepage section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
}

/* Universal Professional Page Styles */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 8rem 0 5rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #ffffff;
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.9),
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 4;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.8),
        1px 1px 3px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 4;
}

.page-content {
    padding: 5rem 0;
    background: transparent;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
    position: relative;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Dezente Icons für Content */
.icon-subtle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.icon-accent {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    margin-right: 0.5rem;
    vertical-align: baseline;
    position: relative;
    top: 2px;
    flex-shrink: 0;
}

/* Professional List Styles */
.pro-list {
    list-style: none;
    padding: 0;
}

.pro-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.pro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* Professional Grid System - Optimized for better space usage */
.pro-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.pro-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pro-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .pro-grid-2,
    .pro-grid-3,
    .pro-grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Professional Cards - Enhanced Design */
.pro-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.pro-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.pro-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pro-card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: transparent;
}

.news-section .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-header {
    margin-bottom: 3rem;
    text-align: center;
}

.news-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a365d;
    font-weight: 600;
}

.news-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-article {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.3);
    position: relative;
}

.news-content {
    padding: 2.5rem 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.news-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-date {
    margin-left: auto;
    opacity: 0.8;
    font-size: 0.9rem;
}

.news-article-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-article-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.news-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.news-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-button-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-button-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #0f172a;
}

.news-button-secondary {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-button-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Contact Styles */
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon span {
    color: white;
    font-size: 1.2rem;
}

.contact-icon.email {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.contact-icon.business {
    background: linear-gradient(135deg, #047857, #059669);
}

.contact-icon.response {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

/* Contact info styles now handled by .contact-info-compact */

.contact-info h4 {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.contact-info p {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
}

.contact-details {
    margin-top: 2rem;
}

/* Contact Page Balanced Layout */
.page-content {
    padding: 6rem 0;
    background: transparent;
}

.page-content .container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Balanced Contact Grid */
.contact-balanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    min-height: 600px;
}

.contact-left-section,
.contact-right-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Compact Contact Info */
.contact-compact {
    margin: 2rem 0;
}

.contact-info-compact {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.contact-info-compact:hover {
    background: rgba(59, 130, 246, 0.1);
}

.contact-text h4 {
    margin: 0 0 0.25rem 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
}

.contact-text p {
    margin: 0;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact CTA Section */
.contact-cta {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-cta h3 {
    color: var(--text-inverse);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Balanced Expertise Section */
.expertise-balanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

.expertise-compact {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.expertise-compact:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-color: #3b82f6;
    transform: translateX(5px);
}

.expertise-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.expertise-content {
    flex: 1;
}

/* Technology Section - Matching Expertise Style */
.technologies-section {
    padding: 5rem 0;
    background: transparent;
}

.technologies-section .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.tech-category h3 {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Contact Section - Matching Expertise Style */
.contact-section {
    padding: 5rem 0;
    background: transparent;
    color: white;
}

.contact-section .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-info h3 {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.expertise-content .expertise-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.expertise-content .expertise-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

/* Legacy styles removed - using new balanced layout */

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-hero-unified {
        min-height: 50vh;
        margin-top: 60px;
        padding: 0;
    }
    
    .page-hero-unified .hero-content {
        padding: 3rem 1rem;
    }
    
    .page-hero-unified .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .page-hero-unified .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .contact-balanced-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .contact-left-section,
    .contact-right-section {
        padding: 2rem;
    }
    
    .contact-info-compact {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .expertise-compact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .expertise-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Expertise Styles */
.expertise-list {
    margin-bottom: 2rem;
}

/* Expertise styles now handled by .expertise-compact */

.expertise-title {
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-size: 1.3rem;
}

.expertise-title.games {
    color: #1e40af;
}

.expertise-title.mobile {
    color: #047857;
}

.expertise-title.desktop {
    color: #6d28d9;
}

.expertise-title.performance {
    color: #d97706;
}

.expertise-text {
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.7;
    font-size: 1rem;
}

.expertise-item:last-child .expertise-text {
    margin-bottom: 0;
}

/* Project Types Styles */
.project-types-section {
    text-align: center;
    margin-top: 4rem;
}

.project-types-subtitle {
    margin-bottom: 3rem;
    color: #ffffff !important;
}

/* Spezifische Regel für Kontakt-Seite */
.page-content .project-types-section .section-subtitle.project-types-subtitle {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Zusätzlicher Fallback für alle Texte in Kontakt */
.page-template-page-kontakt .section-subtitle {
    color: white !important;
}

.project-card {
    text-align: center;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-title {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Unified Page Hero Styles */
.page-hero-unified {
    position: relative;
    min-height: 60vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

.page-hero-unified .hero-particles {
    display: none;
}

.page-hero-unified .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 4rem 2rem;
}

.page-hero-unified .hero-badge {
    display: none;
}

.page-hero-unified .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.9),
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.page-hero-unified .title-main {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.page-hero-unified .title-accent {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin-left: 0.5rem;
}

.page-hero-unified .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    color: #e2e8f0;
    font-weight: 400;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.8),
        1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Page Styles */
.page-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.page-featured-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Team Styles */
.team-member-card {
    text-align: center;
}

.team-header {
    height: 120px;
    position: relative;
    margin: -2rem -2rem 0;
    border-radius: 15px 15px 0 0;
}

.team-header.daniel {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.team-header.rene {
    background: linear-gradient(135deg, #10b981, #059669);
}

.team-avatar {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.95);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.team-avatar-inner.daniel {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.team-avatar-inner.rene {
    background: linear-gradient(135deg, #10b981, #059669);
}

.team-content {
    padding: 4rem 2rem 2rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-role.daniel {
    color: #3b82f6;
}

.team-role.rene {
    color: #10b981;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.team-tag {
    font-size: 0.9rem;
    color: #4a5568;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Team Values Styles */
.team-values-section {
    text-align: center;
    margin-top: 5rem;
}

.team-values-subtitle {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    line-height: 1.6;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.value-icon.expertise {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.value-icon.innovation {
    background: linear-gradient(135deg, #10b981, #059669);
}

.value-icon.quality {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Services Section */
.services-section {
    background: transparent;
    position: relative;
    padding: 5rem 0;
}

.services-section .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(52,152,219,0.1)" fill-opacity="0.4"><circle cx="30" cy="30" r="4"/></g></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 54, 93, 0.02) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-item:hover::before {
    opacity: 1;
}

/* Spezielle Farben für verschiedene Service-Typen */
.gaming-service:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.app-service:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.tech-service:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.design-service:hover {
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Tech Tags */
.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.tech-tag {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    font-family: 'Montserrat', sans-serif;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Gaming service spezielle Tags */
.gaming-service .tech-tag {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: var(--text-inverse);
}

/* App service spezielle Tags */
.app-service .tech-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: var(--text-inverse);
}

/* Tech service spezielle Tags */
.tech-service .tech-tag {
    background: var(--gradient-secondary);
    color: var(--text-primary);
}

/* Design service spezielle Tags */
.design-service .tech-tag {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: var(--text-inverse);
}

/* Headings mit Montserrat */
/* Base headings - will be overridden by specific section styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
}

/* Buttons und Links */
.btn, .button, button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Section Headers - High Contrast Override */
.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    /* Override gradient text for better contrast */
    -webkit-text-fill-color: white !important;
    background: none !important;
    background-clip: unset !important;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #4a5568 !important;
}

/* Specific high contrast styles for all main sections */
.services-section h2,
.technologies-section h2,
.news-section h2,
.contact-section h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800 !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

/* White text for contact section on dark background */
.contact-section h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* FINAL OVERRIDE - All section headers must be white */
.services-section .section-header h2,
.technologies-section .section-header h2,
.news-section .section-header h2,
.contact-section .section-header h2,
#services h2,
#technologies h2,
#news h2,
#contact h2,
section h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800 !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

/* Override any other h2 styles in main content areas */
main h2,
.content-area h2,
.homepage h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* Form Elements */
input, textarea, select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Gaming-spezifische Schriftgewichte */
.gaming-title {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.gaming-subtitle {
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.gaming-text {
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* Content Sections - Unified Design System */
.content-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    margin: 3rem auto;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(16, 185, 129, 0.03) 50%, 
        rgba(245, 158, 11, 0.03) 100%);
    border-radius: 25px;
    z-index: -1;
}

@media (max-width: 768px) {
    .content-section {
        margin: 2rem auto;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
}

/* Screenshot Gallery styling */
.screenshots-gallery {
    margin: 2rem auto;
    padding: 1rem;
}

.screenshot-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.screenshot-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.screenshot-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Grid für Screenshots */
@media (max-width: 768px) {
    .screenshots-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .screenshot-card {
        padding: 0.8rem;
    }
    
    .screenshot-card img {
        height: 180px;
    }
}

/* ===== KONTAKTFORMULAR STYLES ===== */

.dareti-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.dareti-contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.dareti-contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.dareti-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.dareti-contact-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dareti-contact-form input,
.dareti-contact-form select,
.dareti-contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(26, 54, 93, 0.15);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dareti-contact-form input:focus,
.dareti-contact-form select:focus,
.dareti-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.dareti-contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.dareti-contact-form select {
    cursor: pointer;
}

.dareti-contact-form .contact-submit {
    background: var(--gradient-primary);
    color: var(--text-inverse);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dareti-contact-form .contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.dareti-contact-form .contact-submit:hover::before {
    left: 100%;
}

.dareti-contact-form .contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1a365d 100%);
}

.dareti-contact-form .contact-submit:active {
    transform: translateY(-1px);
}

.dareti-contact-form .form-info {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--info-color);
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
}

.dareti-contact-form .form-info::before {
    content: "🔒";
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    font-size: 1.2rem;
}

.dareti-contact-form .form-info p {
    font-size: 0.9rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
    padding-left: 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* Kontaktformular Nachrichten */
.contact-message {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 4px solid var(--success-color);
}

.contact-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
}

/* Zusätzliche Styles für Formular in Pro-Card */
.pro-card.dareti-contact-form .pro-card-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-fields {
    margin-top: 0.5rem;
}

.dareti-contact-form .form-group {
    position: relative;
}

.dareti-contact-form input::placeholder,
.dareti-contact-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-style: italic;
}

.dareti-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a365d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.dareti-contact-form .btn-icon {
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.dareti-contact-form .contact-submit:hover .btn-icon {
    transform: translateX(2px);
}

/* Mobile Responsiveness für Kontaktformular */
@media (max-width: 768px) {
    .pro-card.dareti-contact-form {
        padding: 2rem;
        margin: 0;
    }
    
    .dareti-contact-form input,
    .dareti-contact-form select,
    .dareti-contact-form textarea {
        padding: 1rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
    
    .dareti-contact-form .contact-submit {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .contact-message {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .pro-card.dareti-contact-form .pro-card-title {
        font-size: 1.2rem;
    }
}
