.futuristic-body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.futuristic-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 72, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 174, 152, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 72, 126, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
    position: relative;
}

.title-gradient {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #1f487e, #006effff, #1f487e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: block;
}

.title-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c5aa0;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

.hero-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1f487e;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.features-section {
    padding: 4rem 0;
}

.feature-card {
    background-color: #1F487E; background: linear-gradient(135deg, #1F487E 0%, #2c5aa0 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(31, 72, 126, 0.05) 0%, transparent 50%, rgba(31, 72, 126, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 174, 152, 0.4);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffffffff;
}

.feature-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
}

.highlight-item i {
    color: #1EAE98;
    font-size: 0.9rem;
}

.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(31, 72, 126, 0.1) 0%, rgba(13, 33, 66, 0.2) 100%);
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f487e;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(31, 72, 126, 0.2);
}

.section-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    color: #1f487e;
    font-weight: 300;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #1F487E; background: linear-gradient(135deg, #1F487E 0%, #2c5aa0 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(31, 72, 126, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #ffffffff;
}

.benefit-content h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    margin: 0;
    line-height: 1.5;
}

.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(31, 72, 126, 0.2) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #1f487e, #0077ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-family: 'Ubuntu', sans-serif;
    color: #1f487e;
    font-size: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.2rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .benefits-section {
        padding: 2rem 0;
    }
}