/* ================================
   🎬 PERFECT CINEMATOGRAPHIC HERO 
   APPLE/GTA LEVEL - ULTRA PERFORMANCE OPTIMIZED
   NO SHINE EFFECTS - STATIC GRID v3.0
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 100% 60% at 50% -20%, rgba(0, 122, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(175, 82, 222, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 159, 10, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, 
            var(--bg-primary) 0%, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.03) 25%,
            rgba(var(--accent-secondary-rgb, 142, 68, 173), 0.03) 50%,
            var(--bg-primary) 75%,
            rgba(var(--accent-tertiary-rgb, 255, 159, 10), 0.03) 100%
        );
    padding: 120px 0 80px;
    /* Force GPU acceleration for entire hero */
    transform: translateZ(0);
    will-change: auto;
}

.dark-mode .hero {
    background: 
        radial-gradient(ellipse 100% 60% at 50% -20%, rgba(0, 122, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(175, 82, 222, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 159, 10, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, 
            var(--bg-primary) 0%, 
            rgba(0, 122, 255, 0.04) 25%,
            rgba(142, 68, 173, 0.04) 50%,
            var(--bg-primary) 75%,
            rgba(255, 159, 10, 0.04) 100%
        );
}

/* ===== ULTRA PERFORMANCE BACKGROUND SYSTEM ===== */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Contain animations for better performance */
    contain: layout style paint;
}

/* VOLUMETRIC DISABLED - MAJOR PERFORMANCE KILLER */
.hero-bg-elements::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(0, 122, 255, 0.01) 60deg,
        transparent 120deg,
        rgba(142, 68, 173, 0.01) 180deg,
        transparent 240deg,
        rgba(255, 159, 10, 0.01) 300deg,
        transparent 360deg
    );
    /* ANIMATION DISABLED FOR CLEAN PERFORMANCE */
    animation: none;
    opacity: 0.2;
    transform: translateZ(0);
    /* Static state for better performance */
    backface-visibility: hidden;
}

@keyframes volumetricRotate {
    from { transform: rotate(0deg) translateZ(0); }
    to { transform: rotate(360deg) translateZ(0); }
}

/* MINIMAL ORBS - ONLY 2 FOR CLEAN PERFORMANCE */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.3;
    animation: orbFloat 60s ease-in-out infinite;
    will-change: transform;
    mix-blend-mode: screen;
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Contain for better performance */
    contain: layout style paint;
}

.orb-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 122, 255, 0.2) 0%, 
        rgba(88, 86, 214, 0.12) 50%, 
        transparent 70%
    );
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.orb-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 70% 30%, 
        rgba(175, 82, 222, 0.18) 0%, 
        rgba(255, 45, 146, 0.1) 50%, 
        transparent 70%
    );
    bottom: 12%;
    right: 12%;
    animation-delay: -30s;
}

/* DISABLE ORBS 3 & 4 - PERFORMANCE */
.orb-3,
.orb-4 {
    display: none !important;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-12px) translateZ(0);
        opacity: 0.25;
    }
}

/* ORIGINAL GRID NETZ - STATIC FOR PERFORMANCE */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 122, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(142, 68, 173, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
    mix-blend-mode: overlay;
    z-index: 2;
    /* STATIC - NO ANIMATION FOR CLEAN PERFORMANCE */
}

/* PERFORMANCE OPTIMIZED Particle Field */
.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    contain: layout style paint;
}

.particle-field .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 50s linear infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.particle-field .particle:nth-child(1) {
    left: 25%;
    top: 30%;
    background: rgba(0, 122, 255, 0.3);
    animation-delay: 0s;
    animation-duration: 80s;
}

.particle-field .particle:nth-child(2) {
    left: 75%;
    top: 70%;
    background: rgba(175, 82, 222, 0.3);
    animation-delay: -40s;
    animation-duration: 90s;
}

/* DISABLE PARTICLES 3-6 FOR PERFORMANCE */
.particle-field .particle:nth-child(3),
.particle-field .particle:nth-child(4),
.particle-field .particle:nth-child(5),
.particle-field .particle:nth-child(6) {
    display: none !important;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) translateZ(0);
        opacity: 0.4;
    }
}

/* ===== HERO CONTAINER - PERFECT SPACING ===== */
.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

/* ===== ULTRA PERFORMANCE STATUS BADGE - NO SHINE EFFECTS ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: 
        linear-gradient(135deg, 
            rgba(46, 160, 67, 0.15) 0%, 
            rgba(46, 160, 67, 0.1) 100%
        );
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(46, 160, 67, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2ea043;
    margin-bottom: 2rem;
    animation: statusPulse 15s ease-in-out infinite;
    box-shadow: 
        0 8px 25px rgba(46, 160, 67, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    /* NO SHINE EFFECTS - OPTIMIZED PERFORMANCE */
}

/* REMOVE ALL SHINE ANIMATIONS */
.status-badge::before {
    display: none !important;
}

.status-badge::after {
    display: none !important;
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1) translateZ(0);
        box-shadow: 
            0 8px 25px rgba(46, 160, 67, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.005) translateZ(0);
        box-shadow: 
            0 10px 30px rgba(46, 160, 67, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }
}

.status-dot {
    width: 10px;
    height: 10px;
    background: 
        radial-gradient(circle, #2ea043 0%, #34d058 100%);
    border-radius: 50%;
    animation: dotPulse 8s ease-in-out infinite;
    box-shadow: 
        0 0 8px rgba(46, 160, 67, 0.5),
        0 0 0 0 rgba(46, 160, 67, 0.6);
    position: relative;
    transform: translateZ(0);
    will-change: box-shadow;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(46, 160, 67, 0.3);
    border-radius: 50%;
    animation: dotRing 8s ease-in-out infinite;
    transform: translateZ(0);
}

@keyframes dotPulse {
    0%, 100% { 
        box-shadow: 
            0 0 0 0 rgba(46, 160, 67, 0.6),
            0 0 8px rgba(46, 160, 67, 0.5);
    }
    50% { 
        box-shadow: 
            0 0 0 6px rgba(46, 160, 67, 0),
            0 0 12px rgba(46, 160, 67, 0.7);
    }
}

@keyframes dotRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== ULTRA HERO TYPOGRAPHY ===== */
.hero-title {
    font-size: clamp(3.2rem, 8.5vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-greeting {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-name {
    display: block;
    background: linear-gradient(135deg, 
        #007AFF 0%, 
        #5856D6 20%, 
        #AF52DE 40%, 
        #FF2D92 60%,
        #FF9500 80%,
        #007AFF 100%
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
    opacity: 0;
    position: relative;
    filter: drop-shadow(0 3px 8px rgba(0, 122, 255, 0.15));
    transform: translateZ(0);
    /* GRADIENT ANIMATION DISABLED FOR PERFORMANCE */
    backface-visibility: hidden;
}

/* GLOW DISABLED FOR PERFORMANCE */
.hero-name::before {
    display: none !important;
    /* COMPLETELY DISABLED - MAJOR PERFORMANCE IMPROVEMENT */
}

.hero-name::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #007AFF 20%, 
        #5856D6 40%, 
        #AF52DE 60%, 
        #FF2D92 80%,
        transparent 100%
    );
    border-radius: 3px;
    opacity: 0;
    animation: underlineGrow 1.5s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
}

@keyframes nameGlow {
    0%, 100% { opacity: 0; transform: translateZ(0); }
    50% { opacity: 0.15; transform: translateZ(0); }
}

.hero-role {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.9s forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
    }
    25% { 
        background-position: 100% 50%;
    }
    50% { 
        background-position: 100% 100%;
    }
    75% { 
        background-position: 0% 100%;
    }
}

@keyframes underlineGrow {
    from { width: 0%; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== ULTRA ACHIEVEMENT STATS ===== */
.achievement-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.achievement-stats .stat-number {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, 
        #007AFF 0%, 
        #5856D6 30%, 
        #AF52DE 60%,
        #FF2D92 100%
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.85;
    letter-spacing: -0.03em;
    /* ALL ANIMATIONS DISABLED FOR PERFORMANCE */
    filter: drop-shadow(0 0 15px rgba(var(--accent-primary-rgb, 0, 122, 255), 0.3));
    position: relative;
    transform: translateZ(0);
}

.achievement-stats .stat-number::before {
    display: none !important;
    /* DISABLED FOR PERFORMANCE */
}

@keyframes numberBlur {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.achievement-stats .stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 0.75rem;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 122, 255, 0.5) 20%,
        rgba(142, 68, 173, 0.6) 40%, 
        rgba(255, 45, 146, 0.5) 60%,
        rgba(255, 159, 10, 0.4) 80%,
        transparent 100%
    );
    opacity: 0.6;
    border-radius: 1px;
    position: relative;
}

.stat-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 100%;
    background: inherit;
    filter: blur(2px);
    opacity: 0.5;
}

@keyframes numberGlow {
    0% { 
        filter: drop-shadow(0 0 25px rgba(var(--accent-primary-rgb, 0, 122, 255), 0.4));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 35px rgba(var(--accent-primary-rgb, 0, 122, 255), 0.6));
        transform: scale(1.02);
    }
}

/* ===== ULTRA HERO DESCRIPTION ===== */
.hero-description {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    line-height: 1.65;
    color: rgba(156, 163, 175, 0.95);
    margin: 2.5rem 0;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.description-highlight {
    color: var(--text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.1) 0%, 
        transparent 100%
    );
    padding: 0.1em 0.3em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.description-highlight:hover {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.15) 0%, 
        rgba(142, 68, 173, 0.1) 100%
    );
    transform: translateY(-1px);
}

.tech-highlight {
    background: linear-gradient(135deg, #007AFF, #5856D6, #AF52DE);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradientShift 6s ease-in-out infinite;
    position: relative;
}

.tech-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #007AFF, #5856D6, #AF52DE);
    border-radius: 1px;
    opacity: 0.6;
}

/* ===== ULTRA HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 1.75rem;
    margin-top: 3rem;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.8s forwards;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.25) 50%, 
        transparent 100%
    );
    transition: left 0.8s ease;
    z-index: 2;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #AF52DE 100%);
    background-size: 200% 200%;
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 
        0 6px 0 rgba(0, 98, 204, 0.9),
        0 12px 30px rgba(0, 122, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
    animation: primaryGradientShift 8s ease-in-out infinite;
    transform: translateY(-6px);
    /* 3D BUTTON - GLEICHE BASELINE */
}

.hero-buttons .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 0 rgba(0, 98, 204, 0.9),
        0 16px 35px rgba(0, 122, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-primary:hover::after {
    opacity: 1;
}

.hero-buttons .btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 
        0 3px 0 rgba(0, 98, 204, 0.9),
        0 6px 15px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.hero-buttons .btn-secondary {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 100%
        );
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    transform: translateZ(0);
    will-change: transform;
}

.hero-buttons .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.05) 0%, 
        rgba(142, 68, 173, 0.05) 50%, 
        rgba(255, 45, 146, 0.05) 100%
    );
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-buttons .btn-secondary:hover::after {
    opacity: 1;
}

/* ===== ULTRA HERO IMAGE ===== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2.4s forwards;
}

.image-container {
    position: relative;
    width: 450px;
    height: 450px;
    max-width: 90vw;
    max-height: 90vw;
}

.glass-frame {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.12) 100%
        );
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 36px;
    z-index: 1;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: frameFloat 12s ease-in-out infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes frameFloat {
    0%, 100% { 
        transform: translateY(0px) translateZ(0); 
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    50% { 
        transform: translateY(-6px) translateZ(0); 
        box-shadow: 
            0 25px 45px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }
}

.image-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    cursor: pointer;
}

.image-3d-wrapper:hover {
    transform: rotateY(-8deg) rotateX(6deg) scale(1.03);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transition: all 2s ease-in-out;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.image-3d-wrapper::after {
    content: '📸';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.image-3d-wrapper:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.12) 0%,
        transparent 30%,
        transparent 70%,
        rgba(142, 68, 173, 0.12) 100%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 28px;
}

.image-3d-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 122, 255, 0.2) 0%, 
        rgba(142, 68, 173, 0.15) 40%, 
        rgba(255, 45, 146, 0.1) 70%,
        transparent 80%
    );
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.15) rotate(180deg); 
    }
}

/* ===== ENHANCED FLOATING BADGES ===== */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.3rem;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.85) 100%
        );
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 3;
    transition: all 0.3s ease;
}

/* REMOVE BADGE SHINE EFFECTS */
.badge::before {
    display: none !important;
}

.dark-mode .badge {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.7) 100%
        );
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.badge-1 {
    top: 8%;
    left: -22%;
    animation: badgeFloat1 8s ease-in-out infinite;
}

.badge-2 {
    top: 28%;
    right: -28%;
    animation: badgeFloat2 10s ease-in-out infinite -3s;
}

.badge-3 {
    bottom: 18%;
    left: -18%;
    animation: badgeFloat3 9s ease-in-out infinite -6s;
}

@keyframes badgeFloat1 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-25px) rotate(3deg) scale(1.05); 
    }
}

@keyframes badgeFloat2 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-20px) rotate(-2deg) scale(1.03); 
    }
}

@keyframes badgeFloat3 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-22px) rotate(2deg) scale(1.04); 
    }
}

/* ===== ENHANCED SOCIAL PROOF ===== */
.social-proof {
    margin-top: 3.5rem;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2.1s forwards;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-indicator i {
    color: #ff2d92;
    font-size: 1.1rem;
    animation: heartPulse 3s ease-in-out infinite;
}

.featured-tech {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.tech-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-stack {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.tech-item {
    padding: 0.5rem 1rem;
    background: 
        linear-gradient(135deg, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.12) 0%, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.08) 100%
        );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-primary-rgb, 0, 122, 255), 0.25);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* REMOVE TECH ITEM SHINE EFFECTS */
.tech-item::before {
    display: none !important;
}

.tech-item:hover {
    background: 
        linear-gradient(135deg, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.18) 0%, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.12) 100%
        );
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--accent-primary-rgb, 0, 122, 255), 0.2);
}

/* ===== SATISFACTION METRIC ===== */
.satisfaction-metric {
    position: absolute;
    bottom: -10%;
    right: 10%;
    max-width: 280px;
    padding: 1.5rem;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 255, 255, 0.08) 100%
        );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 3s forwards;
}

.satisfaction-metric:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.satisfaction-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff2d92, #ff375f);
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.satisfaction-icon i {
    color: white;
    font-size: 1.5rem;
    animation: heartPulse 2s ease-in-out infinite;
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 18px;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: heartBeat 2s ease-in-out infinite;
    opacity: 0;
}

.heart-pulse::before,
.heart-pulse::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 19px;
    background: transparent;
    border: 2px solid #ff2d92;
    border-radius: 12px 12px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart-pulse::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.satisfaction-content {
    text-align: center;
}

.satisfaction-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff2d92, #ff375f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 45, 146, 0.3));
}

.satisfaction-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.satisfaction-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.satisfaction-stars i {
    color: #ffd700;
    font-size: 1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.satisfaction-stars i:nth-child(1) { animation-delay: 0s; }
.satisfaction-stars i:nth-child(2) { animation-delay: 0.2s; }
.satisfaction-stars i:nth-child(3) { animation-delay: 0.4s; }
.satisfaction-stars i:nth-child(4) { animation-delay: 0.6s; }
.satisfaction-stars i:nth-child(5) { animation-delay: 0.8s; }

.satisfaction-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 45, 146, 0.1) 0%,
        transparent 50%,
        rgba(255, 55, 95, 0.1) 100%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.satisfaction-metric:hover .satisfaction-glow {
    opacity: 1;
}

@keyframes heartBeat {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.6);
        opacity: 0;
    }
}

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

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

/* ===== ENHANCED SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2.7s forwards;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-8px);
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 100%
        );
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(var(--accent-primary-rgb, 0, 122, 255), 0.3);
    border-radius: 50%;
    color: var(--accent-primary);
    animation: scrollBounce 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(var(--accent-primary-rgb, 0, 122, 255), 0.1) 0%, 
        transparent 100%
    );
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    background: 
        linear-gradient(135deg, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.15) 0%, 
            rgba(var(--accent-primary-rgb, 0, 122, 255), 0.08) 100%
        );
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--accent-primary-rgb, 0, 122, 255), 0.2);
}

.scroll-arrow:hover::before {
    opacity: 1;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
}

/* ===== ENHANCED RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .achievement-stats {
        justify-content: center;
    }
    
    .image-container {
        width: 380px;
        height: 380px;
    }
    
    .badge-1, .badge-2, .badge-3 {
        display: none;
    }
    
    .satisfaction-metric {
        position: static;
        margin: 2.5rem auto 0;
        max-width: 260px;
    }
    
    .orb-4 {
        display: none;
    }
    
    .particle-field .particle:nth-child(6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px; /* Mehr Abstand vom Header */
        min-height: 100vh; /* Volle Höhe beibehalten */
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .image-container {
        width: 320px;
        height: 320px;
    }
    
    .floating-orb {
        filter: blur(25px);
        opacity: 0.4;
    }
    
    .mesh-gradient {
        opacity: 0.5;
        background-size: 30px 30px, 30px 30px, 60px 60px, 60px 60px;
    }
    
    .particle-field .particle {
        width: 2px;
        height: 2px;
    }
    
    .particle-field .particle:nth-child(5),
    .particle-field .particle:nth-child(6) {
        display: none;
    }
    
    .satisfaction-metric {
        max-width: 240px;
        padding: 1.25rem;
    }
    
    .satisfaction-number {
        font-size: 2.2rem;
    }
    
    .scroll-indicator {
        display: none; /* Komplett verstecken auf Mobile */
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
    
    .scroll-text {
        font-size: 0.8rem; /* Kleinere Schrift auf Mobile */
    }
    
    .status-badge {
        margin-top: 1rem; /* Mehr Abstand vom oberen Rand */
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Social Proof zentrieren auf mobilen Geräten */
    .social-proof {
        text-align: center;
    }
    
    .trust-indicator {
        justify-content: center;
    }
    
    .featured-tech {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 40px; /* Noch mehr Abstand auf sehr kleinen Screens */
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .achievement-stats {
        flex-wrap: nowrap !important;
        gap: 0.5rem;
        justify-content: space-between;
        width: 100%;
        max-width: 350px;
        margin: 2rem auto;
    }
    
    .achievement-stats .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .achievement-stats .stat-number {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 0.9;
        margin-bottom: 0.3rem;
    }
    
    .achievement-stats .stat-label {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem) !important;
        line-height: 1.2;
        margin-top: 0.3rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .stat-divider {
        display: none;
    }
    
    .image-container {
        width: 280px;
        height: 280px;
    }
    
    .glass-frame {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        border-radius: 30px;
    }
    
    .image-3d-wrapper,
    .profile-image {
        border-radius: 24px;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
    
    .floating-orb {
        filter: blur(20px);
        opacity: 0.3;
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .orb-2 {
        width: 180px;
        height: 180px;
    }
    
    .orb-3 {
        width: 120px;
        height: 120px;
    }
    
    .particle-field .particle:nth-child(4),
    .particle-field .particle:nth-child(5),
    .particle-field .particle:nth-child(6) {
        display: none;
    }
    
    .mesh-gradient {
        opacity: 0.3;
        background-size: 25px 25px, 25px 25px, 50px 50px, 50px 50px;
    }
    
    .hero-bg-elements::before {
        opacity: 0.3;
    }
    
    .scroll-indicator {
        display: none; /* Auch auf kleinsten Screens verstecken */
    }
    
    .status-badge {
        margin-top: 1.5rem; /* Noch mehr Abstand auf kleinsten Screens */
        margin-bottom: 1.5rem;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Social Proof auch auf kleinsten Screens zentrieren */
    .social-proof {
        text-align: center;
    }
    
    .trust-indicator {
        justify-content: center;
    }
    
    .featured-tech {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

/* Extra kleine Handys - Stats noch kompakter */
@media (max-width: 375px) {
    .achievement-stats {
        max-width: 320px;
        gap: 0.25rem;
    }
    
    .achievement-stats .stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    .achievement-stats .stat-label {
        font-size: clamp(0.6rem, 2.5vw, 0.8rem) !important;
    }
}

/* ===== ULTRA PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-orb, 
    .particle-field .particle, 
    .mesh-gradient,
    .hero-name,
    .badge,
    .scroll-arrow,
    .status-badge,
    .glass-frame,
    .image-glow,
    .hero-bg-elements::before {
        animation: none !important;
    }
    
    .hero-greeting,
    .hero-name,
    .hero-role,
    .achievement-stats,
    .hero-description,
    .hero-buttons,
    .hero-image,
    .scroll-indicator,
    .social-proof,
    .satisfaction-metric {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .image-3d-wrapper:hover {
        transform: none !important;
    }
    
    .hero-buttons .btn:hover {
        transform: none !important;
    }
}

@media (prefers-contrast: high) {
    .hero {
        background: var(--bg-primary);
    }
    
    .floating-orb,
    .hero-bg-elements::before {
        display: none;
    }
    
    .mesh-gradient {
        opacity: 0.2;
    }
    
    .particle-field .particle {
        display: none;
    }
}

/* ===== DARK MODE ENHANCEMENTS ===== */
.dark-mode .satisfaction-metric {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.6) 100%
        );
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .satisfaction-glow {
    background: linear-gradient(135deg, 
        rgba(255, 45, 146, 0.15) 0%,
        transparent 50%,
        rgba(255, 55, 95, 0.15) 100%
    );
}

.dark-mode .hero-buttons .btn-secondary {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.2) 100%
        );
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .hero-buttons .btn-secondary:hover {
    border-color: rgba(0, 122, 255, 0.4);
    background: 
        linear-gradient(135deg, 
            rgba(0, 122, 255, 0.1) 0%, 
            rgba(0, 0, 0, 0.3) 100%
        );
}

.dark-mode .scroll-arrow {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.2) 100%
        );
    border-color: rgba(0, 122, 255, 0.3);
}

.dark-mode .scroll-arrow:hover {
    background: 
        linear-gradient(135deg, 
            rgba(0, 122, 255, 0.2) 0%, 
            rgba(0, 0, 0, 0.4) 100%
        );
}

.dark-mode .glass-frame {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    border-color: rgba(255, 255, 255, 0.1);
} 