/* apps.css - Čistě styl pro rádce a mřížku */

.apps-hero {
    padding: 100px 0 60px;
    background: var(--gray-50);
}

.quiz-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.quiz-header { text-align: center; margin-bottom: 35px; }
.badge { background: var(--primary-100); color: var(--primary-dark); padding: 5px 15px; border-radius: 50px; font-weight: 700; }

.step { display: none; }
.step.active { display: block; animation: fadeIn 0.4s ease; }

.opt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.opt-card {
    background: #fff;
    border: 2px solid var(--gray-200);
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.opt-card:hover { border-color: var(--primary); background: var(--primary-50); transform: translateY(-3px); }
.opt-card i { color: var(--primary); font-size: 1.5rem; }

/* Rezultát */
.res-card { text-align: center; padding: 40px; background: var(--primary-50); border: 2px dashed var(--primary); border-radius: 15px; }
.res-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }
.res-actions { display: flex; justify-content: center; gap: 15px; margin-top: 25px; }

/* Katalog mřížka */
.cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.cms-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sjednocení velikosti log - čisté a stejné */
.cms-logo-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cms-logo-wrapper img {
    max-height: 80px;
    max-width: 140px;
    object-fit: contain;
}

.cms-body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.cms-body p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.5; flex-grow: 1; }
.cms-ver { font-size: 0.75rem; color: var(--primary-dark); font-weight: 700; background: var(--primary-50); padding: 4px 12px; border-radius: 50px; margin-top: 15px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }