/* Apple Design - EasyPark-Vision - KRASS EDITION */

/* Apple Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1d1d1f;
    background: #000;
    overflow-x: hidden;
}

/* Animated Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #0a0a0a, #141414, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 90, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(48, 209, 88, 0.1) 0%, transparent 50%);
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Apple Navbar - KRASS */
.navbar-default {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 113, 227, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-default:hover {
    box-shadow: 0 0 60px rgba(0, 113, 227, 0.5), 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #ffffff !important;
    font-size: 21px !important;
    letter-spacing: -0.01em;
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.5);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    text-shadow: 0 0 30px rgba(0, 113, 227, 0.8);
    transform: scale(1.05);
}

.navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0071e3, #bf5af2);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav > li > a:hover::after {
    width: 80%;
}

.navbar-nav > li > a:hover {
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.6);
    background: transparent !important;
}

.navbar-nav > li > a .material-icons {
    display: none;
}

/* Apple Hero Section - ULTRA KRASS */
.hero-gradient {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.2) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.hero-gradient h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 113, 227, 0.6), 0 0 80px rgba(191, 90, 242, 0.3);
    animation: titleFloat 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #0071e3 50%, #bf5af2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 5s ease infinite, titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-gradient h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-gradient p {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Apple Tech Badges - KRASS */
.tech-badge {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(0, 113, 227, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.2), inset 0 0 20px rgba(0, 113, 227, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.tech-badge:hover {
    background: rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.8);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 113, 227, 0.6),
                0 10px 30px rgba(0, 113, 227, 0.3),
                inset 0 0 30px rgba(0, 113, 227, 0.2);
}

.tech-badge:hover::before {
    width: 200%;
    height: 200%;
}

.tech-badge:nth-child(2) {
    border-color: rgba(191, 90, 242, 0.3);
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.2), inset 0 0 20px rgba(191, 90, 242, 0.1);
}

.tech-badge:nth-child(2):hover {
    border-color: rgba(191, 90, 242, 0.8);
    background: rgba(191, 90, 242, 0.2);
    box-shadow: 0 0 40px rgba(191, 90, 242, 0.6),
                0 10px 30px rgba(191, 90, 242, 0.3),
                inset 0 0 30px rgba(191, 90, 242, 0.2);
}

.tech-badge:nth-child(3) {
    border-color: rgba(48, 209, 88, 0.3);
    box-shadow: 0 0 20px rgba(48, 209, 88, 0.2), inset 0 0 20px rgba(48, 209, 88, 0.1);
}

.tech-badge:nth-child(3):hover {
    border-color: rgba(48, 209, 88, 0.8);
    background: rgba(48, 209, 88, 0.2);
    box-shadow: 0 0 40px rgba(48, 209, 88, 0.6),
                0 10px 30px rgba(48, 209, 88, 0.3),
                inset 0 0 30px rgba(48, 209, 88, 0.2);
}

.tech-badge:nth-child(4) {
    border-color: rgba(255, 159, 10, 0.3);
    box-shadow: 0 0 20px rgba(255, 159, 10, 0.2), inset 0 0 20px rgba(255, 159, 10, 0.1);
}

.tech-badge:nth-child(4):hover {
    border-color: rgba(255, 159, 10, 0.8);
    background: rgba(255, 159, 10, 0.2);
    box-shadow: 0 0 40px rgba(255, 159, 10, 0.6),
                0 10px 30px rgba(255, 159, 10, 0.3),
                inset 0 0 30px rgba(255, 159, 10, 0.2);
}

.tech-badge .material-icons {
    display: none;
}

/* Apple Feature Box - ULTRA KRASS */
.feature-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.02),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-box:hover::before {
    opacity: 1;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.3),
                0 0 80px rgba(0, 113, 227, 0.2),
                inset 0 0 60px rgba(255, 255, 255, 0.05),
                0 0 0 1px rgba(0, 113, 227, 0.4);
    border-color: rgba(0, 113, 227, 0.3);
}

.feature-box h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* Apple Architecture Node - KRASS */
.architecture-node {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.architecture-node:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 113, 227, 0.3),
                0 0 60px rgba(0, 113, 227, 0.2),
                inset 0 0 40px rgba(255, 255, 255, 0.05);
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(0, 113, 227, 0.3);
}

.architecture-node h5 {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 113, 227, 0.3);
}

.architecture-node p {
    color: rgba(255, 255, 255, 0.7);
}

/* Apple Cards - ULTRA KRASS */
.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.02),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.3),
                0 0 100px rgba(0, 113, 227, 0.2),
                inset 0 0 60px rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 113, 227, 0.3);
}

/* Apple Sections - KRASS */
#abstract, #details, #team {
    background: transparent;
    padding: 120px 0;
    position: relative;
}

#abstract::before, #details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 113, 227, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

#team {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.section-dark {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(30px);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(0, 113, 227, 0.4);
}

.section-dark .description {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Apple Title Styles - KRASS */
.title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(0, 113, 227, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(0, 113, 227, 0.5); }
    50% { text-shadow: 0 0 60px rgba(0, 113, 227, 0.8), 0 0 100px rgba(191, 90, 242, 0.4); }
}

.description {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.gradient-text {
    background: linear-gradient(90deg, #0071e3 0%, #bf5af2 50%, #30d158 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    text-shadow: none;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Apple System Architecture - MEGA KRASS */
.system-architecture-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 70px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 0 60px rgba(255, 255, 255, 0.03),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.system-component {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.system-component::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.system-component:hover::before {
    width: 300%;
    height: 300%;
}

.system-component:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.4);
}

.system-component.blue {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.3) 0%, rgba(29, 111, 242, 0.3) 100%);
    border: 2px solid rgba(0, 113, 227, 0.5);
    box-shadow: 0 0 40px rgba(0, 113, 227, 0.3), inset 0 0 40px rgba(0, 113, 227, 0.1);
    animation: pulseBlue 3s ease-in-out infinite;
}

.system-component.blue:hover {
    box-shadow: 0 0 80px rgba(0, 113, 227, 0.6),
                0 20px 60px rgba(0, 113, 227, 0.4),
                inset 0 0 60px rgba(0, 113, 227, 0.2);
}

@keyframes pulseBlue {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 113, 227, 0.3), inset 0 0 40px rgba(0, 113, 227, 0.1); }
    50% { box-shadow: 0 0 60px rgba(0, 113, 227, 0.5), inset 0 0 60px rgba(0, 113, 227, 0.2); }
}

.system-component.green {
    background: linear-gradient(135deg, rgba(48, 209, 88, 0.3) 0%, rgba(0, 200, 83, 0.3) 100%);
    border: 2px solid rgba(48, 209, 88, 0.5);
    box-shadow: 0 0 40px rgba(48, 209, 88, 0.3), inset 0 0 40px rgba(48, 209, 88, 0.1);
    animation: pulseGreen 3s ease-in-out infinite 0.5s;
}

.system-component.green:hover {
    box-shadow: 0 0 80px rgba(48, 209, 88, 0.6),
                0 20px 60px rgba(48, 209, 88, 0.4),
                inset 0 0 60px rgba(48, 209, 88, 0.2);
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 40px rgba(48, 209, 88, 0.3), inset 0 0 40px rgba(48, 209, 88, 0.1); }
    50% { box-shadow: 0 0 60px rgba(48, 209, 88, 0.5), inset 0 0 60px rgba(48, 209, 88, 0.2); }
}

.system-component.orange {
    background: linear-gradient(135deg, rgba(255, 159, 10, 0.3) 0%, rgba(255, 136, 0, 0.3) 100%);
    border: 2px solid rgba(255, 159, 10, 0.5);
    box-shadow: 0 0 40px rgba(255, 159, 10, 0.3), inset 0 0 40px rgba(255, 159, 10, 0.1);
    animation: pulseOrange 3s ease-in-out infinite 1s;
}

.system-component.orange:hover {
    box-shadow: 0 0 80px rgba(255, 159, 10, 0.6),
                0 20px 60px rgba(255, 159, 10, 0.4),
                inset 0 0 60px rgba(255, 159, 10, 0.2);
}

@keyframes pulseOrange {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 159, 10, 0.3), inset 0 0 40px rgba(255, 159, 10, 0.1); }
    50% { box-shadow: 0 0 60px rgba(255, 159, 10, 0.5), inset 0 0 60px rgba(255, 159, 10, 0.2); }
}

.system-component.purple {
    background: linear-gradient(135deg, rgba(191, 90, 242, 0.3) 0%, rgba(155, 81, 224, 0.3) 100%);
    border: 2px solid rgba(191, 90, 242, 0.5);
    box-shadow: 0 0 40px rgba(191, 90, 242, 0.3), inset 0 0 40px rgba(191, 90, 242, 0.1);
    animation: pulsePurple 3s ease-in-out infinite 1.5s;
}

.system-component.purple:hover {
    box-shadow: 0 0 80px rgba(191, 90, 242, 0.6),
                0 20px 60px rgba(191, 90, 242, 0.4),
                inset 0 0 60px rgba(191, 90, 242, 0.2);
}

@keyframes pulsePurple {
    0%, 100% { box-shadow: 0 0 40px rgba(191, 90, 242, 0.3), inset 0 0 40px rgba(191, 90, 242, 0.1); }
    50% { box-shadow: 0 0 60px rgba(191, 90, 242, 0.5), inset 0 0 60px rgba(191, 90, 242, 0.2); }
}

.system-component.gray {
    background: linear-gradient(135deg, rgba(142, 142, 147, 0.3) 0%, rgba(99, 99, 102, 0.3) 100%);
    border: 2px solid rgba(142, 142, 147, 0.5);
    box-shadow: 0 0 40px rgba(142, 142, 147, 0.3), inset 0 0 40px rgba(142, 142, 147, 0.1);
    animation: pulseGray 3s ease-in-out infinite 2s;
}

.system-component.gray:hover {
    box-shadow: 0 0 80px rgba(142, 142, 147, 0.6),
                0 20px 60px rgba(142, 142, 147, 0.4),
                inset 0 0 60px rgba(142, 142, 147, 0.2);
}

@keyframes pulseGray {
    0%, 100% { box-shadow: 0 0 40px rgba(142, 142, 147, 0.3), inset 0 0 40px rgba(142, 142, 147, 0.1); }
    50% { box-shadow: 0 0 60px rgba(142, 142, 147, 0.5), inset 0 0 60px rgba(142, 142, 147, 0.2); }
}

/* Apple Footer - KRASS */
.footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    box-shadow: 0 -10px 40px rgba(0, 113, 227, 0.1);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #0071e3, #bf5af2);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.6);
    text-decoration: none;
}

.footer a:hover::after {
    width: 100%;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Apple Buttons - KRASS */
.btn {
    border-radius: 980px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Apple Profile Cards - MEGA KRASS */
.card-profile {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.3),
                0 0 100px rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.3);
}

.card-avatar div {
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.4),
                0 0 80px rgba(0, 113, 227, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card-avatar div::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0071e3, #bf5af2, #30d158, #ff9f0a);
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-avatar div:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.card-avatar div:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 80px rgba(0, 113, 227, 0.6),
                0 0 120px rgba(0, 113, 227, 0.5);
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
}

.card-description {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.category {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

/* Apple Performance Stats - MEGA KRASS */
.performance-stat {
    text-align: center;
    padding: 30px;
    position: relative;
}

.performance-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
}

.performance-stat-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0071e3 0%, #bf5af2 50%, #30d158 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 113, 227, 0.5));
}

.performance-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 113, 227, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Apple-style animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Material Icons in Apple Style */
.material-icons {
    font-size: 24px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 113, 227, 0.3));
}

/* Floating Particles Effect */
.hero-gradient::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 113, 227, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(191, 90, 242, 0.3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(48, 209, 88, 0.3), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 159, 10, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glow on Scroll */
.glow-on-scroll {
    animation: scrollGlow 3s ease-in-out infinite;
}

@keyframes scrollGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 113, 227, 0.6), 0 0 100px rgba(191, 90, 242, 0.4);
    }
}

/* Neon Text Effect */
.neon-text {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(0, 113, 227, 0.8),
        0 0 20px rgba(0, 113, 227, 0.6),
        0 0 40px rgba(0, 113, 227, 0.4),
        0 0 80px rgba(0, 113, 227, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(0, 113, 227, 0.8),
            0 0 20px rgba(0, 113, 227, 0.6),
            0 0 40px rgba(0, 113, 227, 0.4),
            0 0 80px rgba(0, 113, 227, 0.2);
    }
    50% {
        text-shadow:
            0 0 20px rgba(0, 113, 227, 1),
            0 0 40px rgba(0, 113, 227, 0.8),
            0 0 60px rgba(0, 113, 227, 0.6),
            0 0 100px rgba(0, 113, 227, 0.4);
    }
}

/* Holographic Effect */
.holographic {
    background: linear-gradient(45deg,
        rgba(0, 113, 227, 0.2) 0%,
        rgba(191, 90, 242, 0.2) 25%,
        rgba(48, 209, 88, 0.2) 50%,
        rgba(255, 159, 10, 0.2) 75%,
        rgba(0, 113, 227, 0.2) 100%);
    background-size: 400% 400%;
    animation: holographicShift 8s ease infinite;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Cyber Grid Background */
.cyber-grid {
    position: relative;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 113, 227, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Energy Pulse Effect */
@keyframes energyPulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 113, 227, 0.4);
        border-color: rgba(0, 113, 227, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 113, 227, 0.8), 0 0 100px rgba(191, 90, 242, 0.6);
        border-color: rgba(0, 113, 227, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 113, 227, 0.4);
        border-color: rgba(0, 113, 227, 0.4);
    }
}

.energy-pulse {
    animation: energyPulse 2s ease-in-out infinite;
}

/* 3D Transform on Hover */
.transform-3d {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.transform-3d:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* Glitch Effect */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.glitch-hover:hover {
    animation: glitch 0.3s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 48px;
    }

    .title {
        font-size: 36px;
    }

    .tech-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .performance-stat-number {
        font-size: 48px;
    }
}

/* Arrow Bounce Animation für Systemarchitektur */
@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* Layer Headers in Systemarchitektur */
.system-architecture-box h4 {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(0, 113, 227, 0.3);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0071e3, #bf5af2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0071e3, #bf5af2, #30d158);
}

/* Animated Background Pattern */
.pattern-background {
    background-color: #f8f9fa;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(102, 126, 234, 0.03) 35px, rgba(102, 126, 234, 0.03) 70px);
}

/* Team Member Card Enhancements */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card .content {
    position: relative;
    z-index: 2;
}

/* Data Flow Visualization */
.data-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
}

.data-flow-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 20px;
}

.data-flow-item::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #667eea;
    animation: arrowPulse 2s ease-in-out infinite;
}

.data-flow-item:last-child::after {
    display: none;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Call-to-Action Button */
.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

/* System Architecture Diagram */
.system-diagram {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.diagram-layer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0;
    position: relative;
    flex-wrap: wrap;
}

.diagram-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 25px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 10px;
}

.diagram-box:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diagram-box.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.diagram-box.green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.diagram-box.orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

/* Particle Effect */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Glowing Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8), 0 0 60px rgba(118, 75, 162, 0.6);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .data-flow {
        flex-direction: column;
    }

    .data-flow-item::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
    }

    .diagram-layer {
        flex-direction: column;
    }

    .diagram-box {
        margin: 10px 0;
        width: 100%;
    }

    .tech-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
.img-loading {
    position: relative;
}

.img-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Success stories counter */
.stats-counter {
    text-align: center;
    padding: 30px;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Pulsing Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.pulse-ring {
    animation: pulse-ring 1.5s ease-out infinite;
}

/* Shine Effect on Hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.shine-effect:hover::before {
    left: 100%;
}
