.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;
}

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

.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;
}

.approach-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 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.approach-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(30, 174, 152, 0.2);
    line-height: 1;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-icon i {
    font-size: 2rem;
    color: #ffffffff;
}

.approach-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 1rem;
}

.approach-description {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    line-height: 1.6;
}

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

.content-block {
    padding: 2rem 0;
}

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

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    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;
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(31, 72, 126, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: #1EAE98;
}

.tech-item span {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-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;
}

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

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

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

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

.solution-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;
}

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

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

.solution-icon i {
    font-size: 2rem;
    color: #ffffffff;
}

.solution-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffffff;
    margin-bottom: 1rem;
}

.solution-description {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffffff;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1EAE98;
    font-weight: bold;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(31, 72, 126, 0.2) 0%, rgba(31, 72, 126, 0.05) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1EAE98;
}

.btn-primary {
    background: linear-gradient(45deg, #4e8bdcff, #1f487e);
    color: #1f487e;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1f487e, #1EAE98);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 174, 152, 0.3);
}

.btn-outline {
    background: linear-gradient(45deg, #1f487e, #1EAE98);
    color: #cfcfffff;
}

.btn-outline:hover {
    background: #1EAE98;
    color: #1f487e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 174, 152, 0.3);
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.2rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .approach-card,
    .solution-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}