﻿
.sparkr2-main-container {
    
    font-family: sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f3a 50%, #2d1b4e 100%);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.sparkr2-stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkr2-star-element {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.sparkr2-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sparkr2-hero-header {
    text-align: center;
    margin-bottom: 60px;
    animation: float 6s ease-in-out infinite;
}

.sparkr2-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .sparkr2-brand-badge:hover {
        background: rgba(147, 51, 234, 0.3);
        transform: scale(1.05);
    }

.sparkr2-ai-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sparkr2-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkr2-text-highlight {
    color: #06b6d4;
}

.sparkr2-hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 50px;
}

.sparkr2-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.sparkr2-metric-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .sparkr2-metric-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(147, 51, 234, 0.3);
    }

.sparkr2-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.sparkr2-metric-label {
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.sparkr2-services-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(15px);
}

.sparkr2-services-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkr2-services-subtitle {
    font-size: 1.1rem;
    color: #E2E8F0;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sparkr2-services-description {
    font-size: 1rem;
    color: #CBD5E1;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sparkr2-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.sparkr2-feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .sparkr2-feature-card:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(139, 92, 246, 0.3);
    }

.sparkr2-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.sparkr2-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.sparkr2-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.sparkr2-feature-text {
    font-size: 0.95rem;
    color: #CBD5E1;
    line-height: 1.5;
}

.sparkr2-cta-section {
    text-align: center;
    margin: 80px 0;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

    .sparkr2-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, rgba(255, 165, 0, 0.1) 0px, rgba(255, 165, 0, 0.1) 10px, transparent 10px, transparent 20px );
        animation: float 20s ease-in-out infinite;
        pointer-events: none;
    }

.sparkr2-cta-content {
    position: relative;
    z-index: 2;
}

.sparkr2-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FF9500, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.sparkr2-cta-subtitle {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 32px;
    line-height: 1.4;
}

.sparkr2-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF6B00;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .sparkr2-cta-phone:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 107, 0, 0.4);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
    }

.sparkr2-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 16px;
}

    .sparkr2-primary-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
    }

.sparkr2-animation-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Counter Animation */
.sparkr2-animated-counter {
    font-family: sans-serif;
}

@media (max-width: 768px) {
    .sparkr2-content-wrapper {
        padding: 20px 15px;
    }

    .sparkr2-metrics-grid {
        grid-template-columns: 1fr;
    }

    .sparkr2-features-grid {
        grid-template-columns: 1fr;
    }

    .sparkr2-services-section {
        padding: 40px 20px;
    }

    .sparkr2-services-title {
        font-size: 1.6rem;
    }
}

/*section 2*/

.services-section {
    background: linear-gradient(135deg, #0B1426 0%, #1E293B 50%, #334155 100%);
    padding: 5rem 1.5rem;
    min-height: 100vh;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
    ..sparkr2-feature-card{
        width: 80%
    }
}

.gradient-text-blue {
    background: linear-gradient(to right, #60A5FA, #A5B4FC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-white {
    background: linear-gradient(to right, white, #DBEAFE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 48rem;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.5rem;
    }
}

.service-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4F46E5, #7C3AED, #60A5FA);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-color: rgba(79, 70, 229, 0.4);
        box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.service-icon {
    width: 4rem;
    height: 4rem;
    /*background: rgba(79, 70, 229, 0.1);*/
    background: #7352F3;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    /*background: rgba(79, 70, 229, 0.2);*/
    transform: scale(1.1);
    background: lightblue;
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #6366F1;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(79, 70, 229, 0.1);
    transition: color 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(79, 70, 229, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .service-features li {
        color: #D1D5DB;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .service-features li::before {
            content: '✓';
            color: #10B981;
            font-weight: bold;
            width: 1rem;
        }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #818CF8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .service-link:hover {
        color: white;
        transform: translateX(5px);
    }

    .service-link svg {
        width: 1rem;
        height: 1rem;
        transition: transform 0.3s ease;
    }

    .service-link:hover svg {
        transform: translateX(3px);
    }

.cta-section {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #60A5FA, #A5B4FC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.primary-button {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
    text-decoration: none;
    display: inline-block;
}

    .primary-button:hover {
        transform: scale(1.05);
    }

.secondary-button {
    border: 2px solid #818CF8;
    color: #818CF8;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .secondary-button:hover {
        background-color: #818CF8;
        color: white;
    }

/* Animation on scroll */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .service-card.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        transition-delay: 0.4s;
    }

    .service-card:nth-child(5) {
        transition-delay: 0.5s;
    }

    .service-card:nth-child(6) {
        transition-delay: 0.6s;
    }



.header {
    text-align: center;
    margin-bottom: 60px;
}

    .header h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #ffffff, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .header .highlight {
        color: #22c55e;
    }

    .header p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

/*.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}
*/
.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

    .feature-item::before {
        /*content: "✓";
        color: #22c55e;
        font-weight: bold;
        margin-right: 10px;
        font-size: 14px;*/
    }

.learn-more-btn {
    background: transparent;
    border: none;
    color: #22c55e;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .learn-more-btn:hover {
        color: #16a34a;
        transform: translateX(4px);
    }

    .learn-more-btn::after {
        content: "→";
        transition: transform 0.3s ease;
    }

    .learn-more-btn:hover::after {
        transform: translateX(4px);
    }

/* Expanded Content */
.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 0;
    
}

    .expanded-content.active {
        max-height: 800px;
        margin-top: 20px;
    }

.detail-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.detail-title {
    font-size: 16px;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 8px;
}

.detail-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 12px;
}

.detail-feature {
    color: rgba(255, 255, 255, 0.7);
    padding: 2px 0;
}

    .detail-feature::before {
        content: "•";
        color: #22c55e;
        margin-right: 8px;
        font-weight: bold;
    }

/*@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }

    .header h1 {
        font-size: 36px;
    }
}
*/
/*Additional check*/


.services-section {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transition: left 0.5s ease;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
        border-color: rgba(39, 174, 96, 0.3);
    }

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    /*background: #27AE60;*/
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #cbd5e1;
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-benefits {
    list-style: none;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

    .service-benefits li {
        padding: 0.25rem 0;
        position: relative;
        padding-left: 1.5rem;
    }

        .service-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            /*color: #27AE60;*/
            font-weight: bold;
        }

.learn-more-btn {
    color: #27AE60;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    transition: all 0.3s ease;
}

    .learn-more-btn:hover {
        color: #2ECC71;
    }

    .learn-more-btn::after {
        content: '→';
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .learn-more-btn:hover::after {
        transform: translateX(3px);
    }

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .service-card {
        padding: 0.5rem;
        min-height: 250px;
        width: 100%;
    }

    .header h1 {
        font-size: 36px;
    }
}


.hero-section {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.brand-tag {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.main-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.sub-headline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #cbd5e1;
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .stat-card:hover::before {
        left: 100%;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    }

    .cta-button.secondary {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
    }

        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

.trust-indicators {
    margin-top: 3rem;
    text-align: center;
    color: #64748b;
}

.trust-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.credential {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.human-touch {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #a7f3d0;
    font-style: italic;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/*
.service-card {
    margin-bottom: 20px;
}
*/
.service-header {
    display: flex;
    align-items: center; /* icon + title in one line */
    gap: 10px; /* spacing between icon and title */
    margin-bottom: 8px; /* space before description */
}

.service-icon {
    flex-shrink: 0; /* keep icon fixed size */
}

.service-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-description {
    margin: 0;
    line-height: 1.5;
}