/* ==========================================================
   PROGRESS.CSS - Pripravujeme a Progress bar
   ========================================================== */
.progress-page { width: 100%; max-width: 1000px; margin: 0 auto; padding: 60px 20px; }
.progress-bar-container { background: var(--bg-panel); border: 1px solid var(--border); padding: 30px; border-radius: 16px; margin-bottom: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; color: white;}
.progress-meta .percent { color: var(--accent); font-size: 18px; font-weight: 800; }
.progress-track { width: 100%; height: 12px; background: var(--bg-dark); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.progress-fill { height: 100%; background: linear-gradient(90deg, #ea580c, #f97316, #fb923c); border-radius: 10px; width: 0%; box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);}

.timeline-container { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 50px; }
.timeline-container h3 { font-family: 'Oswald', sans-serif; font-size: 24px; text-transform: uppercase; margin-top: 0; margin-bottom: 30px; text-align: center; color: white;}
.timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--border); margin: 0 auto; max-width: 600px; }
.timeline-item { position: relative; margin-bottom: 35px; }
.timeline-dot { position: absolute; left: -37px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--border); border: 3px solid var(--bg-panel); }
.timeline-dot.done { background: var(--success); box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
.timeline-dot.current { background: var(--accent); box-shadow: 0 0 15px rgba(249, 115, 22, 0.6); animation: pulseOrange 2s infinite; }
.timeline-date { font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }
.timeline-date.done-text { color: var(--success); }
.timeline-title { color: white; font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.timeline-desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0; }

.roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.roadmap-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.roadmap-card h3 { font-family: 'Oswald', sans-serif; font-size: 22px; text-transform: uppercase; margin-top: 0; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); padding-bottom: 15px; color: white;}
.task-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; color: #e4e4e7; font-size: 15px; }
.icon-done { color: var(--success); flex-shrink: 0; margin-top: 2px;}
.icon-pending { color: var(--accent); flex-shrink: 0; margin-top: 2px;}
.icon-future { color: #52525b; flex-shrink: 0; margin-top: 2px;}

/* PRIPRAVUJEME */
.coming-soon-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 20px; text-align: center; min-height: 50vh; }
.icon-wrapper { 
    width: 120px; height: 120px; 
    background: rgba(249, 115, 22, 0.05); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin-bottom: 35px; border: 1px dashed rgba(249, 115, 22, 0.3); 
    animation: pulseOrange 2s infinite; 
}
.icon-wrapper svg { width: 50px !important; height: 50px !important; color: var(--accent); animation: spin 8s linear infinite; }
.coming-soon-title { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5vw, 48px); text-transform: uppercase; color: white; margin-bottom: 15px; }
.coming-soon-title span { color: var(--accent); }
.btn-home { 
    background: var(--accent); color: white; padding: 14px 32px; border-radius: 8px; 
    font-weight: 700; font-size: 15px; transition: all 0.3s ease !important; text-transform: uppercase; 
    display: inline-block; border: 1px solid var(--accent);
}
.btn-home:hover { background: var(--accent-hover); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4); }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes fillProgress { from { width: 0%; } to { width: 48%; } }
@keyframes pulseOrange { 0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); } 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); } }

@media (max-width: 768px) {
    .roadmap-grid { grid-template-columns: 1fr; }
    .timeline-container { padding: 30px 20px; }
}

/* STEPS FLOW LAYOUT */
.steps-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 35px;
}
.step-flow-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    transition: 0.2s;
}
.step-flow-card:hover {
    border-color: rgba(249, 115, 22, 0.2);
}
.step-number {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}
.step-flow-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 12px;
}
.step-flow-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}
.step-flow-card code {
    background: #09090b;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--accent);
    font-family: monospace;
}

@media (max-width: 992px) {
    .steps-flow-grid { grid-template-columns: 1fr; }
}