body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.page-hero {
    background: linear-gradient(135deg, #0067b8 0%, #004578 100%);
}

.card-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #0067b8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.prose-section h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.prose-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.prose-section p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.prose-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.prose-section li {
    margin-bottom: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    cursor: pointer;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #0067b8;
}

/* Printer setup form (bb-style) */
.printer-setup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.printer-setup-form label {
    font-weight: bold;
    font-size: 1em;
}

.printer-setup-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dc2626;
    border-radius: 8px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #fff;
    color: #111;
}

.printer-setup-form input:focus {
    outline: none;
    border-color: #0067b8;
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.2);
}

.printer-setup-form input:valid,
.printer-setup-form input.has-content {
    border-color: #0067b8;
}

.printer-setup-form input::placeholder {
    color: #999;
}

.printer-setup-form-hero label {
    color: #fff;
}

.quick-setup-btn {
    background: #fff;
    color: #0067b8;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.quick-setup-btn:hover:not(:disabled) {
    background: #f0f7ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.quick-setup-btn:disabled {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none;
}

.quick-setup-btn svg {
    flex-shrink: 0;
}

.hp-download-btn:not(.quick-setup-btn) {
    background: #0067b8;
    color: #fff;
}

/* Lead capture gate */
.lead-gate-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-gate-overlay.active {
    display: flex;
}

body.lead-pending {
    overflow: hidden;
}

body.lead-pending > *:not(.lead-gate-overlay):not(script) {
    pointer-events: none;
    user-select: none;
}

.lead-gate-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: leadSlideIn 0.4s ease-out;
}

@keyframes leadSlideIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-gate-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead-gate-icon {
    margin: 0 auto 1rem;
    object-fit: contain;
}

.lead-gate-header h2 {
    font-size: 1.5rem;
    color: #0067b8;
    margin-bottom: 0.5rem;
}

.lead-gate-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lead-gate-form .lead-field {
    margin-bottom: 1rem;
}

.lead-gate-form label {
    display: block;
    font-weight: 700;
    color: #111;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.lead-gate-form input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.lead-gate-form input:focus {
    outline: none;
    border-color: #0067b8;
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.12);
}

.lead-gate-submit {
    width: 100%;
    background: #0067b8;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}

.lead-gate-submit:hover:not(:disabled) {
    background: #0052a3;
    transform: translateY(-1px);
}

.lead-gate-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lead-gate-trust {
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.required {
    color: #dc2626;
}
