/* Hero Simple */
.hero-simple {
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-simple h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin: 1.5rem 0;
    line-height: 1.1;
}

.hero-simple p {
    font-size: 1.4rem;
    color: var(--text-secondary);
}

/* Process Flow */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-flow {
    padding: 4rem 0 8rem;
}

.flow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.flow-step.reverse {
    direction: rtl;
}

.flow-step.reverse > * {
    direction: ltr;
}

.flow-visual {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid var(--border);
}

.flow-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.step-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.flow-content {
    padding: 2rem;
}

.flow-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.flow-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.duration {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 2rem;
}

/* Connector */
.flow-connector {
    text-align: center;
    margin: 4rem 0;
}

.arrow-down {
    font-size: 3rem;
    color: var(--accent);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Principles Simple */
.principles-simple {
    padding: 8rem 0;
    background: var(--bg-card);
    text-align: center;
}

.principles-simple h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* CTA Large */
.cta-large {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
    color: white;
}

.cta-large h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
    color: white;
}

.cta-large .btn {
    background: white;
    color: var(--accent);
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cta-large .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .flow-step,
    .flow-step.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }
    
    .flow-visual img {
        height: 350px;
    }
    
    .flow-content h2 {
        font-size: 2.5rem;
    }
    
    .flow-content p {
        font-size: 1.2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .cta-large h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
