.app-hero h1 {
    max-width: 1000px;
    background: linear-gradient( 90deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-hero {
    position: relative;
}

.app-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient( circle, rgba(59, 130, 246, .15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.value-card {
    transition: .4s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, .3);
}

.work-card {
    background: linear-gradient( 135deg, rgba(59, 130, 246, .08), rgba(255, 255, 255, .03));
}

.support-card {
    background: linear-gradient( 135deg, rgba(59, 130, 246, .08), rgba(255, 255, 255, .03));
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
}

.service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: block;
}

.service-details {
    width: 100%;
    max-width: 900px;
}

.service-details h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.service-details h3 {
    font-size: 1.25rem;
    color: #60a5fa;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, .78);
}

.service-panel {
    padding: 50px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    min-height: 700px;
}

@media(max-width:768px) {
    .service-panel {
        padding: 30px 20px;
    }
    .service-image {
        margin-bottom: 25px;
    }
    .service-image img {
        width: 100%;
        max-width: 280px;
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
    }
    .service-details {
        width: 100%;
        max-width: 100%;
    }
    .service-details h2 {
        text-align: center;
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .service-details h3 {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .service-details p {
        text-align: left;
        font-size: .95rem;
        line-height: 1.9;
        color: rgba(255, 255, 255, .82);
        margin: 0;
    }
    .service-panel:hover .service-image img {
        transform: scale(1.02);
    }
}