/* Font Loading */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf') format('truetype');
}

/* Enhanced Professional Design Styles */
.hero-modern {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 20px 120px;
}
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.03));
}
.hero-modern-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #93c5fd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.hero-modern h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    min-height: 56px;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(37, 99, 235, 0.4);
    background: #f8fafc;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.hero-trust {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}
.trust-icon {
    color: #60a5fa;
    font-weight: 700;
    font-size: 18px;
}
.stats-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}
.stat-enhanced-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.stat-enhanced-item:hover {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    transform: translateY(-4px);
}
.stat-enhanced-number {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-enhanced-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}
.services-showcase {
    padding: 140px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}
.section-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 100px;
}
.section-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-intro p {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.7;
}
.service-modern-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 42px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-modern-card:hover::before {
    transform: scaleX(1);
}
.service-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}
.service-icon-modern {
    font-size: 56px;
    margin-bottom: 28px;
    transition: transform 0.4s ease;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}
.service-modern-card:hover .service-icon-modern {
    transform: scale(1.15) rotate(8deg);
}
.service-modern-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.service-modern-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
    font-size: 16px;
}
.service-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-modern-card:hover .service-link {
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-modern {
        padding: 100px 20px 80px;
    }
    .stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
        gap: 24px;
    }
    .services-showcase {
        padding: 100px 20px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }
}
