/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --neon-violet: #C52EFF;
    --deep-magenta: #7B1FA2;
    --electric-pink: #E91E63;
    
    /* Secondary Colors */
    --digital-blue: #2D8BFF;
    --dark-navy: #0A0B1E;
    --plasma-purple: #5A1E8E;
    
    /* Accent & Light Colors */
    --soft-lilac: #D6B4FF;
    --glowing-white: #F4F4FF;
    --cyber-cyan: #22DDEE;
    
    /* Gradients */
    --main-gradient: linear-gradient(135deg, #C52EFF 0%, #7B1FA2 50%, #E91E63 100%);
    --hover-glow: 0 0 25px rgba(197, 46, 255, 0.7);
    --cyan-glow: 0 0 20px rgba(34, 221, 238, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-navy);
    color: var(--glowing-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 46, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(197, 46, 255, 0.5));
}

.logo-text {
    color: var(--glowing-white);
    letter-spacing: 2px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-accent {
    color: var(--neon-violet);
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--soft-lilac);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--neon-violet);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(197, 46, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(197, 46, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    display: block;
    color: var(--glowing-white);
    font-size: 3rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--soft-lilac);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Graphics */
.hero-graphics {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphics-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 3D Rotating Cube */
.cube-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
    width: 200px;
    height: 200px;
}

.cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCube 8s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid;
    backdrop-filter: blur(10px);
}

.cube-front {
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.3), rgba(123, 31, 162, 0.2));
    border-color: #C52EFF;
    transform: rotateY(0deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(197, 46, 255, 0.6);
}

.cube-back {
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.3), rgba(233, 30, 99, 0.2));
    border-color: #7B1FA2;
    transform: rotateY(180deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(123, 31, 162, 0.6);
}

.cube-right {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(45, 139, 255, 0.2));
    border-color: #E91E63;
    transform: rotateY(90deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.6);
}

.cube-left {
    background: linear-gradient(135deg, rgba(45, 139, 255, 0.3), rgba(34, 221, 238, 0.2));
    border-color: #2D8BFF;
    transform: rotateY(-90deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(45, 139, 255, 0.6);
}

.cube-top {
    background: linear-gradient(135deg, rgba(34, 221, 238, 0.3), rgba(197, 46, 255, 0.2));
    border-color: #22DDEE;
    transform: rotateX(90deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(34, 221, 238, 0.6);
}

.cube-bottom {
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.3), rgba(34, 221, 238, 0.2));
    border-color: #C52EFF;
    transform: rotateX(-90deg) translateZ(100px);
    box-shadow: 0 0 30px rgba(197, 46, 255, 0.6);
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Floating Geometric Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C52EFF, #22DDEE);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 40px rgba(197, 46, 255, 0.8);
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #7B1FA2);
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.8);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2D8BFF, #C52EFF);
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
    box-shadow: 0 0 50px rgba(45, 139, 255, 0.8);
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22DDEE, #E91E63);
    top: 30%;
    right: 10%;
    animation-delay: 4.5s;
    box-shadow: 0 0 35px rgba(34, 221, 238, 0.8);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -50px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg);
        opacity: 1;
    }
}

/* Data Waves */
.data-waves {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.8;
}

.wave {
    animation: waveAnimation 3s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(20px);
        opacity: 1;
    }
}

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    animation: orbPulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.6), transparent);
    top: 20%;
    right: 25%;
    animation-delay: 0s;
}

.orb-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 221, 238, 0.5), transparent);
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.5), transparent);
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.graphics-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--main-gradient);
    color: var(--glowing-white);
    box-shadow: var(--hover-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-glow), var(--cyan-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-violet);
    border: 2px solid var(--neon-violet);
}

.btn-secondary:hover {
    background: rgba(197, 46, 255, 0.1);
    box-shadow: var(--cyan-glow);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--soft-lilac);
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.15) 0%, rgba(10, 11, 30, 0.8) 50%, rgba(123, 31, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--soft-lilac);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-text {
    color: var(--neon-violet) !important;
    font-weight: 600;
    font-size: 1.2rem !important;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.15), rgba(123, 31, 162, 0.1));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 46, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.4), var(--hover-glow);
    border-color: var(--neon-violet);
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.25), rgba(123, 31, 162, 0.15));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--soft-lilac);
    font-size: 1rem;
    font-weight: 500;
}

/* Ecosystem Section */
.ecosystem {
    background: linear-gradient(135deg, rgba(10, 11, 30, 0.95) 0%, rgba(90, 30, 142, 0.2) 50%, rgba(10, 11, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.ecosystem::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 221, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 10s ease-in-out infinite;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ecosystem-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.25), rgba(123, 31, 162, 0.15));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.ecosystem-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.ecosystem-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(197, 46, 255, 0.4), var(--hover-glow), var(--cyan-glow);
    border-color: var(--neon-violet);
}

.ecosystem-card:hover::before {
    opacity: 0.15;
}

.ecosystem-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--main-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--glowing-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(197, 46, 255, 0.5);
    transition: all 0.4s ease;
}

.ecosystem-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(197, 46, 255, 0.7);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--glowing-white);
    position: relative;
    z-index: 1;
}

.card-description {
    color: var(--soft-lilac);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ecosystem-card-cta {
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.25), rgba(123, 31, 162, 0.2));
    border: 2px solid var(--neon-violet);
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.3);
}

.ecosystem-card-cta:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 15px 60px rgba(197, 46, 255, 0.5), 0 0 40px rgba(34, 221, 238, 0.4);
}

.btn-card {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ecosystem-footer {
    text-align: center;
    font-size: 1.2rem;
    color: var(--soft-lilac);
    font-style: italic;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.1), rgba(123, 31, 162, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(197, 46, 255, 0.3);
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* Section CTA Buttons */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.section-cta .btn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    position: relative;
    overflow: hidden;
}

.section-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.section-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Innovation Section */
.innovation {
    background: linear-gradient(135deg, rgba(10, 11, 30, 0.95) 0%, rgba(90, 30, 142, 0.2) 50%, rgba(10, 11, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.innovation::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 12s ease-in-out infinite;
    z-index: 0;
}

.innovation::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 221, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 15s ease-in-out infinite reverse;
    z-index: 0;
}

.innovation-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.innovation-intro p {
    font-size: 1.2rem;
    color: var(--soft-lilac);
    line-height: 1.8;
}

/* Innovation Timeline */
.innovation-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(197, 46, 255, 0.3) 10%, 
        rgba(197, 46, 255, 0.5) 50%, 
        rgba(34, 221, 238, 0.5) 50%, 
        rgba(34, 221, 238, 0.3) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 20px rgba(197, 46, 255, 0.3);
}

.innovation-item-large {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.innovation-item-large:nth-child(odd) {
    flex-direction: row;
}

.innovation-item-large:nth-child(even) {
    flex-direction: row-reverse;
}

.innovation-item-large:last-child {
    margin-bottom: 0;
}

.item-visual {
    flex: 0 0 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.visual-icon {
    width: 120px;
    height: 120px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--glowing-white);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(197, 46, 255, 0.3);
}

.visual-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: visualGlowPulse 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes visualGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.innovation-item-large:hover .visual-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 60px rgba(197, 46, 255, 0.8), 0 0 40px rgba(34, 221, 238, 0.6);
    border-color: var(--neon-violet);
}

.innovation-item-large:hover .visual-glow {
    transform: scale(1.3);
    opacity: 1;
}

.item-content {
    flex: 1;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.3), rgba(123, 31, 162, 0.2));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 2rem;
}

.item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.item-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.innovation-item-large:hover .item-content {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(197, 46, 255, 0.4), var(--hover-glow);
    border-color: var(--neon-violet);
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.4), rgba(123, 31, 162, 0.3));
}

.innovation-item-large:nth-child(even):hover .item-content {
    transform: translateX(-10px);
}

.innovation-item-large:hover .item-content::before {
    opacity: 0.15;
}

.innovation-item-large:hover .item-content::after {
    opacity: 1;
}

.item-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    z-index: 2;
    transition: all 0.5s ease;
}

.innovation-item-large:hover .item-number {
    opacity: 1;
    transform: scale(1.2);
}

.item-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--glowing-white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.innovation-item-large:hover .item-title {
    color: var(--neon-violet);
    text-shadow: 0 0 25px rgba(197, 46, 255, 0.6);
}

.item-description {
    color: var(--soft-lilac);
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.innovation-item-large:hover .item-description {
    color: var(--glowing-white);
}

.innovation-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* AI Core Section */
.ai-core {
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.2) 0%, rgba(10, 11, 30, 0.9) 50%, rgba(45, 139, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.ai-core::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45, 139, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 9s ease-in-out infinite;
}

.ai-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.ai-text-block {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.2), rgba(123, 31, 162, 0.15));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.ai-text-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.3);
    border-color: var(--neon-violet);
}

.ai-text-block p {
    font-size: 1.1rem;
    color: var(--soft-lilac);
    line-height: 1.8;
    margin: 0;
}

/* AI Visual Center */
.ai-visual-center {
    position: relative;
    height: 500px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Core Circle */
.ai-core-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.core-inner {
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 60px rgba(197, 46, 255, 0.8), 0 0 100px rgba(34, 221, 238, 0.5);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(197, 46, 255, 0.8), 0 0 100px rgba(34, 221, 238, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(197, 46, 255, 1), 0 0 120px rgba(34, 221, 238, 0.7);
    }
}

.core-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--glowing-white);
    z-index: 4;
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowRotate 8s linear infinite;
}

@keyframes glowRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.4;
}

.ring-1 {
    width: 250px;
    height: 250px;
    border-color: var(--neon-violet);
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    border-color: var(--cyber-cyan);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 350px;
    height: 350px;
    border-color: var(--electric-pink);
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* AI Nodes */
.ai-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-node {
    position: absolute;
    text-align: center;
    z-index: 2;
}

.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.node-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-4 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.node-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.3), rgba(34, 221, 238, 0.3));
    border: 2px solid rgba(197, 46, 255, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--glowing-white);
    margin: 0 auto 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(197, 46, 255, 0.4);
}

.ai-node:hover .node-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(197, 46, 255, 0.7);
    border-color: var(--neon-violet);
}

.node-label {
    font-size: 0.9rem;
    color: var(--soft-lilac);
    font-weight: 500;
}

.ai-node:hover .node-label {
    color: var(--neon-violet);
}

/* Connection Lines */
.ai-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(to center, rgba(197, 46, 255, 0.4), rgba(34, 221, 238, 0.3));
    opacity: 0.5;
    animation: linePulse 2s ease-in-out infinite;
}

.line-1 {
    top: 10%;
    left: 50%;
    width: 2px;
    height: 40%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    right: 10%;
    width: 40%;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 10%;
    left: 50%;
    width: 2px;
    height: 40%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.line-4 {
    top: 50%;
    left: 10%;
    width: 40%;
    height: 2px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(197, 46, 255, 0.3);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(197, 46, 255, 0.6);
    }
}

.ai-philosophy {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.2), rgba(123, 31, 162, 0.15));
    border: 2px solid rgba(197, 46, 255, 0.4);
    border-left: 6px solid var(--neon-violet);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.3);
}

.ai-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-quote {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-violet);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--soft-lilac);
    line-height: 1.8;
}

/* Cybersecurity Section */
.cybersecurity {
    background: linear-gradient(135deg, rgba(10, 11, 30, 0.95) 0%, rgba(123, 31, 162, 0.15) 50%, rgba(10, 11, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cybersecurity::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 11s ease-in-out infinite;
}

.security-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.security-intro p {
    font-size: 1.2rem;
    color: var(--soft-lilac);
    line-height: 1.8;
}

/* Security Grid 2x2 */
.security-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.security-card-large {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.3), rgba(123, 31, 162, 0.2));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.security-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.security-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.security-card-large:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(197, 46, 255, 0.5), var(--hover-glow), var(--cyan-glow);
    border-color: var(--neon-violet);
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.4), rgba(123, 31, 162, 0.3));
}

.security-card-large:hover::before {
    opacity: 0.2;
}

.security-card-large:hover::after {
    opacity: 1;
}

.security-card-icon {
    width: 90px;
    height: 90px;
    background: var(--main-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--glowing-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(197, 46, 255, 0.6);
    transition: all 0.5s ease;
}

.security-card-glow {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(197, 46, 255, 0.5) 0%, transparent 70%);
    border-radius: 20px;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    animation: securityGlowPulse 3s ease-in-out infinite;
}

@keyframes securityGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.security-card-large:hover .security-card-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 12px 40px rgba(197, 46, 255, 0.8), 0 0 30px rgba(34, 221, 238, 0.6);
}

.security-card-large:hover .security-card-glow {
    opacity: 1;
    transform: scale(1.3);
}

.security-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    z-index: 2;
    transition: all 0.5s ease;
}

.security-card-large:hover .security-card-number {
    opacity: 1;
    transform: scale(1.2);
}

.security-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--glowing-white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.security-card-large:hover .security-card-title {
    color: var(--neon-violet);
    text-shadow: 0 0 25px rgba(197, 46, 255, 0.6);
}

.security-card-description {
    color: var(--soft-lilac);
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.security-card-large:hover .security-card-description {
    color: var(--glowing-white);
}

.btn-card-security {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

.security-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--main-gradient);
    transition: width 0.5s ease;
    z-index: 2;
    box-shadow: 0 0 20px rgba(197, 46, 255, 0.8);
}

.security-card-large:hover .security-card-accent {
    width: 100%;
}

.security-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.security-philosophy {
    font-size: 1.3rem;
    color: var(--neon-violet);
    font-weight: 600;
    font-style: italic;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(197, 46, 255, 0.1), rgba(123, 31, 162, 0.05));
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(197, 46, 255, 0.2);
}

/* Contact Section */
.contact {
    background: rgba(90, 30, 142, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--neon-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--soft-lilac);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    color: var(--neon-violet);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--soft-lilac);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--soft-lilac);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:link,
.contact-item a:visited {
    color: var(--soft-lilac);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--neon-violet);
    text-shadow: 0 0 10px rgba(197, 46, 255, 0.5);
    transform: translateX(3px);
}

.contact-item a:active {
    color: var(--neon-violet);
}

/* Contact Form */
.form-container {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(90, 30, 142, 0.25), rgba(123, 31, 162, 0.15));
    border-radius: 24px;
    backdrop-filter: blur(15px);
}

.form-outline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(197, 46, 255, 0.4);
    border-radius: 24px;
    z-index: 0;
    transition: all 0.5s ease;
}

.form-container:hover .form-outline {
    border-color: var(--neon-violet);
    box-shadow: 0 0 40px rgba(197, 46, 255, 0.4), inset 0 0 40px rgba(197, 46, 255, 0.1);
}

.form-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--main-gradient);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.form-container:hover .form-glow {
    opacity: 0.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--soft-lilac);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--neon-violet);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    background: rgba(10, 11, 30, 0.9);
    border: 2px solid rgba(197, 46, 255, 0.3);
    border-radius: 12px;
    color: var(--glowing-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-violet);
    box-shadow: 0 0 20px rgba(197, 46, 255, 0.4), 0 0 40px rgba(197, 46, 255, 0.2);
    background: rgba(10, 11, 30, 0.95);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(197, 46, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.3rem;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: rgba(10, 11, 30, 0.95);
    border-top: 1px solid rgba(197, 46, 255, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(197, 46, 255, 0.5));
}

.footer-tagline {
    color: var(--soft-lilac);
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--neon-violet);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--soft-lilac);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:link,
.footer-section ul li a:visited {
    color: var(--soft-lilac);
}

.footer-section ul li a:hover {
    color: var(--neon-violet);
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(197, 46, 255, 0.5);
}

.footer-section ul li a:active {
    color: var(--neon-violet);
}

.footer-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(197, 46, 255, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--soft-lilac);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-violet);
    transform: translateX(3px);
}

.social-link:hover svg {
    color: var(--neon-violet);
    filter: drop-shadow(0 0 8px rgba(197, 46, 255, 0.6));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 46, 255, 0.2);
}

.footer-bottom p {
    color: var(--soft-lilac);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-message {
    color: var(--neon-violet) !important;
    font-weight: 600;
    font-size: 1rem !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .graphics-container {
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .cube-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .cube-face {
        width: 150px;
        height: 150px;
    }
    
    .cube-front {
        width: 150px;
        height: 150px;
        transform: rotateY(0deg) translateZ(75px);
    }
    
    .cube-back {
        width: 150px;
        height: 150px;
        transform: rotateY(180deg) translateZ(75px);
    }
    
    .cube-right {
        width: 150px;
        height: 150px;
        transform: rotateY(90deg) translateZ(75px);
    }
    
    .cube-left {
        width: 150px;
        height: 150px;
        transform: rotateY(-90deg) translateZ(75px);
    }
    
    .cube-top {
        width: 150px;
        height: 150px;
        transform: rotateX(90deg) translateZ(75px);
    }
    
    .cube-bottom {
        width: 150px;
        height: 150px;
        transform: rotateX(-90deg) translateZ(75px);
    }
    
    .shape-1 {
        width: 60px;
        height: 60px;
    }
    
    .shape-2 {
        width: 45px;
        height: 45px;
    }
    
    .shape-3 {
        width: 75px;
        height: 75px;
    }
    
    .shape-4 {
        width: 55px;
        height: 55px;
    }
    
    .orb-1 {
        width: 90px;
        height: 90px;
    }
    
    .orb-2 {
        width: 75px;
        height: 75px;
    }
    
    .orb-3 {
        width: 60px;
        height: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .innovation-item-large {
        flex-direction: column !important;
    }
    
    .item-visual {
        flex: 0 0 auto;
        margin-bottom: 2rem;
    }
    
    .item-content {
        margin: 0;
        padding: 2rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .ai-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-card-large {
        min-height: auto;
        padding: 2.5rem;
    }
    
    .ai-visual-center {
        height: 400px;
    }
    
    .ai-core-circle {
        width: 150px;
        height: 150px;
    }
    
    .core-inner {
        width: 100%;
        height: 100%;
    }
    
    .core-text {
        font-size: 2rem;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 240px;
        height: 240px;
    }
    
    .ring-3 {
        width: 280px;
        height: 280px;
    }
    
    .node-icon {
        width: 60px;
        height: 60px;
        font-size: 0.75rem;
    }
    
    .node-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .graphics-container {
        max-width: 300px;
        height: 300px;
    }
    
    .cube-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .cube-face {
        width: 120px;
        height: 120px;
    }
    
    .cube-front {
        width: 120px;
        height: 120px;
        transform: rotateY(0deg) translateZ(60px);
    }
    
    .cube-back {
        width: 120px;
        height: 120px;
        transform: rotateY(180deg) translateZ(60px);
    }
    
    .cube-right {
        width: 120px;
        height: 120px;
        transform: rotateY(90deg) translateZ(60px);
    }
    
    .cube-left {
        width: 120px;
        height: 120px;
        transform: rotateY(-90deg) translateZ(60px);
    }
    
    .cube-top {
        width: 120px;
        height: 120px;
        transform: rotateX(90deg) translateZ(60px);
    }
    
    .cube-bottom {
        width: 120px;
        height: 120px;
        transform: rotateX(-90deg) translateZ(60px);
    }
    
    .shape-1 {
        width: 50px;
        height: 50px;
    }
    
    .shape-2 {
        width: 40px;
        height: 40px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
    
    .shape-4 {
        width: 45px;
        height: 45px;
    }
    
    .orb-1 {
        width: 70px;
        height: 70px;
    }
    
    .orb-2 {
        width: 60px;
        height: 60px;
    }
    
    .orb-3 {
        width: 50px;
        height: 50px;
    }
    
    .data-waves {
        height: 150px;
    }
    
    .innovation-item-large {
        flex-direction: column !important;
    }
    
    .item-visual {
        flex: 0 0 auto;
        margin-bottom: 1.5rem;
    }
    
    .visual-icon {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
    
    .visual-glow {
        width: 150px;
        height: 150px;
    }
    
    .item-content {
        margin: 0;
        padding: 1.5rem;
    }
    
    .item-title {
        font-size: 1.5rem;
    }
    
    .item-description {
        font-size: 1rem;
    }
    
    .timeline-line {
        left: 20px;
        width: 2px;
    }
    
    .ai-main-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-card-large {
        min-height: auto;
        padding: 2rem;
    }
    
    .security-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .security-card-title {
        font-size: 1.5rem;
    }
    
    .security-card-description {
        font-size: 1rem;
    }
    
    .security-philosophy {
        font-size: 1.1rem;
        padding: 2rem;
    }
    
    .ai-text-block {
        padding: 1.5rem;
    }
    
    .ai-visual-center {
        height: 350px;
    }
    
    .ai-core-circle {
        width: 120px;
        height: 120px;
    }
    
    .core-text {
        font-size: 1.5rem;
    }
    
    .ring-1 {
        width: 160px;
        height: 160px;
    }
    
    .ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .ring-3 {
        width: 240px;
        height: 240px;
    }
    
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 0.65rem;
    }
    
    .node-label {
        font-size: 0.7rem;
    }
    
    .ai-philosophy {
        padding: 2rem;
    }
    
    .philosophy-quote {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

