.services-hero {
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fffe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.services-hero .highlight {
    color: #35D1D1;
}

.services-hero p {
    font-size: 20px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}


/* Services Grid */

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5% 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 50px;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(53, 209, 209, 0.12);
    border: 1px solid rgba(53, 209, 209, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #35D1D1 0%, #2bb8b8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/*.service-card:hover {*/
/*    transform: translateY(-12px);*/
/*    box-shadow: 0 25px 70px rgba(53, 209, 209, 0.25);*/
/*}*/

/*.service-card:hover::before {*/
/*    transform: scaleX(1);*/
/*}*/

.service-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/*.service-card:hover .service-image {*/
/*    transform: scale(1.08);*/
/*}*/

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-content {
    padding: 40px;
}

.service-content h2 {
    font-size: 32px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-content>p {
    font-size: 17px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(53, 209, 209, 0.12) 0%, rgba(53, 209, 209, 0.08) 100%);
    color: #35D1D1;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(53, 209, 209, 0.2);
    transition: all 0.3s;
}

/*.service-card:hover .feature-tag {*/
/*    background: rgba(53, 209, 209, 0.15);*/
/*    border-color: rgba(53, 209, 209, 0.3);*/
/*}*/

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #35D1D1;
    font-weight: 700;
    font-size: 16px;
    transition: gap 0.3s;
}

.view-details span {
    font-size: 20px;
    transition: transform 0.3s;
}

/*.service-card:hover .view-details {*/
/*    gap: 16px;*/
/*}*/

.service-card:hover .view-details span {
    transform: translateX(4px);
}


/* Stats Section */

.stats-section {
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    padding: 80px 5%;
    margin: 60px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item h3 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}


/* CTA Section */

.cta-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 5%;
    text-align: center;
    background: linear-gradient(135deg, #f7fffe 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(53, 209, 209, 0.1);
}

.cta-section h2 {
    font-size: 38px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
    border-radius: 10px;
}


/* Responsive */

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 40px;
    }
    .services-hero p {
        font-size: 17px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 5% 60px;
    }
    .service-image-wrapper {
        height: 240px;
    }
    .service-content {
        padding: 30px 24px;
    }
    .service-content h2 {
        font-size: 26px;
    }
    .service-content>p {
        font-size: 16px;
    }
    .stats-container {
        gap: 35px;
    }
    .stat-item h3 {
        font-size: 42px;
    }
    .stat-item p {
        font-size: 16px;
    }
    .cta-section h2 {
        font-size: 30px;
    }
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-hero h1 {
        font-size: 32px;
    }
    .feature-tag {
        font-size: 13px;
        padding: 6px 14px;
    }
}