/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    padding-top: 80px; /* Add space for fixed header */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #4f46e5, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4f46e5;
    background-color: rgba(79, 70, 229, 0.05);
    transform: translateY(-1px);
}

/* Footer Styles */
.footer {
    background-color: #f9fafb;
    padding: 64px 0 32px;
    margin-top: 64px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    text-decoration: none;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #4f46e5, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4f46e5;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #4f46e5, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}

.hero-gradient-top {
    position: absolute;
    inset: 0;
    transform: translateY(-40%);
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    filter: blur(64px);
    z-index: -1;
}

.hero-gradient-bottom {
    position: absolute;
    inset: 0;
    transform: translateY(calc(100% - 13rem));
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    filter: blur(64px);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}

.hero-text {
    text-align: center;
    max-width: 32rem;
}

.hero-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: #4b5563;
}

.hero-image {
    position: relative;
    width: 280px;
    height: 280px;
}

.image-gradient {
    position: absolute;
    inset: 0;
    transform: translate(-16px, -16px);
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    filter: blur(32px);
    border-radius: 9999px;
    z-index: -1;
}

.hero-image .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

/* Services Section */
.services {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.services-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(45rem 50rem at top, rgba(79, 70, 229, 0.1), white);
    opacity: 0.2;
    z-index: -1;
}

.services-header {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 64px;
}

.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 80px;
    margin: 0 auto 24px;
}

.logo-gradient {
    position: absolute;
    inset: 0;
    transform: translate(-16px, -16px);
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    filter: blur(32px);
    border-radius: 9999px;
    z-index: -1;
}

.logo-container .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.services-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.125rem;
    color: #4b5563;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    max-width: 32rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(249, 250, 251, 0.5);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(79, 70, 229, 0.1);
}

.service-icon i {
    font-size: 24px;
    color: #4f46e5;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Company Section */
.company {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.company-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(45rem 50rem at top, rgba(79, 70, 229, 0.1), white);
    opacity: 0.2;
    z-index: -1;
}

.company-header {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 64px;
}

.company-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.company-header p {
    font-size: 1.125rem;
    color: #4b5563;
}

.company-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 32rem;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(249, 250, 251, 0.5);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background-color 0.3s ease;
}

.info-card:hover .info-icon {
    background: rgba(79, 70, 229, 0.1);
}

.info-icon i {
    font-size: 20px;
    color: #4f46e5;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }

    .hero-image {
        width: 400px;
        height: 400px;
    }

    .logo-container {
        width: 300px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-text {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }

    .company-info {
        max-width: none;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
} 