/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --secondary: #7b2cbf;
    --accent: #ff006e;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --gray: #8892b0;
    --gradient-1: linear-gradient(135deg, #00f0ff 0%, #7b2cbf 100%);
    --gradient-2: linear-gradient(135deg, #ff006e 0%, #7b2cbf 100%);
    --gradient-3: linear-gradient(135deg, #00f0ff 0%, #ff006e 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Animated Background - AI Neural Network Style */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #0d1117 0%, #010409 100%);
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 0.4;
}

/* Animated gradient waves */
.background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 44, 191, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 0, 110, 0.06) 0%, transparent 50%);
    animation: gradientWave 20s ease-in-out infinite;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 240, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(0, 240, 255, 0.03) 41px),
        repeating-linear-gradient(90deg, rgba(0, 240, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(0, 240, 255, 0.03) 41px);
    animation: gridFlow 30s linear infinite;
}

@keyframes gradientWave {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    33% { 
        transform: translate(10%, 10%) rotate(120deg); 
    }
    66% { 
        transform: translate(-10%, 5%) rotate(240deg); 
    }
}

@keyframes gridFlow {
    from { 
        transform: translate(0, 0); 
        opacity: 0.4;
    }
    to { 
        transform: translate(40px, 40px); 
        opacity: 0.2;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    position: relative;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-text {
    position: relative;
    z-index: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 4s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

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

.cta-button {
    padding: 0.7rem 1.8rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

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

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subtitle {
    color: var(--light);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}

a.primary-button {
    display: inline-block;
    text-decoration: none;
}

.secondary-button {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

a.link-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--gradient-1);
    opacity: 0.1;
    filter: blur(40px);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation: float2 7s ease-in-out infinite;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation: float3 8s ease-in-out infinite;
}

.float-4 {
    top: 40%;
    right: 30%;
    animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 40px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -25px) scale(1.2); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-35px, -35px) rotate(-120deg); }
    66% { transform: translate(20px, 30px) rotate(-240deg); }
}

/* Manifesto / Paradigm Section */
.manifesto-section {
    padding: 6rem 0;
    position: relative;
}

.manifesto-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.manifesto-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px 0 0 4px;
}

.manifesto-lead {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.manifesto-body {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.manifesto-body strong {
    color: var(--light);
}

.gradient-inline {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.manifesto-cta {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

/* AI Technology Section */
.ai-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%);
}

.ai-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: aiGlow 8s ease-in-out infinite;
}

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

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.ai-brain {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-core {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(20px);
    opacity: 0.6;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.connections line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-in-out forwards, pulseLine 2s ease-in-out 3s infinite;
}

.connections line:nth-child(1) { animation-delay: 0s, 3s; }
.connections line:nth-child(2) { animation-delay: 0.2s, 3.2s; }
.connections line:nth-child(3) { animation-delay: 0.4s, 3.4s; }
.connections line:nth-child(4) { animation-delay: 0.6s, 3.6s; }
.connections line:nth-child(5) { animation-delay: 0.8s, 3.8s; }
.connections line:nth-child(6) { animation-delay: 1s, 4s; }
.connections line:nth-child(7) { animation-delay: 1.2s, 4.2s; }
.connections line:nth-child(8) { animation-delay: 1.4s, 4.4s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.5;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

.nodes .node {
    fill: #00f0ff;
    stroke: #00f0ff;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
    animation: nodeGlow 2s ease-in-out infinite;
}

.nodes .node-center {
    fill: #7b2cbf;
    stroke: #7b2cbf;
    animation: nodeCenterGlow 2s ease-in-out infinite;
}

@keyframes nodeGlow {
    0%, 100% {
        r: 8;
        opacity: 0.8;
    }
    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes nodeCenterGlow {
    0%, 100% {
        r: 12;
        opacity: 0.9;
    }
    50% {
        r: 14;
        opacity: 1;
    }
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-text {
    position: relative;
}

.app-cta {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: radial-gradient(circle at 0 0, rgba(0, 240, 255, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(123, 44, 191, 0.12) 0%, transparent 55%),
                rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 2.5rem;
    align-items: center;
}

.app-cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.app-cta-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.telegram-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    flex-wrap: wrap;
}

.telegram-chip--soon {
    opacity: 0.8;
}

.telegram-chip:hover:not(.telegram-chip--soon) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.35);
    background: rgba(0, 0, 0, 0.8);
}

.tg-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #ffffff 0%, #00bdf2 40%, #0088cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tg-icon svg {
    width: 16px;
    height: 16px;
}

.tg-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tg-main {
    font-weight: 600;
    word-break: break-all;
}

.tg-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.app-cta-right {
    border-left: 1px solid rgba(0, 240, 255, 0.12);
    padding-left: 2.2rem;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-buttons .store-button {
    flex: 1 1 160px;
    min-width: 160px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.4rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 12, 0.9);
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.store-button--apple {
    background: linear-gradient(135deg, #111111, #1f1f1f);
}

.store-button--google {
    background: linear-gradient(135deg, #0b1220, #111827);
}

.store-button--telegram {
    background: linear-gradient(135deg, #0c5c8c, #179cde);
}

.store-button--website {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.store-button--soon {
    opacity: 0.7;
    border-style: dashed;
    cursor: default;
    pointer-events: none;
}

.store-button:hover:not(.store-button--soon) {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 240, 255, 0.5);
}

.store-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon svg {
    width: 20px;
    height: 20px;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-caption {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
}

.store-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.8rem;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid rgba(0, 240, 255, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

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

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

.ai-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--light);
}

.ai-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.ai-description.highlight {
    color: var(--light);
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.ai-feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.ai-feature-card:hover::before {
    left: 100%;
}

.ai-feature-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.ai-feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--light);
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
}

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

.service-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

.card-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 20px;
    color: var(--light);
    transition: all 0.4s ease;
}

.icon-circle svg {
    width: 40px;
    height: 40px;
}

.service-card:hover .icon-circle {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: rgba(0, 240, 255, 0.02);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about {
    padding: 8rem 0;
}

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

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hologram-ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation: rotate 10s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation: rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 140px;
    height: 140px;
    animation: rotate 20s linear infinite;
}

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

.hologram-core {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card .store-buttons,
.contact-card .contact-phone-link {
    margin-top: auto;
}

.contact-card:hover {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--light);
}

.contact-card-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-phone-link:hover {
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.contact-phone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
}

.contact-phone-icon svg {
    width: 22px;
    height: 22px;
    color: var(--light);
}

.contact-phone-number {
    word-break: break-all;
}

.contact-form {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--light);
}

.info-text h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--gray);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    background: rgba(10, 10, 15, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-logo p {
    color: var(--gray);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }
    
    .ai-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .ai-brain {
        width: 300px;
        height: 300px;
    }
    
    .ai-visual {
        order: 2;
        margin-top: 3rem;
    }
    
    .ai-text {
        order: 1;
    }
    
    .manifesto-block {
        padding: 3rem 2rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
