/*
Theme Name: instantOLAP Professional
Description: Professional IT Services & Business Intelligence Theme für instantOLAP
Version: 1.0
Author: instantOLAP Team
Text Domain: instantolap
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
    padding: 15px 0;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-cube {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
    animation: cubeFloat 3s ease-in-out infinite;
}

.logo-cube:nth-child(1) {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    top: 0;
    left: 0;
}

.logo-cube:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    opacity: 0.8;
    top: 11px;
    left: 11px;
    animation-delay: 0.5s;
}

.logo-cube:nth-child(3) {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    opacity: 0.6;
    top: 22px;
    left: 22px;
    animation-delay: 1s;
}

.logo-text {
    color: #1e293b;
}

.logo-text .instant {
    color: #2563eb;
}

@keyframes cubeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

/* Enhanced Navigation Links */
.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 16px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

/* Dropdown Styling */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-link:hover,
.dropdown-link:focus {
    background: #f3f4f6;
    border-left-color: #3b82f6;
    color: #1e293b;
}

/* CTA Buttons in Navigation */
.nav-cta-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.nav-btn-outline:hover,
.nav-btn-outline:focus {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: 2px solid #2563eb;
}

.nav-btn-primary:hover,
.nav-btn-primary:focus {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #4b5563;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #e2e8f0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: #f8fafc;
    color: #2563eb;
}

.mobile-submenu {
    background: #f9fafb;
    padding-left: 20px;
}

.mobile-submenu .mobile-nav-link {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-cta-section {
    padding: 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.mobile-cta-section .nav-btn {
    flex: 1;
    text-align: center;
}

/* Enhanced logo hover effects */
.logo:hover .logo-cube {
    animation-play-state: paused;
}

.logo:hover .logo-cube:nth-child(1) {
    transform: translateY(-3px) scale(1.05);
}

.logo:hover .logo-cube:nth-child(2) {
    transform: translateY(-4px) scale(1.05);
}

.logo:hover .logo-cube:nth-child(3) {
    transform: translateY(-5px) scale(1.05);
}

.logo:hover .logo-text {
    transform: translateY(-1px);
}

/* Content Spacing */
.content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Page Styles - Entfernt Blog-Elemente */
.page .post-meta,
.page .post-author, 
.page .post-date,
.page .post-footer,
.page .meta-separator,
.page .read-more-link {
    display: none !important;
}

.page .post-card {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

body.home .page-title,
body.front-page .page-title {
    display: none;
}

.page-content {
    padding-top: 0;
    min-height: auto;
}

/* Hero Section mit Dense Floating Cloud */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 50% 0 0 50%;
    transform: translateX(20%);
}

/* Dense Floating Cloud Background */
.hero-floating-cloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-cloud-cube {
    position: absolute;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Large Cubes */
.hero-cloud-cube:nth-child(1) { 
    width: 35px; height: 35px; top: 10%; left: 15%; 
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    animation: heroFloat1 4s ease-in-out infinite;
    border-radius: 6px; opacity: 0.3;
}
.hero-cloud-cube:nth-child(2) { 
    width: 42px; height: 42px; top: 30%; left: 70%; 
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    opacity: 0.25; animation: heroFloat2 5.5s ease-in-out infinite;
    border-radius: 7px;
}
.hero-cloud-cube:nth-child(3) { 
    width: 38px; height: 38px; top: 70%; left: 10%; 
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0.2; animation: heroFloat3 6.2s ease-in-out infinite;
    border-radius: 6px;
}
.hero-cloud-cube:nth-child(4) { 
    width: 40px; height: 40px; top: 80%; left: 85%; 
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    opacity: 0.22; animation: heroFloat1 7.2s ease-in-out infinite reverse;
    border-radius: 7px;
}
.hero-cloud-cube:nth-child(5) { 
    width: 36px; height: 36px; top: 5%; left: 90%; 
    background: linear-gradient(135deg, #2563eb, #1e40af);
    opacity: 0.25; animation: heroFloat2 4.8s ease-in-out infinite;
    border-radius: 6px;
}
.hero-cloud-cube:nth-child(6) { 
    width: 44px; height: 44px; top: 40%; left: 5%; 
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    opacity: 0.28; animation: heroFloat3 5.8s ease-in-out infinite reverse;
    border-radius: 7px;
}

/* Medium Cubes */
.hero-cloud-cube:nth-child(7) { 
    width: 28px; height: 28px; top: 20%; left: 40%; 
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    opacity: 0.18; animation: heroFloat2 4.8s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(8) { 
    width: 32px; height: 32px; top: 85%; left: 55%; 
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    opacity: 0.15; animation: heroFloat1 7s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(9) { 
    width: 26px; height: 26px; top: 8%; left: 75%; 
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0.2; animation: heroFloat3 5.2s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(10) { 
    width: 30px; height: 30px; top: 50%; left: 25%; 
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    opacity: 0.18; animation: heroFloat1 6.8s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(11) { 
    width: 34px; height: 34px; top: 65%; left: 92%; 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    opacity: 0.16; animation: heroFloat2 6.1s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(12) { 
    width: 27px; height: 27px; top: 18%; left: 95%; 
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0.17; animation: heroFloat3 5.9s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(13) { 
    width: 31px; height: 31px; top: 90%; left: 30%; 
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    opacity: 0.16; animation: heroFloat1 4.9s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(14) { 
    width: 29px; height: 29px; top: 25%; left: 3%; 
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    opacity: 0.18; animation: heroFloat2 7.3s ease-in-out infinite reverse;
}

/* Small Cubes */
.hero-cloud-cube:nth-child(15) { 
    width: 18px; height: 18px; top: 35%; left: 80%; 
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    opacity: 0.12; animation: heroFloat2 3.5s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(16) { 
    width: 22px; height: 22px; top: 60%; left: 8%; 
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    opacity: 0.15; animation: heroFloat3 4.2s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(17) { 
    width: 20px; height: 20px; top: 15%; left: 55%; 
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    opacity: 0.1; animation: heroFloat1 5.8s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(18) { 
    width: 16px; height: 16px; top: 95%; left: 40%; 
    background: linear-gradient(135deg, #2563eb, #93c5fd);
    opacity: 0.11; animation: heroFloat2 4.5s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(19) { 
    width: 24px; height: 24px; top: 42%; left: 2%; 
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    opacity: 0.16; animation: heroFloat3 6.5s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(20) { 
    width: 21px; height: 21px; top: 75%; left: 75%; 
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
    opacity: 0.13; animation: heroFloat1 4.7s ease-in-out infinite;
}

/* Additional cubes 21-36 */
.hero-cloud-cube:nth-child(21) { 
    width: 19px; height: 19px; top: 3%; left: 30%; 
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    opacity: 0.12; animation: heroFloat2 5.3s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(22) { 
    width: 23px; height: 23px; top: 55%; left: 85%; 
    background: linear-gradient(135deg, #2563eb, #dbeafe);
    opacity: 0.15; animation: heroFloat3 3.9s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(23) { 
    width: 17px; height: 17px; top: 88%; left: 5%; 
    background: linear-gradient(135deg, #1d4ed8, #93c5fd);
    opacity: 0.12; animation: heroFloat1 6.2s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(24) { 
    width: 25px; height: 25px; top: 22%; left: 88%; 
    background: linear-gradient(135deg, #3b82f6, #dbeafe);
    opacity: 0.14; animation: heroFloat2 4.4s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(25) { 
    width: 18px; height: 18px; top: 98%; left: 65%; 
    background: linear-gradient(135deg, #60a5fa, #1d4ed8);
    opacity: 0.13; animation: heroFloat3 5.7s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(26) { 
    width: 20px; height: 20px; top: 12%; left: 98%; 
    background: linear-gradient(135deg, #2563eb, #bfdbfe);
    opacity: 0.11; animation: heroFloat1 3.8s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(27) { 
    width: 14px; height: 14px; top: 78%; left: 82%; 
    background: linear-gradient(135deg, #60a5fa, #dbeafe);
    opacity: 0.08; animation: heroFloat1 3.2s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(28) { 
    width: 12px; height: 12px; top: 28%; left: 12%; 
    background: linear-gradient(135deg, #93c5fd, #dbeafe);
    opacity: 0.07; animation: heroFloat2 3.8s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(29) { 
    width: 15px; height: 15px; top: 58%; left: 95%; 
    background: linear-gradient(135deg, #3b82f6, #dbeafe);
    opacity: 0.1; animation: heroFloat3 4.1s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(30) { 
    width: 13px; height: 13px; top: 2%; left: 45%; 
    background: linear-gradient(135deg, #60a5fa, #bfdbfe);
    opacity: 0.07; animation: heroFloat1 3.6s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(31) { 
    width: 17px; height: 17px; top: 85%; left: 20%; 
    background: linear-gradient(135deg, #2563eb, #bfdbfe);
    opacity: 0.12; animation: heroFloat2 4.3s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(32) { 
    width: 19px; height: 19px; top: 68%; left: 70%; 
    background: linear-gradient(135deg, #1d4ed8, #93c5fd);
    opacity: 0.13; animation: heroFloat3 5.1s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(33) { 
    width: 11px; height: 11px; top: 45%; left: 92%; 
    background: linear-gradient(135deg, #93c5fd, #bfdbfe);
    opacity: 0.06; animation: heroFloat1 3.4s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(34) { 
    width: 16px; height: 16px; top: 18%; left: 92%; 
    background: linear-gradient(135deg, #60a5fa, #dbeafe);
    opacity: 0.1; animation: heroFloat2 4.6s ease-in-out infinite reverse;
}
.hero-cloud-cube:nth-child(35) { 
    width: 14px; height: 14px; top: 95%; left: 12%; 
    background: linear-gradient(135deg, #3b82f6, #bfdbfe);
    opacity: 0.09; animation: heroFloat3 3.7s ease-in-out infinite;
}
.hero-cloud-cube:nth-child(36) { 
    width: 18px; height: 18px; top: 1%; left: 65%; 
    background: linear-gradient(135deg, #2563eb, #dbeafe);
    opacity: 0.1; animation: heroFloat1 4.9s ease-in-out infinite reverse;
}

/* Hero Animation Keyframes */
@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) translateX(10px) rotate(2deg) scale(1.05); }
    50% { transform: translateY(-25px) translateX(-8px) rotate(-1deg) scale(0.95); }
    75% { transform: translateY(-18px) translateX(18px) rotate(3deg) scale(1.08); }
}

@keyframes heroFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    20% { transform: translateY(-12px) translateX(-15px) rotate(-2deg) scale(1.06); }
    40% { transform: translateY(-30px) translateX(8px) rotate(1deg) scale(0.92); }
    60% { transform: translateY(-20px) translateX(22px) rotate(4deg) scale(1.1); }
    80% { transform: translateY(-8px) translateX(-12px) rotate(-1deg) scale(0.98); }
}

@keyframes heroFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-28px) translateX(-18px) rotate(-3deg) scale(1.12); }
    66% { transform: translateY(-15px) translateX(25px) rotate(5deg) scale(0.88); }
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.secondary-button {
    background: transparent;
    color: #2563eb;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: #2563eb;
    color: white;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.services-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.services-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.services-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.service-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-label {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}

.expertise-levels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.expertise-bar {
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.expertise-fill {
    height: 100%;
    background: linear-gradient(to right, #2563eb, #3b82f6);
    border-radius: 3px;
    animation: fillUp 2s ease-out;
}

.fill-90 { width: 90%; }
.fill-85 { width: 85%; }
.fill-95 { width: 95%; }
.fill-80 { width: 80%; }

@keyframes fillUp {
    0% { width: 0%; }
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Banking Focus Section */
.banking-focus {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banking-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.banking-text p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banking-services {
    list-style: none;
}

.banking-services li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.banking-services li:last-child {
    border-bottom: none;
}

.banking-services li::before {
    content: '🏦';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.banking-visual {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.arch-layer {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.arch-layer.highlight {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.product-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 2rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.product-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #64748b;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #3b82f6;
}

.pricing-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

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

.price-text {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Styling */
#site-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p, 
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover,
.footer-section a:focus {
    color: white;
    text-decoration: underline;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #94a3b8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .nav-cta-buttons {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content, .banking-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid, .products-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        justify-content: center;
    }

    .hero-buttons, .cta-buttons {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .service-icons {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav-list {
        align-items: center;
    }
    /* WordPress-Seitentitel ausblenden */
.page .page-title,
.page .entry-title,
.page-header .page-title,
.entry-header .entry-title {
    display: none !important;
}

/* Alternativ: Nur auf bestimmten Seiten ausblenden */
.page-id-123 .page-title {
    display: none !important;
}
}