.page-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.page-hero h1 {
    margin-bottom: 16px;
}

.content-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.lead-text {
    font-size: 21px;
    color: #6e6e73;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    background: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #e8e8ed;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    color: #f5f5f7;
}

.value-card:hover {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.value-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #f5f5f7;
}

.value-card p {
    font-size: 15px;
}

.services-detail {
    background: #1a1a1a;
    padding: 80px 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: rgba(35, 35, 35, 0.5);
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    color: #e8e8ed;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-detail-card h2 {
    margin-bottom: 16px;
    font-size: 28px;
    color: #f5f5f7;
}

.service-description {
    font-size: 19px;
    margin-bottom: 0;
    color: #a1a1a6;
    line-height: 1.6;
}

.service-features {
    padding: 30px;
    text-align: left;
}

.service-features h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f5f5f7;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.features-list li {
    font-size: 15px;
    color: #e8e8ed;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #a1a1a6;
    font-size: 16px;
}

.service-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.contact-section {
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #2d2d2d;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #f5f5f7;
}

.info-card p {
    font-size: 15px;
}

.info-card a {
    color: #06c;
}

.positions-section {
    background: #1a1a1a;
}

.positions-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.position-card {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.position-card:hover {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
}

.position-card h3 {
    font-size: 19px;
    color: #f5f5f7;
}

.qualification-text {
    margin-top: 40px;
    font-weight: 700;
    font-size: 17px;
    color: #f5f5f7;
    text-align: center;
}

.application-section {
    background: #1a1a1a;
}

.application-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 21px;
    color: #a1a1a6;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        gap: 40px;
    }
    
    .positions-list {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 17px;
    }
}
