/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    background: #f9fafb;
    color: #4b5563;
}

/* ============================================
   Header
   ============================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(109, 40, 217, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #7c3aed;
}

.nav-cta {
    background: #6d28d9;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #7c3aed;
}

/* ============================================
   Hero Section
   ============================================ */
#hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e1b4b, #7c3aed);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: #ffffff;
    top: -100px;
    left: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    bottom: -50px;
    right: -50px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: #10b981;
    top: 50%;
    right: 10%;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pill {
    border-radius: 999px;
    padding: 0.75rem 2rem;
}

.btn-primary {
    background: #ffffff;
    color: #7c3aed;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   Section Layout
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#features,
#process,
#partners,
#social-proof,
#cta {
    padding: 4rem 2rem;
}

#features {
    background: #ffffff;
}

#process {
    background: #f9fafb;
}

#partners {
    background: #ffffff;
}

#social-proof {
    background: #f9fafb;
}

#cta {
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.05), rgba(109, 40, 217, 0.1));
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e1b4b;
}

/* ============================================
   Features Grid
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #ede9fe;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.1);
    border-color: #6d28d9;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* ============================================
   Process Timeline
   ============================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.timeline-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Logo Scroll (Partner Logos)
   ============================================ */
.logo-scroll-container {
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #ede9fe;
}

.logo-scroll {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.partner-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    opacity: 0.5;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Social Proof Grid
   ============================================ */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proof-card {
    background: #ffffff;
    border: 1px solid #ede9fe;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.proof-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-inner {
    text-align: center;
    padding: 2rem 0;
}

.cta-inner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
#site-footer {
    background: #111827;
    color: #ede9fe;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(109, 40, 217, 0.2);
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .features-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-pill {
        width: 100%;
        text-align: center;
    }

    .header-nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
