/* TEST template stylesheet — shared baseline styling for funnel pipeline testing */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    background: #f7f8fc;
}

.container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 20px; }

.site-header { background: #fff; border-bottom: 1px solid #e6e8f0; padding: 14px 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { display: block; }
nav a { margin-left: 18px; color: #4a4a6a; text-decoration: none; font-size: 14px; }
nav a:hover { color: #1a1a2e; }

.hero { text-align: center; padding: 60px 0 40px; }
.hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.lead { font-size: 1.15rem; color: #555; }

.info { background: #fff; border: 1px solid #e6e8f0; border-radius: 10px; padding: 28px; margin: 30px 0; }
.info h2 { margin-bottom: 10px; }

/* Buttons / CTAs reused across pre-lander + quiz */
.cta {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease;
}
.cta:hover { background: #1d4ed8; }

/* Quiz */
.quiz-card { background: #fff; border: 1px solid #e6e8f0; border-radius: 12px; padding: 32px; max-width: 600px; margin: 40px auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-option { display: block; width: 100%; text-align: left; padding: 14px 18px; margin: 10px 0; border: 1px solid #d0d4e4; border-radius: 8px; background: #fbfbff; cursor: pointer; font-size: 1rem; }
.quiz-option:hover { border-color: #2563eb; background: #f0f5ff; }
.progress { height: 6px; background: #e6e8f0; border-radius: 3px; margin-bottom: 24px; overflow: hidden; }
.progress-bar { height: 100%; background: #2563eb; width: 33%; transition: width .2s ease; }

.site-footer { background: #fff; border-top: 1px solid #e6e8f0; padding: 24px 0; margin-top: 40px; text-align: center; font-size: 13px; color: #777; }
.site-footer a { color: #4a4a6a; }
