

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


.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin: 60px 0;
    overflow: hidden;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--text-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(35, 65, 148, 0.3), rgba(0, 212, 255, 0.3));
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}


.section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.section-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-content {
    text-align: center;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.icon-circle:hover {
    transform: scale(1.1);
    background: rgba(35, 65, 148, 0.8);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

.section h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}


.about-section {
    background: linear-gradient(135deg, rgba(35, 65, 148, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(35, 65, 148, 0.8);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
}


.services-section {
    margin: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(35, 65, 148, 0.9);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.25);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 32px;
    margin-right: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(35, 65, 148, 0.3);
}


.advantages-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(35, 65, 148, 0.05));
    border-radius: 30px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-15px);
    background: rgba(35, 65, 148, 0.9);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.25);
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
}

.advantage-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.advantage-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.advantage-features {
    margin-top: 25px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}


.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(35, 65, 148, 0.9), rgba(0, 212, 255, 0.7));
    border-radius: 30px;
    padding: 80px 40px;
    margin: 80px 0;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    box-shadow: 0 8px 25px rgba(35, 65, 148, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary-blue), #00b8e6);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 65, 148, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.decoration-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation: rotate 20s linear infinite;
}

.decoration-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

.decoration-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 60px 20px;
        margin: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 300px;
        margin: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-item, .service-card, .advantage-card {
        padding: 25px 15px;
    }
    
    .advantage-number {
        font-size: 36px;
    }
    
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}