.elite-tech-services-hero {
    padding: 100px 0 60px; 
}

.elite-tech-services-hero__content {
    max-width: 760px;
}

.elite-tech-services-hero__content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 900;
    margin-bottom: 24px;
}

.elite-tech-services-hero__content p:last-child {
    max-width: 60ch;
    margin-top: 0;
    color: var(--elite-text-soft);
    font-size: 1.1rem;
    line-height: 1.7;
}

.elite-tech-services-grid-section {
    padding-top: 24px;
}

.elite-tech-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px; 
}

.elite-tech-service-card {
    position: relative;
    border-radius: var(--elite-radius-md);
    z-index: 1;
    overflow: hidden;
    padding: 1px; 
    background: rgba(255, 255, 255, 0.06); 
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow; 
}

.elite-tech-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255,255,255,0.15);
    background: rgba(138, 43, 226, 0.4); 
}

.elite-tech-service-card:active {
    transform: scale(0.98);
}

.elite-tech-service-card__bg {
    position: relative;
    z-index: 2;
    background: rgba(4, 10, 18, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: calc(var(--elite-radius-md) - 1px);
    padding: 48px 36px; 
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.elite-tech-service-card__blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--elite-primary), var(--elite-accent));
    opacity: 0;
    filter: blur(45px); 
    animation: blob-roam 8s infinite alternate ease-in-out;
    transition: opacity 0.6s ease;
    will-change: transform, opacity; 
}

.elite-tech-service-card:hover .elite-tech-service-card__blob {
    opacity: 0.25; 
}

@keyframes blob-roam {
    0% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-30%, -70%) scale(1.1); }
    66% { transform: translate(-70%, -30%) scale(0.9); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.elite-tech-service-card__bg h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 800;
}

.elite-tech-service-card__bg p {
    color: var(--elite-text-soft);
    line-height: 1.6;
    font-size: 1rem;
}

.elite-tech-differentials__container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.elite-tech-panel {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.elite-tech-panel h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 850;
}

.elite-tech-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    flex: 1;
}

.elite-tech-advantage-item {
    padding: 24px 32px; 
    border: 1px solid rgba(255, 255, 255, 0.04); 
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02); 
    transition: all var(--elite-transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; 
}

.elite-tech-advantage-item:hover {
    border-color: rgba(138, 43, 226, 0.2);
    background: rgba(138, 43, 226, 0.04);
    transform: translateX(4px);
}

.elite-tech-advantage-item h3 {
    margin-bottom: 6px;
    font-size: 1.1rem; 
    font-weight: 750;
    line-height: 1.3;
}

.elite-tech-advantage-item p {
    color: var(--elite-text-soft);
    line-height: 1.6;
    font-size: 0.95rem;
}

.elite-tech-panel--highlight {
    padding: 56px 48px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elite-tech-panel__eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.25em;
    line-height: 1.4;
}

.elite-tech-panel--highlight h2 {
    margin-bottom: 24px; 
    line-height: 1.25;
}

.elite-tech-panel--highlight > p {
    margin-bottom: 32px; 
    line-height: 1.7;
    font-size: 1.05rem;
}

.elite-tech-panel--highlight .elite-tech-cta {
    margin-bottom: 40px; 
    align-self: flex-start;
}

.elite-tech-contact-list {
    display: grid;
    gap: 16px; 
    margin-top: 0; 
}

.elite-tech-contact-list li {
    line-height: 1.6;
    font-size: 1.05rem;
}

.elite-tech-contact-list strong {
    display: inline-block;
    margin-right: 6px;
}

@media (max-width: 1080px) {
    .elite-tech-services-grid,
    .elite-tech-differentials__container {
        grid-template-columns: 1fr;
    }
    
    .elite-tech-panel { 
        height: auto; 
    }
}

@media (max-width: 820px) {
    .elite-tech-service-card__bg { 
        padding: 40px 32px; 
    }
    
    .elite-tech-panel,
    .elite-tech-panel--highlight { 
        padding: 40px 32px; 
    }
}

@media (max-width: 640px) {
    .elite-tech-services-hero { 
        padding: 60px 0 32px; 
    }
    
    .elite-tech-services-hero__content h1 { 
        font-size: clamp(2.4rem, 9vw, 3.2rem); 
    }
    
    .elite-tech-services-grid-section { 
        padding-top: 32px; 
    }
    
    .elite-tech-service-card__bg, 
    .elite-tech-panel,
    .elite-tech-panel--highlight { 
        padding: 32px 24px; 
    }
    
    .elite-tech-advantage-list {
        margin-top: 32px;
    }
    
    .elite-tech-advantage-item {
        padding: 24px; 
        flex: none;
    }
    
    .elite-tech-panel--highlight .elite-tech-cta { 
        width: 100%; 
    }
}