/* ── Mochi Zen quiz funnel — shared styles ───────────────────────────────── */
.quiz-page { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%); min-height: 100vh; }
.quiz-wrap { max-width: 640px; margin: 0 auto; padding: 110px 20px 80px; }
.quiz-card {
    background: #fff; border-radius: 22px; padding: 40px 36px;
    box-shadow: 0 24px 70px rgba(15,17,32,0.35); position: relative; overflow: hidden;
}
@media (max-width: 560px) { .quiz-card { padding: 30px 22px; } .quiz-wrap { padding: 92px 14px 60px; } }

/* progress */
.quiz-progress { height: 6px; background: rgba(26,31,60,0.08); border-radius: 999px; margin-bottom: 26px; overflow: hidden; }
.quiz-progress-bar { height: 100%; width: 0; background: var(--peach); border-radius: 999px; transition: width 0.35s ease; }
.quiz-step-count { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,31,60,0.4); margin-bottom: 14px; }

/* hero / intro */
.quiz-badge { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--peach); background: rgba(232,149,109,0.12); border: 1px solid rgba(232,149,109,0.3); border-radius: 20px; padding: 5px 14px; margin-bottom: 18px; }
.quiz-hero-mochi { width: 84px; height: 84px; object-fit: contain; display: block; margin: 0 auto 14px; }
.quiz-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; color: #1a1f3c; line-height: 1.2; margin: 0 0 14px; }
.quiz-hero p { font-size: 1.05rem; color: rgba(26,31,60,0.7); line-height: 1.6; margin: 0 0 28px; }
.quiz-meta { font-size: 0.82rem; color: rgba(26,31,60,0.45); margin-top: 16px; }
.quiz-meta i { color: var(--peach); margin-right: 5px; }

/* question */
.quiz-question h2 { font-size: 1.4rem; font-weight: 900; color: #1a1f3c; line-height: 1.28; margin: 0 0 22px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
    display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer;
    background: #FFF8F2; border: 2px solid rgba(26,31,60,0.08); border-radius: 14px;
    padding: 16px 18px; font-size: 1.02rem; font-weight: 600; color: #1a1f3c; transition: all 0.15s ease;
}
.quiz-option:hover { border-color: var(--peach); background: rgba(232,149,109,0.07); transform: translateY(-1px); }
.quiz-option .dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(26,31,60,0.2); flex-shrink: 0; transition: all 0.15s ease; }
.quiz-option:hover .dot { border-color: var(--peach); }
.quiz-option.selected { border-color: var(--peach); background: rgba(232,149,109,0.12); }
.quiz-option.selected .dot { border-color: var(--peach); background: var(--peach); box-shadow: inset 0 0 0 3px #fff; }

/* buttons */
.quiz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-weight: 800; border-radius: 12px; transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease; }
.quiz-btn-primary { background: var(--peach); color: #fff; padding: 15px 30px; font-size: 1.02rem; box-shadow: 0 10px 26px rgba(232,149,109,0.4); width: 100%; }
.quiz-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.quiz-nav-row { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.quiz-back { background: none; border: none; cursor: pointer; color: rgba(26,31,60,0.5); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.quiz-back:hover { color: var(--peach); }
.quiz-back[hidden] { visibility: hidden; }

/* result */
.quiz-result { text-align: center; }
.quiz-result-mochi { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 8px; display: block; }
.quiz-result-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,31,60,0.45); }
.quiz-result-program { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 900; color: #1a1f3c; margin: 6px 0 4px; }
.quiz-result-pattern { display: inline-block; background: var(--navy); color: #fff; font-size: 0.85rem; font-weight: 800; border-radius: 20px; padding: 6px 16px; margin: 8px 0 18px; }
.quiz-result-blurb { font-size: 1.05rem; color: rgba(26,31,60,0.78); line-height: 1.7; text-align: left; margin: 0 0 26px; }
.quiz-result-cta { margin-bottom: 12px; }
.quiz-cta-note { font-size: 0.82rem; color: rgba(26,31,60,0.45); }
.quiz-learn { display: inline-block; margin-top: 14px; color: var(--peach); font-weight: 700; text-decoration: none; font-size: 0.95rem; border-bottom: 1px solid rgba(232,149,109,0.35); }

/* email capture */
.quiz-email { background: #FFF8F2; border: 1px solid rgba(26,31,60,0.08); border-radius: 16px; padding: 22px 20px; margin: 22px 0; text-align: left; }
.quiz-email h3 { font-size: 1.05rem; font-weight: 800; color: #1a1f3c; margin: 0 0 4px; }
.quiz-email p { font-size: 0.9rem; color: rgba(26,31,60,0.6); margin: 0 0 14px; }
.quiz-email-row { display: flex; gap: 10px; flex-wrap: wrap; }
.quiz-email-row input { flex: 1; min-width: 180px; border: 2px solid rgba(26,31,60,0.12); border-radius: 10px; padding: 13px 15px; font-size: 1rem; font-family: inherit; }
.quiz-email-row input:focus { outline: none; border-color: var(--peach); }
.quiz-email-row button { background: var(--navy); color: #fff; border: none; border-radius: 10px; padding: 0 22px; font-weight: 800; cursor: pointer; font-size: 0.95rem; }
.quiz-email-row button:hover { background: var(--navy-dark); }
.quiz-email-success { color: #1a1f3c; font-weight: 700; display: none; }
.quiz-email-success i { color: #2ecc71; margin-right: 6px; }

/* store badges under result */
.quiz-stores { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.quiz-stores img { height: 40px; }
.quiz-fade { animation: quizfade 0.35s ease; }
@keyframes quizfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-backlink { display: block; text-align: center; margin-top: 22px; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; }
.quiz-backlink:hover { color: var(--peach); }
