/* ==========================================
   BEM-CONNECT - Modern Professional Design
   ========================================== */

:root {
    /* Primary Colors - Professional Healthcare Palette */
    --primary-teal: #0891b2;
    --primary-teal-dark: #0e7490;
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --accent-green: #10b981;
    --accent-green-light: #34d399;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Glass Effects - Subtle */
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-white-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --glass-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Background Gradients - Softer */
    --bg-gradient-main: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    --bg-gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Modern Mesh Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right bottom, transparent 30%, rgba(8, 145, 178, 0.06) 70%),
        linear-gradient(to left top, transparent 30%, rgba(16, 185, 129, 0.06) 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   GLASS COMPONENTS - Refined
   ========================================== */

.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: var(--glass-white-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-2px);
}

/* Modern Buttons with Animations */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(8, 145, 178, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(8, 145, 178, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-teal);
    border: 1px solid rgba(8, 145, 178, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary::before {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(16, 185, 129, 0.1));
}

.btn-secondary:hover {
    border-color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-outline::before {
    background: var(--primary-teal);
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

/* ==========================================
   NAVIGATION - Modern & Clean
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    height: 45px;
    width: 45px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-teal);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--primary-teal);
    background: rgba(8, 145, 178, 0.1);
}

.contact-btn {
    margin-left: 1rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
}

.contact-btn:hover {
    background: linear-gradient(135deg, var(--primary-teal-dark), var(--primary-blue));
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.contact-btn.active {
    background: var(--primary-teal-dark);
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ==========================================
   HERO SECTION - Refined
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 80px;
    background: linear-gradient(180deg, rgba(240, 249, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

/* Subtle Animated Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-teal);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-blue-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    text-align: center;
}

.hero-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-big {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* Modern Professional Hero Styles */
.hero-card-modern {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 48px rgba(8, 145, 178, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-teal), 
        var(--accent-green), 
        var(--primary-blue));
    opacity: 0.8;
}

.hero-top-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.line-accent {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--primary-teal), 
        transparent);
    opacity: 0.3;
}

.hero-title-modern {
    margin-bottom: 2rem;
    text-align: center;
}

.title-main {
    display: block;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(135deg, 
        var(--primary-teal) 0%, 
        var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    padding-bottom: 0.1em;
    position: relative;
}

.title-subtitle {
    display: block;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(8, 145, 178, 0.3),
        transparent);
}

.divider-text {
    font-size: 1.125rem;
    color: var(--primary-teal);
    font-weight: 600;
    white-space: nowrap;
}

.hero-description-modern {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-buttons-modern {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.25);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.35);
}

.btn-modern-secondary {
    background: white;
    color: var(--primary-teal);
    border: 2px solid rgba(8, 145, 178, 0.2);
}

.btn-modern-secondary:hover {
    background: rgba(8, 145, 178, 0.05);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

.title-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-slogan {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary-teal);
    border-bottom: 2px solid var(--primary-teal);
    transform: rotate(45deg);
    opacity: 0.5;
}

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

/* ==========================================
   INFO SECTION - Clean Cards
   ========================================== */

.info-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    font-size: 1.125rem;
}

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

.info-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-green));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-teal);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-teal);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ==========================================
   ABOUT PREVIEW - Modern Layout
   ========================================== */

.about-preview {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.about-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    color: var(--text-secondary);
    position: relative;
    transition: all var(--transition-base);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list li::after {
    content: "✓";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.feature-list li:hover {
    color: var(--text-primary);
    padding-left: 2.75rem;
}

.image-wrapper {
    padding: 0;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(16, 185, 129, 0.08));
    border-radius: var(--radius-xl);
}

.image-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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


/* ==========================================
   CTA SECTION - Clean & Modern
   ========================================== */

.cta-section {
    padding: var(--spacing-3xl) 0;
}

.cta-card {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(8, 145, 178, 0.1);
}

/* Specific white background for homepage CTA */
.cta-card-white {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.15);
}

.cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ==========================================
   SERVICES PREVIEW
   ========================================== */

.services-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

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

.service-item {
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(8, 145, 178, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.08);
    border-color: var(--primary-teal);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(255, 255, 255, 1));
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================
   FOOTER - Clean & Minimal
   ========================================== */

.footer {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: 50px;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-info h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-info p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ==========================================
   ANIMATIONS - Subtle
   ========================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 69px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0.5rem;
        border-top: 1px solid var(--gray-100);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 100px 1rem 60px;
    }

    .hero-card {
        padding: 2rem 1.5rem;
    }
    
    /* Hero Modern Card Mobile Optimization */
    .hero-card-modern {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .hero-top-line {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .title-main {
        font-size: clamp(2.25rem, 7vw, 3.5rem);
        margin-bottom: 0.5rem;
    }
    
    .title-subtitle {
        font-size: clamp(0.875rem, 2vw, 1.125rem);
    }
    
    .hero-divider {
        margin: 1.5rem 0;
        gap: 1rem;
    }
    
    .divider-line {
        width: 30px;
    }
    
    .divider-text {
        font-size: 0.875rem;
    }
    
    .hero-description-modern {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-modern {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-wrapper {
        height: 250px;
    }
    
    .image-wrapper img {
        object-position: center center;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 40px;
        width: 40px;
    }

    .nav-title {
        font-size: 1.125rem;
    }

    .title-big {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Extra small devices (iPhone SE and similar) */
@media (max-width: 375px) {
    /* Hero Section für sehr kleine Bildschirme */
    .hero {
        padding: 80px 0.75rem 40px;
    }
    
    .hero-card-modern {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
    
    .hero-top-line {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .title-main {
        font-size: 1.875rem;
        letter-spacing: -0.02em;
    }
    
    .title-subtitle {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .hero-divider {
        margin: 1rem 0;
    }
    
    .divider-text {
        font-size: 0.75rem;
    }
    
    .hero-description-modern {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0;
    }
    
    .hero-buttons-modern {
        gap: 0.625rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-arrow {
        font-size: 1rem;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}