/* Landing Page Specific Styles */

.landing-main {
    padding-top: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF5F8 50%, #F5E6F0 100%);
    color: #4A4A4A;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    background: linear-gradient(135deg, #E8B4D4 0%, #D4A5D9 100%);
    color: white;
}

.hero-buttons .btn:hover {
    background: linear-gradient(135deg, #D89EC4 0%, #C895D4 100%);
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-illustration {
    width: 100%;
    height: 300px;
}

.hero-illustration svg {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    background: white;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #E8B4D4;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5E6F0 0%, #E8B4D4 100%);
    border-radius: 0.5rem;
}

.feature-icon svg {
    stroke: #AD7A9F;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Workflow Section */
.workflow {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.workflow h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8B4D4 0%, #D4A5D9 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px rgba(232, 180, 212, 0.3);
}

.workflow-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.workflow-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-arrow {
    font-size: 2rem;
    color: #D4A5D9;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid #E8B4D4;
    box-shadow: var(--shadow);
}

.benefit-item svg {
    stroke: #E8B4D4;
}

.benefit-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item span {
    color: var(--text-primary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #E8B4D4 0%, #D4A5D9 50%, #F5E6F0 100%);
    color: #4A4A4A;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn {
    background: white;
    color: #AD7A9F;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta .btn:hover {
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}