* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.15;
    z-index: -1;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a {
    margin-left: 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    transition: width 0.3s;
}

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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    font-size: 80px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.subtitle {
    font-size: 24px;
    margin-top: 20px;
    color: #aaa;
}

.cta-button {
    margin-top: 40px;
    padding: 15px 40px;
    font-size: 18px;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: #ff006e;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: #8338ec;
    top: 50%;
    right: 15%;
    animation-delay: 5s;
}

.shape3 {
    width: 350px;
    height: 350px;
    background: #3a86ff;
    bottom: 10%;
    left: 40%;
    animation-delay: 10s;
}

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

.section {
    padding: 100px 20px;
    position: relative;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

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

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.card-hover:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.3);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    color: #aaa;
    line-height: 1.6;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 0, 110, 0.2);
}

.benefit-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #bbb;
    line-height: 1.6;
}

.limits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.limit-item {
    background: rgba(255, 0, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff006e;
    transition: all 0.3s;
}

.limit-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.limit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.limit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff6b9d;
}

.limit-item p {
    color: #aaa;
    line-height: 1.6;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content h3 {
    font-size: 32px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.team-member {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 10px 20px;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
    border-radius: 10px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.4), rgba(131, 56, 236, 0.4));
}

.footer-text {
    color: #666;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .glitch {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links a {
        margin-left: 15px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .team {
        flex-direction: column;
        gap: 20px;
    }
}