/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neue Farbpalette - Modern & Kantig */
    --primary-color: rgb(7, 188, 204);      /* Cyan/Türkis */
    --primary-dark: rgb(5, 150, 163);       /* Dunkleres Cyan */
    --primary-light: rgb(34, 211, 238);     /* Helleres Cyan */
    --secondary-color: rgb(230, 1, 192);    /* Magenta/Pink */
    --secondary-dark: rgb(184, 1, 153);     /* Dunkleres Magenta */
    --secondary-light: rgb(255, 51, 221);   /* Helleres Magenta */
    --accent-color: rgb(255, 235, 59);      /* Gelb */
    --accent-dark: rgb(255, 193, 7);        /* Dunkleres Gelb */
    --accent-light: rgb(255, 248, 89);      /* Helleres Gelb */
    
    /* Grau-Palette */
    --gray-900: rgb(17, 24, 39);            /* Sehr dunkles Grau */
    --gray-800: rgb(31, 41, 55);            /* Dunkles Grau */
    --gray-700: rgb(55, 65, 81);            /* Mittel-dunkles Grau */
    --gray-600: rgb(75, 85, 99);            /* Mittel-Grau */
    --gray-500: rgb(107, 114, 128);         /* Grau */
    --gray-400: rgb(156, 163, 175);         /* Hell-Grau */
    --gray-300: rgb(209, 213, 219);         /* Sehr hell-Grau */
    --gray-200: rgb(229, 231, 235);         /* Extrem hell-Grau */
    --gray-100: rgb(243, 244, 246);         /* Fast weiß */
    
    /* Text-Farben */
    --text-primary: rgb(255, 255, 255);     /* Weiß */
    --text-secondary: rgb(209, 213, 219);   /* Hell-Grau */
    --text-light: rgb(156, 163, 175);       /* Grau */
    --text-dark: rgb(17, 24, 39);           /* Dunkles Grau */
    
    /* Hintergrund-Farben */
    --bg-primary: var(--gray-900);          /* Haupt-Hintergrund */
    --bg-secondary: var(--gray-800);        /* Sekundär-Hintergrund */
    --bg-tertiary: var(--gray-700);         /* Tertiär-Hintergrund */
    --bg-card: var(--gray-800);             /* Card-Hintergrund */
    --bg-dark: rgb(0, 0, 0);                /* Schwarz */
    
    /* Border & Schatten */
    --border-color: var(--gray-600);
    --border-light: var(--gray-400);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(7, 188, 204, 0.3);
    --shadow-glow-pink: 0 0 20px rgba(230, 1, 192, 0.3);
    --shadow-glow-yellow: 0 0 20px rgba(255, 235, 59, 0.3);
    
    /* Gradienten */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    --gradient-card: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    --gradient-cyber: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    --gradient-mesh: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 25%, var(--accent-color) 50%, var(--primary-color) 75%, var(--secondary-color) 100%);
}

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

/* Cyber Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(7, 188, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 188, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

/* Navigation - Modern & Kantig */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
}

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

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(7, 188, 204, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(230, 1, 192, 0.5));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(7, 188, 204, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-cyber);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Cyberpunk Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--gradient-cyber);
    opacity: 0.1;
    animation: cyberFloat 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    background: var(--gradient-accent);
    animation-delay: 4s;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@keyframes cyberFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        filter: hue-rotate(90deg);
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(0.9);
        filter: hue-rotate(180deg);
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.1);
        filter: hue-rotate(270deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 100%;
    overflow-wrap: break-word;
    flex-shrink: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.title-line {
    display: block;
    white-space: normal;
    word-break: break-word;
    line-height: 1.1;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}


/* White text for title lines */
.white-text {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    filter: none !important;
}

/* MODERN GRADIENT ANIMATION - LIKE REST OF TEMPLATE */
.rekordzeit-simple {
    display: block !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    
    /* Modern gradient background */
    background: linear-gradient(
        45deg,
        var(--primary-color) 0%,
        var(--secondary-color) 33%,
        var(--accent-color) 66%,
        var(--primary-color) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Smooth gradient animation */
    animation: gradientFlow 3s ease-in-out infinite;
}


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

/* ANIMATED ROCKET FOR ABOUT SECTION */
.rocket-container {
    position: absolute;
    top: 25%;
    right: 590px;
    width: 60px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.rocket {
    position: relative;
    width: 160%;
    height: 160%;
}

.rocket-body {
    position: relative;
    width: 40px;
    left: -10px;
    animation: rocketBounce 2s ease-in-out infinite;
}

.rocket-body .body {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 60px;
    width: 30px;
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top: 2px solid var(--text-primary);
    position: relative;
}

.rocket-body:before {
    content: '';
    position: absolute;
    left: 5px;
    width: 20px;
    height: 5px;
    background: var(--accent-color);
    bottom: -5px;
    border-bottom-right-radius: 60%;
    border-bottom-left-radius: 60%;
}

.window {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: var(--accent-color);
    left: 9px;
    top: 12px;
    border: 1px solid var(--text-primary);
}

.fin {
    position: absolute;
    z-index: -1;
    height: 18px;
    width: 15px;
    background: var(--secondary-color);
}

.fin-left {
    left: -8px;
    top: 42px;
    border-top-left-radius: 80%;
    border-bottom-left-radius: 20%;
}

.fin-right {
    right: 0px;
    top: 42px;
    border-top-right-radius: 80%;
    border-bottom-right-radius: 20%;
}

.exhaust-flame {
   
    top: 100%;
    width: 10px;
    background: linear-gradient(to bottom, transparent 10%, var(--primary-color) 100%);
    height: 40px;
    left: -20px;
    animation: exhaust 0.3s infinite;
    border-radius: 50% 50% 0 0;
}

.exhaust-fumes li {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    list-style: none;
    position: absolute;
    border-radius: 100%;
    opacity: 0.6;
}

.exhaust-fumes li:first-child {
    width: 60px;
    height: 60px;
    bottom: -100px;
    left: -10px;
    top: 90px;
    animation: fumes 4s infinite;
}

.exhaust-fumes li:nth-child(2) {
    width: 40px;
    height: 40px;
    left: -30px;
    top: 90px;
    animation: fumes 2.5s infinite;
}

.exhaust-fumes li:nth-child(3) {
    width: 30px;
    height: 30px;
    left: -10px;
    top: 110px;
    animation: fumes 2s 0.5s infinite;
}

.exhaust-fumes li:nth-child(4) {
    width: 25px;
    height: 25px;
    left: -40px;
    top: 120px;
    animation: fumes 3s 1s infinite;
}

.exhaust-fumes li:nth-child(5) {
    width: 35px;
    height: 35px;
    left: -30px;
    top: 105px;
    animation: fumes 4s infinite;
}

.exhaust-fumes li:nth-child(6) {
    width: 50px;
    height: 50px;
    left: -15px;
    top: 90px;
    animation: fumes2 8s infinite;
}

.exhaust-fumes li:nth-child(7) {
    width: 25px;
    height: 25px;
    left: -25px;
    top: 100px;
}

.exhaust-fumes li:nth-child(8) {
    width: 30px;
    height: 30px;
    left: 20px;
    top: 110px;
}

.exhaust-fumes li:nth-child(9) {
    width: 22px;
    height: 22px;
    left: 50px;
    top: 120px;
    animation: fumes 15s infinite;
}

.star li {
    list-style: none;
    position: absolute;
}

.star li:before,
.star li:after {
    content: '';
    position: absolute;
    background: var(--text-primary);
}

.star li:before {
    width: 6px;
    height: 1px;
    border-radius: 50%;
}

.star li:after {
    height: 5px;
    width: 1px;
    left: 2.5px;
    top: -2px;
}

.star li:first-child {
    top: -10px;
    left: -60px;
    animation: twinkle 0.4s infinite;
}

.star li:nth-child(2) {
    top: 5px;
    left: 20px;
    animation: twinkle 0.5s infinite;
}

.star li:nth-child(2):before {
    height: 1px;
    width: 2px;
}

.star li:nth-child(2):after {
    width: 1px;
    height: 2px;
    top: -1px;
    left: 0.5px;
}

.star li:nth-child(3) {
    left: 40px;
    top: 75px;
    animation: twinkle 1s infinite;
}

.star li:nth-child(4) {
    left: -30px;
    top: 65px;
    animation: twinkle 0.5s ease infinite;
}

.star li:nth-child(5) {
    left: 55px;
    top: 35px;
    animation: twinkle 0.4s ease infinite;
}

.star li:nth-child(6) {
    top: 30px;
    left: -25px;
    animation: twinkle 0.2s infinite;
}

.star li:nth-child(6):before {
    height: 1px;
    width: 2px;
}

.star li:nth-child(6):after {
    width: 1px;
    height: 2px;
    top: -1px;
    left: 0.5px;
}

/* Rocket Animations */
@keyframes rocketBounce {
    0% { transform: translate3d(0px, 0px, 0); }
    50% { transform: translate3d(0px, -8px, 0); }
    100% { transform: translate3d(0px, 0px, 0); }
}

@keyframes exhaust {
    0% { background: linear-gradient(to bottom, transparent 10%, var(--primary-color) 100%); }
    50% { background: linear-gradient(to bottom, transparent 8%, var(--primary-color) 100%); }
    75% { background: linear-gradient(to bottom, transparent 12%, var(--primary-color) 100%); }
}

@keyframes fumes {
    50% {
        transform: scale(1.3);
        background: var(--secondary-color);
        opacity: 0.3;
    }
    51% {
        transform: scale(0.7);
    }
    100% {
        background: var(--primary-color);
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes fumes2 {
    50% { transform: scale(1.1); }
}

@keyframes twinkle {
    80% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.cta-button.primary {
    background: var(--gradient-cyber);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    filter: brightness(1.2);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
    flex-shrink: 0;
    max-width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-cyber);
    margin: 0 auto;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    position: relative;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(7, 188, 204, 0.3);
    }
    50% { 
        box-shadow: 0 0 15px rgba(230, 1, 192, 0.6);
    }
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.about-text {
    max-width: 100%;
    margin: 0 auto;
}

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

.mission-statement {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    margin-top: 2rem;
}

.mission-statement h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyber);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

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

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(7, 188, 204, 0.5);
}

@keyframes numberGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(7, 188, 204, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(230, 1, 192, 0.6)); }
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-description {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyber);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-benefit {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Prototype Info Section */
.prototype-info {
    background: var(--bg-secondary);
}

.prototype-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.prototype-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.prototype-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.prototype-features {
    list-style: none;
}

.prototype-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.prototype-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.comparison-table {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.comparison-table h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

/* Why Prototyping Section */
.why-prototyping {
    background: var(--bg-primary);
}

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

.benefit-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
}

/* Process Section */
.process {
    background: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(7, 188, 204, 0.3);
    animation: stepNumberPulse 4s ease-in-out infinite;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: stepNumberGlow 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes stepNumberPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(7, 188, 204, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(7, 188, 204, 0.5);
    }
}

@keyframes stepNumberGlow {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.step-content {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
    border: 1px solid var(--border-color);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
}

/* Success Stories Section */
.success-stories {
    background: var(--bg-primary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.story-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.story-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Packages Section */
.packages {
    background: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    overflow: hidden;
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    border-color: var(--secondary-color);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-glow-pink), var(--shadow-xl);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.package-duration {
    color: var(--text-secondary);
    font-weight: 500;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.package-cta {
    width: 100%;
    background: var(--gradient-cyber);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 1rem;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    position: relative;
    overflow: hidden;
}

.package-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.1);
}

.package-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.package-cta:hover::before {
    left: 100%;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0.02;
    z-index: -1;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.submit-button {
    width: 100%;
    background: var(--gradient-cyber);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 1rem;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.1);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: logoGlow 3s ease-in-out infinite;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .nav-link,
    .cta-button,
    .package-cta,
    .submit-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve table responsiveness */
    .comparison-table {
        margin: 0 -1rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }
    
    /* Better spacing for mobile */
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shapes {
        display: none;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.package-cta:focus,
.submit-button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #000000;
    }
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Prototype Demo - Simple Modern Form */
.prototype-demo {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    overflow: hidden;
    animation: demoFloat 6s ease-in-out infinite;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    display: flex;
    flex-direction: column;
}

@keyframes demoFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg);
        box-shadow: var(--shadow-glow), var(--shadow-xl);
    }
    50% { 
        transform: translateY(-8px) rotateX(1deg);
        box-shadow: var(--shadow-glow), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    }
}

/* Demo Header */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-cyber);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.demo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-icon {
    font-size: 1.1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% { 
        opacity: 0.5;
        box-shadow: 0 0 10px var(--primary-color);
    }
}

/* Form Demo */
.form-demo {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.form-title {
    text-align: center;
    margin-bottom: 1rem;
}

.form-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-title p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Modern Inputs */
.modern-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

/* Floating Label Input */
.floating {
    position: relative;
}

.floating-input {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.floating-input:focus {
    border-bottom-color: var(--primary-color);
}

.floating-label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: left;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
    transform: translateY(-10px) scale(0.8);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-input:focus ~ .input-line {
    width: 100%;
}

/* Modern Slider */
.slider {
    margin: 1rem 0;
}

.slider-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-value {
    color: var(--primary-color);
    font-weight: 700;
}

.slider-container {
    position: relative;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
    overflow: hidden;
}

.modern-slider {
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient-cyber);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-glow), 0 0 15px var(--primary-color);
}

.modern-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gradient-cyber);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: var(--shadow-glow);
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    z-index: 1;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-cyber);
    transition: width 0.3s ease;
    z-index: 1;
}

/* Toggle Switches */
.toggles {
    margin: 1rem 0;
}

.toggle-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.toggle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.toggle-input {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    overflow: hidden;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    background: var(--text-secondary);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.toggle-input:checked + .toggle-switch {
    background: var(--gradient-cyber);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.toggle-input:checked + .toggle-switch::before {
    opacity: 0.1;
}

.toggle-input:checked + .toggle-switch .toggle-slider {
    transform: translateX(25px);
    background: var(--text-dark);
}

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

.toggle-input:checked ~ .toggle-text {
    color: var(--primary-color);
}

/* Modern Button */
.modern-button {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-cyber);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.modern-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    filter: brightness(1.1);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-button:hover .button-glow {
    left: 100%;
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.modern-button:active .button-ripple {
    width: 300px;
    height: 300px;
}

/* Live Preview */
.live-preview {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.preview-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.preview-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-phone {
    width: 120px;
    height: 200px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-5px) rotate(1deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
}

.screen-header {
    padding: 0.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.screen-dots {
    display: flex;
    gap: 0.2rem;
}

.screen-dots span {
    width: 4px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: var(--secondary-color); }
.screen-dots span:nth-child(2) { background: var(--accent-color); }
.screen-dots span:nth-child(3) { background: var(--primary-color); }

.screen-content {
    flex: 1;
    padding: 1rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mockup-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-input {
    width: 100%;
    height: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
    animation: inputPulse 2s ease-in-out infinite;
}

@keyframes inputPulse {
    0%, 100% { 
        opacity: 0.7;
        border-color: var(--border-color);
    }
    50% { 
        opacity: 1;
        border-color: var(--primary-color);
        box-shadow: 0 0 5px rgba(7, 188, 204, 0.3);
    }
}

.mockup-button {
    width: 100%;
    height: 18px;
    background: var(--gradient-secondary);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: none;
    }
    50% { 
        box-shadow: 0 0 8px rgba(230, 1, 192, 0.4);
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-toggle {
    margin-top: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    border-radius: 0;
    transition: all 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .toggle-switch {
    background: var(--gradient-cyber);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

input[type="checkbox"]:checked + .toggle-switch::before {
    transform: translateX(20px);
    background: var(--text-dark);
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tech-option {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 0.8rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.tech-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tech-option:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.tech-option.active {
    background: var(--gradient-cyber);
    border-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.tech-option.active::before {
    opacity: 0;
}

.tech-logo {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    display: block;
}

.tech-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Launch Options */
.launch-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.option-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.option-card.featured {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-glow-pink);
}

.option-card.featured::before {
    opacity: 0.05;
}

.option-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.option-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.option-icon {
    font-size: 1.2rem;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.option-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.option-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
}

.option-select {
    display: flex;
    justify-content: center;
}

.radio-label {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.radio-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-label {
    background: var(--gradient-cyber);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

input[type="radio"]:checked + .radio-label::before {
    opacity: 1;
    background: var(--text-dark);
}

/* Form Actions */
.form-actions {
    grid-area: progress;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    gap: 1rem;
}

.btn-secondary, .btn-primary, .btn-launch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-launch {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-glow-pink);
    animation: launchPulse 2s ease-in-out infinite;
}

@keyframes launchPulse {
    0%, 100% { 
        box-shadow: var(--shadow-glow-pink);
    }
    50% { 
        box-shadow: var(--shadow-glow-pink), 0 0 20px rgba(230, 1, 192, 0.5);
    }
}

.btn-launch:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
}

/* Progress Bar */
.progress-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    max-width: 200px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
}

.progress-fill {
    height: 100%;
    background: var(--gradient-cyber);
    border-radius: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Live Preview Panel */
.live-preview-panel {
    grid-area: preview;
    background: var(--bg-tertiary);
    border-left: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
}

.preview-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% { 
        opacity: 0.5;
        box-shadow: 0 0 10px var(--primary-color);
    }
}

.preview-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-mockup {
    width: 100%;
    max-width: 200px;
}

.mockup-screen {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    position: relative;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 0.3rem;
}

.mockup-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: var(--secondary-color); }
.mockup-dots span:nth-child(2) { background: var(--accent-color); }
.mockup-dots span:nth-child(3) { background: var(--primary-color); }

.mockup-title {
    font-size: 0.7rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mockup-element {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    transition: all 0.3s ease;
    animation: elementBuild 0.5s ease-out;
    animation-fill-mode: both;
}

.mockup-element[data-element="title"] {
    animation-delay: 0.1s;
    background: var(--gradient-cyber);
    color: var(--text-dark);
    font-weight: 600;
}

.mockup-element[data-element="form"] {
    animation-delay: 0.2s;
    height: 30px;
}

.mockup-element[data-element="button"] {
    animation-delay: 0.3s;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    font-weight: 600;
}

@keyframes elementBuild {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Code Editor */
.code-editor {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45%;
    height: 200px;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.editor-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 4px 8px;
    font-size: 11px;
    color: #64748b;
    background: #0f172a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    color: #f1f5f9;
    background: #3b82f6;
}

.editor-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.editor-content {
    display: flex;
    height: calc(100% - 40px);
}

.line-numbers {
    display: flex;
    flex-direction: column;
    padding: 8px 8px 8px 12px;
    background: #1e293b;
    color: #64748b;
    font-size: 11px;
    font-family: 'Monaco', 'Menlo', monospace;
    line-height: 1.4;
    border-right: 1px solid #334155;
}

.line-numbers span {
    display: block;
    text-align: right;
    min-width: 20px;
}

.code-lines {
    flex: 1;
    padding: 8px 12px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 11px;
    line-height: 1.4;
    color: #f1f5f9;
}

.code-line {
    margin-bottom: 2px;
    animation: typeCode 0.1s ease-out;
    animation-fill-mode: both;
}

.code-line:nth-child(1) { animation-delay: 1s; }
.code-line:nth-child(2) { animation-delay: 1.1s; }
.code-line:nth-child(3) { animation-delay: 1.2s; }
.code-line:nth-child(4) { animation-delay: 1.3s; }
.code-line:nth-child(5) { animation-delay: 1.4s; }
.code-line:nth-child(6) { animation-delay: 1.5s; }
.code-line:nth-child(7) { animation-delay: 1.6s; }
.code-line:nth-child(8) { animation-delay: 1.7s; }
.code-line:nth-child(9) { animation-delay: 1.8s; }
.code-line:nth-child(10) { animation-delay: 1.9s; }
.code-line:nth-child(11) { animation-delay: 2s; }
.code-line:nth-child(12) { animation-delay: 2.1s; }
.code-line:nth-child(13) { animation-delay: 2.2s; }
.code-line:nth-child(14) { animation-delay: 2.3s; }
.code-line:nth-child(15) { animation-delay: 2.4s; }

@keyframes typeCode {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.keyword { color: #f97316; }
.variable { color: #8b5cf6; }
.string { color: #10b981; }
.function { color: #3b82f6; }
.comment { color: #64748b; }

/* Terminal */
.terminal {
    position: absolute;
    top: 240px;
    left: 20px;
    width: 45%;
    height: 120px;
    background: #0f172a;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideInLeft 1s ease-out 0.7s both;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.terminal-title {
    font-size: 11px;
    color: #f1f5f9;
    font-weight: 500;
}

.terminal-content {
    padding: 8px 12px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 10px;
    line-height: 1.4;
    color: #f1f5f9;
}

.terminal-line {
    margin-bottom: 4px;
    animation: typeTerminal 0.1s ease-out;
    animation-fill-mode: both;
}

.terminal-line:nth-child(1) { animation-delay: 2.5s; }
.terminal-line:nth-child(2) { animation-delay: 2.6s; }
.terminal-line:nth-child(3) { animation-delay: 2.7s; }
.terminal-line:nth-child(4) { animation-delay: 2.8s; }
.terminal-line:nth-child(5) { animation-delay: 2.9s; }
.terminal-line:nth-child(6) { animation-delay: 3s; }
.terminal-line:nth-child(7) { animation-delay: 3.1s; }

@keyframes typeTerminal {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.prompt { color: #10b981; margin-right: 8px; }
.command { color: #f1f5f9; }
.output { color: #94a3b8; }
.typing { border-right: 2px solid #10b981; animation: blink 1s infinite; }

@keyframes blink {
    0%, 50% { border-color: #10b981; }
    51%, 100% { border-color: transparent; }
}

/* Live Preview */
.live-preview {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45%;
    height: 340px;
    background: var(--gradient-card);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideInRight 1s ease-out 0.9s both;
    border: 1px solid var(--border-color);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.preview-title {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 500;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preview-content {
    padding: 16px;
    height: calc(100% - 40px);
    color: var(--text-primary);
}

.preview-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out 3.2s both;
}

.preview-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-menu {
    display: flex;
    gap: 16px;
}

.menu-item {
    width: 20px;
    height: 2px;
    background: #64748b;
    border-radius: 1px;
}

.preview-hero {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease-out 3.4s both;
}

.preview-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.preview-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.preview-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.preview-button:hover {
    transform: translateY(-1px);
}

.preview-features {
    display: flex;
    justify-content: space-around;
    animation: fadeInUp 0.5s ease-out 3.6s both;
}

.feature-card {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    transition: transform 0.2s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.feature-text {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design für Prototype Workspace */
@media (max-width: 768px) {
    .prototype-workspace {
        height: 400px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .code-editor {
        width: 90%;
        height: 150px;
        left: 5%;
        top: 10px;
    }
    
    .terminal {
        width: 90%;
        height: 100px;
        left: 5%;
        top: 170px;
    }
    
    .live-preview {
        width: 90%;
        height: 200px;
        right: 5%;
        top: 280px;
    }
    
    .code-lines {
        font-size: 9px;
    }
    
    .line-numbers {
        font-size: 9px;
    }
    
    .terminal-content {
        font-size: 8px;
    }
    
    .preview-title {
        font-size: 18px;
    }
    
    .preview-subtitle {
        font-size: 12px;
    }
    
    .preview-button {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .feature-card {
        padding: 8px;
    }
    
    .feature-icon {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .prototype-workspace {
        height: 350px;
    }
    
    .code-editor {
        height: 120px;
    }
    
    .terminal {
        height: 80px;
        top: 140px;
    }
    
    .live-preview {
        height: 150px;
        top: 230px;
    }
    
    .code-lines {
        font-size: 8px;
        padding: 6px 8px;
    }
    
    .line-numbers {
        font-size: 8px;
        padding: 6px 6px 6px 8px;
    }
    
    .terminal-content {
        font-size: 7px;
        padding: 6px 8px;
    }
    
    .preview-content {
        padding: 12px;
    }
    
    .preview-title {
        font-size: 16px;
    }
    
    .preview-subtitle {
        font-size: 10px;
    }
    
    .preview-button {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .feature-card {
        padding: 6px;
    }
    
    .feature-icon {
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 7px;
    }
} 

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
        min-height: auto;
        overflow: visible;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .title-line {
        white-space: normal;
        word-break: break-word;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-content {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .stat-description {
        font-size: 0.85rem;
        opacity: 1;
        transform: translateY(0);
    }

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

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

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        margin-bottom: 2rem;
    }

    .step-content {
        margin-left: 4rem;
        margin-right: 0;
        max-width: none;
        padding: 1.5rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: none;
        order: -1;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .section-header {
        margin-bottom: 2rem;
    }

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

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

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .title-line {
        white-space: normal;
        display: block;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .service-card,
    .benefit-card,
    .story-card,
    .package-card {
        padding: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-step {
        margin-bottom: 1.5rem;
    }

    .step-content {
        margin-left: 3rem;
        padding: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .comparison-table {
        padding: 1rem;
    }

    .comparison-table table {
        min-width: 500px;
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   ABOUT SECTION - ULTRA MODERN REDESIGN
   ======================================== */

.about-modern {
    position: relative;
    min-height: 100vh;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 8rem 0;
}

/* Animated Background */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(7, 188, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 188, 204, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: var(--primary-color);
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: var(--secondary-color);
}

.particle-3 {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    background: var(--accent-color);
}

.particle-4 {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    background: var(--primary-light);
}

.particle-5 {
    top: 10%;
    left: 50%;
    animation-delay: 3s;
    background: var(--secondary-light);
}

.particle-6 {
    top: 70%;
    left: 90%;
    animation-delay: 5s;
    background: var(--accent-light);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-triangle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(7, 188, 204, 0.1);
    animation: rotateShape 10s linear infinite;
}

.shape-hexagon {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: rgba(230, 1, 192, 0.1);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: pulseShape 6s ease-in-out infinite;
}

.shape-diamond {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 30px;
    height: 30px;
    background: rgba(255, 235, 59, 0.1);
    transform: rotate(45deg);
    animation: bounceShape 8s ease-in-out infinite;
}

@keyframes rotateShape {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes bounceShape {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

/* Section Header */
.about-header {
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-cyber);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    margin-bottom: 1.5rem;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(7, 188, 204, 0.3); }
    50% { box-shadow: 0 0 20px rgba(230, 1, 192, 0.5); }
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}


.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }


@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Preview Card */
.mission-preview {
    position: relative;
}

.mission-card {
    background: var(--gradient-card);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    border-color: var(--secondary-color);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyber);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.mission-card:hover .card-glow {
    opacity: 0.1;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    gap: 2rem;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.mini-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Grid Modern */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: linear-gradient(135deg, 
        rgba(7, 188, 204, 0.08) 0%, 
        rgba(255, 0, 110, 0.08) 50%, 
        rgba(255, 190, 11, 0.08) 100%);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 40px rgba(7, 188, 204, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(7, 188, 204, 0.3),
        0 10px 30px rgba(255, 0, 110, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, 
        rgba(7, 188, 204, 0.12) 0%, 
        rgba(255, 0, 110, 0.12) 50%, 
        rgba(255, 190, 11, 0.12) 100%);
}

.stat-card-modern[data-stat="speed"]:hover {
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(7, 188, 204, 0.4),
        0 10px 30px rgba(7, 188, 204, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card-modern[data-stat="quality"]:hover {
    border-color: var(--secondary-color);
    box-shadow: 
        0 20px 60px rgba(255, 0, 110, 0.4),
        0 10px 30px rgba(255, 0, 110, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card-modern[data-stat="efficiency"]:hover {
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 60px rgba(255, 190, 11, 0.4),
        0 10px 30px rgba(255, 190, 11, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-icon-modern {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(7, 188, 204, 0.4));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes numberGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    /* Removed filter to avoid square shadow */
}

.stat-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-bg {
    fill: none;
    stroke: var(--gray-600);
    stroke-width: 8;
}

.stat-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    /* Removed animation and filter */
}

.stat-card-modern[data-stat="speed"] .stat-progress {
    stroke: var(--primary-color);
}

.stat-card-modern[data-stat="quality"] .stat-progress {
    stroke: var(--secondary-color);
}

.stat-card-modern[data-stat="efficiency"] .stat-progress {
    stroke: var(--accent-color);
}

.stat-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(7, 188, 204, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(7, 188, 204, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    font-style: italic;
}

.stat-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card-modern:hover .stat-hover-effect {
    opacity: 0.05;
}

/* Story Section */
.story-section {
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

/* Extra spacing for values section */
.story-panel[data-panel="values"] {
    margin-bottom: 4rem;
}

.story-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.story-tab {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.story-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.story-tab.active {
    background: var(--gradient-cyber);
    border-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.story-content {
    position: relative;
    min-height: 400px;
}

.story-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.panel-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(7, 188, 204, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(7, 188, 204, 0.1);
    backdrop-filter: blur(10px);
}

.panel-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VISION ANIMATION - ENHANCED */
.vision-animation {
    position: relative;
    width: 250px;
    height: 250px;
}

.vision-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: visionPulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(7, 188, 204, 0.3);
}

.vision-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: visionPulse 3s ease-in-out infinite reverse;
    opacity: 0.6;
}

.vision-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    animation: visionGlow 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(7, 188, 204, 0.5);
}

.vision-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: visionBlink 1.5s ease-in-out infinite;
}

.vision-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.vision-line {
    position: absolute;
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), transparent);
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    animation: visionRotate 6s linear infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(7, 188, 204, 0.4);
}

.vision-line.line-1 {
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.vision-line.line-2 {
    transform: translate(-50%, -50%) rotate(120deg);
    animation-delay: 2s;
}

.vision-line.line-3 {
    transform: translate(-50%, -50%) rotate(240deg);
    animation-delay: 4s;
}

/* Vision Particles */
.vision-animation::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: visionFloat 4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-color);
}

.vision-animation::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 20%;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: visionFloat 3s ease-in-out infinite reverse;
    box-shadow: 0 0 6px var(--primary-color);
}

@keyframes visionPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8; 
        box-shadow: 0 0 20px rgba(7, 188, 204, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15); 
        opacity: 1; 
        box-shadow: 0 0 40px rgba(7, 188, 204, 0.6);
    }
}

@keyframes visionGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(7, 188, 204, 0.5);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 35px rgba(7, 188, 204, 0.8), 0 0 60px rgba(7, 188, 204, 0.4);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes visionBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes visionRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes visionFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

/* MISSION ANIMATION - ENHANCED */
.mission-animation {
    position: relative;
    width: 250px;
    height: 250px;
}

.mission-rocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rocketLaunch 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.4));
}

.mission-rocket::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rocketGlow 2s ease-in-out infinite;
}

.mission-trail {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.trail-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    position: absolute;
    animation: trailMove 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 190, 11, 0.6);
}

.trail-dot:nth-child(1) {
    animation-delay: 0s;
    left: -30px;
}

.trail-dot:nth-child(2) {
    animation-delay: 0.3s;
    left: -10px;
}

.trail-dot:nth-child(3) {
    animation-delay: 0.6s;
    left: 10px;
}

/* Mission Stars */
.mission-animation::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 3px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: starTwinkle 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--text-primary);
}

.mission-animation::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 20%;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: starTwinkle 1.5s ease-in-out infinite reverse;
    box-shadow: 0 0 4px var(--primary-color);
}

@keyframes rocketLaunch {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-25px) rotate(5deg); 
    }
}

@keyframes rocketGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes trailMove {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0px) scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(30px) scale(1.2); 
    }
}

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

/* VALUES ANIMATION - ENHANCED */
.values-animation {
    position: relative;
    width: 250px;
    height: 250px;
}

.value-hexagon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: hexagonRotate 8s linear infinite;
    box-shadow: 0 0 25px rgba(7, 188, 204, 0.4);
}

.value-hexagon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: hexagonRotate 8s linear infinite reverse;
    opacity: 0.7;
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hexContentPulse 3s ease-in-out infinite;
    z-index: 2;
}

.value-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.orbit {
    position: absolute;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: orbitRotate 8s linear infinite;
    box-shadow: 0 0 15px rgba(7, 188, 204, 0.3);
}

.orbit-1 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 6s;
    border-color: var(--primary-color);
}

.orbit-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 8s;
    animation-direction: reverse;
    border-color: var(--secondary-color);
}

.orbit-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 10s;
    border-color: var(--accent-color);
}

.orbit-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(255, 0, 110, 0.6);
    animation: orbitDotGlow 2s ease-in-out infinite;
}

/* Values Particles */
.values-animation::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: valueFloat 5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-color);
}

.values-animation::after {
    content: '';
    position: absolute;
    top: 80%;
    right: 15%;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: valueFloat 4s ease-in-out infinite reverse;
    box-shadow: 0 0 6px var(--primary-color);
}

@keyframes hexagonRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hexContentPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        filter: brightness(1.3);
    }
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitDotGlow {
    0%, 100% { 
        box-shadow: 0 0 12px rgba(255, 0, 110, 0.6);
        transform: translateX(-50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.9), 0 0 30px rgba(255, 0, 110, 0.4);
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes valueFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) translateX(8px);
        opacity: 1;
    }
}

.panel-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.08), rgba(255, 0, 110, 0.08));
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 250px;
    animation: highlightFloat 6s ease-in-out infinite;
}

.highlight-item:nth-child(1) { animation-delay: 0s; }
.highlight-item:nth-child(2) { animation-delay: 2s; }
.highlight-item:nth-child(3) { animation-delay: 4s; }

.highlight-item::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.6s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.15), rgba(255, 0, 110, 0.15));
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(7, 188, 204, 0.2);
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 3s ease-in-out infinite;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.mission-process {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.08), rgba(255, 0, 110, 0.08));
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 200px;
    animation: processFloat 8s ease-in-out infinite;
}

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 2.5s; }
.process-step:nth-child(3) { animation-delay: 5s; }

.process-step::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.6s ease;
}

.process-step:hover {
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.15), rgba(255, 0, 110, 0.15));
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(7, 188, 204, 0.25);
}

.process-step:hover::before {
    left: 100%;
}

@keyframes processFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-cyber);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.08), rgba(255, 0, 110, 0.08));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: valueItemFloat 10s ease-in-out infinite;
}

.value-item:nth-child(1) { animation-delay: 0s; }
.value-item:nth-child(2) { animation-delay: 3s; }
.value-item:nth-child(3) { animation-delay: 6s; }

.value-item::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.6s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(7, 188, 204, 0.15), rgba(255, 0, 110, 0.15));
    border-color: var(--primary-color);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(7, 188, 204, 0.3);
}

.value-item:hover::before {
    left: 100%;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    animation: valueIconRotate 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(7, 188, 204, 0.3);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: valueIconGlow 4s ease-in-out infinite;
    opacity: 0.6;
}

.value-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

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

@keyframes valueIconRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

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

/* Team Showcase */
.team-showcase {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.showcase-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--gradient-card);
    border: 2px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.team-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.team-avatar {
    position: relative;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card:hover .avatar-glow {
    opacity: 0.3;
    animation: avatarPulse 2s ease-in-out infinite;
}

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

.team-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(7, 188, 204, 0.2);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.team-info p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.team-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About CTA */
.about-cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--gradient-card);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-title-modern {
        font-size: 3rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .panel-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .panel-points {
        gap: 1.5rem;
    }
    
    .panel-visual {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 6rem 0;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .story-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .story-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mission-stats {
        justify-content: center;
    }
    
    .mission-process {
        justify-content: center;
    }
    
    .panel-points {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .team-stats {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 2rem;
    }
    
    .stat-card-modern {
        padding: 2rem;
    }
    
    .stat-visual {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-card {
        padding: 2rem;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
} 