﻿/* ============================================
   lokale.IT - Clean Microsoft Fluent Design
   4K Touch-Optimized - Dark Tech Theme
   ============================================ */

/* CSS Variables - Dark Tech Theme */
:root {
    /* Tech Brand Colors */
    --primary: #00D4FF;
    --primary-dark: #00A8CC;
    --primary-light: #4DE8FF;
    --primary-lighter: #0A2540;

    /* Dark Palette */
    --white: #FFFFFF;
    --gray-10: #0D1117;
    --gray-20: #161B22;
    --gray-30: #21262D;
    --gray-40: #30363D;
    --gray-50: #484F58;
    --gray-60: #6E7681;
    --gray-90: #8B949E;
    --gray-130: #C9D1D9;
    --gray-160: #F0F6FC;
    --black: #000000;

    /* Semantic Colors */
    --success: #3FB950;
    --warning: #D29922;
    --error: #F85149;
    --info: #58A6FF;

    /* Text Colors */
    --text-primary: #F0F6FC;
    --text-secondary: #8B949E;
    --text-tertiary: #6E7681;
    --text-disabled: #484F58;
    --text-on-primary: #0D1117;

    /* Surface Colors */
    --surface: rgba(22, 27, 34, 0.8);
    --surface-card: rgba(33, 38, 45, 0.9);
    --surface-elevated: rgba(48, 54, 61, 0.95);

    /* Border Colors */
    --border-subtle: rgba(0, 212, 255, 0.1);
    --border-default: rgba(0, 212, 255, 0.2);
    --border-strong: rgba(0, 212, 255, 0.3);

    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-subtle: 0 0 10px rgba(0, 212, 255, 0.15);

    /* Fluent Shadows - adjusted for dark theme */
    --shadow-4: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 212, 255, 0.1);
    --shadow-8: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.5), 0 0 2px rgba(0, 212, 255, 0.1);
    --shadow-16: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 212, 255, 0.15);
    --shadow-64: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 212, 255, 0.2);

    /* Spacing Scale */
    --space-2: 2px;
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Touch Target Minimum */
    --touch-target: 48px;

    /* Typography */
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 42px;
    --font-size-5xl: 56px;

    /* Container */
    --container-max: 1400px;
    --container-padding: 24px;
}

/* ============================================
   Base Reset & Typography
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: #0D1117;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Circuit Board / Tech Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        /* Horizontal Lines */
        repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(0, 212, 255, 0.03) 60px,
            rgba(0, 212, 255, 0.03) 61px),
        /* Vertical Lines */
        repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(0, 212, 255, 0.03) 60px,
            rgba(0, 212, 255, 0.03) 61px),
        /* Diagonal data streams */
        repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 255, 0.02) 100px,
            rgba(0, 212, 255, 0.02) 102px),
        /* Gradient overlay */
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 168, 204, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 60%, rgba(0, 212, 255, 0.04) 0%, transparent 35%);
    z-index: -2;
    pointer-events: none;
}

/* Circuit nodes / connection points */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(0, 212, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 15% 55%, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
    background-size: 200px 200px, 300px 250px, 250px 300px, 180px 220px, 220px 180px, 280px 320px, 320px 280px;
    z-index: -1;
    pointer-events: none;
    animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Remove old overlay */
.bg-data-overlay {
    display: none;
}

/* Particles canvas - DISABLED */
.particles-canvas {
    display: none !important;
}

/* Visual Settings Panel - DISABLED */
.visual-settings {
    display: none !important;
}

.visual-settings button,
.visual-settings select {
    background: transparent;
    border: 1px solid var(--gray-40);
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.visual-settings button[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
}

/* Cursor toggle reposition to avoid overlap */
.cursor-toggle {
    position: fixed;
    right: 16px;
    bottom: 24px;
    background: var(--white);
    border: 1px solid var(--gray-40);
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: var(--shadow-8);
    font-size: 13px;
    z-index: 9999;
    cursor: pointer;
}

/* Cursor follower - ensure it's above content but not blocking */
.cursor-follower {
    z-index: 9998;
}

/* Reduced motion: hide heavy visuals */
@media (prefers-reduced-motion: reduce) {
    .particles-canvas {
        display: none !important;
    }

    .datapath {
        animation: none !important;
    }
}

/* GPU / Fan illustration placeholder (can be replaced with image) */
.bg-gpu-illustration {
    position: fixed;
    right: 6%;
    bottom: 6%;
    width: 360px;
    height: auto;
    opacity: 0.06;
    transform: translateZ(0);
    filter: grayscale(100%);
    z-index: -1;
    /* behind content */
    pointer-events: none;
}

@media (max-width: 900px) {
    .bg-gpu-illustration {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-16);
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--space-16);
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header & Navigation (aligns with HTML markup)
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.main-header.scrolled {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    border-color: var(--border-default);
}

.navbar {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-16) var(--container-padding);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary);
}

.logo:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: var(--space-12) var(--space-16);
    min-height: var(--touch-target);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: var(--gray-20);
    text-decoration: none;
}

.nav-menu a.active {
    background: var(--primary-lighter);
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-4);
}

.nav-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Kundenportal Button */
.nav-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: var(--gray-20);
    border: 1px solid var(--gray-30);
    color: var(--gray-130);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-portal:hover {
    background: var(--gray-30);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.nav-portal svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .nav-portal {
        display: none;
    }
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-30);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-16);
    list-style: none;
    padding: var(--space-8) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.2s ease;
}

.dropdown:hover>.dropdown-menu,
.dropdown:focus-within>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    border-radius: 0;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-menu a:hover {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    padding-left: var(--space-20);
}

/* TeamViewer Support Dropdown */
.nav-support {
    background: linear-gradient(135deg, #0078D4 0%, #00BCF2 100%);
    color: var(--white) !important;
    border-radius: var(--radius-md);
}

.nav-support:hover {
    background: linear-gradient(135deg, #106EBE 0%, #00A1D9 100%) !important;
}

.dropdown-support {
    min-width: 280px;
}

.dropdown-header {
    padding: var(--space-12) var(--space-16) var(--space-8);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-20);
    margin-bottom: var(--space-4);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-30);
    margin: var(--space-8) 0;
}

.dropdown-support a {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: var(--touch-target);
    height: var(--touch-target);
    background: none;
    border: 1px solid var(--gray-40);
    border-radius: var(--radius-md);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--gray-20);
}

.mobile-menu-toggle .hamburger,
.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
    content: '';
}

.mobile-menu-toggle .hamburger::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.mobile-menu-toggle .hamburger::after {
    position: absolute;
    top: 6px;
    left: 0;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: transparent;
    padding: var(--space-48) 0 var(--space-64);
    position: relative;
}

/* Hero glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-48);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-12);
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-12);
    line-height: 1.15;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-20);
    line-height: 1.6;
    max-width: 500px;
}

.hero-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-32);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-12);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--space-20);
}

.hero-actions .btn-large {
    padding: var(--space-12) var(--space-24);
    font-size: var(--font-size-base);
    min-height: 48px;
}

.hero-actions .btn-icon {
    width: 16px;
    height: 16px;
}

/* Hero USPs */
.hero-usps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin: var(--space-16) 0 var(--space-20);
    padding: 0;
    list-style: none;
}

.hero-usps li {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.usp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--primary);
}

.usp-icon.check {
    fill: #107C10;
}

.usp-icon.shield {
    fill: var(--primary);
}

.usp-icon.clock {
    fill: #D83B01;
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
    padding-top: var(--space-16);
    border-top: 1px solid var(--border-subtle);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.trust-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.trust-label {
    font-size: 11px;
    color: var(--text-tertiary);
}

.trust-stars {
    font-size: var(--font-size-base);
    color: #FFB900;
    letter-spacing: -1px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-16);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-12) var(--space-24);
    min-height: var(--touch-target);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-10);
    border-color: var(--gray-10);
    text-decoration: none;
    color: var(--primary);
}

.btn-large {
    padding: var(--space-16) var(--space-32);
    min-height: 56px;
    font-size: var(--font-size-lg);
}

/* ============================================
   Section Styling
   ============================================ */
section {
    padding: var(--space-80) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-64);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-16);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-16);
}

/* Alternating Section Backgrounds - handled in Dark Theme Overrides */
section:nth-child(even) {
    background: transparent;
}

/* ============================================
   Services / Cards Grid
   ============================================ */
.services-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-32);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-card,
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-32);
    box-shadow: var(--shadow-4);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-30);
}

.service-card:hover,
.card:hover {
    box-shadow: var(--shadow-16);
    transform: translateY(-4px);
    border-color: var(--primary-lighter);
}

.service-card .icon,
.card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-24);
    font-size: var(--font-size-2xl);
    color: var(--primary);
}

.service-card h3,
.card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-12);
}

.service-card p,
.card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-20);
}

.service-card a,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.2s ease;
}

.service-card a:hover,
.card-link:hover {
    gap: var(--space-12);
    text-decoration: none;
}

/* ============================================
   Feature Highlight / Two Column Sections
   ============================================ */
.feature-highlight,
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.feature-highlight.reversed {
    direction: rtl;
}

.feature-highlight.reversed>* {
    direction: ltr;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8);
}

.feature-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-24);
}

.feature-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-24);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: var(--space-32);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
    padding: var(--space-12) 0;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: var(--font-size-xs);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us-section {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-80) var(--container-padding);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    padding: var(--space-16);
    background: var(--gray-10);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.why-us-item span:last-child {
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8);
}

/* ============================================
   Mission Section
   ============================================ */
.mission-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-80) var(--container-padding);
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: var(--space-32);
}

.mission-text {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-24);
    line-height: 1.7;
}

.mission-values {
    display: flex;
    justify-content: center;
    gap: var(--space-32);
    margin-bottom: var(--space-32);
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-24);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.value-num {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary);
}

.value-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    text-align: center;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--gray-10);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-32);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-32);
    box-shadow: var(--shadow-4);
    border: 1px solid var(--gray-30);
}

.testimonial .stars {
    color: #FFD700;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-16);
}

.testimonial p {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-16);
    line-height: 1.6;
}

.testimonial footer {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: normal;
}

/* ============================================
   Regional Section
   ============================================ */
.regional {
    background: var(--white);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-16);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.region-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-24);
    background: var(--gray-10);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-30);
    transition: all 0.2s ease;
    text-align: center;
}

.region-card:hover {
    background: var(--primary-lighter);
    border-color: var(--primary);
    text-decoration: none;
    color: var(--primary);
}

.region-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.region-card span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-80) 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    color: var(--white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-16);
}

.cta-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-16);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-24);
}

.cta-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-32);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.cta-contact h3 {
    color: var(--white);
    margin-bottom: var(--space-24);
}

.contact-hours {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-16);
    font-size: var(--font-size-sm);
}

.contact-phone {
    margin-bottom: var(--space-24);
}

.contact-phone a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.contact-phone a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--gray-160);
    color: var(--white);
    padding: var(--space-64) 0 var(--space-32);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-48);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: var(--space-16);
}

.footer-tagline {
    color: var(--gray-60);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-16);
}

.footer-company {
    color: var(--gray-60);
    font-size: var(--font-size-sm);
}

.footer-column h4 {
    color: var(--white);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-20);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: var(--space-12);
}

.footer-column a {
    color: var(--gray-60);
    font-size: var(--font-size-sm);
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--gray-90);
    margin-top: var(--space-48);
    padding-top: var(--space-32);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.footer-bottom p {
    color: var(--gray-60);
    font-size: var(--font-size-sm);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: var(--space-16);
}

.footer-badge {
    background: var(--gray-90);
    color: var(--gray-60);
    padding: var(--space-8) var(--space-16);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-40);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-8);
}

.form-group {
    margin-bottom: var(--space-24);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-8);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    min-height: var(--touch-target);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    border: 1px solid var(--gray-50);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-disabled);
}

/* Honeypot Anti-Spam (unsichtbar für User, sichtbar für Bots) */
.form-honeypot {
    display: none !important;
    position: absolute;
    left: -9999px;
}

/* ============================================
   Content Pages
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--gray-10) 0%, var(--white) 100%);
    padding: var(--space-80) 0 var(--space-64);
    text-align: center;
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-16);
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-64) var(--container-padding);
}

.content-section h2 {
    font-size: var(--font-size-2xl);
    margin-top: var(--space-48);
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--primary-lighter);
}

.content-section h3 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-32);
    margin-bottom: var(--space-12);
}

.content-section ul,
.content-section ol {
    margin-bottom: var(--space-24);
    padding-left: var(--space-32);
}

.content-section li {
    margin-bottom: var(--space-8);
    color: var(--text-secondary);
}

/* ============================================
   Tables
   ============================================ */
.table-container {
    overflow-x: auto;
    margin: var(--space-32) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-4);
}

th,
td {
    padding: var(--space-16) var(--space-20);
    text-align: left;
    border-bottom: 1px solid var(--gray-30);
}

th {
    background: var(--gray-10);
    font-weight: 600;
    color: var(--text-primary);
}

td {
    color: var(--text-secondary);
}

tr:hover td {
    background: var(--gray-10);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-16) 0;
    font-size: var(--font-size-sm);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--text-disabled);
}

.breadcrumbs .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-32);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-40);
    box-shadow: var(--shadow-8);
    border: 2px solid var(--gray-30);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::before {
    content: "Empfohlen";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-4) var(--space-16);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
}

.pricing-card .price {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-8);
}

.pricing-card .price span {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card .description {
    color: var(--text-secondary);
    margin-bottom: var(--space-24);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-32);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding: var(--space-12) 0;
    border-bottom: 1px solid var(--gray-30);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-48);
    flex-wrap: wrap;
    padding: var(--space-48) 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    text-align: center;
}

.trust-badge-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--primary);
}

.trust-badge span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   Stats / Numbers
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-32);
    text-align: center;
}

.stat-item {
    padding: var(--space-24);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-8);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-30);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-12);
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: var(--space-20) var(--space-24);
    min-height: var(--touch-target);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-10);
}

.faq-question::after {
    content: "+";
    font-size: var(--font-size-xl);
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-24) var(--space-20);
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   Services Overview
   ============================================ */
.services-overview {
    background: var(--gray-10);
    padding: var(--space-80) 0;
}

/* Services Bento Grid - Modern Tiles */
.services-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: var(--space-20);
    margin-top: var(--space-48);
}

.service-tile {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-30);
}

.service-tile:hover {
    box-shadow: var(--shadow-16);
    transform: translateY(-6px);
    border-color: var(--primary-lighter);
}

.service-tile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-tile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-tile:hover .service-tile-bg img {
    opacity: 0.25;
    transform: scale(1.05);
}

.service-tile-content {
    position: relative;
    z-index: 1;
    padding: var(--space-32);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-tile-content.horizontal {
    flex-direction: row;
    align-items: center;
    gap: var(--space-24);
}

.service-tile-icon {
    font-size: 48px;
    margin-bottom: var(--space-16);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-tile h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-12);
}

.service-tile p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-16);
}

.service-tile-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-20) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.service-tile-features li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-tile-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-tile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.service-tile-badges .badge {
    font-size: 11px;
    font-weight: 600;
    padding: var(--space-4) var(--space-12);
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border-radius: 999px;
}

.service-tile-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.2s ease;
}

.service-tile-link:hover {
    color: var(--primary-dark);
    gap: var(--space-12);
}

.service-tile-link span {
    transition: transform 0.2s ease;
}

.service-tile-link:hover span {
    transform: translateX(4px);
}

/* Tile Sizes */
.service-tile.large {
    grid-column: span 6;
    grid-row: span 2;
}

.service-tile.medium {
    grid-column: span 6;
    grid-row: span 2;
}

.service-tile.small {
    grid-column: span 3;
    grid-row: span 1;
}

.service-tile.wide {
    grid-column: span 6;
    grid-row: span 1;
}

/* Accent Variants */
.service-tile.accent-security {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
    border-color: rgba(16, 124, 16, 0.2);
}

.service-tile.accent-security:hover {
    border-color: var(--success);
}

.service-tile.accent-ai {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-color: rgba(0, 120, 212, 0.2);
}

.service-tile.accent-ai:hover {
    border-color: var(--primary);
}

.service-tile.accent-ai .service-tile-bg img {
    opacity: 0.1;
}

/* Horizontal Content for Wide Tiles */
.service-tile-text {
    flex: 1;
}

.service-tile-text h3 {
    margin-bottom: var(--space-8);
}

.service-tile-text p {
    margin-bottom: 0;
}

/* Responsive Services Bento */
@media (max-width: 1200px) {

    .service-tile.large,
    .service-tile.medium {
        grid-column: span 6;
    }

    .service-tile.small {
        grid-column: span 6;
    }

    .service-tile.wide {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .services-bento {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .service-tile.large,
    .service-tile.medium,
    .service-tile.small,
    .service-tile.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-tile-content.horizontal {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-tile-icon {
        font-size: 36px;
    }
}

/* Legacy Grid Support */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-32);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.services-grid.professional {
    margin-top: var(--space-64);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-4);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-30);
}

.service-card:hover {
    box-shadow: var(--shadow-16);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: var(--space-24) var(--space-24) 0;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-16);
}

.service-list {
    list-style: none;
    padding: 0 var(--space-24) var(--space-24);
    margin: 0;
}

.service-list li {
    padding: var(--space-8) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-20);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-list a:hover {
    color: var(--primary);
}

/* ============================================
   Projects / Referenzen - 4K Bento Grid
   ============================================ */
.projects-section {
    padding: var(--space-80) 0;
    background: linear-gradient(180deg, var(--gray-10) 0%, var(--white) 100%);
}

.projects-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: var(--space-24);
    max-width: 1600px;
    margin: var(--space-64) auto 0;
    padding: 0 var(--container-padding);
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-64);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-content {
    position: relative;
    z-index: 2;
    padding: var(--space-24);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-lighter);
    background: rgba(0, 120, 212, 0.2);
    padding: var(--space-4) var(--space-12);
    border-radius: 999px;
    width: fit-content;
    backdrop-filter: blur(4px);
}

.project-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.project-desc {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.project-stats {
    display: flex;
    gap: var(--space-16);
    margin-top: var(--space-8);
}

.project-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.project-stat-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
}

.project-stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bento Grid Sizes */
.project-card.large {
    grid-column: span 8;
    grid-row: span 2;
}

.project-card.medium {
    grid-column: span 4;
    grid-row: span 2;
}

.project-card.small {
    grid-column: span 4;
    grid-row: span 1;
}

.project-card.wide {
    grid-column: span 6;
    grid-row: span 1;
}

/* Featured Card Extra Styling */
.project-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.project-card.featured::before {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 60, 120, 0.9) 100%);
}

.project-card.featured .project-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Stats Highlight Card */
.project-card.stats-card {
    background: linear-gradient(135deg, var(--gray-160) 0%, var(--gray-130) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.project-card.stats-card::before {
    display: none;
}

.stats-card .big-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-8);
}

.stats-card .stats-label {
    font-size: var(--font-size-lg);
    color: var(--white);
    font-weight: 500;
}

.stats-card .stats-sublabel {
    font-size: var(--font-size-sm);
    color: var(--gray-60);
    margin-top: var(--space-4);
}

/* Tech Stack Pills */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.tech-pill {
    font-size: 11px;
    font-weight: 600;
    padding: var(--space-4) var(--space-8);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
    .project-card.large {
        grid-column: span 12;
        grid-row: span 2;
    }

    .project-card.medium {
        grid-column: span 6;
    }

    .project-card.small,
    .project-card.wide {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .projects-bento {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }

    .project-card.large,
    .project-card.medium,
    .project-card.small,
    .project-card.wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }

    .project-title {
        font-size: var(--font-size-xl);
    }

    .stats-card .big-number {
        font-size: 56px;
    }
}

/* ============================================
   Team Grid
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-32);
}

.team-member {
    text-align: center;
    padding: var(--space-32);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-4);
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: var(--shadow-16);
    transform: translateY(-4px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-20);
    border: 4px solid var(--gray-20);
}

.team-member h4 {
    margin-bottom: var(--space-4);
}

.team-member .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-12);
}

.team-member p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-32);
    margin-bottom: var(--space-48);
}

.contact-item {
    display: flex;
    gap: var(--space-16);
    padding: var(--space-24);
    background: var(--gray-10);
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-base);
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--primary);
}

/* ============================================
   Alerts / Notices
   ============================================ */
.alert {
    padding: var(--space-16) var(--space-20);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-24);
    display: flex;
    gap: var(--space-12);
    align-items: flex-start;
}

.alert-info {
    background: var(--primary-lighter);
    border-left: 4px solid var(--primary);
}

.alert-success {
    background: #DFF6DD;
    border-left: 4px solid var(--success);
}

.alert-warning {
    background: #FFF4CE;
    border-left: 4px solid var(--warning);
}

.alert-error {
    background: #FDE7E9;
    border-left: 4px solid var(--error);
}

/* ============================================
   Loading States
   ============================================ */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-30);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   4K / High DPI Scaling
   ============================================ */

/* 2K Displays (2560px) */
@media (min-width: 2560px) {
    :root {
        --font-size-xs: 14px;
        --font-size-sm: 16px;
        --font-size-base: 18px;
        --font-size-lg: 20px;
        --font-size-xl: 24px;
        --font-size-2xl: 28px;
        --font-size-3xl: 38px;
        --font-size-4xl: 50px;
        --font-size-5xl: 68px;

        --container-max: 1800px;
        --touch-target: 56px;

        --space-8: 10px;
        --space-12: 14px;
        --space-16: 20px;
        --space-24: 30px;
        --space-32: 40px;
        --space-48: 60px;
        --space-64: 80px;
        --space-80: 100px;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
        font-size: var(--font-size-xl);
    }

    .service-card .icon,
    .card-icon {
        width: 72px;
        height: 72px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }
}

/* 4K Displays (3840px) */
@media (min-width: 3840px) {
    :root {
        --font-size-xs: 18px;
        --font-size-sm: 20px;
        --font-size-base: 24px;
        --font-size-lg: 28px;
        --font-size-xl: 32px;
        --font-size-2xl: 40px;
        --font-size-3xl: 52px;
        --font-size-4xl: 72px;
        --font-size-5xl: 96px;

        --container-max: 2800px;
        --touch-target: 72px;

        --space-8: 14px;
        --space-12: 20px;
        --space-16: 28px;
        --space-24: 42px;
        --space-32: 56px;
        --space-48: 84px;
        --space-64: 112px;
        --space-80: 140px;

        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-xl: 32px;
    }

    .header-content {
        min-height: 100px;
    }

    .logo-icon {
        width: 72px;
        height: 72px;
        font-size: var(--font-size-2xl);
    }

    .service-card .icon,
    .card-icon {
        width: 96px;
        height: 96px;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
    }

    .trust-badge-icon {
        width: 96px;
        height: 96px;
    }

    .author-avatar {
        width: 72px;
        height: 72px;
    }

    .team-member img {
        width: 180px;
        height: 180px;
    }

    .contact-icon {
        width: 72px;
        height: 72px;
    }
}

/* ============================================
   Responsive / Mobile
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {

    .hero-grid,
    .feature-highlight,
    .two-column {
        grid-template-columns: 1fr;
        gap: var(--space-40);
    }

    .feature-highlight.reversed {
        direction: ltr;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --font-size-5xl: 36px;
        --font-size-4xl: 28px;
        --font-size-3xl: 24px;
        --container-padding: 16px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-12) var(--container-padding) var(--space-24);
        border-bottom: 1px solid var(--gray-30);
        box-shadow: var(--shadow-8);
        gap: var(--space-4);
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: 1px solid var(--gray-30);
        margin-top: var(--space-4);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding: var(--space-48) 0;
    }

    section {
        padding: var(--space-48) 0;
    }

    .services-grid,
    .card-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-32);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-16);
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        gap: var(--space-24);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --font-size-5xl: 28px;
        --font-size-4xl: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .regional-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Hero USPs Mobile */
    .hero-usps li {
        font-size: var(--font-size-base);
    }

    .hero-trust {
        gap: var(--space-16);
    }

    .trust-value {
        font-size: var(--font-size-lg);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .main-header,
    .main-footer,
    .cta-section,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .hero,
    section {
        padding: 20px 0;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-16);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-12) var(--space-24);
    border-radius: var(--radius-md);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: var(--space-16);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #0050A0;
        --text-primary: #000000;
        --text-secondary: #333333;
    }

    .btn {
        border-width: 3px;
    }

    .service-card,
    .card,
    .testimonial-card {
        border-width: 2px;
        border-color: var(--black);
    }
}

/* ============================================
   RESPONSIVE SYSTEM - Device Matrix 2026
   Tested on: iPhone, Android, iPad, MacBook, 4K TV
   ============================================ */

/* === iPhone SE / Small Android (320px-374px) === */
@media (max-width: 374px) {
    :root {
        --font-size-5xl: 24px;
        --font-size-4xl: 20px;
        --font-size-3xl: 18px;
        --font-size-2xl: 16px;
        --container-padding: 12px;
    }

    .hero-title-main {
        font-size: 22px;
    }

    .hero-title-accent {
        font-size: 20px;
    }

    .services-bento,
    .projects-bento {
        gap: var(--space-12);
    }

    .service-tile-content,
    .project-content {
        padding: var(--space-16);
    }

    .service-tile-icon {
        font-size: 32px;
    }

    .stats-card .big-number {
        font-size: 40px;
    }

    .project-title {
        font-size: var(--font-size-lg);
    }

    .project-stats {
        flex-wrap: wrap;
        gap: var(--space-8);
    }

    .btn {
        padding: var(--space-12) var(--space-16);
        font-size: var(--font-size-sm);
    }

    .nav-menu {
        padding: var(--space-8) var(--space-12);
    }

    .testimonial {
        padding: var(--space-16);
    }

    .region-card {
        padding: var(--space-16);
    }
}

/* === iPhone 12-15 / Standard Mobile (375px-479px) === */
@media (min-width: 375px) and (max-width: 479px) {
    :root {
        --font-size-5xl: 28px;
        --font-size-4xl: 24px;
        --font-size-3xl: 20px;
        --container-padding: 16px;
    }

    .services-bento,
    .projects-bento {
        grid-template-columns: 1fr;
    }

    .service-tile.large,
    .service-tile.medium,
    .service-tile.small,
    .service-tile.wide,
    .project-card.large,
    .project-card.medium,
    .project-card.small,
    .project-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-tile {
        min-height: 200px;
    }

    .project-card {
        min-height: 260px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === Large Mobile / Phablet (480px-639px) === */
@media (min-width: 480px) and (max-width: 639px) {

    .services-bento,
    .projects-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tile.large,
    .service-tile.medium,
    .project-card.large,
    .project-card.medium {
        grid-column: span 2;
    }

    .service-tile.small,
    .service-tile.wide,
    .project-card.small,
    .project-card.wide {
        grid-column: span 1;
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Small Tablet / iPad Mini (640px-767px) === */
@media (min-width: 640px) and (max-width: 767px) {
    .services-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .projects-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .service-tile.large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .service-tile.medium {
        grid-column: span 3;
        grid-row: span 2;
    }

    .service-tile.small {
        grid-column: span 3;
    }

    .service-tile.wide {
        grid-column: span 6;
    }

    .project-card.large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .project-card.medium {
        grid-column: span 3;
        grid-row: span 2;
    }

    .project-card.small {
        grid-column: span 3;
    }

    .project-card.wide {
        grid-column: span 3;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-height: 300px;
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Tablet Portrait / iPad (768px-1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --container-padding: 24px;
    }

    .services-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .projects-bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .service-tile.large {
        grid-column: span 6;
    }

    .service-tile.medium {
        grid-column: span 3;
    }

    .service-tile.small {
        grid-column: span 3;
    }

    .service-tile.wide {
        grid-column: span 6;
    }

    .project-card.large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .project-card.medium {
        grid-column: span 3;
        grid-row: span 2;
    }

    .project-card.small {
        grid-column: span 3;
    }

    .project-card.wide {
        grid-column: span 3;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        max-height: 350px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
}

/* === Tablet Landscape / Small Laptop (1024px-1279px) === */
@media (min-width: 1024px) and (max-width: 1279px) {
    .services-bento {
        grid-template-columns: repeat(12, 1fr);
    }

    .projects-bento {
        grid-template-columns: repeat(12, 1fr);
    }

    .service-tile.large {
        grid-column: span 6;
    }

    .service-tile.medium {
        grid-column: span 6;
    }

    .service-tile.small {
        grid-column: span 3;
    }

    .service-tile.wide {
        grid-column: span 6;
    }

    .hero-grid {
        gap: var(--space-40);
    }

    .nav-menu {
        display: flex;
        gap: var(--space-8);
    }

    .nav-menu a {
        padding: var(--space-8) var(--space-12);
        font-size: var(--font-size-sm);
    }
}

/* === Desktop (1280px-1439px) === */
@media (min-width: 1280px) and (max-width: 1439px) {

    .services-bento,
    .projects-bento {
        grid-template-columns: repeat(12, 1fr);
        gap: var(--space-24);
    }

    .container {
        max-width: 1200px;
    }
}

/* === Large Desktop (1440px-2559px) === */
@media (min-width: 1440px) and (max-width: 2559px) {
    :root {
        --container-max: 1400px;
    }

    .services-bento,
    .projects-bento {
        max-width: 1600px;
        gap: var(--space-24);
    }

    .project-card.large {
        grid-column: span 8;
    }

    .project-card.medium {
        grid-column: span 4;
    }
}

/* === 2K Display (2560px-3839px) === */
@media (min-width: 2560px) and (max-width: 3839px) {

    .services-bento,
    .projects-bento {
        max-width: 2200px;
        gap: var(--space-32);
    }

    .service-tile-content {
        padding: var(--space-40);
    }

    .project-content {
        padding: var(--space-32);
    }

    .service-tile-icon {
        font-size: 64px;
    }

    .stats-card .big-number {
        font-size: 96px;
    }

    .project-title {
        font-size: var(--font-size-3xl);
    }

    .project-stat-value {
        font-size: var(--font-size-2xl);
    }

    /* 2K Modal Styles */
    .modal {
        width: min(1100px, calc(100% - 80px));
        max-height: 85vh;
        border-radius: 20px;
    }

    .modal-left {
        padding: 32px 36px;
    }

    .modal-left h3 {
        font-size: 26px;
    }

    .modal-main {
        padding: 32px 36px;
    }

    .modal-main h2 {
        font-size: 24px;
    }

    .modal-close {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .privacy-accordion-header {
        padding: 20px 24px;
        font-size: 16px;
    }

    .privacy-accordion-content {
        padding: 0 24px 24px;
    }
}

/* === 4K Display (3840px+) === */
@media (min-width: 3840px) {

    .services-bento,
    .projects-bento {
        max-width: 3200px;
        gap: var(--space-48);
    }

    .service-tile-content {
        padding: var(--space-48);
    }

    .project-content {
        padding: var(--space-40);
    }

    .service-tile h3 {
        font-size: var(--font-size-2xl);
    }

    .service-tile p {
        font-size: var(--font-size-lg);
    }

    .service-tile-icon {
        font-size: 80px;
    }

    .stats-card .big-number {
        font-size: 120px;
    }

    .stats-card .stats-label {
        font-size: var(--font-size-xl);
    }

    .project-title {
        font-size: var(--font-size-4xl);
    }

    .project-desc {
        font-size: var(--font-size-lg);
    }

    .project-stat-value {
        font-size: var(--font-size-3xl);
    }

    .tech-pill,
    .service-tile-badges .badge {
        font-size: var(--font-size-sm);
        padding: var(--space-8) var(--space-16);
    }

    /* 4K Modal Styles */
    .modal {
        width: min(1400px, calc(100% - 120px));
        max-height: 85vh;
        border-radius: 24px;
    }

    .modal-left {
        padding: 40px 48px;
    }

    .modal-left h3 {
        font-size: 32px;
    }

    .modal-left p {
        font-size: 18px;
    }

    .modal-main {
        padding: 40px 48px;
    }

    .modal-main h2 {
        font-size: 28px;
    }

    .modal-block {
        padding: 24px;
        font-size: 18px;
    }

    .modal-close {
        width: 56px;
        height: 56px;
        font-size: 28px;
        top: 20px;
        right: 20px;
    }

    .privacy-accordion-header {
        padding: 24px 28px;
        font-size: 18px;
    }

    .privacy-accordion-content {
        padding: 0 28px 28px;
        font-size: 16px;
    }

    .privacy-accordion-content h4 {
        font-size: 20px;
    }
}

/* === Touch Device Detection === */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover effects on touch devices */
    .service-tile:hover,
    .project-card:hover {
        transform: none;
    }

    /* Larger touch targets */
    .btn {
        min-height: 52px;
        padding: var(--space-16) var(--space-24);
    }

    .nav-menu a {
        min-height: 48px;
        padding: var(--space-16);
    }

    .service-tile-link {
        min-height: 44px;
        padding: var(--space-8) 0;
    }

    /* Hide cursor effects on touch */
    .cursor-follower,
    .cursor-toggle {
        display: none !important;
    }
}

/* === Landscape Mobile (height < 500px) === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: var(--space-24) 0;
        min-height: auto;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
    }

    section {
        padding: var(--space-32) 0;
    }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
    /* Prepare for future dark mode implementation */
    /* Currently using light mode only for brand consistency */
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-16 {
    margin-bottom: var(--space-16);
}

.mb-24 {
    margin-bottom: var(--space-24);
}

.mb-32 {
    margin-bottom: var(--space-32);
}

.mb-48 {
    margin-bottom: var(--space-48);
}

.mt-0 {
    margin-top: 0;
}

.mt-16 {
    margin-top: var(--space-16);
}

.mt-24 {
    margin-top: var(--space-24);
}

.mt-32 {
    margin-top: var(--space-32);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   2026 Best Practice - Advanced Interactions
   ============================================ */

/* Custom Cursor Effects */
.interactive-cursor {
    cursor: pointer;
}

/* Cursor Follower - hidden, only particle trail visible */
.cursor-follower {
    display: none !important;
}

.cursor-follower .inner,
.cursor-follower.magnet,
.cursor-follower.magnet .inner {
    display: none !important;
}

.cursor-disabled {
    display: none !important;
}

/* Focus / accessibility toggle - DISABLED */
.cursor-toggle {
    display: none !important;
}

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-magnetic:hover {
    transform: scale(1.02);
}

.btn-magnetic:active {
    transform: scale(0.98);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Focus States - Accessibility 2026 */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

.btn:focus-visible,
.nav-menu a:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(0, 120, 212, 0.15);
}

/* Micro-Interaction: Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.ripple:active::after {
    width: 200%;
    height: 200%;
    opacity: 1;
    transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
}

/* Glow Effect on Hover */
.glow-hover {
    transition: box-shadow 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(0, 120, 212, 0.4),
        0 0 60px rgba(0, 120, 212, 0.2),
        var(--shadow-16);
}

/* Smooth Card Lift */
.lift-hover {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease;
}

.lift-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-64);
}

/* Gradient Border Animation */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), #00BCF2, var(--primary-light), var(--primary));
    background-size: 300% 300%;
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Typewriter Effect for Headlines */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    animation: typing 3s steps(40) 1s forwards,
        blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Smooth Underline Animation */
.underline-hover {
    position: relative;
    text-decoration: none;
}

.underline-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.underline-hover:hover::after {
    width: 100%;
}

/* Pulse Animation for CTAs */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Floating Animation */
.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Scroll-Triggered Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

/* Shimmer Loading Effect */
.shimmer {
    background: linear-gradient(90deg,
            var(--gray-20) 0%,
            var(--gray-10) 50%,
            var(--gray-20) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Smooth Color Transition for Links */
.nav-menu a,
.footer-links a {
    position: relative;
    transition: color 0.25s ease;
}

/* Icon Rotation on Hover */
.icon-rotate:hover svg,
.icon-rotate:hover i {
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

/* Scale Bounce Effect */
.bounce-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bounce-hover:hover {
    transform: scale(1.08);
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-20);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Sticky CTA Bar (Desktop)
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
}

.sticky-cta-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.sticky-cta-text strong {
    color: var(--text-primary);
}

.btn-sticky {
    white-space: nowrap;
    padding: var(--space-12) var(--space-24);
}

/* Hide Sticky CTA on mobile - use quick-bar instead */
@media (max-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ============================================
   Mobile Quick-Access Bar (TOP)
   ============================================ */
.mobile-quick-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
    z-index: 1000;
    padding: var(--space-8) 0;
    padding-top: max(var(--space-8), env(safe-area-inset-top));
}

@media (max-width: 768px) {
    .mobile-quick-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    /* Add TOP padding to body so content isn't hidden */
    body {
        padding-top: 70px;
        padding-bottom: 0;
    }

    /* Adjust header position */
    .main-header {
        top: 60px;
    }
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-8) var(--space-12);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.2s ease;
    min-width: 64px;
}

.quick-action svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.quick-action:hover,
.quick-action:active {
    color: var(--primary);
    text-decoration: none;
}

.quick-action:active {
    transform: scale(0.95);
}

/* ============================================
   DARK TECH THEME OVERRIDES
   ============================================ */

/* Cards & Panels - Dark glass effect */
.service-card,
.service-tile,
.project-card,
.bento-item,
.feature-card,
.regional-card,
.contact-form,
.form-group input,
.form-group select,
.form-group textarea,
.dropdown-menu,
.nav-support-dropdown,
.faq-item,
.pricing-card,
.testimonial-card,
.team-card,
.stat-card,
.philosophy-card,
.mission-content {
    background: rgba(22, 27, 34, 0.85) !important;
    border: 1px solid rgba(0, 212, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Service Tiles specific styling */
.service-tile {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 212, 255, 0.1) !important;
}

.service-tile:hover {
    border-color: rgba(0, 212, 255, 0.4) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.15) !important;
}

.service-tile-icon {
    filter: grayscale(0) !important;
}

.service-tile h3 {
    color: var(--text-primary) !important;
}

.service-tile p {
    color: var(--text-secondary) !important;
}

.service-tile-features li {
    color: var(--text-secondary) !important;
}

.service-tile-link {
    color: var(--primary) !important;
}

.service-tile-badges .badge {
    background: rgba(0, 212, 255, 0.15) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
}

/* Visual Settings & UI Panels */
.visual-settings,
.cursor-toggle,
.cookie-banner,
.back-to-top {
    background: rgba(22, 27, 34, 0.95) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-primary) !important;
}

/* Sections */
section,
.mission-section,
.services-section,
.philosophy-section,
.about-section,
.contact-section,
.cta-section,
.pricing-section,
.testimonials-section,
.faq-section {
    background: transparent !important;
}

/* Alternate section backgrounds */
section:nth-child(even) {
    background: rgba(0, 212, 255, 0.02) !important;
}

/* Footer */
.main-footer,
footer {
    background: rgba(13, 17, 23, 0.95) !important;
    border-top: 1px solid var(--border-subtle) !important;
}

/* Input fields */
input,
textarea,
select {
    background: var(--gray-20) !important;
    border-color: var(--border-default) !important;
    color: var(--text-primary) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-tertiary) !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary) !important;
    box-shadow: var(--glow-subtle) !important;
}

/* Buttons */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-on-primary) !important;
}

.btn-primary:hover {
    background: var(--primary-light) !important;
    box-shadow: var(--glow-primary) !important;
}

.btn-secondary {
    background: transparent !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-secondary:hover {
    background: var(--primary) !important;
    color: var(--text-on-primary) !important;
}

/* Hero Image with glow */
.hero-img {
    border: 1px solid var(--border-subtle);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

/* USP Icons */
.usp-icon {
    stroke: var(--primary) !important;
}

/* Trust bar */
.hero-trust {
    border-color: var(--border-subtle) !important;
}

.trust-stars {
    color: #FFB900 !important;
    text-shadow: 0 0 10px rgba(255, 185, 0, 0.5);
}

/* Bento Grid items glow on hover */
.bento-item:hover,
.service-card:hover,
.project-card:hover {
    border-color: var(--border-strong) !important;
    box-shadow: var(--glow-subtle) !important;
}

/* Links */
a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* Headings for dark theme */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary) !important;
}

/* Section headers */
.section-header h2,
.section-title {
    color: var(--text-primary) !important;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.section-header p,
.section-subtitle {
    color: var(--text-secondary) !important;
}

/* Philosophy section */
.mission-content h2,
.philosophy-title {
    color: var(--text-primary) !important;
}

.mission-text,
.philosophy-text {
    color: var(--text-secondary) !important;
}

/* Numbered steps/cards */
.philosophy-card,
.step-card {
    background: rgba(22, 27, 34, 0.8) !important;
    border: 1px solid rgba(0, 212, 255, 0.15) !important;
}

.philosophy-card h3,
.step-card h3 {
    color: var(--text-primary) !important;
}

.philosophy-card p,
.step-card p {
    color: var(--text-secondary) !important;
}

/* Scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-20);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-40);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Sticky CTA for dark theme */
.sticky-cta {
    background: rgba(13, 17, 23, 0.95) !important;
    backdrop-filter: blur(10px);
    border-color: var(--border-subtle) !important;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-on-primary);
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .btn,
    .back-to-top,
    .sticky-cta,
    .mobile-quick-bar {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ============================================
   Promise Section - Unser Versprechen
   ============================================ */
.promise-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.9));
    position: relative;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-item {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.promise-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
}

.promise-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.promise-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.promise-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promise-item {
        padding: 1.5rem;
    }
}

/* ============================================
   Subpage Styles - IT-Lösungen, Sauerland.AI
   Bento-Style Cards für Unterseiten
   ============================================ */

/* Service Navigation */
.service-nav {
    padding: 2rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-subtle);
}

.service-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-nav-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.service-nav-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-color: var(--primary);
}

.service-nav-icon {
    font-size: 1.25rem;
}

.service-nav-title {
    font-weight: 500;
}

.service-nav-badge {
    background: var(--primary);
    color: var(--text-on-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Services Page Main Content */
.services-page {
    padding: var(--section-padding);
}

/* Service Detail Sections */
.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-subtle);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.service-detail-content {
    max-width: 100%;
}

/* Service Intro Box - Bento Style */
.service-intro-box {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.service-intro-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.service-intro-box strong {
    color: var(--text-primary);
}

/* Service Features Grid - Bento Cards */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Benefits */
.service-benefits {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-benefits h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.check-list-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-horizontal li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-list-horizontal li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

/* Page Hero for subpages */
.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.98), rgba(22, 27, 34, 0.95));
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.page-hero .hero-overline {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-hero .hero-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive for subpages */
@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon-large {
        margin: 0 auto;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .check-list-horizontal {
        grid-template-columns: 1fr;
    }

    .service-nav-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .service-nav-item {
        justify-content: center;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 999999 !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    text-decoration: none !important;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-20);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp inline next to phone number */
.contact-with-whatsapp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.whatsapp-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 6px 12px;
    border-radius: 20px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.whatsapp-inline:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-inline svg {
    width: 18px;
    height: 18px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        position: fixed !important;
        bottom: 25px !important;
        right: 25px !important;
        z-index: 999999 !important;
        width: 60px !important;
        height: 60px !important;
        background: #25D366 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
        text-decoration: none !important;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   Cookie Consent Popup
   ============================================ */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--gray-20);
    border-top: 1px solid var(--border-default);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup.hidden {
    bottom: -200px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    min-width: 200px;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-essential {
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-primary);
}

.cookie-essential:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.cookie-all {
    background: var(--primary);
    color: var(--text-on-primary);
}

.cookie-all:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }
}

/* ============================================
   Enhanced Navigation - Sauerland.AI Highlight
   ============================================ */
.nav-sauerland-ai {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 8px 16px !important;
    color: var(--primary) !important;
    font-weight: 600;
    animation: pulse-glow 2s ease-in-out infinite;
}

.nav-sauerland-ai:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(99, 102, 241, 0.25));
    transform: translateY(-2px);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
}

.nav-badge {
    background: var(--success);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* ============================================
   Footer Trust Badges
   ============================================ */
.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-trust-badges span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

/* ============================================
   Mobile Responsive Improvements
   ============================================ */
@media (max-width: 768px) {
    .nav-sauerland-ai {
        display: block;
        text-align: center;
        margin: 8px 16px;
    }

    .nav-badge {
        display: inline-block;
    }

    /* Better mobile nav */
    .nav-menu {
        padding-bottom: 20px;
    }

    .nav-menu li a {
        padding: 14px 20px;
        font-size: 16px;
    }

    /* Mobile hero adjustments */
    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Better mobile cards */
    .bento-card {
        padding: 20px;
    }

    .service-feature-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        position: fixed !important;
        bottom: 25px !important;
        right: 25px !important;
        z-index: 999999 !important;
        width: 60px !important;
        height: 60px !important;
        background: #25D366 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
        text-decoration: none !important;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .nav-sauerland-ai {
        padding: 10px 12px !important;
        font-size: 14px;
    }
}

/* ============================================
   MOBILE-FIRST RESPONSIVE FIXES (Januar 2026)
   Z Flip, iPhone, iPad optimiert
   ============================================ */

/* === Samsung Z Flip / Foldables (<=450px, tall aspect) === */
@media (max-width: 450px) {

    /* Container anpassen */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Navigation kompakter */
    .main-header {
        padding: 8px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Hero drastisch vereinfachen */
    .hero {
        padding: 60px 0 30px;
        min-height: 0;
    }

    .hero-content {
        padding: 16px;
        border-radius: 14px;
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Pills kleiner */
    .hero-pills {
        gap: 6px;
        margin-bottom: 14px;
    }

    .pill {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    /* Buttons stapeln */
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 14px;
        justify-content: center;
    }

    /* Bento: 1 Spalte, kompakter */
    .bento {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .bento-card {
        padding: 14px;
        min-height: 110px;
        border-radius: 12px;
    }

    .bento-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .bento-card .tagline {
        font-size: 11px;
    }

    .bento-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .bento-card p {
        font-size: 12px;
        line-height: 1.4;
    }

    .bento-card .cta-link {
        font-size: 12px;
    }

    /* Gallery: 1 Spalte */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 16/10;
    }

    .gallery-item-large {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }

    .gallery-caption {
        padding: 10px;
    }

    .gallery-caption h3 {
        font-size: 13px;
    }

    .gallery-caption p {
        font-size: 11px;
    }

    /* Modals: Fullscreen */
    .modal-overlay {
        padding: 8px;
    }

    .modal {
        max-height: 96vh;
        border-radius: 14px;
    }

    .modal-left {
        padding: 14px;
    }

    .modal-left h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .modal-left p {
        font-size: 13px;
    }

    .modal-list {
        gap: 8px;
    }

    .modal-list li {
        font-size: 12px;
    }

    .modal-main {
        padding: 14px;
    }

    .modal-main h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .modal-main .grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .modal-block {
        padding: 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
        border-radius: 8px;
    }

    /* Factor Cards */
    .factor-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .factor-card {
        padding: 12px;
        border-radius: 12px;
    }

    .factor-card h4 {
        font-size: 14px;
    }

    .factor-card p {
        font-size: 12px;
    }

    /* Section Padding reduzieren */
    section {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* Floating CTA unten fixieren */
    .floating-cta {
        position: fixed;
        bottom: 12px;
        left: 12px;
        right: 12px;
        top: auto;
        flex-direction: column;
        gap: 8px;
        z-index: 1100;
    }

    .floating-cta a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* Footer kompakter */
    .main-footer {
        padding: 30px 0 100px;
        /* Platz für Floating CTA */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

/* === Z Flip / Ultra-kleine Screens (bis 320px) === */
@media (max-width: 320px) {
    :root {
        --font-size-5xl: 20px;
        --font-size-4xl: 18px;
        --font-size-3xl: 16px;
        --font-size-2xl: 14px;
        --container-padding: 8px;
    }

    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-title {
        font-size: 20px !important;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .pill {
        padding: 4px 8px;
        font-size: 10px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .bento-card {
        padding: 10px;
        min-height: 90px;
    }

    .bento-card h3 {
        font-size: 13px;
    }

    .bento-card p {
        font-size: 11px;
    }

    /* Modal Fullscreen */
    .modal {
        max-height: 98vh;
        border-radius: 6px 6px 0 0;
    }

    .modal-left,
    .modal-main {
        padding: 8px 10px;
    }

    .modal-left h3 {
        font-size: 14px;
    }

    .modal-main h2 {
        font-size: 14px;
    }

    .modal-block {
        padding: 8px;
        font-size: 11px;
    }

    /* Floating CTA kleiner */
    .floating-cta a {
        padding: 10px;
        font-size: 11px;
    }

    /* Nav sehr kompakt */
    .logo-text {
        font-size: 18px;
    }

    .nav-phone {
        font-size: 12px;
    }
}

/* === Standard iPhone / Android (451px-767px) === */
@media (min-width: 451px) and (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 70px 0 40px;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-card {
        min-height: 130px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modal {
        max-height: 94vh;
    }

    .modal-main .grid {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        bottom: 16px;
        left: 16px;
        right: 16px;
        top: auto;
        flex-direction: row;
    }

    .floating-cta a {
        flex: 1;
        text-align: center;
        padding: 12px 8px;
        font-size: 12px;
    }
}

/* === iPad Mini / Small Tablet (768px-900px) === */
@media (min-width: 768px) and (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .modal {
        width: min(95%, 800px);
    }

    .factor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === iPad / iPad Air (901px-1024px) === */
@media (min-width: 901px) and (max-width: 1024px) {
    .hero-title {
        font-size: 36px !important;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-card:nth-child(5),
    .bento-card:nth-child(6) {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal {
        width: min(90%, 950px);
    }
}

/* === iPad Pro 11" (1024px-1194px) === */
@media (min-width: 1025px) and (max-width: 1194px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === iPad Pro 12.9" / Large Tablet (1195px-1366px) === */
@media (min-width: 1195px) and (max-width: 1366px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Touch-friendly überall */
@media (hover: none) and (pointer: coarse) {

    .bento-card,
    .factor-card,
    .gallery-item,
    .btn,
    .nav-menu a {
        min-height: 48px;
        cursor: pointer;
    }

    .bento-card:active {
        transform: scale(0.98);
    }

    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===========================================
   KONTAKT PAGE STYLES
   =========================================== */

/* Quick Contact Cards */
.contact-quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.contact-quick-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.3);
}

.quick-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    color: var(--primary);
}

.quick-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.contact-quick-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}

.contact-quick-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 12px;
}

.quick-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.quick-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.quick-info {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

/* Contact Grid (Info + Form) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Contact Info Section */
.contact-info-section h2 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}

.contact-intro {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Contact Highlight Box */
.contact-highlight {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.contact-highlight h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.contact-highlight p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    color: var(--text-primary);
    font-size: 14px;
    padding: 6px 0 6px 28px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    color: var(--primary);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.contact-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.contact-text small {
    color: var(--text-tertiary);
    font-size: 12px;
}

.company-info {
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.company-info p {
    color: var(--text-tertiary);
    font-size: 13px;
    margin: 0;
}

.company-info a {
    color: var(--primary);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
}

.contact-form-section h2 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-20);
    border: 1px solid var(--border-default);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
}

/* Submit Button */
.contact-form .btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.form-note {
    color: var(--text-tertiary);
    font-size: 12px;
    margin: 16px 0 0;
    text-align: center;
}

/* Page Header for Subpages */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.page-tagline {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
}

.page-header h1 {
    color: var(--text-primary);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0 0 16px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Area */
.main-content {
    padding: 48px 0 80px;
}

.contact-page {
    min-height: 60vh;
}

/* Footer Badge Icons */
.footer-badge svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    vertical-align: -2px;
    margin-right: 4px;
}

/* Hosting On-Prem Section */
.hosting-onprem-section {
    padding: 64px 0 72px;
}

.hosting-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
}

.hosting-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hosting-card h2 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 800;
}

.hosting-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 14px;
}

.hosting-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
}

.hosting-list li {
    padding-left: 20px;
    position: relative;
    color: var(--text-primary);
    font-size: 15px;
}

.hosting-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.hosting-accordions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hosting-acc {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
    overflow: hidden;
}

.hosting-acc summary {
    cursor: pointer;
    padding: 14px 16px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
    list-style: none;
    position: relative;
}

.hosting-acc summary::-webkit-details-marker {
    display: none;
}

.hosting-acc summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B949E;
}

.hosting-acc[open] summary::after {
    content: "–";
    color: var(--primary);
}

.hosting-acc-content {
    padding: 0 16px 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.hosting-acc-content ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 4px;
}

.hosting-acc-content li {
    padding-left: 18px;
    position: relative;
    color: var(--text-primary);
}

.hosting-acc-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   Inline-Style Extraktion
   ============================================ */

/* Logo Icon */
.logo-icon {
    width: 36px;
    height: 36px;
    margin-right: var(--space-8);
}

/* Hero Meta */
.hero-meta {
    margin-top: var(--space-16);
}

/* Feature Content & Image z-index */
.feature-content {
    position: relative;
    z-index: 2;
}

.feature-image {
    position: relative;
    z-index: 1;
}

/* Feature Highlight Erweiterung */
.feature-highlight {
    position: relative;
    overflow: hidden;
}

.feature-highlight#onprem {
    padding: var(--space-80) var(--space-24);
    align-items: start;
}

.feature-content .hero-actions {
    margin-top: var(--space-16);
}

/* Factor Cards Cursor */
.factor-card[data-modal-target] {
    cursor: pointer;
}

.factor-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 168, 204, 0.08));
    border-color: rgba(0, 212, 255, 0.3);
}

/* Badge Varianten */
.badge--success {
    background: rgba(47, 214, 124, 0.2);
    color: #2FD67C;
}

/* Karriere Teaser Section */
.karriere-teaser {
    padding: var(--space-80) 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(13, 17, 23, 0.95));
}

.karriere-teaser .container {
    max-width: 900px;
    text-align: center;
}

.karriere-teaser .badge {
    display: inline-block;
    margin-bottom: var(--space-16);
}

.karriere-teaser h2 {
    font-size: 36px;
    margin-bottom: var(--space-16);
}

.karriere-teaser .karriere-lead {
    font-size: var(--font-size-lg);
    color: #9EB4C7;
    margin-bottom: var(--space-24);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.karriere-teaser .hero-actions {
    justify-content: center;
}

/* Privacy Full Link */
.privacy-full-link {
    margin-left: var(--space-12);
}

/* Footer Note */
.footer-note {
    font-size: var(--font-size-xs);
    color: #6E7681;
    margin-top: var(--space-8);
}

/* Link Primary */
.link-primary {
    color: var(--primary);
}

/* Modal Note */
.modal-note {
    margin-top: var(--space-16);
    color: var(--text-secondary);
    font-style: italic;
}

/* CTA Section Overrides */
.cta-contact .feature-list {
    margin: 0;
}

.cta-note {
    color: rgba(255, 255, 255, 0.85);
}

/* Privacy Footer Column Variant */
.privacy-footer--column {
    flex-direction: column;
    gap: var(--space-24);
}

/* Karriere Form Wrapper */
.karriere-form-wrapper h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
}

.karriere-form-wrapper p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-16);
}

/* Karriere Form */
.karriere-form select,
.karriere-form input:not([type="checkbox"]),
.karriere-form textarea {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    border-radius: 10px;
    border: 1px solid var(--gray-40);
    background: var(--gray-20);
    color: var(--text-primary);
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

/* Karriere Alt Actions */
.karriere-alt-actions {
    display: flex;
    gap: var(--space-12);
    justify-content: center;
    padding-top: var(--space-16);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.karriere-alt-actions span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    align-self: center;
}

/* Portal Modal */
#modal-portal .modal {
    max-width: 480px;
}

#modal-portal .modal-main {
    padding: var(--space-40);
    text-align: center;
}

.portal-icon {
    margin: 0 auto var(--space-20);
    display: block;
}

#modal-portal h2 {
    margin-bottom: var(--space-8);
}

.portal-subtitle {
    color: var(--gray-90);
    margin-bottom: var(--space-32);
    font-size: 15px;
}

.portal-login-form {
    text-align: left;
    margin-bottom: var(--space-24);
}

.portal-login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--gray-130);
}

.portal-login-form input {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    border-radius: 10px;
    border: 1px solid var(--gray-40);
    background: var(--gray-20);
    color: var(--gray-160);
    font-size: 15px;
}

.portal-login-form .form-group:first-child {
    margin-bottom: var(--space-16);
}

.portal-login-form .form-group:last-of-type {
    margin-bottom: var(--space-20);
}

.portal-footer {
    border-top: 1px solid var(--gray-30);
    padding-top: var(--space-20);
}

.portal-footer p {
    color: var(--gray-90);
    font-size: 13px;
    margin-bottom: var(--space-12);
}

.btn--full-width {
    width: 100%;
    justify-content: center;
}

/* Footer Motto (City Pages) */
.footer-motto {
    text-align: center;
    padding: var(--space-16) 0 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: var(--space-16);
}

.footer-motto p {
    color: var(--text-secondary);
    font-size: 13px;
    font-style: italic;
}

/* ===== EXPERTISE GRID (Über uns) ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.expertise-card {
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.1);
}

.expertise-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 168, 204, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.expertise-content h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}

.expertise-years {
    display: inline-block;
    background: rgba(0, 212, 255, 0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.expertise-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== SOFTWARE SHOWCASE (Über uns) ===== */
.software-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.software-card {
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.software-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.software-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(22, 27, 34, 0.9) 100%);
    border-color: rgba(0, 212, 255, 0.25);
}

@media (min-width: 900px) {
    .software-card.featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .software-card.featured .software-header,
    .software-card.featured .software-desc {
        grid-column: 1;
    }

    .software-card.featured .software-features {
        grid-column: 2;
        grid-row: 1 / 3;
    }
}

.software-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.software-header h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.software-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0D1117;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.software-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.software-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.software-features li {
    color: var(--text-primary);
    font-size: 14px;
    padding-left: 28px;
    position: relative;
}

.software-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2300D4FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

@media (max-width: 600px) {
    .expertise-card {
        flex-direction: column;
        text-align: center;
    }

    .expertise-icon {
        margin: 0 auto;
    }
}