/* Home page specific styles */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section h3 {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(42, 219, 92, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2adb5c 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background: #2adb5c;
    color: #fff;
    border: 2px solid #2adb5c;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.cta-primary:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 219, 92, 0.3);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #444444;
}

.cta-secondary:hover {
    border-color: #2adb5c;
    background: rgba(42, 219, 92, 0.1);
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid #333333;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 219, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #2adb5c;
    box-shadow: 0 12px 40px rgba(42, 219, 92, 0.1);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(42, 219, 92, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
    border: 1px solid rgba(42, 219, 92, 0.1);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(even) {
    animation-direction: reverse;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 219, 92, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(42, 219, 92, 0.3);
    box-shadow: 
        0 20px 40px rgba(42, 219, 92, 0.15),
        inset 0 1px 0 rgba(42, 219, 92, 0.1);
    background: linear-gradient(145deg, rgba(42, 219, 92, 0.05) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover .stat-number::after {
    width: 100%;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(42, 219, 92, 0.3));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: block;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(42, 219, 92, 0.2);
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2adb5c 0%, #22c55e 100%);
    transition: width 0.4s ease;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    color: #999999;
    font-size: 0.875rem;
    margin-top: 8px;
    line-height: 1.4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid #333333;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #2adb5c;
    box-shadow: 0 8px 30px rgba(42, 219, 92, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2adb5c;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-item {
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}