.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-content {
    padding: 2rem 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(30, 174, 152, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #1f487e;
}

.feature-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f487e;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1f487e;
    margin-bottom: 2rem;
    font-weight: 300;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c5aa0;
    font-family: 'Ubuntu', sans-serif;
}

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

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.futuristic-image {
    border-radius: 20px;
    transition: transform 0.4s ease;
    filter: brightness(1.1) contrast(1.1);
}

.feature-image:hover .futuristic-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(31, 72, 126, 0.05) 0%, rgba(31, 72, 126, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-image:hover .image-overlay {
    opacity: 1;
}

.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.1rem;
    color: #1f487e;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 174, 152, 0.5);
    box-shadow: 0 20px 60px rgba(30, 174, 152, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 174, 152, 0.3);
}

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

.benefit-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    color: #ffffffff;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.2rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .feature-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}