/* ============================================================
   BINGOCARDSMAKER — Diseño profesional (Landing + Editor Canva)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg: #0f172a;
    --bg-2: #111c33;
    --card: #1e293b;
    --border: #2d3b52;
    --text: #f1f5f9;
    --text-2: #94a3b8;
    --primary: #8b5cf6;
    --primary-2: #6d28d9;
    --accent: #f59e0b;
    --green: #10b981;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(0,0,0,.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
.grad {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 28px;
}
.brand { font-size: 1.2rem; font-weight: 400; display: flex; align-items: center; gap: 8px; }
.brand strong { color: var(--primary); }
.brand-logo { width: 30px; height: 30px; border-radius: 6px; flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-2); font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-ghost-sm {
    background: transparent; border: 1px solid var(--border); color: var(--text-2);
    padding: 7px 16px; border-radius: 8px; font-size: .85rem; font-weight: 600;
    transition: all .2s;
}
.btn-ghost-sm:hover { color: var(--text); border-color: var(--text-2); }

/* ============ HERO ============ */
.hero {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px;
    align-items: center; padding: 70px 40px;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--bg) 65%);
}
.hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.15; margin-bottom: 16px; }
.hero-sub { color: var(--text-2); font-size: 1.05rem; max-width: 540px; margin-bottom: 26px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-primary-lg {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
    padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,92,246,.4); }
.btn-outline-lg {
    border: 2px solid var(--border); color: var(--text); padding: 12px 26px;
    border-radius: 10px; font-weight: 600; transition: all .2s;
}
.btn-outline-lg:hover { border-color: var(--primary); color: var(--primary); }
.hero-badges { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.hero-badges li { color: var(--text-2); font-size: .88rem; }

/* Mini carta del hero — fondo personalizado + logo en FREE */
.hero-card-wrap { display: flex; justify-content: center; }
.hero-mini-card {
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    color: #000; border-radius: 8px; padding: 10px;
    box-shadow: var(--shadow); width: 260px; transform: rotate(3deg);
    border: 3px solid #1e40af;
}
.hmc-title { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; font-weight: 800; font-size: 1.7rem; color: #fff; margin-bottom: 4px; text-shadow: 1px 1px 3px rgba(0,0,0,.6); }
.hmc-title span { display: flex; align-items: center; justify-content: center; }
.hmc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.hmc-grid div { border: 1px solid rgba(30,64,175,.5); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; font-weight: 700; background: rgba(255,255,255,.88); color: #000; }
.hmc-grid .free { background: transparent; padding: 0; }
.hmc-grid .free img { width: 100%; height: 100%; object-fit: contain; }
.hmc-footer { display: flex; align-items: center; justify-content: center; margin-top: 8px; font-size: 1rem; font-weight: 700; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,.6); width: 100%; white-space: nowrap; text-align: center; }

/* ============ TESTIMONIOS ============ */
.testimonials { padding: 40px; background: var(--bg); }
.testimonials h2 { text-align: center; margin-bottom: 24px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.t-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 8px; }
.t-quote { color: var(--text-2); font-size: .9rem; line-height: 1.5; font-style: italic; }
.t-author { color: var(--text); font-size: .8rem; font-weight: 700; margin-top: 10px; }

/* ============ BENEFICIOS ============ */
.features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    padding: 40px; background: var(--bg-2); border-top: 1px solid var(--border);
}
.feature { text-align: center; padding: 22px 16px; }
.f-ico { font-size: 2rem; margin-bottom: 10px; }
.feature h3 { font-size: .98rem; margin-bottom: 6px; }
.feature p { color: var(--text-2); font-size: .82rem; }

/* ============ GENERADOR ============ */
.generator { padding: 50px 28px 30px; }
.gen-header { text-align: center; margin-bottom: 26px; }
.gen-header h2 { font-size: 1.7rem; }
.gen-header p { color: var(--text-2); }

.editor {
    display: grid; grid-template-columns: 340px 1fr; gap: 20px;
    max-width: 1280px; margin: 0 auto; align-items: stretch;
}

/* Panel izquierdo con pestañas */
.editor-panel {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--shadow);
}
.tabs { display: flex; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.tab-btn {
    flex: 1; padding: 12px 6px; background: transparent; border: none;
    color: var(--text-2); font-size: .78rem; font-weight: 700; cursor: pointer;
    border-bottom: 3px solid transparent; transition: all .2s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(139,92,246,.08); }

.tab-body { flex: 1; overflow-y: auto; padding: 16px; max-height: 56vh; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Sobrescribir el display:grid del CSS original de #control-panel */
#control-panel.tab-body {
    display: block !important;
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    padding: 16px;
    gap: 0;
}

/* Controles */
.control-group { margin-bottom: 13px; }
.control-group label {
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
    font-size: .78rem; color: var(--text-2); font-weight: 600; margin-bottom: 5px;
}
.control-group input[type="text"],
.control-group input[type="number"],
.control-group select {
    width: 100%; padding: 9px 11px; border-radius: 8px;
    background: var(--bg); border: 1px solid var(--border); color: var(--text); font-size: .88rem;
}
.control-group input[type="color"] {
    width: 100%; height: 40px; padding: 3px; border-radius: 8px;
    background: var(--bg); border: 1px solid var(--border); cursor: pointer;
}
.control-group input[type="range"] { width: 100%; }
.file-label {
    display: block; padding: 12px; border: 2px dashed var(--border); border-radius: 8px;
    text-align: center; cursor: pointer; font-size: .82rem; transition: border-color .2s;
}
.file-label:hover { border-color: var(--primary); }
.control-group input[type="file"] { width: .1px; height: .1px; opacity: 0; position: absolute; z-index: -1; }

/* Sliders */
.slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 7px; border-radius: 5px;
    background: linear-gradient(90deg, var(--primary), #a29bfe);
    outline: none; cursor: pointer; margin: 6px 0;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 19px; height: 19px; border-radius: 50%;
    background: var(--primary); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.slider::-moz-range-thumb {
    width: 17px; height: 17px; border-radius: 50%;
    background: var(--primary); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.val-badge {
    background: var(--primary); color: #fff; font-size: .68rem; font-weight: 700;
    padding: 2px 8px; border-radius: 20px; min-width: 32px; text-align: center;
}

/* ══════ BOTONES RÁPIDOS DE CANTIDAD ══════ */
.quick-counts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin: 8px 0 2px; }
.quick-btn {
    padding: 9px 2px; border: 1px solid var(--border); border-radius: 7px;
    background: var(--bg-2); color: var(--text-2); font-size: .78rem; font-weight: 700;
    cursor: pointer; transition: all .15s;
}
.quick-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }
.quick-btn:active { transform: scale(.96); }
.quick-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════ CHECKBOX BLANCO Y NEGRO ══════ */
.bw-group { margin-top: 4px; }
.bw-label {
    display: flex !important; align-items: center; justify-content: flex-start !important; gap: 8px;
    font-size: .8rem !important; color: var(--text-2) !important; cursor: pointer;
    padding: 8px 10px; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 8px; font-weight: 600 !important;
}
.bw-label input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; margin: 0; }
body.bw-mode #bingo-cards .bingo-card,
body.bw-mode #bingo-cards .bingo-card-container { filter: grayscale(1); }

/* Botones del editor */
.editor-actions { padding: 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.btn-action-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
    border: none; padding: 13px; border-radius: 9px; font-size: .95rem; font-weight: 700;
    transition: all .2s;
}
.btn-action-primary:hover { filter: brightness(1.1); }
.editor-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.btn-action-ghost {
    background: var(--bg-2); color: var(--text-2); border: 1px solid var(--border);
    padding: 9px; border-radius: 8px; font-size: .82rem; font-weight: 600; transition: all .2s;
}
.btn-action-ghost:hover { color: var(--text); border-color: var(--text-2); }

/* ============ LIENZO DERECHO ============ */
.canvas-column {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--shadow); min-height: 600px;
}
.canvas-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 16px; background: var(--bg); border-bottom: 1px solid var(--border);
}
.canvas-label { font-size: .85rem; font-weight: 700; }
.view-toggle { display: inline-flex; background: var(--bg-2); border-radius: 9px; padding: 3px; gap: 3px; }
.view-btn {
    border: none; background: transparent; padding: 7px 14px; border-radius: 7px;
    font-size: .8rem; font-weight: 700; color: var(--text-2); cursor: pointer; transition: all .2s;
}
.view-btn.active { background: var(--primary); color: #fff; }

.canvas-area { flex: 1; overflow: visible; padding: 22px; display: flex; justify-content: center; align-items: flex-start; }

/* ============ CARTAS (generadas por el JS — estilos requeridos) ============ */
#bingo-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.bingo-card-container {
    display: flex; flex-direction: column; align-items: center; position: relative;
    background: #fff; border-radius: 8px; padding: 8px; box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.bingo-card { border-radius: 8px; padding: 10px; position: relative; background-size: cover; background-position: center; }
.bingo-row { display: flex; }
.bingo-cell {
    border-style: solid; display: flex; justify-content: center; align-items: center;
    font-weight: bold; margin: 2px; background-color: #fff;
}
.bingo-title-row { display: flex; justify-content: space-around; margin-bottom: 5px; }
.bingo-title-cell { display: flex; justify-content: center; align-items: center; font-weight: bold; }
.card-number {
    font-size: 12px; font-weight: 700; text-align: left; margin-top: 5px;
    text-shadow: 1px 1px 2px black; padding-left: 10px;
}

/* Vista diseño: 1 carta grande */
body.view-design #bingo-cards {
    flex-direction: column; align-items: center; gap: 20px;
    background: #fff; border-radius: 12px; padding: 30px;
    box-shadow: var(--shadow); max-width: 540px;
}
body.view-design #bingo-cards .bingo-card-container:not(:first-child) { display: none; }

/* Vista impresión: hoja con 4 cartones */
body.view-print #bingo-cards {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    background: #fff; width: 780px; max-width: 100%; min-height: 1000px;
    padding: 28px; box-shadow: var(--shadow); align-content: start;
    justify-items: center; border-radius: 2px;
}
body.view-print #bingo-cards .bingo-card-container:nth-child(n+5) { display: none; }

/* Patrón de tema en cartas */
body[data-theme-pattern] #bingo-cards .bingo-card {
    background-image: var(--theme-pattern, none) !important;
    background-size: cover; background-position: center;
}

/* ============ BARRA DE COMPRA FIJA ============ */
.sales-bar {
    max-width: 1280px; margin: 18px auto 0;
    background: linear-gradient(135deg, #1e293b, #24344d);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px 20px; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap; box-shadow: var(--shadow);
    position: sticky; bottom: 12px; z-index: 90;
}
.sales-bar-info { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.sales-price-label { font-size: .78rem; color: var(--text-2); }
.sales-price-value { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.sales-tier-name { font-size: .8rem; color: var(--text-2); }
.sales-bar-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sales-trust {
    width: 100%; text-align: center; font-size: .75rem; color: var(--text-2);
    border-top: 1px dashed rgba(148,163,184,.25); padding-top: 9px; margin-top: 4px;
    letter-spacing: .02em;
}
.btn-sales {
    padding: 13px 20px; border: none; border-radius: 9px; font-size: .9rem; font-weight: 700;
    cursor: pointer; transition: all .2s; color: #fff;
}
.btn-sales:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-sales-demo { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.btn-sales-buy { background: linear-gradient(135deg, #10b981, #059669); }

/* ============ PROGRESO ============ */
#pdf-progress {
    max-width: 1280px; margin: 10px auto 0;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 14px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.pdf-progress-label {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .8rem; font-weight: 600; margin-bottom: 8px;
}
#pdf-progress-text { color: var(--text-2); }
#pdf-progress-pct { color: var(--primary); font-size: .95rem; }
#pdf-progress-bar {
    width: 0%; height: 12px; border-radius: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transition: width .2s ease;
    box-shadow: 0 0 12px rgba(168,85,247,.5);
}

/* ============ PRECIOS ============ */
.pricing { padding: 60px 28px; background: var(--bg-2); border-top: 1px solid var(--border); }
.pricing h2 { text-align: center; font-size: 1.8rem; margin-bottom: 6px; }
.pricing-sub { text-align: center; color: var(--text-2); margin-bottom: 34px; }
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; display: flex; flex-direction: column; position: relative; transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--primary); box-shadow: 0 0 30px rgba(139,92,246,.2); }
.price-card-special {
    border-color: #f59e0b; background: linear-gradient(160deg, rgba(245,158,11,.08), var(--card));
}
.btn-special-block {
    display: block; text-align: center; margin-top: auto; padding: 13px; border-radius: 9px;
    background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-weight: 700;
    text-decoration: none; transition: transform .2s;
}
.btn-special-block:hover { transform: translateY(-2px); }
.p-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #ea580c); color: #fff;
    padding: 4px 14px; border-radius: 20px; font-size: .7rem; font-weight: 700; white-space: nowrap;
}
.price-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.p-range { color: var(--text-2); font-size: .82rem; margin-bottom: 10px; }
.p-price { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.p-price small { font-size: .8rem; color: var(--text-2); font-weight: 400; }
.price-card ul { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; font-size: .84rem; color: var(--text-2); }
.btn-outline-block {
    border: 2px solid var(--border); color: var(--text); text-align: center;
    padding: 10px; border-radius: 8px; font-weight: 700; font-size: .9rem; transition: all .2s;
}
.btn-outline-block:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
    text-align: center; padding: 10px; border-radius: 8px; font-weight: 700; font-size: .9rem; transition: all .2s;
}
.btn-primary-block:hover { filter: brightness(1.1); }

/* ============ FAQ ============ */
.faq { padding: 60px 28px; max-width: 760px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 1.8rem; margin-bottom: 26px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item summary {
    padding: 15px 20px; cursor: pointer; font-weight: 600; font-size: .92rem;
    display: flex; justify-content: space-between; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; color: var(--text-2); font-size: .88rem; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 22px 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--text-2); font-size: .82rem; }
.footer-brand { font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.footer-logo { width: 22px; height: 22px; border-radius: 5px; }

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 28px; max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow);
.modal-box { background: #fff; border-radius: 16px; padding: 26px; max-width: 380px; width: 92%; }
.modal-box h3 { color: #1e293b; margin-bottom: 8px; }
.modal-price { font-size: 1.5rem; font-weight: 800; color: #059669; margin: 4px 0 14px; }
.modal-note { color: #475569; font-size: .82rem; line-height: 1.5; }
.modal-qr {
    border: 2px dashed #cbd5e1; border-radius: 12px; padding: 16px; margin: 14px 0;
    display: flex; justify-content: center;
}
.modal-actions { display: flex; gap: 10px; margin-top: 14px; }
.btn-modal { flex: 1; padding: 12px; border: none; border-radius: 9px; font-weight: 700; cursor: pointer; font-size: .88rem; }
.btn-modal-cancel { background: #e2e8f0; color: #334155; }
.btn-modal-confirm { background: linear-gradient(135deg, #f0b90b, #e8a400); color: #1e293b; }

/* Pasos de pago */
.pay-option {
    display: flex; align-items: center; gap: 12px; width: 100%;
    padding: 14px; border: 2px solid #e2e8f0; border-radius: 12px;
    background: #fff; cursor: pointer; text-align: left; margin: 8px 0;
    transition: all .15s;
}
.pay-option:hover { border-color: #f0b90b; background: #fffbeb; }
.pay-option-icon { font-size: 1.6rem; }
.pay-option-txt { display: flex; flex-direction: column; gap: 2px; }
.pay-option-txt strong { color: #1e293b; font-size: .95rem; }
.pay-option-txt small { color: #64748b; font-size: .72rem; }
.pay-option-card { border-color: #10b981; }
.pay-option-card:hover { border-color: #10b981; background: #ecfdf5; }
.pay-option-usdt { border-color: #7c3aed; }
.pay-option-usdt:hover { border-color: #7c3aed; background: #f5f3ff; }
.pay-option-binance:hover { border-color: #f0b90b; background: #fffbeb; }

/* Caja USDT automático */
.usdt-box {
    margin-top: 10px; padding: 14px; border-radius: 12px;
    background: #f5f3ff; border: 2px solid #7c3aed; text-align: center;
}
.usdt-amount { font-size: 1.4rem; font-weight: 800; color: #7c3aed; }
.usdt-address {
    font-family: monospace; font-size: .78rem; color: #1e293b;
    background: #fff; border: 1px solid #ddd; border-radius: 8px;
    padding: 8px 10px; margin-top: 8px; word-break: break-all;
}
.usdt-status { margin-top: 8px; font-size: .78rem; color: #6d28d9; font-weight: 700; }

.pay-steps { display: flex; flex-direction: column; gap: 7px; margin: 10px 0 4px; }
.pay-step {
    display: flex; align-items: center; gap: 9px;
    font-size: .8rem; color: #334155; font-weight: 600;
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 8px 10px;
}
.pay-step-num {
    min-width: 22px; height: 22px; border-radius: 50%;
    background: #f0b90b; color: #1e293b; font-weight: 800; font-size: .75rem;
    display: flex; align-items: center; justify-content: center;
}

/* Toast */
#sales-toast {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: #333; color: #fff; padding: 12px 24px; border-radius: 8px;
    z-index: 99999; font-size: .9rem; box-shadow: 0 4px 16px rgba(0,0,0,.3);
    max-width: 90vw; text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
    .features { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; }
    .hero-card-wrap { display: none; }
    .editor { grid-template-columns: 1fr; }
    .canvas-column { min-height: 400px; }
}
@media (max-width: 600px) {
    .features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-badges { grid-template-columns: 1fr; }
    body.view-print #bingo-cards { width: 100%; padding: 16px; }
}
