/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0b;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent) 1;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.95);
    border-image: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent) 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.nav-menu a.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0b 0%, #16213e 50%, #0a0a0b 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: nodePulse 3s infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 25%; animation-delay: 1s; }
.node-4 { bottom: 25%; right: 15%; animation-delay: 1.5s; }
.node-5 { top: 50%; left: 50%; animation-delay: 2s; }

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    animation: connectionFlow 4s infinite;
}

.connection-1 {
    top: 22%;
    left: 16%;
    width: 65%;
    transform: rotate(-5deg);
    animation-delay: 0.5s;
}

.connection-2 {
    top: 32%;
    right: 21%;
    width: 45%;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.connection-3 {
    bottom: 42%;
    left: 26%;
    width: 55%;
    transform: rotate(-15deg);
    animation-delay: 1.5s;
}

.connection-4 {
    bottom: 27%;
    right: 16%;
    width: 35%;
    transform: rotate(10deg);
    animation-delay: 2s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.floating-data {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    animation: dataFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.data-point:nth-child(1) {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.data-point:nth-child(2) {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.data-point:nth-child(3) {
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes dataFloat {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 65, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.1;
}

.glowing-text {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    color: #ffffff;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #0a0a0b;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #00d4ff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(0deg, transparent, #00d4ff, transparent);
    animation: streamFlow 4s linear infinite;
}

.stream-1 {
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    animation-delay: 1.5s;
}

.stream-3 {
    right: 25%;
    animation-delay: 3s;
}

@keyframes streamFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.stats-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 35px 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(0, 212, 255, 0.05) 50%, 
        rgba(123, 44, 191, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: statPulse 3s infinite;
    transform: translate(-50%, -50%);
}

@keyframes statPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 212, 255, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.featured-stat {
    border: 2px solid rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.05);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    animation: iconGlow 3s ease-in-out infinite;
}

.stat-icon.trading {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.stat-icon.platform {
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.4);
}

.stat-icon.speed {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

.stat-icon.security {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    box-shadow: 0 0 30px rgba(81, 207, 102, 0.4);
}

.stat-icon.support {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    box-shadow: 0 0 30px rgba(255, 167, 38, 0.4);
}

.stat-icon.analytics {
    background: linear-gradient(135deg, #ab47bc 0%, #8e24aa 100%);
    box-shadow: 0 0 30px rgba(171, 71, 188, 0.4);
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 400;
}

/* Section CTA Buttons */
.section-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-cta .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-cta .btn-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;
}

.section-cta .btn-primary:hover::before {
    left: 100%;
}

.section-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0b 50%, #1a1a2e 100%);
    position: relative;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(123, 44, 191, 0.03) 0%, transparent 50%);
    animation: overlayShift 20s ease-in-out infinite;
}

@keyframes overlayShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.service-card.premium {
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    position: relative;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 20;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-icon.rotating {
    animation: iconRotate 6s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Process Section */
.process {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #00d4ff 0%, #7b2cbf 100%);
}

.timeline-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-right: 40px;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 120px 0;
}

.experience-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.experience-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #0a0a0b 100%);
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(123, 44, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.highlight-text {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 212, 255, 0.2);
}

.feature-card.featured {
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.feature-card.featured:hover {
    border-color: #00d4ff;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon.pulse {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-metrics {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.metric {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.pricing-card {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border: 2px solid #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 20;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: #00d4ff;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a0d2e 50%, #16213e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.particle-4 {
    top: 60%;
    left: 50%;
    animation-delay: 4.5s;
}

.particle-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px);
        opacity: 1;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff0040;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-stat:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.cta-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.cta-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-primary.mega {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent) 1;
    position: relative;
    backdrop-filter: blur(20px);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-hero {
    text-align: center;
    padding: 40px 0;
}

.footer-brand-center {
    max-width: 600px;
    margin: 0 auto;
}

.logo-footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    font-size: 3rem;
    filter: hue-rotate(180deg) brightness(1.5);
}

.logo-text-main {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #00d4ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: 3px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.footer-glow-text {
    color: rgba(0, 212, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.telegram-contact-section {
    text-align: center;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.telegram-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.telegram-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.telegram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.telegram-card:hover::before {
    left: 100%;
}

.telegram-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.telegram-avatar {
    flex-shrink: 0;
}

.telegram-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #229ED9, #0088CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.telegram-icon-bg svg {
    width: 35px;
    height: 35px;
}

.telegram-info {
    flex: 1;
    text-align: left;
}

.telegram-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.telegram-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.telegram-username {
    font-size: 1rem;
    color: #00d4ff;
    font-weight: 600;
}

.telegram-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.telegram-card:hover .telegram-arrow {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    position: relative;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: bgShift 8s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.contact-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
    position: relative;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(123, 44, 191, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-main {
    position: relative;
    z-index: 2;
}

.telegram-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.telegram-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.telegram-btn:hover::before {
    left: 100%;
}

.telegram-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.telegram-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #229ed9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.telegram-info {
    flex: 1;
}

.telegram-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.telegram-info p {
    font-size: 1rem;
    color: #00d4ff;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.telegram-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.contact-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-note p {
    margin: 10px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-note strong {
    color: #00d4ff;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    space-y: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Base Layout */
    .container {
        padding: 0 20px;
    }
    
    /* Navigation - Hidden on Mobile */
    nav {
        display: none !important;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        background: #ffffff !important;
        width: 25px;
        height: 3px;
        display: block;
    }
    
    .nav-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        display: flex;
    }
    
    .nav-menu.active {
        max-height: 300px;
        opacity: 1;
    }
    
    /* Fix scroll offset for mobile */
    #services {
        scroll-margin-top: 80px;
    }
    
    #pricing {
        scroll-margin-top: 80px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section - Fixed */
    .hero {
        padding: 60px 0 100px;
        min-height: auto;
        position: relative;
    }
    
    .hero-content {
        padding: 20px;
        width: 100%;
        text-align: center;
        position: relative;
    }
    
    .hero-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.75rem;
        padding: 6px 12px;
        background: rgba(0, 212, 255, 0.15);
        border: 1px solid rgba(0, 212, 255, 0.4);
        border-radius: 25px;
        width: fit-content;
        margin: 0 auto 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    .pulse-dot {
        width: 6px;
        height: 6px;
        background: #00d4ff;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats .stat-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-width: auto;
        padding: 18px 25px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .stat-card:hover::before {
        left: 100%;
    }
    
    .stat-card:hover {
        border-color: rgba(0, 212, 255, 0.6);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.25);
    }
    
    .stat-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: #00d4ff;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }
    
    /* Stats Section - Fixed */
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 25px 20px;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 15px;
        position: relative;
        overflow: hidden;
    }
    
    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .stat-item:hover::before {
        left: 100%;
    }
    
    .stat-item:hover {
        border-color: rgba(0, 212, 255, 0.4);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    }
    
    .stat-number {
        font-size: 1.8rem;
        color: #00d4ff;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
        color: #00d4ff;
    }
    
    /* Services Section - Fixed */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 15px;
    }
    
    /* Features Section - Fixed */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    /* Pricing Section - Fixed */
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-price .amount {
        font-size: 2.2rem;
    }
    
    /* CTA Section - Fixed */
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
        margin: 25px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .btn-primary.mega {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .btn-secondary {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    /* Footer - Fixed */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .logo-text-main {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .telegram-cards {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    
    .telegram-card {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 18px;
        gap: 15px;
    }
    
    .telegram-icon-bg {
        width: 50px;
        height: 50px;
    }
    
    .telegram-icon-bg svg {
        width: 28px;
        height: 28px;
    }
    
    .telegram-name {
        font-size: 1.1rem;
    }
    
    .telegram-role {
        font-size: 0.9rem;
    }
    
    .telegram-username {
        font-size: 0.9rem;
    }
    
    /* Section Headers - Fixed */
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Contact Page Mobile */
    .contact-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .contact-hero-content {
        padding: 20px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .telegram-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .telegram-btn {
        padding: 20px;
        gap: 15px;
    }
    
    .telegram-icon {
        width: 50px;
        height: 50px;
    }
    
    .telegram-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .telegram-info h3 {
        font-size: 1.1rem;
    }
    
    .telegram-info p {
        font-size: 0.9rem;
    }
    
    .telegram-info span {
        font-size: 0.8rem;
    }
    
    .contact-note {
        margin-top: 40px;
        padding: 20px;
    }
    
    .contact-note p {
        font-size: 0.9rem;
        margin: 8px 0;
    }

    /* Section CTA Mobile */
    .section-cta {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .section-cta .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: auto;
        max-width: 280px;
    }

    /* Hide complex backgrounds on mobile */
    .hero-bg, .services-overlay, .features-bg, .contact-hero-bg {
        opacity: 0.3;
    }
    
    .neural-network {
        opacity: 0.2;
    }
    
    .neural-node {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-text-main {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .telegram-card {
        padding: 15px;
        gap: 12px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-card, .service-card, .feature-card {
        padding: 20px 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
}

/* Original Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* Contact Page Additional Styles */
.contact-content {
    padding: 80px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-main {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.contact-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-main > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.telegram-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.telegram-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.telegram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.telegram-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    flex-shrink: 0;
}

.telegram-icon svg {
    width: 30px;
    height: 30px;
}

.telegram-info {
    flex: 1;
    text-align: left;
}

.telegram-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.telegram-info p {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    opacity: 0.9;
}

.telegram-info span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-note p {
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.contact-item.featured-contact {
    border: 2px solid #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    position: relative;
}

.contact-item.featured-contact::before {
    content: 'BEST WAY TO REACH US';
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-text small {
    display: block;
    font-size: 0.85rem;
    color: #00d4ff;
    font-weight: 500;
    margin-top: 2px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu .active {
    color: #00d4ff;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-container {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-main h2 {
        font-size: 2rem;
    }
    
    .telegram-btn {
        padding: 20px;
        gap: 20px;
    }
    
    .telegram-icon {
        width: 50px;
        height: 50px;
    }
    
    .telegram-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .telegram-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-note {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}