/* Landing Page Styles */
.landing-page {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    color: white;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0ea5e9;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.3);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 5%;
    right: 5%;
    animation-delay: 4.5s;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.floating-card p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 100px 24px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--text);
}

.section-title--with-lead {
    margin-bottom: 1rem;
}

.section-lead {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 24px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 32px;
    color: #0ea5e9;
    font-weight: 700;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 100px 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 24px;
    text-align: center;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 40px;
    }
    
    .floating-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

