
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    text-align: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.service-hero-content .icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.service-hero-content p {
    font-size: 1.3rem;
    color: rgba(248, 250, 252, 0.8);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-intro-text p {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-image {
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-features {
    margin-bottom: 80px;
}

.service-features h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--light);
}

.feature-card p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.6;
}

.service-process {
    margin-bottom: 80px;
}

.service-process h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--light);
}

.process-step p {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-cta {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
}

.service-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.related-services {
    margin-bottom: 60px;
}

.related-services h2 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.2);
}

.related-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.related-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--light);
}

.related-card p {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image img {
        height: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-intro-text h2,
    .service-features h2,
    .service-process h2 {
        font-size: 1.8rem;
    }
}
