/*
 * BMAD B2B Theme - Combined Styles for Performance Optimization
 * Generated by Development Optimization Process
 * Version: 1.0.0
 */

/* =============================================================================
   CRITICAL CSS - Above the fold content styling
   This CSS loads synchronously for immediate rendering
   ============================================================================= */

/* Base Typography and Layout */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    margin: 0;
    padding: 0;
}

/* Header and Navigation */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    height: 90px;
    width: auto;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.site-logo a {
    display: inline-block;
    text-decoration: none;
}

/* Fallback text logo styling - updated for div instead of h1 */
.site-logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    margin-top: 0.25rem;
}

/* Main Navigation Styling */
/* Note: Mobile-specific display properties are in mobile-menu-unified.css */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2d3748;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Mobile Navigation - Handled by mobile-menu-unified.css */
/* This section was removed to prevent conflicts with the unified mobile menu solution */

/* Desktop Navigation - Tech Glassmorphism Design */
@media (min-width: 992px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 1.5rem;
        align-items: center;
    }

    .nav-menu li {
        margin: 0;
        position: relative;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Regular Navigation Links with Glassmorphism */
    .nav-menu a {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        color: #374151;
        font-weight: 500;
        text-decoration: none;
        border-radius: 10px;
        background: rgba(219, 234, 254, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(37, 99, 235, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    /* Icons before each link */
    .nav-menu li:nth-child(1) a::before { content: "🏠"; margin-right: 0.5rem; }
    .nav-menu li:nth-child(2) a::before { content: "⚙️"; margin-right: 0.5rem; }
    .nav-menu li:nth-child(3) a::before { content: "📝"; margin-right: 0.5rem; }
    .nav-menu li:nth-child(4) a::before { content: "👥"; margin-right: 0.5rem; }

    /* Hover effect for regular links */
    .nav-menu li:not(.nav-cta):not(:last-child) a:hover {
        background: rgba(191, 219, 254, 0.8);
        border-color: rgba(37, 99, 235, 0.5);
        color: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    }

    /* KONTAKT BUTTON - Premium Glassmorphism */
    .nav-menu li:last-child a,
    .nav-menu .nav-cta a {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(124, 58, 237, 0.9)) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 2px solid transparent !important;
        background-clip: padding-box;
        color: white !important;
        font-weight: 600;
        padding: 0.85rem 1.75rem;
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4),
                    0 0 20px rgba(124, 58, 237, 0.3);
        position: relative;
    }

    /* Animated gradient border for Kontakt */
    .nav-menu li:last-child a::before,
    .nav-menu .nav-cta a::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        padding: 2px;
        background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
        background-size: 200% 200%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderRotate 3s linear infinite;
        opacity: 0.8;
    }

    @keyframes borderRotate {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Kontakt icon */
    .nav-menu li:last-child a::after,
    .nav-menu .nav-cta a::after {
        content: "🚀";
        margin-left: 0.5rem;
    }

    /* Hover effect for Kontakt button */
    .nav-menu li:last-child a:hover,
    .nav-menu .nav-cta a:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5),
                    0 0 30px rgba(124, 58, 237, 0.4);
        background: linear-gradient(135deg, rgba(29, 78, 216, 0.95), rgba(109, 40, 217, 0.95)) !important;
    }

    /* Pulsing glow effect for Kontakt */
    .nav-menu li:last-child a,
    .nav-menu .nav-cta a {
        animation: subtlePulse 3s ease-in-out infinite;
    }

    @keyframes subtlePulse {
        0%, 100% {
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4),
                        0 0 20px rgba(124, 58, 237, 0.3);
        }
        50% {
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6),
                        0 0 30px rgba(124, 58, 237, 0.5);
        }
    }

    /* Active Page Styling */
    .nav-menu .current-menu-item a,
    .nav-menu .current_page_item a {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.08);
    }

    .nav-menu .current-menu-item:not(.nav-cta) a::after,
    .nav-menu .current_page_item:not(.nav-cta) a::after {
        width: 80%;
    }
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

/* Hero Section styles are now in separate hero-section.css file */

/* Enhanced Primary CTA Buttons - Optimized for conversion */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Enhanced hover effect */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Active state */
.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Focus state for accessibility */
.btn-primary:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3), 0 0 0 3px rgba(102, 126, 234, 0.3);
    color: white;
}

/* Loading state */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Disabled state */
.btn-primary:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Services Section - Above fold on desktop */
.services-section {
    padding: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* =============================================================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================================================= */

/* Mobile Typography Enhancement - FIXED */
@media (max-width: 768px) {
    .hero-content h1, h1 {
        font-size: 2rem !important; /* 32px for better mobile readability */
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    /* Enhanced mobile buttons */
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1.1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .btn-outline-primary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1.1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Reduce hover effects on mobile for better performance */
    .btn-primary:hover,
    .btn-outline-primary:hover,
    .cta-primary:hover,
    .cta-secondary:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1, h1 {
        font-size: 2.25rem !important; /* 36px for optimal mobile readability */
    }
}

/* Global H1 mobile optimization */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important; /* Ensure all H1 elements are 32px on mobile */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem !important; /* 36px on small mobile devices */
    }
}

/* Mobile Logo Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 0.75rem;
        min-height: 70px;
    }

    .site-logo img {
        height: 50px;
        max-width: 180px;
    }

    .site-logo {
        font-size: 1.5rem;
    }

    .site-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        min-height: 60px;
        padding: 0 1rem;
    }

    .site-logo img {
        height: 45px;
        max-width: 160px;
    }

    .site-logo {
        font-size: 1.3rem;
    }

    /* Enhanced mobile UX improvements */
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: 50vh;
    }

    /* Better mobile form elements */
    .form-control {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        -webkit-appearance: none;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Mobile-specific improvements */
    .card {
        margin-bottom: 1rem;
    }

    .navbar-nav {
        margin-top: 0.5rem;
    }

    /* Improve mobile touch targets */
    a, button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Better mobile spacing */
    .py-5 {
        padding: 2rem 0 !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }
}

/* =============================================================================
   NON-CRITICAL STYLES
   These will be loaded asynchronously to prevent render blocking
   ============================================================================= */

/* Statistics Section */
.stats-section {
    background: #2563eb;
    color: white;
    padding: 3rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Pain Points Section */
.pain-points-section {
    background: #f8fafc;
    padding: 4rem 0;
}

/* Pain Point Cards - EPIC GLASSMORPHISM 🔥 */
.pain-point-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%) !important;
    backdrop-filter: blur(25px) !important;
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    border-left: none !important;
    border-radius: 24px !important;
    padding: 2.5rem 2rem !important;
    margin-bottom: 1.5rem;
    box-shadow:
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 8px 32px rgba(139, 92, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(0) perspective(1000px) rotateX(0deg) !important;
    opacity: 0;
    animation: epicFadeInUp 1s ease-out forwards !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Animated gradient border */
.pain-point-card::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06d6a0, #f72585, #3b82f6) !important;
    background-size: 400% 400% !important;
    border-radius: 26px !important;
    z-index: -1 !important;
    animation: gradientFlow 4s ease-in-out infinite !important;
    opacity: 0 !important;
    transition: opacity 0.6s ease !important;
}

.pain-point-card:hover::before {
    opacity: 1 !important;
}

.pain-point-card:hover {
    transform: translateY(-20px) scale(1.05) perspective(1000px) rotateX(5deg) !important;
    box-shadow:
        0 30px 80px rgba(59, 130, 246, 0.25),
        0 15px 50px rgba(139, 92, 246, 0.2),
        0 8px 32px rgba(6, 214, 160, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%) !important;
}

@keyframes epicFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) perspective(1000px) rotateX(-15deg) scale(0.9);
    }
    50% {
        transform: translateY(-5px) perspective(1000px) rotateX(2deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) perspective(1000px) rotateX(0deg) scale(1);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg) scale(1.1);
    }
    75% {
        transform: translateY(-3px) rotate(5deg) scale(1.05);
    }
}

/* EPIC ICON STYLES 🔥 */
.pain-point-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.5rem !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 10 !important;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06d6a0 100%) !important;
    box-shadow:
        0 10px 30px rgba(59, 130, 246, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: iconBounce 3s ease-in-out infinite !important;
    margin: 0 auto 1.5rem auto !important;
}

.pain-point-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    background: linear-gradient(45deg, #f72585, #3b82f6, #06d6a0, #8b5cf6, #f72585) !important;
    background-size: 400% 400% !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    animation: gradientFlow 3s ease-in-out infinite !important;
    opacity: 0 !important;
    transition: opacity 0.6s ease !important;
}

.pain-point-card:hover .pain-point-icon {
    transform: scale(1.2) rotate(15deg) !important;
    background: linear-gradient(135deg, #f72585 0%, #3b82f6 50%, #06d6a0 100%) !important;
    box-shadow:
        0 15px 40px rgba(247, 37, 133, 0.5),
        0 8px 25px rgba(59, 130, 246, 0.4),
        inset 0 3px 8px rgba(255, 255, 255, 0.5) !important;
}

.pain-point-card:hover .pain-point-icon::before {
    opacity: 1 !important;
}

.pain-point-card:hover .pain-point-icon i {
    animation: iconSpin 1s ease-in-out !important;
    color: #ffffff !important;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* 🔥 EPIC HEADLINE EFFECTS 🔥 */
.ki-gradient-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06d6a0, #f72585, #3b82f6) !important;
    background-size: 400% 400% !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-fill-color: transparent !important;
    animation: gradientFlow 3s ease-in-out infinite !important;
    font-weight: 800 !important;
    position: relative !important;
    display: inline-block !important;
}

.ki-gradient-text::after {
    content: attr(data-text) !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3)) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    z-index: -1 !important;
    font-weight: 800 !important;
}

.section-header h2 {
    text-shadow:
        0 5px 15px rgba(59, 130, 246, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
}

/* TYPEWRITER ANIMATION 🔥 */
.typewriter-text {
    overflow: hidden !important;
    border-right: 3px solid #3b82f6 !important;
    white-space: nowrap !important;
    animation:
        typewriter 3s steps(45, end) 1s both,
        blink-caret 1s step-end infinite !important;
    display: inline-block !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
}

@keyframes typewriter {
    from {
        width: 0;
        border-right-color: #3b82f6;
    }
    to {
        width: 100%;
        border-right-color: transparent;
    }
}

@keyframes blink-caret {
    50% {
        border-right-color: transparent;
    }
}

/* SUBTITLE ENHANCEMENTS */
.section-header .lead {
    animation: fadeInDelay 2s ease-out 2s both !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
}

.section-header .lead strong {
    color: #dc2626 !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2) !important;
}

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

/* 3D GLOW EFFECTS 🌟 */
.section-header h2:hover .ki-gradient-text {
    transform: scale(1.05) perspective(1000px) rotateY(5deg) !important;
    text-shadow:
        0 0 20px rgba(59, 130, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(6, 214, 160, 0.3) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-header {
    position: relative !important;
    overflow: visible !important;
}

/* .section-header::before REMOVED - was creating unwanted blue circle */

@keyframes pulseGlow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .typewriter-text {
        white-space: normal !important;
        border-right: none !important;
        animation: fadeInDelay 2s ease-out 1s both !important;
    }

    .ki-gradient-text {
        font-size: 0.9em !important;
    }
}

/* 🔥🔥🔥 ULTRA STRONG METHODOLOGY SECTION OVERRIDES 🔥🔥🔥 */

/* GLASSMORPHISM CARDS - FORCED OVERRIDE */
.loesungsansatz-section .methodology-steps .methodology-step {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%) !important;
  backdrop-filter: blur(25px) !important;
  border: 2px solid transparent !important;
  border-radius: 24px !important;
  padding: 3rem 2rem !important;
  margin-bottom: 2rem !important;
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.15),
    0 10px 25px rgba(139, 92, 246, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  transform: translateY(0) !important;
}

/* HOVER EFFECTS - FORCED */
.loesungsansatz-section .methodology-steps .methodology-step:hover {
  transform: translateY(-20px) scale(1.05) !important;
  box-shadow:
    0 35px 80px rgba(59, 130, 246, 0.25),
    0 20px 50px rgba(139, 92, 246, 0.2),
    0 10px 30px rgba(6, 214, 160, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%) !important;
}

/* GRADIENT BORDER ANIMATION - FORCED */
.loesungsansatz-section .methodology-steps .methodology-step::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -2px !important;
  right: -2px !important;
  bottom: -2px !important;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06d6a0, #f72585, #3b82f6) !important;
  background-size: 400% 400% !important;
  border-radius: 26px !important;
  z-index: -1 !important;
  animation: ultraGradientFlow 4s ease-in-out infinite !important;
  opacity: 0 !important;
  transition: opacity 0.6s ease !important;
}

.loesungsansatz-section .methodology-steps .methodology-step:hover::before {
  opacity: 1 !important;
}

/* TIMELINE ARROWS - ULTRA FORCED */
.loesungsansatz-section .methodology-steps .methodology-step .step-arrow {
  position: absolute !important;
  right: -30px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06d6a0 100%) !important;
  background-size: 200% 100% !important;
  border-radius: 2px !important;
  animation: ultraFlowingLine 3s ease-in-out infinite !important;
  z-index: 15 !important;
  display: block !important;
}

.loesungsansatz-section .methodology-steps .methodology-step .step-arrow::before {
  content: '' !important;
  position: absolute !important;
  right: -8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 10px solid #06d6a0 !important;
  border-top: 6px solid transparent !important;
  border-bottom: 6px solid transparent !important;
  animation: ultraPulseArrowHead 2s ease-in-out infinite !important;
}

/* ICON ANIMATIONS - ULTRA FORCED */
.loesungsansatz-section .methodology-steps .methodology-step .step-icon {
  width: 90px !important;
  height: 90px !important;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%) !important;
  border: 3px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  font-size: 2.2rem !important;
  color: #ffffff !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow:
    0 10px 30px rgba(59, 130, 246, 0.4),
    0 5px 15px rgba(139, 92, 246, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3) !important;
  animation: ultraIconFloat 4s ease-in-out infinite !important;
  position: relative !important;
  z-index: 10 !important;
}

.loesungsansatz-section .methodology-steps .methodology-step:hover .step-icon {
  transform: scale(1.15) rotate(15deg) !important;
  background: linear-gradient(135deg, #f72585 0%, #3b82f6 50%, #06d6a0 100%) !important;
  box-shadow:
    0 15px 40px rgba(247, 37, 133, 0.5),
    0 8px 25px rgba(59, 130, 246, 0.4),
    0 5px 15px rgba(6, 214, 160, 0.3),
    inset 0 3px 8px rgba(255, 255, 255, 0.5) !important;
}

/* KEYFRAMES - ULTRA VERSIONS */
@keyframes ultraGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ultraFlowingLine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ultraPulseArrowHead {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    opacity: 1;
  }
}

@keyframes ultraIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}

/* Solution Section */
.loesungsansatz-section {
    padding: 4rem 0;
}

.solution-feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* ===============================================================
   SOCIAL PROOF SECTION - MODERN YOUTUBE INTEGRATION
   =============================================================== */

/* Section Background */
.social-proof-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%) !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.social-proof-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

.social-proof-section .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Section Header */
.social-proof-section .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    font-weight: 700 !important;
    position: relative !important;
}

.social-proof-section .highlight-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    position: relative !important;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3) !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) !important;
}

.social-proof-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    font-size: 1.1rem !important;
    font-weight: 300 !important;
}

/* YouTube Integration Container */
.youtube-integration-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.youtube-integration-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15) !important;
}

/* YouTube Stats Card */
.youtube-stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
}

.youtube-stats-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* YouTube Header */
.youtube-header {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.youtube-icon {
    color: #ff0000 !important;
    font-size: 3rem !important;
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.3)) !important;
    animation: pulse 3s ease-in-out infinite !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.youtube-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0.5rem !important;
}

.youtube-description {
    color: #64748b !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

/* YouTube Metrics */
.youtube-metrics {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}

.metric-item {
    background: rgba(59, 130, 246, 0.05) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
    border-radius: 16px !important;
    padding: 1.5rem 1rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.metric-item:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
    transform: translateY(-2px) !important;
}

.metric-number {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1e40af !important;
    margin-bottom: 0.5rem !important;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.metric-label {
    font-size: 0.9rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* YouTube Channel Button */
.youtube-channel-link {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3) !important;
}

.youtube-channel-link:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4) !important;
    color: white !important;
}

/* Featured Video Container */
.featured-video-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.featured-video-title {
    color: #1e293b !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.video-wrapper {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    flex: 1 !important;
}

.video-wrapper:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.video-thumbnail-container {
    position: relative !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

.video-thumbnail {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px 16px 0 0 !important;
    transition: all 0.3s ease !important;
}

.video-thumbnail-container:hover .video-thumbnail {
    transform: scale(1.05) !important;
}

.play-button-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: rgba(255, 0, 0, 0.9) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4) !important;
}

.video-thumbnail-container:hover .play-button-overlay {
    background: rgba(255, 0, 0, 1) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6) !important;
}

.video-duration {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

.video-info {
    padding: 1.5rem !important;
}

.video-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

.video-description {
    color: #64748b !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-proof-section {
        padding: 60px 0 !important;
    }

    .youtube-integration-container {
        padding: 2rem !important;
    }

    .youtube-stats-card {
        padding: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .youtube-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .youtube-metrics {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    .metric-item {
        padding: 1rem 0.75rem !important;
    }

    .metric-number {
        font-size: 1.5rem !important;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* CTA Hierarchy Section - UPDATED FOR PROGRESSIVE JOURNEY */
.cta-hierarchy-section {
    background: #ffffff;
    color: #333333;
    padding: 6rem 0;
    text-align: center;
}

/* Enhanced Secondary Buttons */
.btn-outline-primary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Enhanced CTA buttons for specific sections */
.cta-primary {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    margin: 0 1rem 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    text-decoration: none;
    color: #1e40af;
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin: 0 1rem 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* YouTube Integration */
.youtube-video-section {
    padding: 4rem 0;
}

.video-thumbnail {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.play-button-overlay {
    display: none;
}

/* Blog Preview Section */
.blog-preview {
    background: #f8fafc;
    padding: 4rem 0;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

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

.card-text {
    color: #64748b;
    line-height: 1.6;
}

/* =============================================================================
   HERO SECTION SPECIFIC ELEMENTS - CRITICAL FIX
   ============================================================================= */

/* Trust Signals Bar */
.trust-signals {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.youtube-subscribers {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
}

.youtube-subscribers .fa-youtube {
    font-size: 1.2rem;
}

.subscriber-count {
    font-weight: 700;
    font-size: 1.1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ROI Highlight */
.roi-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.roi-statistic {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.roi-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
}

.roi-text {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.roi-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Metrics - CRITICAL FIX */
.floating-metrics {
    position: absolute;
    top: 40%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.metric-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation Staggering */
.metric-1 {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.metric-2 {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.metric-3 {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

/* KI Brain Container - CRITICAL FIX */
.ki-brain-container {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    margin-right: 80px; /* Platz für floating metrics */
}

.ai-network-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.fa-brain {
    filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.3));
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 20px rgba(37, 99, 235, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 30px rgba(37, 99, 235, 0.5));
    }
}

.ki-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.node-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 1s;
}

.node-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-lines line {
    stroke-dasharray: 4 4;
    animation: dashMove 4s linear infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 16;
    }
}

/* Professional Indicators */
.professional-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Tech Stack Indicators */
.tech-stack-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.4rem 0.8rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Hero Visual Positioning */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .floating-metrics {
        position: static;
        transform: none;
        margin-top: 3rem;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .metric-card {
        flex-shrink: 0;
        min-width: 150px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .trust-signals .row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .roi-highlight {
        margin: 2rem 0;
    }

    .ki-brain-container {
        padding: 2rem 1rem;
    }

    .fa-brain {
        font-size: 3rem !important;
    }

    .floating-metrics {
        flex-direction: column;
        align-items: center;
    }

    .metric-card {
        min-width: 280px;
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 1.5rem;
}

.footer-menu a:hover {
    color: white;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding: 3rem 0; }

/* Performance Optimizations */
.lazyload {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazyloaded {
    opacity: 1;
}

/* ===============================================================
   ULTRA-STRONG METHODOLOGY SECTION OVERRIDES - FORCE ALL EFFECTS
   =============================================================== */

/* Timeline Container - FORCE GLASSMORPHISM */
.main-content .loesungsansatz-section .timeline-container,
body .loesungsansatz-section .timeline-container,
html .loesungsansatz-section .timeline-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    margin: 2rem 0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* Step Cards - FORCE FLOATING GLASSMORPHISM WITH TIMELINE */
.main-content .methodology-step,
body .methodology-step,
html .methodology-step,
.loesungsansatz-section .methodology-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 2px solid transparent !important;
    border-radius: 24px !important;
    padding: 2.5rem !important;
    margin: 1.5rem 0 !important;
    position: relative !important;
    transform: translateY(0px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    background-image: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%) !important;
}

/* Timeline Connections Between Steps */
.main-content .methodology-step:not(:last-child)::after,
body .methodology-step:not(:last-child)::after,
html .methodology-step:not(:last-child)::after,
.loesungsansatz-section .methodology-step:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: -20px !important;
    width: 40px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
    border-radius: 2px !important;
    transform: translateY(-50%) !important;
    animation: pulseArrow 2s ease-in-out infinite !important;
    z-index: 10 !important;
}

/* Animated Arrow Heads */
.main-content .methodology-step:not(:last-child)::after,
body .methodology-step:not(:last-child)::after,
html .methodology-step:not(:last-child)::after,
.loesungsansatz-section .methodology-step:not(:last-child)::after {
    background: linear-gradient(90deg, transparent 0%, #3b82f6 20%, #8b5cf6 80%, transparent 100%) !important;
}

/* Arrow Animation */
@keyframes pulseArrow {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1.1);
    }
}

/* Force Border Animation */
.main-content .methodology-step::before,
body .methodology-step::before,
html .methodology-step::before,
.loesungsansatz-section .methodology-step::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6) !important;
    border-radius: 24px !important;
    z-index: -1 !important;
    background-size: 400% 400% !important;
    animation: gradientShift 4s ease infinite !important;
}

/* Force Hover Effects */
.main-content .methodology-step:hover,
body .methodology-step:hover,
html .methodology-step:hover,
.loesungsansatz-section .methodology-step:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%) !important;
}

/* Timeline Line - FORCE ANIMATED CONNECTION */
.main-content .timeline-line,
body .timeline-line,
html .timeline-line,
.loesungsansatz-section .timeline-line {
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6) !important;
    border-radius: 2px !important;
    position: relative !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    animation: pulseGlow 2s ease-in-out infinite alternate !important;
}

/* Timeline Dots - FORCE PULSING ANIMATION */
.main-content .timeline-dot,
body .timeline-dot,
html .timeline-dot,
.loesungsansatz-section .timeline-dot {
    width: 16px !important;
    height: 16px !important;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6) !important;
    border: 3px solid white !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
    animation: dotPulse 2s ease-in-out infinite !important;
    z-index: 5 !important;
}

/* Hide Icons - Numbers are the main element now */
.main-content .methodology-step .fa,
body .methodology-step .fa,
html .methodology-step .fa,
.loesungsansatz-section .methodology-step .fa {
    display: none !important;
}

/* Step Numbers - LARGE FLOATING MAIN ELEMENT */
.main-content .step-number,
body .step-number,
html .step-number,
.loesungsansatz-section .step-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 3rem !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3) !important;
    border: 4px solid white !important;
    position: relative !important;
    z-index: 10 !important;
    animation: iconFloat 3s ease-in-out infinite !important;
    transform: translateY(0) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Number Hover Effect */
.main-content .methodology-step:hover .step-number,
body .methodology-step:hover .step-number,
html .methodology-step:hover .step-number,
.loesungsansatz-section .methodology-step:hover .step-number {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4) !important;
}

/* Step Titles - OPTIMIZED SPACING AND SIZE */
.main-content .methodology-step h3,
body .methodology-step h3,
html .methodology-step h3,
.loesungsansatz-section .methodology-step h3 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #1e293b !important;
    text-align: center !important;
    transition: color 0.3s ease !important;
    line-height: 1.3 !important;
}

/* Step Titles on Hover - WHITE TEXT for visibility */
.main-content .methodology-step:hover h3,
body .methodology-step:hover h3,
html .methodology-step:hover h3,
.loesungsansatz-section .methodology-step:hover h3 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Step Descriptions - OPTIMIZED FOR BETTER BALANCE */
.main-content .methodology-step p,
body .methodology-step p,
html .methodology-step p,
.loesungsansatz-section .methodology-step p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #64748b !important;
    text-align: center !important;
    transition: color 0.3s ease !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}

/* Step Descriptions on Hover - WHITE TEXT for visibility */
.main-content .methodology-step:hover p,
body .methodology-step:hover p,
html .methodology-step:hover p,
.loesungsansatz-section .methodology-step:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Force All Keyframe Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
    to { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}

@keyframes dotPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

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

/* Force Section Spacing */
.main-content .loesungsansatz-section,
body .loesungsansatz-section,
html .loesungsansatz-section {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

/* ===============================================================
   TIMELINE TRANSFORMATION - HORIZONTAL PROGRESS DESIGN
   =============================================================== */

/* Timeline Container */
.transformation-timeline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    padding: 2rem 0 !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    gap: 2rem !important;
}

/* Timeline Points */
.timeline-point {
    flex: 0 0 auto !important;
    width: 250px !important;
    position: relative !important;
    z-index: 5 !important;
}

/* Point Content */
.point-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    text-align: center !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid transparent !important;
    transition: all 0.4s ease !important;
}

/* Problem Content Styling */
.problem-content {
    border-color: rgba(239, 68, 68, 0.3) !important;
    background-image: linear-gradient(145deg, rgba(239, 68, 68, 0.05), rgba(185, 28, 28, 0.02)) !important;
}

/* Solution Content Styling */
.solution-content {
    border-color: rgba(59, 130, 246, 0.3) !important;
    background-image: linear-gradient(145deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05)) !important;
}

/* Point Icons */
.point-icon {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

.problem-content .point-icon i {
    color: #dc2626 !important;
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.3)) !important;
}

.solution-content .point-icon i {
    color: #3b82f6 !important;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3)) !important;
}

/* Point Titles */
.point-content h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
}

.problem-content h4 {
    color: #dc2626 !important;
}

.solution-content h4 {
    color: #3b82f6 !important;
}

/* Lists */
.problem-list,
.solution-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.problem-list li,
.solution-list li {
    padding: 0.5rem 0 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
}

/* Timeline Bar Container - MASSIVE CENTER ELEMENT */
.timeline-bar-container {
    flex: 1 !important;
    position: relative !important;
    height: 120px !important;
    margin: 0 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Timeline Bar - MASSIVE AND GLOWING */
.timeline-bar {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 20px !important;
    background: linear-gradient(90deg, rgba(229, 231, 235, 0.8), rgba(209, 213, 219, 0.6)) !important;
    border-radius: 10px !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Timeline Progress - GLOWING WAVE */
.timeline-progress {
    height: 100% !important;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981) !important;
    border-radius: 10px !important;
    width: 0% !important;
    animation: timelineProgressWave 8s ease-in-out infinite !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4) !important;
    position: relative !important;
}

/* Wave Effect Inside Progress */
.timeline-progress::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    border-radius: 10px !important;
    animation: progressShimmer 3s ease-in-out infinite !important;
}

/* Progress Animations */
@keyframes timelineProgressWave {
    0%, 15% { width: 0%; }
    85%, 100% { width: 100%; }
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Transformation Indicators - LARGE FLOATING ICONS */
.transformation-indicator {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(-50%) !important;
    z-index: 10 !important;
}

.indicator-1 { left: 15% !important; }
.indicator-2 { left: 35% !important; }
.indicator-3 { left: 65% !important; }
.indicator-4 { left: 85% !important; }

/* Indicator Dots - LARGE FLOATING ICONS */
.indicator-dot {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6) !important;
    border: 4px solid white !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
    animation: indicatorFloat 3s ease-in-out infinite !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    position: relative !important;
}

/* Add icons to the dots */
.indicator-1 .indicator-dot::before {
    content: "🔍" !important;
    font-size: 1.8rem !important;
}

.indicator-2 .indicator-dot::before {
    content: "🧠" !important;
    font-size: 1.8rem !important;
}

.indicator-3 .indicator-dot::before {
    content: "🚀" !important;
    font-size: 1.8rem !important;
}

.indicator-4 .indicator-dot::before {
    content: "🎯" !important;
    font-size: 1.8rem !important;
}

/* Indicator Labels */
.indicator-label {
    position: absolute !important;
    top: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Indicator Animations */
@keyframes indicatorFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.7);
    }
}

/* Transformation Label - SIMPLE TEXT BADGE */
.transformation-arrow {
    position: absolute !important;
    top: -35px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 15 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
    animation: labelFloat 3s ease-in-out infinite !important;
}

.arrow-text {
    white-space: nowrap !important;
}

/* Label Float Animation */
@keyframes labelFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    }
}

/* Success Highlights */
.success-highlights {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    flex-wrap: wrap !important;
}

.highlight-badge {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.highlight-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}

/* Section Header */
.timeline-transformation-section .section-header h3 {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Hover Effects */
.point-content:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transformation-timeline {
        flex-direction: column !important;
        gap: 3rem !important;
    }

    .timeline-point {
        width: 100% !important;
        max-width: 400px !important;
    }

    .timeline-bar-container {
        width: 8px !important;
        height: 100px !important;
        margin: 0 !important;
    }

    .timeline-bar {
        width: 8px !important;
        height: 100% !important;
        left: 50% !important;
        top: 0 !important;
        transform: translateX(-50%) !important;
    }

    .timeline-progress {
        animation: timelineProgressVertical 6s ease-in-out infinite !important;
    }

    .transformation-arrow {
        top: 50% !important;
        left: -80px !important;
        transform: translateY(-50%) rotate(90deg) !important;
    }

    .transformation-indicator {
        display: none !important;
    }
}

@keyframes timelineProgressVertical {
    0%, 20% { height: 0%; }
    80%, 100% { height: 100%; }
}


/* ===============================================================
   CREDIT CARD STYLE PRICING CARDS
   =============================================================== */

/* Engagement Tiers Container */
.engagement-tiers {
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    perspective: 1000px !important;
    margin: 0 2rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Base Credit Card Style */
.engagement-tier {
    width: 280px !important;
    height: 350px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transform-style: preserve-3d !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

/* Card Rotations for Stacked Look */
.engagement-tier:nth-child(1) {
    transform: rotate(-2deg) !important;
    z-index: 1 !important;
}

.engagement-tier:nth-child(2) {
    transform: rotate(0deg) translateY(-10px) !important;
    z-index: 3 !important;
}

.engagement-tier:nth-child(3) {
    transform: rotate(2deg) !important;
    z-index: 1 !important;
}

/* Featured Card (Middle) */
.tier-featured {
    border: 2px solid #3b82f6 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
    transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
}

/* Credit Card Badge */
.tier-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
}

.tier-badge i {
    font-size: 0.7rem !important;
    color: #fbbf24 !important;
}

/* Card Front Content */
.tier-header {
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding-top: 2rem !important;
}

/* Compact Card Icons */
.tier-icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 0.8rem !important;
    transition: all 0.3s ease !important;
}

.tier-icon i {
    font-size: 1.2rem !important;
    color: #64748b !important;
}

/* Featured Icon */
.tier-featured .tier-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-color: #3b82f6 !important;
}

.tier-featured .tier-icon i {
    color: white !important;
}

/* Card Titles */
.tier-title {
    color: #1e293b !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
}

.tier-subtitle {
    color: #64748b !important;
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

/* Card Price */
.tier-price {
    margin-bottom: 1rem !important;
    padding: 0.8rem 0 !important;
    border-top: 1px solid rgba(226, 232, 240, 0.5) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.price-amount {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    display: block !important;
}

.tier-featured .price-amount {
    color: #3b82f6 !important;
}

.price-period {
    color: #64748b !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
}

/* Top Features (Card Front) */
.features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 90px !important;
    overflow: hidden !important;
}

.features-list li {
    padding: 0.25rem 0 !important;
    display: flex !important;
    align-items: center !important;
    font-size: 0.75rem !important;
    color: #374151 !important;
    line-height: 1.2 !important;
}

.features-list li:nth-child(n+4) {
    display: none !important;
}

.features-list li i {
    color: #10b981 !important;
    font-size: 0.7rem !important;
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
}

/* Card CTA */
.tier-cta {
    margin-top: auto !important;
    padding-top: 1rem !important;
}

.tier-cta .btn {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

/* Standard Card Button */
.btn-outline-primary {
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.btn-outline-primary:hover {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
}

/* Featured Card Button */
.tier-featured .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
}

.tier-featured .btn-primary:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

/* Card Hover Effects */
.engagement-tier:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 5 !important;
}

.engagement-tier:nth-child(1):hover {
    transform: translateY(-8px) rotate(-1deg) !important;
}

.engagement-tier:nth-child(3):hover {
    transform: translateY(-8px) rotate(1deg) !important;
}

.tier-featured:hover {
    transform: rotate(0deg) translateY(-18px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25) !important;
    z-index: 10 !important;
}

/* Duration and Result Info */
.tier-duration,
.tier-result {
    background: rgba(241, 245, 249, 0.5) !important;
    color: #475569 !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 8px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    margin: 0.3rem 0 !important;
    display: inline-block !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.tier-featured .tier-duration,
.tier-featured .tier-result {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

/* Responsive Credit Cards */
@media (max-width: 1024px) {
    .engagement-tiers {
        gap: 0.5rem !important;
    }

    .engagement-tier {
        width: 260px !important;
        height: 330px !important;
    }
}

@media (max-width: 768px) {
    .engagement-tiers {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .engagement-tier {
        width: 100% !important;
        max-width: 300px !important;
        transform: none !important;
        z-index: 1 !important;
    }

    .tier-featured {
        transform: none !important;
    }

    .tier-badge {
        top: 8px !important;
        right: 8px !important;
    }
}