/* ==========================================================================
   WEMASYS IT-Solutions - Central Stylesheet
   Version: 1.0
   Author: WEMASYS IT-Solutions
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    /* Primary Colors */
    --primary-color: #0066FF;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --primary-lighter: #f0f7ff;
    
    /* Secondary Colors */
    --secondary-color: #0a1628;
    --secondary-light: #1a365d;
    
    /* Accent & Gradients */
    --accent-gradient: linear-gradient(135deg, #0066FF 0%, #60a5fa 100%);
    --bg-gradient: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
    --text-gradient: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    
    /* Text Colors */
    --text-color: #374151;
    --text-light: #6b7280;
    --text-dark: #111827;
    --text-muted: #9ca3af;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-lighter: #fafbfc;
    --white: #ffffff;
    
    /* Border & Divider */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Status Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --error-light: #fee2e2;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-primary: 0 4px 14px 0 rgba(0, 102, 255, 0.39);
    --shadow-primary-lg: 0 6px 20px 0 rgba(0, 102, 255, 0.5);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    --spacing-5xl: 120px;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 3.5rem;
    
    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
}

/* ==========================================================================
   2. CSS Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); font-weight: 800; }
h2 { font-size: var(--text-4xl); font-weight: 800; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Gradient Text (both class names for compatibility) */
.text-gradient,
.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ==========================================================================
   4. Layout & Container
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-5xl) 0;
}

.section-sm {
    padding: var(--spacing-4xl) 0;
}

.section-lg {
    padding: 160px 0;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* White Button */
.btn-white {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Outline White Button */
.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: var(--text-xs);
}

.btn-lg {
    padding: 18px 36px;
    font-size: var(--text-base);
}

/* ==========================================================================
   6. Header / Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-icon svg {
    color: var(--white);
    width: 22px;
    height: 22px;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Navigation Actions / Header Actions */
.nav-actions,
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 1000;
    padding: 100px 24px 40px;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-links a {
    display: block;
    padding: 20px 0;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a.active {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Mobile Menu Button Active State */
.mobile-menu-btn.active {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1001;
}

.mobile-menu-btn.active svg {
    color: var(--white);
}

/* ==========================================================================
   7. Hero Sections
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    color: var(--white);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-mini {
    min-height: 50vh;
    padding: 140px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; top: 50%; right: -50px; animation-delay: -5s; }
.shape-3 { width: 200px; height: 200px; bottom: -50px; left: 30%; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-centered {
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: var(--text-6xl);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-weight: 800;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Hero Container Grid */
.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
}

.hero-image-float {
    position: absolute;
    width: 200px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-float.top {
    top: -30px;
    right: -30px;
}

.hero-image-float.bottom {
    bottom: -30px;
    left: -30px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item h3,
.hero-stat h3 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--white);
}

.stat-item p,
.hero-stat p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.hero-stat p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Page Hero (for sub-pages) */
.page-hero {
    background: var(--bg-gradient);
    color: var(--white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: var(--text-5xl);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    color: var(--white);
}

.page-hero-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   8. Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-header h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* Dark Section Header */
.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   9. Cards
   ========================================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    padding: var(--spacing-xl);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Service Card */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--text-sm);
}

.service-link:hover {
    gap: 12px;
}

/* Note: Main Pricing Card styles are defined in Section 12d */

/* Team Card */
.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
}

.team-info {
    padding: var(--spacing-xl);
}

.team-info h3 {
    font-size: var(--text-xl);
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-sm);
}

.team-info p {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin: 0;
}

.team-bio {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    color: var(--text-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Grid */
.team {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* ==========================================================================
   About Story Section (ueber.html)
   ========================================================================== */
.about-story {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.about-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   History Timeline Section (ueber.html)
   ========================================================================== */
.history-timeline {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--spacing-2xl);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.15);
}

.timeline-content {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid var(--border-color);
}

.timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 9px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 11px solid var(--bg-light);
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.timeline-content h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   Mission Section (ueber.html)
   ========================================================================== */
.mission {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.mission-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.mission-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Values Section (ueber.html)
   ========================================================================== */
.values {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.value-item {
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.value-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.value-item h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ==========================================================================
   Location Section (ueber.html)
   ========================================================================== */
.location {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.location-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
}

.location-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.location-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
}

.location-address a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.location-address a:hover {
    text-decoration: underline;
}

.location-map {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    color: var(--text-color);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.map-placeholder p {
    font-weight: 600;
    font-size: var(--text-lg);
}

/* ==========================================================================
   Services Overview & Navigation (leistungen.html)
   ========================================================================== */
.services-overview {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border-color);
}

.services-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.service-nav-item {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-nav-item:hover::before,
.service-nav-item.active::before {
    transform: scaleX(1);
}

.service-nav-item:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-nav-item.active {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.service-nav-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* ==========================================================================
   Service Detail Section (leistungen.html)
   ========================================================================== */
.service-detail {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.service-detail-alt {
    background: var(--bg-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-color);
}

.service-features svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: var(--spacing-md);
    font-size: var(--text-lg);
}

.testimonial-card blockquote {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin: 0;
}

.testimonial-author p {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   9b. Section Specific Layouts
   ========================================================================== */

/* Clients Section */
.clients {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-light);
}

.clients-wrapper {
    text-align: center;
}

.clients-wrapper > p {
    font-size: var(--text-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xl);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
}

.client-logo svg {
    width: 24px;
    height: 24px;
}

/* Services Section */
.services {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* Process Section */
.process {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.about-images img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.about-images img:first-child {
    margin-top: 48px;
}

.about-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-lg);
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: var(--text-base);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-gradient);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
    animation: testimonialFadeIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.testimonials .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.testimonials .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes testimonialFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonials .testimonial-card blockquote {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials .testimonial-author h4 {
    color: var(--white);
}

.testimonials .testimonial-author p {
    color: rgba(255, 255, 255, 0.6);
}

/* Author info text inside testimonials */
.testimonials .author-info h4 {
    color: var(--white);
}

.testimonials .author-info p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials .testimonial-card blockquote p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials .testimonial-author img {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonials .testimonial-card:hover .testimonial-author img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.stars {
    color: #fbbf24;
    margin-bottom: var(--spacing-md);
    font-size: var(--text-lg);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-intro h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
}

.faq-intro p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-button,
.accordion-trigger {
    width: 100%;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.accordion-button:hover,
.accordion-trigger:hover {
    color: var(--primary-color);
}

.accordion-button svg,
.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--text-muted);
}

.accordion-item.active .accordion-button svg,
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Support for hidden attribute on accordion content - override native hidden */
.accordion-content[hidden] {
    display: block !important;
    max-height: 0;
    overflow: hidden;
}

.accordion-content p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .accordion-content[hidden] {
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--bg-gradient);
    border-radius: var(--radius-2xl);
    padding: 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-weight: 800;
}

.cta-box p {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   10. Forms
   ========================================================================== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Form Checkbox (alternative styling for contact form) */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-checkbox a:hover {
    text-decoration: none;
}

/* ==========================================================================
   12b. Contact Section
   ========================================================================== */
.contact-section {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-header {
    margin-bottom: var(--spacing-md);
}

.contact-info-header h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.contact-info-header p {
    color: var(--text-light);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    display: flex;
    gap: var(--spacing-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

/* Contact Icon (alias for contact-card-icon for kontakt.html compatibility) */
.contact-icon,
.contact-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon,
.contact-card:hover .contact-card-icon {
    background: var(--primary-color);
}

.contact-icon svg,
.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover .contact-icon svg,
.contact-card:hover .contact-card-icon svg {
    color: var(--white);
}

.contact-card-content h3,
.contact-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.contact-card-content p,
.contact-card-content a,
.contact-card p,
.contact-card a,
.contact-card address {
    color: var(--text-light);
    font-size: var(--text-sm);
    font-style: normal;
    line-height: 1.6;
}

.contact-card-content a:hover,
.contact-card a:hover {
    color: var(--primary-color);
}

/* Map Section Enhancement */
.map-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2d4a 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.map-placeholder p {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   12c. Stats Section
   ========================================================================== */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.stat-box {
    text-align: center;
    padding: var(--spacing-xl);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ==========================================================================
   12d. Pricing Section
   ========================================================================== */
.pricing {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: var(--text-sm);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: var(--text-sm);
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.not-included {
    color: var(--text-muted);
}

.pricing-features li.not-included svg {
    color: var(--text-muted);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: var(--text-sm);
}

/* ==========================================================================
   12e. Testimonials Page Styles
   ========================================================================== */
.testimonials-page {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.testimonials-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.testimonial-card-large {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card-large:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.testimonial-header > div {
    flex: 1;
}

.testimonial-header h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.project-type {
    color: var(--primary-color);
    font-size: var(--text-sm);
    font-weight: 600;
    display: inline-block;
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.testimonial-card-large .stars {
    margin-bottom: var(--spacing-md);
}

.testimonial-card-large blockquote {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
    flex: 1;
    position: relative;
    padding-left: var(--spacing-lg);
    border-left: 3px solid var(--primary-light);
}

.testimonial-card-large blockquote p {
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.client-name {
    font-weight: 600;
    color: var(--text-dark);
}

.project-year {
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    background: var(--primary-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   12f. Industries Section
   ========================================================================== */
.industries {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.industry-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.industry-card .industry-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--primary-color);
}

.industry-card:hover .industry-icon svg {
    color: var(--white);
}

.industry-card svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.industry-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.industry-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   12g. FAQ Page Styles
   ========================================================================== */
.faq-page {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.faq-category {
    margin-bottom: var(--spacing-3xl);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
}

.faq-category-title svg {
    color: var(--primary-color);
}

.faq-contact {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.faq-contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    gap: var(--spacing-xl);
}

.faq-contact-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-sm);
}

.faq-contact-content p {
    color: var(--text-light);
    margin: 0;
}

.faq-contact-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* ==========================================================================
   12h. Maintenance/Wartung Page Styles
   ========================================================================== */
.maintenance-benefits {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.benefit-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

.whats-included {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-light);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.included-item {
    display: flex;
    gap: var(--spacing-lg);
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.included-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.included-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.included-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

.maintenance-faq {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 24px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: var(--text-sm);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: var(--text-sm);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    font-size: var(--text-sm);
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
}

.copyright a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Footer Contact Address */
.footer-contact {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: var(--spacing-md);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer .copyright,
.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   14. Utilities
   ========================================================================== */
/* Backgrounds */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background: var(--bg-gradient); color: var(--white); }
.bg-white { background-color: var(--white); }

/* Spacing */
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Screen Reader Only (Accessibility) */
.visually-hidden,
.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;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   15. Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   16. Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content p {
        margin: 0 auto var(--spacing-2xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        order: -1;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid-large {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-contact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        padding: 60px 40px;
    }
    
    /* Team & Mission grids at 1024px */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .services-overview {
        padding: var(--spacing-xl) 0;
    }
    
    .services-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --spacing-5xl: 80px;
    }
    
    /* Hide desktop nav, show mobile menu button */
    .header nav .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Ensure mobile menu nav-links are visible */
    .mobile-menu .nav-links {
        display: flex !important;
    }
    
    .nav-actions .btn,
    .header-actions .btn:not(.mobile-menu-btn) {
        display: none;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .hero h1 {
        font-size: var(--text-4xl);
    }
    
    .hero p {
        font-size: var(--text-base);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: var(--spacing-4xl) 0;
    }
    
    .section-header h2 {
        font-size: var(--text-3xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-contact-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-box {
        padding: 48px 24px;
    }
    
    .cta-box h2 {
        font-size: var(--text-3xl);
    }
    
    /* Team & Mission grids at 768px */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .service-detail-content h2 {
        font-size: var(--text-2xl);
    }
    
    .services-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .service-nav-item {
        padding: var(--spacing-md) var(--spacing-sm);
        font-size: var(--text-xs);
    }
    
    .service-nav-item svg {
        width: 24px;
        height: 24px;
    }

    /* Timeline responsive at 768px */
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -38px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   17. Print Styles
   ========================================================================== */
@media print {
    .header,
    .footer,
    .cta-section,
    .mobile-menu-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
        background: none;
        color: #000;
    }
}
