/* Checklist CTA Band — Discovery China
   Placed below hero, before routing quiz on homepage.
   Full-width dark-navy band, inline email form, mobile-first responsive.
*/

/* ── Reset & Band Base ── */
.checklist-cta-band *,
.checklist-cta-band *::before,
.checklist-cta-band *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.checklist-cta-band {
    background: #0A1628;
    padding: 4rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #FAF8F5;
    text-align: center;
}

/* ── Layout container ── */
.checklist-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

/* ── Eyebrow tag ── */
.checklist-cta-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A96E;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 100px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 1.25rem;
}

/* ── Headline ── */
.checklist-cta-headline {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    color: #FAF8F5;
}

/* ── Subhead ── */
.checklist-cta-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(250,248,245,0.72);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Form row ── */
.checklist-cta-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 0.9rem;
}

.checklist-cta-input {
    flex: 1;
    height: 52px;
    padding: 0 1rem;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
    background: #fff;
    color: #1a2332;
    outline: none;
    min-width: 0;
}

.checklist-cta-input::placeholder {
    color: #999;
}

.checklist-cta-btn {
    height: 52px;
    padding: 0 1.5rem;
    background: #C9A96E;
    color: #0A1628;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
}

.checklist-cta-btn:hover {
    background: #b8934f;
    transform: translateY(-1px);
}

.checklist-cta-btn:active {
    transform: translateY(0);
}

/* ── Privacy note ── */
.checklist-cta-privacy {
    font-size: 0.78rem;
    color: rgba(250,248,245,0.45);
    line-height: 1.5;
}

/* ── Inline error / success ── */
.checklist-cta-error {
    color: #FCA5A5;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: none;
}

.checklist-cta-success {
    color: #6EE7B7;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: none;
    font-weight: 600;
}

.checklist-cta-success-sub {
    color: rgba(250,248,245,0.6);
    font-size: 0.85rem;
    display: none;
}

/* ── Mobile: stack the form ── */
@media (max-width: 520px) {
    .checklist-cta-form {
        flex-direction: column;
        max-width: 320px;
    }
    .checklist-cta-input {
        border-radius: 6px 6px 0 0;
        height: 50px;
    }
    .checklist-cta-btn {
        border-radius: 0 0 6px 6px;
        height: 50px;
        font-size: 0.95rem;
    }
}

@media print {
    .checklist-cta-band { display: none; }
}