﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #14b8a6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

    .logo-icon span {
        color: white;
        font-weight: bold;
        font-size: 1.125rem;
    }

.logo-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(45deg, #06b6d4, #14b8a6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 1.5rem;
    font-weight: 300;
    color: #64748b;
    margin-left: 0.25rem;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: #3b82f6;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -0.25rem;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #3b82f6, #06b6d4);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .language-btn:hover {
        color: #3b82f6;
    }

.chevron {
    transition: transform 0.2s ease;
}

.language-btn.active .chevron {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

    .language-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.language-option {
    width: 100%;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    transition: all 0.2s ease;
}

    .language-option:hover {
        background: #f1f5f9;
        color: #3b82f6;
    }

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    }

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #f1f5f9;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .mobile-menu-btn:hover {
        background: #e2e8f0;
    }

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

    .mobile-menu.active {
        display: block;
    }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

    .mobile-nav-link:hover {
        color: #3b82f6;
        background: #f8fafc;
    }

.mobile-language {
    padding: 0.5rem 1rem;
}

    .mobile-language span {
        color: #64748b;
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: block;
    }

.mobile-lang-buttons {
    display: flex;
    gap: 0.5rem;
}

.mobile-lang-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .mobile-lang-btn.active {
        background: #dbeafe;
        color: #3b82f6;
    }

.mobile-signin {
    margin: 0.5rem 1rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(rgb(255 255 255 / 86%), rgb(255 255 255 / 90%)), url(/assets/imgs/ik-background.jpeg) center / cover no-repeat;
}

.hero-gradient-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(6, 182, 212, 0.4));
    border-radius: 50%;
    filter: blur(60px);
}

.hero-gradient-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(6, 182, 212, 0.3));
    border-radius: 50%;
    filter: blur(60px);
}

.hero-gradient-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 2rem;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
  
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    color: #3589f2;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

    .hero-description .highlight {
        font-weight: 500;
        color: #475569;
    }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

    .btn-hero-primary:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35);
    }

.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: #475569;
    border: 2px solid #cbd5e1;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-hero-secondary:hover {
        border-color: #3b82f6;
        background: linear-gradient(135deg, #dbeafe, #cffafe);
    }

/* Stats Section */
.stats {
    padding: 5rem 1rem;
    position: relative;
}

    .stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, white, rgba(248, 250, 252, 0.5), white);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

.stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon-1 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.stat-icon-2 {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.25);
}

.stat-icon-3 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.25);
}

.stat-icon-4 {
    background: linear-gradient(135deg, #3b82f6, #14b8a6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.stat-icon i {
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 1rem;
    position: relative;
}

.services-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: url(/assets/imgs/vectorelback.png) center no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #cffafe);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 2rem;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

    .service-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.service-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 1.5rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-bg {
    opacity: 1;
    filter: blur(40px);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.service-icon-1 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-icon-2 {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.service-icon i {
    color: white;
    font-size: 2.5rem;
}

.service-info h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #64748b;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

    .service-features li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

.feature-check {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-check-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-check::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.service-features span {
    color: #475569;
    font-weight: 500;
}

.service-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

    .service-btn-1:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    }

.service-btn-2 {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.25);
}

    .service-btn-2:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(20, 184, 166, 0.35);
    }

/* Features Section */
.features {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, white, rgba(248, 250, 252, 0.3), rgba(238, 242, 255, 0.2));
}

.features-gradient-1 {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3));
    border-radius: 50%;
    filter: blur(60px);
}

.features-gradient-2 {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    filter: blur(60px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.feature-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 1rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-bg {
    opacity: 1;
    filter: blur(40px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.feature-icon-1 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.feature-icon-4 {
    background: linear-gradient(135deg, #3b82f6, #14b8a6);
}

.feature-icon-5 {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.feature-icon-6 {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 1rem;
    position: relative;
}

.process-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8fafc, rgba(219, 234, 254, 0.2), rgba(207, 250, 254, 0.2));
}

.process-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.process-step {
    text-align: center;
    transition: transform 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-5px);
    }

.step-number {
    position: relative;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-number-2 {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.25);
}

.step-number-3 {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.25);
}

.step-number span {
    color: white;
    font-weight: bold;
    font-size: 1.875rem;
}

.step-dot {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, #06b6d4, #14b8a6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.125rem;
}

.process-step .highlight {
    font-weight: 600;
    color: #475569;
}

/* CTA Section */
.cta {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e293b, #0f172a, #14532d);
}

.cta-gradient-1 {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    filter: blur(60px);
}

.cta-gradient-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-highlight {
    display: block;
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

    .cta-description .highlight {
        font-weight: 500;
    }

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #1e293b;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

    .btn-cta-primary:hover {
        background: #f8fafc;
        transform: translateY(-2px) scale(1.05);
    }

.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 5rem 1rem;
    position: relative;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

    .footer-logo-icon span {
        color: white;
        font-weight: bold;
        font-size: 1.125rem;
    }

.footer-logo-text {
    display: flex;
    align-items: baseline;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo-sub {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cbd5e1;
    margin-left: 0.25rem;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 24rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: #1e293b;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: #3b82f6;
        transform: translateY(-2px);
    }

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    transform: translateX(0);
}

    .footer-section a:hover {
        color: white;
        transform: translateX(4px);
    }

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    background: #1e293b;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        color: #3b82f6;
        font-size: 1rem;
    }

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

    .footer-bottom p {
        color: #94a3b8;
    }

.footer-links {
    display: flex;
    gap: 1.5rem;
}

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: white;
        }

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 4rem;
    }
}
