*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --fire:    #e8380d;
    --ember:   #f26522;
    --heat:    #f7941d;
    --ink:     #111111;
    --charcoal:#333333;
    --smoke:   #666666;
    --ash:     #f4f2ef;
    --white:   #ffffff;
    --border:  #e0ddd8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.nav-logo span { color: var(--fire); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
    background: var(--fire);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.15s !important;
}
.nav-cta:hover { background: #c9300a !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef0eb;
    border: 1px solid #fbc9b5;
    color: var(--fire);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--fire);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--smoke);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
    background: var(--fire);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: #c9300a; transform: translateY(-1px); }

.btn-ghost {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--ink); }

.hero-visual {
    background: var(--ash);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(232,56,13,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.mock-screen {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.mock-header {
    background: #1a2744;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mock-logo { font-size: 0.8rem; font-weight: 700; color: #fff; font-family: 'DM Serif Display', serif; }
.mock-cart-btn { background: #c9a84c; color: #1a2744; font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; }

.mock-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--smoke);
    padding: 12px 16px 6px;
    border-bottom: 2px solid #c9a84c;
    margin: 0 16px;
}

.mock-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}
.mock-item:last-child { border-bottom: none; }
.mock-item-name { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.mock-item-desc { font-size: 0.63rem; color: var(--smoke); margin-top: 1px; }
.mock-item-price { font-size: 0.75rem; font-weight: 700; color: var(--ink); }
.mock-add { width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--smoke); }

/* ── LOGOS / SOCIAL PROOF ── */
.proof-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px;
    text-align: center;
}
.proof-bar p { font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--smoke); margin-bottom: 16px; }
.proof-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.proof-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #bbb; letter-spacing: -0.01em; }

/* ── FEATURES ── */
.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fire);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.4rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--smoke);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    border-color: var(--ember);
    box-shadow: 0 4px 24px rgba(232,56,13,0.06);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #fef0eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--smoke);
    line-height: 1.7;
    font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how {
    background: var(--ash);
    padding: 100px 40px;
}
.how-inner { max-width: 1100px; margin: 0 auto; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: linear-gradient(to right, var(--border), var(--ember), var(--border));
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--fire);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s, background 0.2s;
}

.step:hover .step-num {
    background: var(--fire);
    border-color: var(--fire);
    color: var(--white);
}

.step h4 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--smoke); line-height: 1.6; font-weight: 300; }

/* ── PRICING ── */
.pricing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.pricing-card.featured {
    border: 2px solid var(--fire);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fire);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}

.pricing-header {
    padding: 36px 32px 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-tier {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--smoke);
    margin-bottom: 8px;
}

.pricing-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-dollar { font-size: 1.1rem; font-weight: 600; color: var(--smoke); margin-top: 6px; }
.price-amount { font-size: 3rem; font-weight: 600; color: var(--ink); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--smoke); font-weight: 300; }

.price-annual { font-size: 0.75rem; color: var(--smoke); font-weight: 300; }
.price-annual strong { color: var(--fire); font-weight: 600; }

.pricing-body { padding: 28px 32px; }

.pricing-desc {
    font-size: 0.85rem;
    color: var(--smoke);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.check {
    width: 18px;
    height: 18px;
    background: #fef0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check svg { width: 10px; height: 10px; stroke: var(--fire); stroke-width: 2.5; fill: none; }

.pricing-cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.cta-outline {
    border: 1.5px solid var(--border);
    color: var(--ink);
}
.cta-outline:hover { border-color: var(--fire); color: var(--fire); }

.cta-filled {
    background: var(--fire);
    color: var(--white);
    border: 1.5px solid var(--fire);
}
.cta-filled:hover { background: #c9300a; border-color: #c9300a; }

.hardware-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff8ee;
    border: 1px solid #fcd9a0;
    color: #7a4a00;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* ── BRANDING CTA ── */
.brand-strip {
    background: var(--ink);
    padding: 80px 40px;
    text-align: center;
}

.brand-strip-inner { max-width: 680px; margin: 0 auto; }

.brand-strip h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.brand-strip h2 em { font-style: italic; color: var(--ember); }

.brand-strip p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.7;
}

.brand-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 24px;
    border-radius: 40px;
    margin-bottom: 32px;
}

.brand-price-pill span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.brand-price-pill strong { font-size: 1rem; color: var(--white); font-weight: 600; }

/* ── FAQ ── */
.faq {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.faq-a {
    font-size: 0.9rem;
    color: var(--smoke);
    line-height: 1.7;
    font-weight: 300;
}

/* ── FOOTER ── */
footer {
    background: var(--ash);
    border-top: 1px solid var(--border);
    padding: 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.footer-logo span { color: var(--fire); }

footer p { font-size: 0.8rem; color: var(--smoke); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 60px 24px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    nav { padding: 0 20px; }
    .nav-links { gap: 16px; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════
   ONBOARDING — onboarding.html
   ═══════════════════════════════════════════════ */

/* ── LAYOUT ── */
html.onboarding-page,
html.onboarding-page body {
    height: 100%;
    overflow: hidden;
    background: var(--ash);
}

.shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 64px;
    flex-shrink: 0;
}

.top-logo {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}
.top-logo span { color: var(--fire); }

.progress-track { display: none; }

.step-counter {
    font-size: 0.75rem;
    color: var(--smoke);
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── PROGRESS BAR ── */
.progress-bar-outer {
    width: 100%;
    background: var(--border);
    flex-shrink: 0;
    height: 3px;
}

.progress-bar-track {
    max-width: 560px;
    margin: 0 auto;
    height: 3px;
    background: transparent;
    position: relative;
}

.progress-bar-inner {
    height: 100%;
    background: var(--fire);
    transition: width 0.4s ease;
    width: 0%;
}

/* ── MAIN CONTENT ── */
.right {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.right-body {
    flex: 1;
    overflow-y: auto;
    padding: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ── SCREENS ── */
.screen {
    display: none;
    width: 100%;
    max-width: 560px;
    animation: screenIn 0.45s ease forwards;
}

.screen.active { display: block; }

@keyframes screenIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── TYPOGRAPHY ── */
.screen-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 16px;
}

.screen-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.screen-title em { font-style: italic; color: var(--fire); }

.screen-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--smoke);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

/* ── FORM ELEMENTS ── */
.field { margin-bottom: 24px; }

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}

input:focus, textarea:focus { border-color: var(--fire); }

textarea { resize: vertical; min-height: 80px; }

.price-field { position: relative; }
.price-field span {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--smoke);
}
.price-field input { padding-left: 32px; }

/* ── CHOICE BUTTONS ── */
.choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.choice {
    padding: 16px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 14px;
}

.choice:hover { border-color: var(--fire); background: #fef0eb; }

.choice.selected {
    border-color: var(--fire);
    background: #fef0eb;
    font-weight: 500;
}

.choice-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice.selected .choice-radio { border-color: var(--fire); background: var(--fire); }

.choice.selected .choice-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

/* ── BOMBSHELL STAT ── */
.bombshell {
    background: var(--ink);
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.bombshell::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--fire);
    opacity: 0.12;
}

.bombshell-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--fire);
    line-height: 1;
    margin-bottom: 12px;
}

.bombshell-label {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 380px;
}

.bombshell-label strong { font-weight: 500; color: var(--white); }

/* ── REFLECTION CARD ── */
.reflection {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.reflection-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.reflection-row:last-child { border-bottom: none; }
.reflection-key { color: var(--smoke); font-weight: 300; }
.reflection-val { font-weight: 600; color: var(--ink); }

/* ── MENU ITEM PREVIEW ── */
.menu-preview {
    background: #fef0eb;
    border: 1px solid #fbc9b5;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
    display: none;
}

.menu-preview.visible { display: block; }

.menu-preview-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 12px;
}

.menu-preview-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.menu-preview-desc {
    font-size: 0.875rem;
    color: var(--smoke);
    margin-bottom: 10px;
}

.menu-preview-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fire);
}

/* ── CUSTOMER VIEW MOCKUP ── */
.customer-mockup {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mockup-bar {
    background: var(--ink);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
}

.mockup-body { padding: 28px; }

.mockup-restaurant {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.mockup-tagline {
    font-size: 0.8rem;
    color: var(--smoke);
    margin-bottom: 20px;
}

.mockup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mockup-item-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.mockup-item-desc { font-size: 0.75rem; color: var(--smoke); margin-top: 2px; }
.mockup-item-price { font-size: 0.9rem; font-weight: 700; color: var(--ink); }

.mockup-add {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--fire);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── RESTAURANT HEADER PREVIEW ── */
.mockup-header-band {
    background: var(--ink);
    padding: 20px 24px 16px;
}

.mockup-header-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.mockup-header-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ember);
}

.mockup-info-row {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.mockup-info-block {
    flex: 1;
    padding: 14px 0;
}

.mockup-info-block:first-child {
    border-right: 1px solid var(--border);
    padding-right: 16px;
}

.mockup-info-block:last-child { padding-left: 16px; }

.mockup-info-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 4px;
}

.mockup-info-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.mockup-map-strip {
    width: 100%;
    height: 130px;
    background: var(--ash);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.mockup-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--smoke);
    background: var(--ash);
    transition: opacity 0.4s;
}

.mockup-section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--smoke);
    padding: 14px 0 8px;
    border-bottom: 1px solid var(--border);
}

/* ── CONGRATS ── */
.congrats-icon {
    width: 72px; height: 72px;
    background: #3DB87A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.congrats-icon::after {
    content: '';
    width: 28px; height: 18px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg) translateY(-3px);
}

/* ── COMMITMENT ── */
.commitment-choices .choice { font-size: 0.95rem; }

/* ── LOADING ── */
.loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.loading-bar-outer {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
}

.loading-bar-inner {
    height: 100%;
    background: var(--fire);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.loading-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.loading-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--smoke);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.loading-item.done { opacity: 1; transform: translateX(0); color: var(--ink); }

.loading-tick {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-item.done .loading-tick {
    background: #3DB87A;
    border-color: #3DB87A;
}

.loading-item.done .loading-tick::after {
    content: '';
    width: 8px; height: 5px;
    border-left: 1.5px solid var(--white);
    border-bottom: 1.5px solid var(--white);
    transform: rotate(-45deg) translateY(-1px);
}

/* ── SUMMARY ── */
.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.summary-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 8px;
}

.summary-card-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--fire);
    line-height: 1;
    margin-bottom: 6px;
}

.summary-card-desc {
    font-size: 0.8rem;
    color: var(--smoke);
    font-weight: 300;
}

/* ── PAYPAL ── */
.paypal-box {
    background: var(--white);
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}

.paypal-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.paypal-logo span { color: #009cde; }

.paypal-note {
    font-size: 0.875rem;
    color: var(--smoke);
    margin-bottom: 24px;
}

.paypal-btn {
    background: #0070ba;
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 32px;
    transition: background 0.2s;
}

.paypal-btn:hover { background: #005ea6; }

/* ── FINALIZE ── */
.prefilled {
    background: #fef0eb;
    border: 1px solid #fbc9b5;
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.prefilled-icon {
    width: 20px; height: 20px;
    background: var(--fire);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prefilled-icon::after {
    content: '';
    width: 8px; height: 5px;
    border-left: 1.5px solid var(--white);
    border-bottom: 1.5px solid var(--white);
    transform: rotate(-45deg) translateY(-1px);
}

.prefilled-text { font-size: 0.8rem; color: var(--fire); font-weight: 500; }

.prefilled-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.prefilled-field {
    background: var(--ash);
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--smoke);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prefilled-field span:last-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--smoke);
    opacity: 0.6;
}

/* ── ONBOARDING BUTTONS ── */
.btn-row {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

/* ── WELCOME ── */
.welcome-big { padding-top: 20px; }

.welcome-tag {
    display: inline-block;
    background: #fef0eb;
    border: 1px solid #fbc9b5;
    color: var(--fire);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 32px;
}

/* ── SCROLLBAR ── */
.right-body::-webkit-scrollbar { width: 4px; }
.right-body::-webkit-scrollbar-track { background: transparent; }
.right-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── PAGE BUILD PREVIEW ── */
.page-build-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 10px;
}

.page-build-frame {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.pb-bar {
    width: 100%;
    height: 6px;
    background: var(--ink);
    border-radius: 2px;
    margin-bottom: 16px;
}

.pb-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.pb-tag {
    font-size: 0.7rem;
    color: var(--smoke);
    margin-bottom: 16px;
}

@keyframes pbItemIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
}

.pb-item-animate { animation: pbItemIn 0.4s ease forwards; }

.pb-item-line {
    width: 65%;
    height: 10px;
    background: var(--border);
    border-radius: 2px;
}

.pb-item-price {
    width: 40px;
    height: 10px;
    background: #fef0eb;
    border-radius: 2px;
}

.pb-btn {
    width: 100%;
    height: 36px;
    background: var(--fire);
    border-radius: 6px;
    margin-top: 16px;
    opacity: 0;
    animation: pbItemIn 0.4s ease 0.6s forwards;
}

/* ── ZIP LOOKUP ── */
.zip-checking {
    font-size: 0.75rem;
    color: var(--smoke);
    margin-top: 6px;
    min-height: 18px;
}
