
:root {
    --primary-blue: #001233;
    --secondary-blue: #003366;
    --accent-blue: #0066FF;
    --dark-blue: #000814;
    --medium-blue: #0044CC;
    --light-blue: #3385FF;
    --navy-gradient: linear-gradient(135deg, #000814 0%, #001233 50%, #003366 100%);
    
    --text-light: #FFFFFF;
    --text-gray: #E6F1FF;
    --text-dark: #1A1A2E;
    
    --gray-bg: #F0F5FF;
    --card-bg: rgba(255, 255, 255, 0.92);
    --glass-bg: rgba(0, 102, 255, 0.1);
    --glass-border: rgba(0, 102, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 51, 153, 0.1);
    --shadow-hover: 0 12px 48px rgba(0, 102, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--gray-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800; 
    letter-spacing: -0.5px;
    line-height: 1.1;
}



.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 18, 51, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-light);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 5px 0;
}

.logo-image {
    height: 1.5em;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.4));
    line-height: 1;
    height: 40px;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.logo-icon:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-text span {
    color: var(--accent-blue);
    -webkit-text-fill-color: var(--accent-blue);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--text-light);
    background: rgba(0, 102, 255, 0.1);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links .menu-cta {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    margin-left: 10px;
    border: none;
    height: auto !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.nav-links .menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, var(--medium-blue), var(--accent-blue));
}

.nav-links .menu-cta::before {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.mobile-menu-btn:hover {
    background: rgba(0, 102, 255, 0.2);
}

.hero {
    background: var(--navy-gradient);
    color: var(--text-light);
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    margin-top: 4rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
    min-width: 120px;
    background: rgba(0, 102, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    animation: slideUp 0.8s ease-out 0.4s both;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button .button-icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.service-btn {
    width: 45%;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.featured-btn {
    background: linear-gradient(135deg, #0044CC, #0066FF);
}


section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--secondary-blue);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--accent-blue));
    border-radius: 2px;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--accent-blue));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    color: var(--accent-blue);
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}


.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
}

.service-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2.5rem 2rem;
    position: relative;
}

.service-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-content li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}


.how-it-works {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0; 
}

.how-it-works .section-title h2 {
    color: white;
    position: relative;
    font-size: 3rem; 
    margin-bottom: 1.5rem;
}

.how-it-works .section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 6rem; 
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}


.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 60px); 
    right: calc(12.5% + 60px); 
    height: 3px; 
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        var(--accent-blue) 15%,
        var(--accent-blue) 85%, 
        transparent 100%
    );
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}


.step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px; 
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.step:hover {
    transform: translateY(-15px); 
    background: rgba(0, 102, 255, 0.12);
    border-color: var(--accent-blue);
    box-shadow: 
        0 20px 40px rgba(0, 102, 255, 0.2),
        0 0 30px rgba(0, 102, 255, 0.1); 
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--medium-blue), var(--accent-blue));
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem; 
    box-shadow: 
        0 10px 25px rgba(0, 102, 255, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2); 
    position: relative;
    z-index: 3; 
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15); 
    box-shadow: 
        0 15px 35px rgba(0, 102, 255, 0.6),
        0 0 0 10px rgba(0, 102, 255, 0.1), 
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}


.step-number::after {
    content: '';
    position: absolute;
    width: 82px;
    height: 82px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
    z-index: -1;
    top: -6px;
    left: -6px;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
        border-width: 2px;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
        border-width: 1px;
    }
}


.step h3 {
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}


.step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.step:hover h3::after {
    width: 80px; 
}


.step p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7; 
    font-size: 1.05rem; 
    margin: 0;
    flex-grow: 1;
}


@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .steps-container::before {
        top: 35px;
        left: calc(25% + 60px);
        right: calc(25% + 60px);
        height: 3px;
    }
    
    .steps-container::after {
        content: '';
        position: absolute;
        top: 35px;
        bottom: 35px;
        left: 50%;
        width: 3px;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            var(--accent-blue) 15%,
            var(--accent-blue) 85%,
            transparent 100%
        );
        z-index: 1;
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 6rem 0;
    }
    
    .how-it-works .section-title h2 {
        font-size: 2.3rem;
    }
    
    .how-it-works .section-title p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
        padding: 0;
    }
    
    .steps-container::before {
        display: none; 
    }
    
    .steps-container::after {
        content: '';
        position: absolute;
        top: 35px;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            var(--accent-blue) 10%,
            var(--accent-blue) 90%,
            transparent 100%
        );
        z-index: 1;
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    }
    
    .step {
        max-width: 400px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
    }
    
    .step:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .how-it-works .section-title h2 {
        font-size: 2rem;
    }
    
    .how-it-works .section-title p {
        font-size: 1rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-number::after {
        width: 72px;
        height: 72px;
        top: -6px;
        left: -6px;
    }
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 2px, transparent 3px),
        radial-gradient(circle at 60% 70%, rgba(0, 102, 255, 0.04) 1px, transparent 2px),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 255, 0.03) 1px, transparent 2px);
    background-size: 300px 300px, 200px 200px, 150px 150px;
    animation: particleFloat 25s linear infinite;
    opacity: 0.5;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 100px 100px, 200px 200px;
    }
    100% {
        background-position: 300px 300px, 200px 200px, 100px 100px;
    }
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 68, 204, 0.15) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}


footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--accent-blue);
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.certifications {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--medium-blue), var(--accent-blue), var(--medium-blue));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow:hover::after {
    opacity: 0.3;
}


@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 10rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.3rem;
    }
    
    .features-grid,
    .services-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card.featured {
        transform: none;
        order: -1;
    }
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 18, 51, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        animation: slideDown 0.3s ease-out;
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    .nav-links.active li {
        height: auto;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-links.active a {
        height: auto;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
        border-radius: 8px;
        background: rgba(0, 102, 255, 0.05);
        border: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    .nav-links.active .menu-cta {
        margin: 1rem auto 0;
        max-width: 250px;
        width: 100%;
        display: flex;
        justify-content: center;
        background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    }
    
    .hero {
        padding: 8rem 0 5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: auto;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

.feature-card,
.service-card,
.step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.service-card.visible,
.step.visible {
    opacity: 1;
    transform: translateY(0);
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 51, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.2);
    overflow: hidden;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3 i {
    color: var(--accent-blue);
    font-size: 1.8rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--accent-blue);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

.modal-content {
    padding: 2.5rem;
}

.modal-content h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 1.8rem 0 0.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.modal-content h4:first-child {
    margin-top: 0;
}

.modal-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--medium-blue), var(--accent-blue));
    border-radius: 2px;
}

.modal-content p {
    color: var(--secondary-blue);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.modal-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-content ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--secondary-blue);
    line-height: 1.6;
}

.modal-content ul li::before {
    content: '•';
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
    color: var(--secondary-blue);
    font-size: 0.9rem;
}

.modal-footer p {
    margin: 0;
    opacity: 0.8;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 102, 255, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--medium-blue);
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 1.8rem;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1.2rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-content h4 {
        font-size: 1.1rem;
    }
}


.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 18, 51, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 30px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-btn:hover {
    background: rgba(0, 18, 51, 0.95);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
}

.language-btn i {
    font-size: 1rem;
}

.language-text {
    min-width: 20px;
    text-align: center;
}

.language-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-btn.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    bottom: 100%;
    top: auto;
    left: 0;
    margin-bottom: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    overflow: hidden;
    display: none;
    z-index: 1002;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.language-dropdown.show {
    display: block;
    animation: slideUp 0.2s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--accent-blue);
}

.language-option.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    font-weight: 600;
}

.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.check-icon {
    margin-left: auto;
    color: var(--accent-blue);
    font-size: 0.9rem;
    display: none;
}

.language-option.active .check-icon {
    display: inline-block;
}

@media (max-width: 850px) {
    .language-switcher {
        bottom: 15px;
        right: 15px;
    }
    
    .language-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .language-dropdown {
        min-width: 140px;
    }
    
    .language-option {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .language-switcher {
        bottom: 12px;
        right: 12px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        bottom: 70px;
    }
}


#typewriter-text {
    display: inline-block;
    min-height: 1.2em;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    font-weight: 300;
    color: var(--accent-blue);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero h1 {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        min-height: 140px;
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .cursor {
        font-size: 2.5rem;
        vertical-align: middle;
    }
    
    #typewriter-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        min-height: 160px;
        font-size: 1.8rem;
    }
    
    .cursor {
        font-size: 2rem;
    }
    
    #typewriter-text {
        font-size: 1.8rem;
    }
}



.image-carousel-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, var(--navy-gradient), var(--gray-bg));
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(0, 18, 51, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideIn 0.8s forwards;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}


.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 102, 255, 0.2),
        rgba(0, 18, 51, 0.4)
    );
    z-index: 1;
    mix-blend-mode: multiply;
}


.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, 
        rgba(0, 18, 51, 0.95) 0%,
        rgba(0, 18, 51, 0.7) 50%,
        transparent 100%);
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
}

.carousel-caption h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    color: var(--text-gray);
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
}

.disintegration-effect {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 3;
    pointer-events: none;
}

.disintegration-effect.left {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 41, 1) 0%,
        rgba(10, 14, 41, 0.8) 20%,
        rgba(10, 14, 41, 0.4) 40%,
        rgba(10, 14, 41, 0.1) 60%,
        transparent 100%
    );
}

.disintegration-effect.right {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(10, 14, 41, 1) 0%,
        rgba(10, 14, 41, 0.8) 20%,
        rgba(10, 14, 41, 0.4) 40%,
        rgba(10, 14, 41, 0.1) 60%,
        transparent 100%
    );
}


.disintegration-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 2px, transparent 3px),
        radial-gradient(circle at 40% 30%, rgba(0, 102, 255, 0.08) 1px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(0, 102, 255, 0.06) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.04) 1px, transparent 2px);
    background-size: 200px 200px, 150px 150px, 100px 100px, 80px 80px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
}

.disintegration-effect.left::before {
    animation-direction: reverse;
}


.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.carousel-indicator.active {
    background: var(--accent-blue);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.carousel-indicator.active::before {
    left: 100%;
}

.carousel-indicator:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 255, 0.2);
    border: 2px solid rgba(0, 102, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: rgba(0, 102, 255, 0.4);
    border-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav i {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, 150px 150px, 100px 100px, 80px 80px;
    }
}

@keyframes slideGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.3),
            inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 102, 255, 0.2),
            0 0 40px rgba(0, 102, 255, 0.3),
            inset 0 0 0 1px rgba(0, 102, 255, 0.2);
    }
}

.carousel-container.changing {
    animation: slideGlow 0.8s ease;
}

@media (max-width: 992px) {
    .carousel-container {
        height: 350px;
        border-radius: 15px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .disintegration-effect {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.3rem;
    }
    
    .disintegration-effect {
        width: 80px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .image-carousel-section {
        padding: 1rem 0;
    }
    
    .carousel-container {
        height: 250px;
        border-radius: 10px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .disintegration-effect {
        width: 60px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

header {
    background: linear-gradient(
        90deg,
        var(--dark-blue) 0%,
        var(--primary-blue) 25%,
        var(--secondary-blue) 50%,
        var(--primary-blue) 75%,
        var(--dark-blue) 100%
    );
    background-size: 400% 100%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.stat {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat:hover {
    transform: 
        translateY(-10px) 
        rotateX(5deg) 
        rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(0, 102, 255, 0.2);
}

.stat h3 {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 102, 255, 0.4);
}

.services-container {
    perspective: 1000px;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    will-change: transform;
    transform-origin: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card {
    --glare-x: 50%;
    --glare-y: 50%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--glare-x) var(--glare-y),
        rgba(0, 102, 255, 0.08) 0%,
        rgba(0, 102, 255, 0.03) 25%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border: 2px solid;
    border-image: linear-gradient(135deg, #0066ff, #0099ff) 1; 
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15); 
}

.service-card.featured::before {
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.1) 0%, 
        rgba(0, 102, 255, 0.15) 50%,
        rgba(0, 102, 255, 0.1) 100%);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(0, 102, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 380px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.2), 
        rgba(0, 102, 255, 0.1),
        rgba(0, 102, 255, 0.2)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-10px) scale(1.1);
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.15), 
        rgba(0, 102, 255, 0.25)
    );
    box-shadow: 
        0 10px 25px rgba(0, 102, 255, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    animation: iconGlow 2s infinite linear;
}

@keyframes iconGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--medium-blue), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.feature-card:hover h3::after {
    width: 80px;
}

.feature-card p {
    color: var(--secondary-blue);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: all 0.5s ease;
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
}

.feature-card:hover p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    color: var(--medium-blue);
    font-size: 0.9rem;
}

.feature-card:hover .feature-details {
    opacity: 1;
    max-height: 100px;
    margin-top: 1.5rem;
}

.feature-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0 0;
}

.feature-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}



.report-generation-section {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.report-generation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.report-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.report-text {
    flex: 1;
}

.report-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B9BFF 0%, #003FFF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.report-description {
    color: #1A1A2E;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.report-features {
    list-style: none;
    padding: 0;
}

.report-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #1A1A2E;
    font-size: 1rem;
}

.report-features li i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.5));
}

.report-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.report-image:hover {
    transform: scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 30px 50px rgba(0, 102, 255, 0.4);
}

.report-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.report-badge i {
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 968px) {
    .report-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .report-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .report-description {
        text-align: center;
    }
    
    .report-features {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .report-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .report-badge {
        right: 0;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .report-generation-section {
        padding: 1.5rem;
    }
    
    .report-title {
        font-size: 1.5rem;
    }
    
    .report-description {
        font-size: 1rem;
    }
    
    .report-features li {
        font-size: 0.95rem;
    }
    
    .report-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

}

.ransomware-workflow {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.ransomware-workflow .section-title h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ransomware-workflow .section-title .accent-text {
    color: var(--accent-blue);
    position: relative;
    display: inline-block;
}

.ransomware-workflow .section-title .accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.ransomware-workflow .section-title p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.versions-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.version-card {
    width: 100%;
    background: rgba(0, 18, 51, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.version-card.offensive {
    border-color: rgba(36, 12, 255, 0.3);
    box-shadow: 0 20px 40px rgba(68, 102, 255, 0.15);
}

.version-card.offensive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0e1eff, #0e1eff, #0e1eff);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

.version-card.simulator {
    border-color: rgba(0, 255, 34, 0.3);
}

.version-card.simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0eff1a, #0eff1a, #0eff1a);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.version-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.version-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.version-card.offensive .version-icon {
    background: rgba(68, 243, 255, 0.15);
    color: #00eeff;
    box-shadow: 0 0 30px rgba(68, 255, 215, 0.3);
}

.version-card.simulator .version-icon {
    background: rgba(0, 255, 21, 0.15);
    color: #00ff4c;
    box-shadow: 0 0 30px rgba(0, 255, 64, 0.3);
}

.version-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.version-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.version-card.offensive .version-title span {
    color: #0077ff;
}

.version-card.simulator .version-title span {
    color: #00ff4c;
}

.version-badge {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.version-card.offensive .version-badge {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff8888;
}

.version-card.simulator .version-badge {
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 255, 42, 0.3);
    color: var(--light-blue);
}

.version-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.workflow-diagram {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.workflow-node {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    min-height: 180px;
}

.workflow-node:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    background: rgba(0, 102, 255, 0.12);
}

.workflow-node .node-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
    transition: var(--transition);
}

.workflow-node:hover .node-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 102, 255, 0.25);
}

.workflow-node .node-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workflow-node h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.workflow-node p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.node-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--light-blue);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.inline-badge i {
    font-size: 0.6rem;
}

.inline-badge.anti-vm-badge {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff8888;
}

.inline-badge.vps-badge {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--light-blue);
}

.connector-vertical {
    width: 2px;
    height: 35px;
    background: var(--accent-blue);
    margin: 5px 0;
}

.connector-down {
    width: 2px;
    height: 40px;
    background: var(--accent-blue);
    margin: 5px 0;
}

.nodes-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    flex-wrap: wrap;
    margin: 10px 0;
}

.nodes-row .workflow-node {
    flex: 0 1 auto;
    width: 300px;
    margin: 0;
    min-height: 200px;
}

.nodes-row.three-nodes {
    gap: 1.5rem;
}

.nodes-row.three-nodes .workflow-node {
    width: 220px;
    min-height: 180px;
}

.loader-node {
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.12);
    max-width: 650px;
    min-height: 160px;
}

.loader-node .node-icon {
    background: rgba(0, 102, 255, 0.25);
    color: white;
}

.encrypt-node {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.08);
    max-width: 650px;
    min-height: 200px;
}

.encrypt-node .node-icon {
    background: rgba(255, 170, 0, 0.15);
    color: #ffaa00;
}

.encrypt-node h4 {
    color: #ffaa00;
}

.encrypt-stats {
    display: flex;
    gap: 1.5rem;
    margin: 0.75rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.encrypt-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.encrypt-stats i {
    color: #ffaa00;
    font-size: 0.7rem;
}

.decrypt-node {
    border-color: #00cc88;
    background: rgba(0, 204, 136, 0.08);
    max-width: 650px;
    min-height: 160px;
}

.decrypt-node .node-icon {
    background: rgba(0, 204, 136, 0.15);
    color: #00cc88;
}

.decrypt-node h4 {
    color: #00cc88;
}

.stealer-dual {
    display: flex;
    gap: 1.5rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.stealer-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.stealer-item i {
    color: var(--accent-blue);
}

.simulator-coming-soon {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    margin: 2rem;
}

.simulator-coming-soon i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.simulator-coming-soon h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.simulator-coming-soon p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.simulator-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.preview-tag {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--light-blue);
}

@media (max-width: 1200px) {
    .nodes-row {
        gap: 1.5rem;
    }
    
    .nodes-row .workflow-node {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .nodes-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nodes-row .workflow-node,
    .nodes-row.three-nodes .workflow-node,
    .loader-node,
    .encrypt-node,
    .decrypt-node {
        width: 100%;
        max-width: 500px;
        min-height: auto;
    }
    
    .connector-down,
    .connector-vertical {
        height: 25px;
    }
}

@media (max-width: 768px) {
    .ransomware-workflow .section-title h2 {
        font-size: 2rem;
    }
    
    .version-title {
        font-size: 1.6rem;
    }
    
    .workflow-node {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
        min-height: auto;
    }
    
    .workflow-node .node-icon {
        margin-bottom: 0.5rem;
    }
    
    .workflow-node h4 {
        justify-content: center;
    }
    
    .encrypt-stats, .stealer-dual {
        justify-content: center;
    }
    
    .node-tags {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .version-header {
        padding: 1.5rem;
    }
    
    .workflow-diagram {
        padding: 1.5rem;
    }
    
    .version-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .simulator-coming-soon {
        padding: 2rem 1.5rem;
        margin: 1.5rem;
    }
    
    .simulator-coming-soon h4 {
        font-size: 1.5rem;
    }
}

.split-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 60px;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.split-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    background: transparent;
}

.split-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    animation: spinGlow 6s linear infinite;
    transition: all 0.3s ease;
}

@keyframes spinGlow {
    0% {
        box-shadow: 
            -10px -10px 30px #0066ff,
            10px 10px 30px #15FF00;
    }
    25% {
        box-shadow: 
            10px -10px 30px #0066ff,
            -10px 10px 30px #15FF00;
    }
    50% {
        box-shadow: 
            10px 10px 30px #0066ff,
            -10px -10px 30px #15FF00;
    }
    75% {
        box-shadow: 
            -10px 10px 30px #0066ff,
            10px -10px 30px #15FF00;
    }
    100% {
        box-shadow: 
            -10px -10px 30px #0066ff,
            10px 10px 30px #15FF00;
    }
}

.split-image:hover {
    animation-play-state: paused;
    transform: scale(1.01);
    filter: brightness(1.1);
    cursor: pointer;
}

@media (max-width: 768px) {
    .split-image-container {
        margin: 30px auto 40px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .split-image-container {
        margin: 20px auto 30px;
    }
}
