.how-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.how-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.steps-section {
    padding: 60px 0;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--purple-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.step-example {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
}

.step-agents {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.agent-badge {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.step-result {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 20px;
    border-radius: 8px;
    line-height: 1.8;
}

.behind-scenes-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.behind-scenes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.behind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.behind-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
}

.behind-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.behind-card p {
    color: var(--text-secondary);
}

.example-section {
    padding: 80px 0;
}

.example-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-time {
    flex-shrink: 0;
    width: 60px;
    text-align: right;
    color: var(--purple-accent);
    font-weight: 700;
}

.timeline-event {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--purple-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
    }

    .behind-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-time {
        width: 45px;
        font-size: 0.9rem;
    }
}