/* QRPanda — Combined Stylesheet */


  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0A0A0A;
    background: #F0EFEA;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  button { font-family: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  button:active { transform: scale(0.97); transition: transform 0.1s; }
  input, textarea, select { font-family: inherit; -webkit-appearance: none; appearance: none; }
  input:focus, textarea:focus, select:focus { outline: none; border-color: #00AABB !important; }
  ::-webkit-scrollbar { width: 8px; height: 8px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
  a { color: inherit; text-decoration: none; }

  /* ===== TOP NAVIGATION ===== */
  .preview-nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: #0A0A0A; color: white;
    padding: 12px 20px;
    display: flex; align-items: center; gap: 16px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow-x: auto;
  }
  .preview-nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 15px; flex-shrink: 0;
  }
  .preview-nav-brand img { width: 32px; height: 32px; border-radius: 6px; }
  .preview-nav-tabs {
    display: flex; gap: 4px; flex-shrink: 0;
  }
  .preview-tab {
    padding: 8px 14px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    border: none; border-radius: 8px;
    font-size: 12px; font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
  }
  .preview-tab:hover { background: rgba(255,255,255,0.1); color: white; }
  .preview-tab.active { background: #00AABB; color: white; }
  .preview-nav-info {
    margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.5); flex-shrink: 0;
  }

  /* ===== SCREEN CONTAINER ===== */
  .screen { display: none; min-height: 100vh; padding-top: 60px; }
  .screen.active { display: block; }
  .screen-header {
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .screen-header h2 { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
  .screen-header p { font-size: 13px; color: #666; margin-top: 2px; }
  .device-toggle {
    display: flex; gap: 4px;
    background: #F0EFEA; padding: 4px; border-radius: 8px;
  }
  .device-toggle button {
    padding: 6px 12px; background: transparent; border: none;
    font-size: 12px; font-weight: 500; color: #666; border-radius: 6px;
  }
  .device-toggle button.active { background: white; color: #0A0A0A; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
  .device-frame {
    margin: 24px auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: max-width 0.3s ease;
  }
  .device-frame.mobile { max-width: 440px; min-height: 800px; }
  .device-frame.desktop { max-width: 1280px; min-height: 800px; }

  /* ===== ICON HELPERS ===== */
  .ic { display: inline-block; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  @keyframes scanDot { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
  @keyframes twinkle { 0%, 100% { opacity: 0.4; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
  .live-dot { animation: pulse 2s ease-in-out infinite; }
  .scan-pulse { animation: scanDot 2s ease-out infinite; }

  /* =========================================================
     SCREEN: LANDING PAGE
     ========================================================= */
  .landing-hero {
    padding: 60px 32px 80px;
    background: linear-gradient(135deg, #FAFAF7 0%, #F0EFEA 100%);
    text-align: center;
  }
  .landing-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; background: rgba(0,170,187,0.1);
    color: #006670; border-radius: 100px;
    font-size: 11px; font-weight: 600;
    margin-bottom: 20px;
  }
  .landing-headline {
    font-size: 56px; font-weight: 700; letter-spacing: -2px;
    line-height: 1.05; margin-bottom: 16px;
    max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .landing-headline em {
    font-family: 'Playfair Display', serif;
    font-style: italic; color: #00AABB;
  }
  .landing-subhead {
    font-size: 18px; color: #555;
    max-width: 600px; margin: 0 auto 32px; line-height: 1.5;
  }
  .landing-cta-row {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
  }
  .btn-primary-lg {
    padding: 14px 28px; background: #0A0A0A; color: white;
    border: none; border-radius: 100px;
    font-size: 15px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary-lg {
    padding: 14px 28px; background: white; color: #0A0A0A;
    border: 0.5px solid rgba(0,0,0,0.1); border-radius: 100px;
    font-size: 15px; font-weight: 600;
  }
  .landing-trust {
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  }
  .landing-trust span { display: flex; align-items: center; gap: 5px; }
  .landing-mascot {
    margin: 40px auto 0; width: 200px; height: 200px;
  }
  .landing-section { padding: 60px 32px; max-width: 1200px; margin: 0 auto; }
  .landing-section h3 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.8px;
    margin-bottom: 12px; text-align: center;
  }
  .landing-section h3 em { font-family: 'Playfair Display', serif; font-style: italic; color: #00AABB; }
  .landing-section .lead {
    text-align: center; color: #666; font-size: 15px;
    max-width: 540px; margin: 0 auto 40px;
  }
  .types-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .type-card {
    padding: 20px 16px; background: white;
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 14px; text-align: center;
    transition: all 0.2s ease;
    position: relative;
  }
  .type-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .type-card-ic {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 10px;
  }
  .type-card-name { font-size: 13px; font-weight: 600; }
  .type-card-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 2px 6px; background: #FFD66B; color: #412402;
    border-radius: 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  }
  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  .feature-card {
    padding: 24px; background: white;
    border: 0.5px solid rgba(0,0,0,0.06); border-radius: 16px;
  }
  .feature-card-ic {
    font-size: 32px; margin-bottom: 12px;
  }
  .feature-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
  .feature-card p { font-size: 13px; color: #666; line-height: 1.5; }
  .pricing-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; max-width: 800px; margin: 0 auto;
  }
  @media (max-width: 700px) { .pricing-cards { grid-template-columns: 1fr; } }
  .pricing-card {
    padding: 32px 24px; background: white;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 20px;
    position: relative;
  }
  .pricing-card.featured { border: 2px solid #0F6E56; }
  .pricing-card-tag {
    position: absolute; top: -10px; left: 24px;
    padding: 4px 12px; border-radius: 100px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  }
  .pricing-card-tag.free { background: #0F6E56; color: white; }
  .pricing-card-tag.pro { background: #0A0A0A; color: white; }
  .pricing-card .price {
    font-size: 36px; font-weight: 700; letter-spacing: -1px;
    margin: 12px 0;
  }
  .pricing-card .price span { font-size: 14px; font-weight: 400; color: #666; }
  .pricing-card ul { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
  .pricing-card li { font-size: 13px; display: flex; gap: 8px; align-items: flex-start; color: #444; }
  .pricing-card li::before { content: "✓"; color: #0F6E56; font-weight: 700; flex-shrink: 0; }
  .footer {
    padding: 40px 32px; background: #0A0A0A; color: rgba(255,255,255,0.7);
    text-align: center; font-size: 12px;
  }

  /* =========================================================
     SCREEN: ONBOARDING
     ========================================================= */
  .onb-overlay {
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    min-height: calc(100vh - 60px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .onb-modal {
    background: white; width: 100%; max-width: 640px;
    max-height: 90vh; border-radius: 24px;
    display: flex; flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  }
  .onb-top {
    padding: 20px 24px 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .onb-progress { display: flex; gap: 5px; align-items: center; }
  .onb-dot {
    width: 5px; height: 5px; background: rgba(0,0,0,0.1);
    border-radius: 3px; transition: all 0.3s;
  }
  .onb-dot.active { width: 20px; background: #0A0A0A; }
  .onb-dot.done { background: #0A0A0A; }
  .onb-skip {
    background: transparent; border: none; color: #888;
    font-size: 13px; padding: 4px 8px;
  }
  .onb-body {
    flex: 1; overflow-y: auto; padding: 32px 40px;
  }
  .onb-eyebrow {
    display: inline-block; padding: 4px 12px;
    background: rgba(0,170,187,0.1); color: #006670;
    border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
    margin-bottom: 12px;
  }
  .onb-title {
    font-size: 30px; font-weight: 700; letter-spacing: -0.8px;
    line-height: 1.15; margin-bottom: 8px;
  }
  .onb-title em { font-family: 'Playfair Display', serif; font-style: italic; }
  .onb-sub { font-size: 14px; color: #00AABB; font-weight: 500; margin-bottom: 12px; }
  .onb-body-text {
    font-size: 14px; color: #555; line-height: 1.5;
    max-width: 440px; margin: 0 auto;
  }
  .onb-text-center { text-align: center; }
  .onb-bottom {
    padding: 20px 40px 24px;
    border-top: 0.5px solid rgba(0,0,0,0.06);
    display: flex; gap: 10px;
  }
  .onb-btn-back {
    padding: 14px 24px; background: white; color: #0A0A0A;
    border: 1px solid rgba(0,0,0,0.1); border-radius: 12px;
    font-size: 14px; font-weight: 500;
  }
  .onb-btn-next {
    flex: 1; padding: 14px 24px; background: #0A0A0A;
    color: white; border: none; border-radius: 12px;
    font-size: 15px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .onb-mascot-box {
    background: #FAFAF7; border-radius: 24px;
    padding: 20px; display: inline-block; margin-bottom: 20px;
  }
  .pricing-mini-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; max-width: 560px; margin: 0 auto;
  }
  @media (max-width: 600px) { .pricing-mini-grid { grid-template-columns: 1fr; } }
  .auth-grid {
    max-width: 520px; margin: 0 auto;
  }
  .auth-box {
    padding: 18px; border-radius: 16px; margin-bottom: 12px;
  }
  .auth-box.no-login {
    background: rgba(15,110,86,0.05);
    border: 1.5px solid rgba(15,110,86,0.2);
  }
  .auth-box.login {
    background: rgba(0,170,187,0.05);
    border: 1.5px solid rgba(0,170,187,0.2);
  }
  .auth-box-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  }
  .auth-box-ic {
    width: 32px; height: 32px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
  }
  .auth-box-ic.green { background: #0F6E56; }
  .auth-box-ic.teal { background: #00AABB; }
  .auth-box-title { font-size: 15px; font-weight: 600; }
  .auth-box-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  }
  .auth-tag {
    padding: 8px; background: white; border-radius: 8px;
    display: flex; align-items: center; gap: 6px;
    font-size: 11px;
  }
  .feature-row {
    display: flex; gap: 12px; padding: 14px 16px;
    background: white; border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 12px; align-items: flex-start;
    margin-bottom: 10px;
  }
  .feature-row-ic { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
  .feature-row-text { flex: 1; }
  .feature-row-title {
    font-size: 14px; font-weight: 600; margin-bottom: 2px;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  }
  .badge-pill {
    padding: 1px 6px; border-radius: 4px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  }
  .badge-free { background: #0F6E56; color: white; }
  .badge-powerful { background: #FFD66B; color: #412402; }
  .badge-flagship { background: #FFD66B; color: #412402; }
  .feature-row-desc { font-size: 12px; color: #666; line-height: 1.5; }
  .purposes-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 10px; max-width: 560px; margin: 0 auto;
  }
  @media (max-width: 600px) { .purposes-grid { grid-template-columns: 1fr 1fr; } }
  .purpose-card {
    padding: 16px 12px; background: white;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 14px;
    text-align: center; position: relative; transition: all 0.2s;
  }
  .purpose-card:hover { transform: translateY(-2px); }
  .purpose-card.selected { border: 2px solid #00AABB; background: rgba(0,170,187,0.05); }
  .purpose-ic {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 8px;
  }
  .purpose-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
  .purpose-desc { font-size: 10px; color: #888; line-height: 1.3; }

  /* =========================================================
     SCREEN: MOBILE BUILDER
     ========================================================= */
  .mb-frame {
    max-width: 440px; margin: 24px auto; background: white;
    border-radius: 32px; padding: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .mb-screen {
    background: #FAFAF7; border-radius: 26px;
    overflow: hidden; min-height: 720px; position: relative;
  }
  .mb-header {
    padding: 16px 20px;
    background: rgba(250,250,247,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: space-between;
  }
  .mb-back-btn {
    background: transparent; border: none; color: #0A0A0A;
    font-size: 15px; font-weight: 500;
    display: flex; align-items: center; gap: 4px;
  }
  .mb-step-info { font-size: 13px; font-weight: 500; color: #666; }
  .mb-eye-btn {
    background: transparent; border: none; color: #00AABB; font-size: 20px;
  }
  .mb-progress-track { height: 3px; background: rgba(0,0,0,0.06); }
  .mb-progress-fill { height: 100%; background: #00AABB; transition: width 0.3s; }
  .mb-content { padding: 24px 20px 100px; }
  .mb-content h1 {
    font-size: 28px; font-weight: 700;
    letter-spacing: -1px; line-height: 1.1; margin-bottom: 6px;
  }
  .mb-content h1 em { font-family: 'Playfair Display', serif; font-style: italic; color: #00AABB; }
  .mb-content > p {
    font-size: 14px; color: #666; margin-bottom: 24px;
  }
  .mb-types-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .mb-type-card {
    padding: 16px; background: white;
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 16px; text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02); position: relative;
    border: 0.5px solid rgba(0,0,0,0.06);
  }
  .mb-type-ic {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 10px;
  }
  .mb-type-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
  .mb-type-desc { font-size: 11px; color: #888; }
  .mb-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 0.5px solid rgba(0,0,0,0.06);
    padding: 12px 20px; display: flex; gap: 10px;
  }
  .mb-bottom-bar-thumb {
    width: 52px; height: 52px; background: white;
    border: 0.5px solid rgba(0,0,0,0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .mb-bottom-bar-cta {
    flex: 1; padding: 16px; background: #0A0A0A; color: white;
    border: none; border-radius: 14px;
    font-size: 15px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .qr-mini {
    background: white; padding: 4px; border-radius: 4px;
    display: inline-block;
  }
  .qr-mini svg { display: block; }

  /* =========================================================
     SCREEN: HOSTED MENU
     ========================================================= */
  .menu-mobile {
    max-width: 440px; margin: 0 auto; background: #FAFAF7; min-height: calc(100vh - 60px);
  }
  .menu-hero {
    position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
    background: #8B2E2E;
  }
  .menu-hero img { width: 100%; height: 100%; object-fit: cover; }
  .menu-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  }
  .menu-lang-btn {
    position: absolute; top: 12px; right: 12px;
    padding: 8px 14px; background: rgba(255,255,255,0.95);
    border-radius: 100px; border: none;
    font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .menu-hero-text {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; color: white;
  }
  .menu-hero-text h1 {
    font-size: 28px; font-weight: 700; letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 4px;
  }
  .menu-hero-text .cuisine { font-size: 13px; opacity: 0.9; margin-bottom: 8px; }
  .menu-hero-pills {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px;
  }
  .menu-pill {
    display: flex; align-items: center; gap: 4px;
    padding: 3px 8px; background: rgba(255,255,255,0.2);
    border-radius: 100px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .menu-pill-open { background: rgba(15,110,86,0.7); font-weight: 600; }
  .menu-pill-open .dot { width: 6px; height: 6px; border-radius: 50%; background: #0AFF88; }
  .menu-actions {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 8px; padding: 12px 16px;
    border-bottom: 0.5px solid rgba(0,0,0,0.05);
  }
  .menu-action {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 12px; background: white; border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.06);
    color: #0A0A0A;
  }
  .menu-action-ic { font-size: 18px; }
  .menu-action-label { font-size: 11px; font-weight: 500; }
  .menu-search {
    position: sticky; top: 60px; z-index: 50;
    background: rgba(250,250,247,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-bottom: 0.5px solid rgba(0,0,0,0.05);
  }
  .menu-search-box {
    position: relative;
  }
  .menu-search-box::before {
    content: "🔍"; position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%); font-size: 16px;
  }
  .menu-search-box input {
    width: 100%; padding: 12px 14px 12px 42px;
    background: white; border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 12px; font-size: 14px;
  }
  .menu-cats {
    position: sticky; top: 124px; z-index: 49;
    background: #FAFAF7; padding: 8px 0 12px;
    border-bottom: 0.5px solid rgba(0,0,0,0.05);
  }
  .menu-cats-scroll {
    display: flex; gap: 8px; overflow-x: auto; padding: 0 16px;
  }
  .menu-cat-chip {
    padding: 8px 14px; background: white;
    color: #666; border: 0.5px solid rgba(0,0,0,0.1);
    border-radius: 100px;
    font-size: 12px; font-weight: 500;
    white-space: nowrap; flex-shrink: 0;
    display: flex; align-items: center; gap: 5px;
  }
  .menu-cat-chip.active { background: #0A0A0A; color: white; border: none; }
  .menu-cat-chip .cnt { opacity: 0.6; font-size: 10px; }
  .menu-list { padding: 12px 16px; }
  .menu-section-h {
    padding: 12px 0 8px; display: flex; align-items: center; gap: 8px;
  }
  .menu-section-h h2 {
    font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin: 0;
  }
  .menu-items { display: grid; gap: 10px; }
  .menu-item {
    display: flex; gap: 12px; padding: 12px; background: white;
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 16px; cursor: pointer; text-align: left;
    width: 100%; border: 0.5px solid rgba(0,0,0,0.06);
    transition: all 0.2s ease;
  }
  .menu-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .menu-item.unavailable { opacity: 0.55; cursor: default; }
  .menu-item-photo-wrap {
    position: relative; flex-shrink: 0;
  }
  .menu-item-photo {
    width: 100px; height: 100px; border-radius: 12px;
    object-fit: cover; display: block;
  }
  .menu-item.unavailable .menu-item-photo { filter: grayscale(0.8); }
  .menu-item-soldout {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(0,0,0,0.5);
    color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  }
  .menu-item-pop-badge {
    position: absolute; top: 6px; left: 6px;
    padding: 3px 7px; background: #FFD66B; color: #412402;
    border-radius: 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  }
  .menu-item-info {
    flex: 1; min-width: 0; display: flex; flex-direction: column;
  }
  .menu-item-info h3 {
    font-size: 15px; font-weight: 600; margin-bottom: 2px; letter-spacing: -0.2px;
  }
  .menu-item-info p {
    font-size: 12px; color: #666; line-height: 1.4; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .menu-item-tags {
    display: flex; gap: 4px; flex-wrap: wrap; align-items: center; margin-bottom: 6px;
  }
  .menu-item-tag { font-size: 13px; }
  .menu-item-prep { font-size: 10px; color: #888; margin-left: 4px; }
  .menu-item-price-row {
    margin-top: auto; display: flex; align-items: baseline; gap: 6px;
  }
  .menu-item-old { font-size: 12px; color: #999; text-decoration: line-through; }
  .menu-item-new { font-size: 16px; font-weight: 700; }
  .menu-item-discount {
    font-size: 10px; padding: 2px 6px;
    background: rgba(15,110,86,0.1); color: #0F6E56;
    border-radius: 4px; font-weight: 600;
  }

  /* Hosted menu desktop */
  .menu-desktop { background: #FAFAF7; min-height: calc(100vh - 60px); }
  .menu-desktop-hero { position: relative; width: 100%; height: 440px; overflow: hidden; background: #8B2E2E; }
  .menu-desktop-hero img { width: 100%; height: 100%; object-fit: cover; }
  .menu-desktop-hero-ovl {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.85) 100%);
  }
  .menu-desktop-hero-top {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
  }
  .menu-desktop-hero-text {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px; color: white;
    max-width: 1200px; margin: 0 auto;
  }
  .menu-desktop-hero-text h1 {
    font-size: 56px; font-weight: 700; letter-spacing: -1.2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    line-height: 1.05; margin-bottom: 6px;
  }
  .menu-desktop-hero-text .cuisine { font-size: 16px; opacity: 0.9; margin-bottom: 14px; }
  .menu-desktop-hero-buttons {
    display: flex; gap: 10px; margin-top: 20px;
  }
  .menu-desktop-hero-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; background: rgba(255,255,255,0.95);
    color: #0A0A0A; border-radius: 100px;
    text-decoration: none; font-size: 13px; font-weight: 500;
    backdrop-filter: blur(8px);
  }
  .menu-desktop-body {
    max-width: 1200px; margin: 0 auto; display: flex; gap: 32px; padding: 32px;
    align-items: flex-start;
  }
  .menu-desktop-sidebar {
    width: 260px; position: sticky; top: 80px; flex-shrink: 0;
  }
  .menu-desktop-sidebar input {
    width: 100%; padding: 11px 14px 11px 40px;
    background: white; border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 10px; font-size: 14px; margin-bottom: 20px;
  }
  .sidebar-cats-label {
    font-size: 11px; font-weight: 600; color: #888;
    letter-spacing: 0.5px; margin-bottom: 10px; padding: 0 4px;
  }
  .sidebar-cat {
    width: 100%; padding: 10px 12px; background: transparent;
    color: #555; border: none; border-radius: 10px;
    font-size: 13px; font-weight: 400;
    display: flex; align-items: center; gap: 10px; text-align: left;
    margin-bottom: 4px;
  }
  .sidebar-cat.active { background: #0A0A0A; color: white; font-weight: 600; }
  .sidebar-cat .cnt { margin-left: auto; font-size: 11px; opacity: 0.6; }
  .sidebar-contact {
    margin-top: 24px; padding: 16px;
    background: white; border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.06);
  }
  .sidebar-contact-label {
    font-size: 11px; font-weight: 600; color: #888;
    letter-spacing: 0.5px; margin-bottom: 10px;
  }
  .sidebar-contact-item {
    display: flex; gap: 8px; color: #555; font-size: 12px; margin-bottom: 8px;
  }
  .menu-desktop-main { flex: 1; min-width: 0; }
  .menu-desktop-main h2 {
    font-size: 26px; font-weight: 700; letter-spacing: -0.5px;
    margin: 0 0 16px;
    padding: 0 0 16px; display: flex; align-items: center; gap: 10px;
  }
  .menu-desktop-items {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px;
  }
  .menu-desktop-items .menu-item-photo { width: 160px; height: 160px; }
  .menu-desktop-items .menu-item-info h3 { font-size: 17px; }
  .menu-desktop-items .menu-item-info p { font-size: 13px; -webkit-line-clamp: 3; line-clamp: 3; }

  /* =========================================================
     SCREEN: ADMIN PANEL
     ========================================================= */
  .admin-desktop { display: flex; min-height: calc(100vh - 60px); }
  .admin-sidebar {
    width: 240px; background: #0A0A0A; color: white;
    display: flex; flex-direction: column; flex-shrink: 0;
    padding: 20px 0;
  }
  .admin-sidebar-brand {
    padding: 0 20px 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 10px;
  }
  .admin-sidebar-logo {
    width: 32px; height: 32px; background: white;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .admin-sidebar-brand-info > div:first-child { font-size: 14px; font-weight: 600; }
  .admin-sidebar-brand-info > div:last-child { font-size: 11px; color: rgba(255,255,255,0.5); }
  .admin-sidebar-restaurant {
    padding: 16px 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .admin-sidebar-restaurant-card {
    display: flex; align-items: center; gap: 10px;
  }
  .admin-sidebar-restaurant-card img {
    width: 32px; height: 32px; border-radius: 8px; object-fit: cover;
  }
  .admin-sidebar-restaurant-name {
    font-size: 13px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .admin-sidebar-live {
    font-size: 10px; color: #5FCFA0;
    display: flex; align-items: center; gap: 4px;
  }
  .admin-sidebar-live .dot {
    width: 5px; height: 5px; background: #5FCFA0; border-radius: 50%;
  }
  .admin-sidebar-nav {
    padding: 12px;
    display: flex; flex-direction: column; gap: 2px; flex: 1;
  }
  .admin-sidebar-nav button {
    padding: 10px 12px; background: transparent;
    border: none; border-radius: 8px;
    color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 400;
    display: flex; align-items: center; gap: 10px; text-align: left;
  }
  .admin-sidebar-nav button.active {
    background: rgba(255,255,255,0.1); color: white; font-weight: 600;
  }
  .admin-sidebar-stat {
    padding: 16px 20px;
    border-top: 0.5px solid rgba(255,255,255,0.08);
  }
  .admin-sidebar-stat-label {
    font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px;
  }
  .admin-sidebar-stat-value { font-size: 20px; font-weight: 700; }
  .admin-sidebar-stat-trend { font-size: 11px; color: #5FCFA0; margin-top: 2px; }
  .admin-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
  .admin-header {
    background: white; border-bottom: 0.5px solid rgba(0,0,0,0.06);
    padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
  }
  .admin-header h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin: 0; }
  .admin-header p { font-size: 13px; color: #888; margin-top: 2px; }
  .btn-pri { padding: 8px 16px; background: #0A0A0A; color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 500; }
  .btn-sec { padding: 8px 16px; background: white; color: #0A0A0A; border: 0.5px solid rgba(0,0,0,0.1); border-radius: 8px; font-size: 13px; font-weight: 500; }
  .admin-content { display: flex; flex: 1; min-height: 0; }
  .admin-items { flex: 1; overflow: auto; padding: 24px 32px; }
  .admin-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 20px;
  }
  .stat-card {
    padding: 20px; background: white; border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.06);
  }
  .stat-card-value { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }
  .stat-card-label { font-size: 12px; color: #666; margin-top: 2px; }
  .stat-card-trend { font-size: 11px; color: #0F6E56; margin-top: 4px; }
  .admin-table {
    background: white; border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.06); overflow: hidden;
  }
  .admin-table-header {
    display: grid; grid-template-columns: 60px 1fr 100px 100px 80px 60px;
    padding: 12px 16px; background: #FAFAF7;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
    font-size: 11px; font-weight: 600; color: #888; letter-spacing: 0.5px;
  }
  .admin-table-row {
    display: grid; grid-template-columns: 60px 1fr 100px 100px 80px 60px;
    padding: 12px 16px;
    border-bottom: 0.5px solid rgba(0,0,0,0.04);
    align-items: center;
  }
  .admin-table-row:last-child { border-bottom: none; }
  .admin-table-row img {
    width: 44px; height: 44px; border-radius: 8px; object-fit: cover;
  }
  .toggle-switch {
    width: 40px; height: 22px; background: #0F6E56;
    border-radius: 100px; border: none; position: relative;
  }
  .toggle-switch.off { background: #ccc; }
  .toggle-switch::after {
    content: ""; position: absolute;
    top: 2px; left: 20px;
    width: 18px; height: 18px;
    background: white; border-radius: 50%;
    transition: left 0.2s;
  }
  .toggle-switch.off::after { left: 2px; }
  .admin-preview {
    width: 340px; border-left: 0.5px solid rgba(0,0,0,0.06);
    background: white; padding: 24px;
    overflow-y: auto; flex-shrink: 0;
  }
  .admin-preview-label {
    font-size: 11px; color: #888; letter-spacing: 0.5px; margin-bottom: 8px;
  }
  .phone-frame {
    background: #0A0A0A; border-radius: 24px; padding: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
  .phone-screen {
    background: white; border-radius: 18px; overflow: hidden;
    aspect-ratio: 9/19;
  }
  .phone-notch {
    background: #0A0A0A; height: 20px; position: relative;
  }
  .phone-notch::after {
    content: ""; position: absolute;
    left: 50%; transform: translateX(-50%); top: 6px;
    width: 50px; height: 8px;
    background: #0A0A0A; border-radius: 100px;
  }
  .phone-content { padding: 8px; display: grid; gap: 5px; max-height: 300px; overflow-y: auto; }
  .phone-cover { position: relative; aspect-ratio: 16/9; }
  .phone-cover img { width: 100%; height: 100%; object-fit: cover; }
  .phone-cover-ovl {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
  }
  .phone-cover-text {
    position: absolute; bottom: 6px; left: 8px; right: 8px; color: white;
  }
  .phone-cover-text > div:first-child { font-size: 13px; font-weight: 700; }
  .phone-cover-text > div:last-child { font-size: 8px; opacity: 0.9; }
  .phone-item {
    display: flex; gap: 6px; padding: 4px;
    background: #FAFAF7; border-radius: 6px;
  }
  .phone-item img { width: 32px; height: 32px; border-radius: 5px; object-fit: cover; flex-shrink: 0; }
  .phone-item-name { font-size: 9px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .phone-item-desc { font-size: 7px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .phone-item-price { font-size: 9px; font-weight: 700; margin-top: 1px; }
  .admin-url-card {
    margin-top: 16px; padding: 12px;
    background: rgba(0,170,187,0.05);
    border-radius: 10px; font-size: 11px; color: #006670;
    text-align: center;
  }

  /* =========================================================
     SCREEN: DASHBOARD
     ========================================================= */
  .dash-desktop { display: flex; min-height: calc(100vh - 60px); }
  .dash-sidebar {
    width: 240px; background: #0A0A0A; color: white;
    display: flex; flex-direction: column; flex-shrink: 0;
    padding: 20px 0;
  }
  .dash-sidebar-cta {
    padding: 16px 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .dash-sidebar-cta button {
    width: 100%; padding: 10px;
    background: #00AABB; color: white; border: none; border-radius: 10px;
    font-size: 13px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .dash-upgrade {
    margin: 12px; padding: 16px;
    background: linear-gradient(135deg, rgba(0,170,187,0.15), rgba(255,214,107,0.1));
    border-radius: 12px; border: 0.5px solid rgba(255,255,255,0.1);
  }
  .dash-upgrade-tag {
    font-size: 11px; color: #FFD66B; font-weight: 600; margin-bottom: 4px;
  }
  .dash-upgrade-text {
    font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.4; margin-bottom: 10px;
  }
  .dash-upgrade button {
    width: 100%; padding: 8px;
    background: white; color: #0A0A0A; border: none; border-radius: 8px;
    font-size: 11px; font-weight: 600;
  }
  .dash-content { flex: 1; overflow-y: auto; }
  .dash-overview { padding: 24px 32px; }
  .dash-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 20px;
  }
  .dash-top-perf {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,214,107,0.15), rgba(255,107,107,0.08));
    border-radius: 14px; margin-bottom: 16px;
    display: flex; align-items: center; gap: 16px;
  }
  .dash-top-perf-emoji { font-size: 32px; }
  .dash-top-perf-tag {
    font-size: 10px; font-weight: 700; color: #5C4A1F;
    letter-spacing: 0.5px; margin-bottom: 2px;
  }
  .dash-top-perf-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
  .dash-top-perf-stats { font-size: 12px; color: #666; }
  .dash-2col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
  }
  .dash-3col {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  }
  .dash-card {
    padding: 20px; background: white;
    border-radius: 14px; border: 0.5px solid rgba(0,0,0,0.06);
  }
  .dash-card-h {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 16px;
  }
  .dash-card-h h3 { font-size: 14px; font-weight: 600; margin: 0 0 2px; }
  .dash-card-h p { font-size: 11px; color: #888; }
  .scan-map {
    position: relative; aspect-ratio: 16/9;
    background: #0A1A2E; border-radius: 10px; overflow: hidden;
  }
  .scan-map svg path {
    fill: rgba(0,170,187,0.15); stroke: rgba(0,170,187,0.4); stroke-width: 0.5;
  }
  .scan-dot {
    position: absolute; width: 8px; height: 8px;
    border-radius: 50%; box-shadow: 0 0 16px;
  }
  .scan-dot::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 50%; background: inherit;
    animation: scanDot 2s ease-out infinite;
  }
  .scan-map-footer {
    position: absolute; bottom: 10px; left: 12px;
    color: white; font-size: 10px; opacity: 0.6;
  }
  .peak-bars { display: flex; align-items: flex-end; gap: 3px; height: 100px; }
  .peak-bar { flex: 1; border-radius: 2px; position: relative; }
  .peak-bar.high { background: #FFD66B; }
  .peak-bar.med { background: #00AABB; }
  .peak-bar.low { background: #E8F4F5; }
  .peak-bar-label {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    font-size: 9px; font-weight: 600; color: #5C4A1F;
  }
  .peak-x-labels {
    display: flex; justify-content: space-between;
    margin-top: 8px; font-size: 9px; color: #999;
  }
  .insight-box {
    margin-top: 12px; padding: 10px 12px;
    background: rgba(255,214,107,0.15); border-radius: 8px;
    font-size: 11px; color: #5C4A1F; line-height: 1.5;
  }
  .country-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  }
  .country-row > span:first-child { flex: 1; font-size: 12px; }
  .country-row .bar { flex: 1; height: 5px; background: #F0EFEA; border-radius: 3px; overflow: hidden; }
  .country-row .bar > div { height: 100%; background: #00AABB; border-radius: 3px; }
  .country-row .pct { width: 32px; text-align: right; font-size: 11px; font-weight: 600; }
  .device-row { margin-bottom: 10px; }
  .device-row-h {
    display: flex; justify-content: space-between;
    font-size: 12px; margin-bottom: 4px;
  }
  .device-row-h > span:last-child { font-weight: 600; }
  .device-row .bar { height: 5px; background: #F0EFEA; border-radius: 3px; overflow: hidden; }
  .device-row .bar > div { height: 100%; border-radius: 3px; }
  .recent-scan {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; background: #FAFAF7; border-radius: 8px; margin-bottom: 8px;
  }
  .recent-scan-dot {
    width: 6px; height: 6px; background: #00AABB; border-radius: 50%; flex-shrink: 0;
  }
  .recent-scan-info { flex: 1; min-width: 0; }
  .recent-scan-name {
    font-size: 11px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .recent-scan-meta { font-size: 10px; color: #888; }
  .recent-scan-time { font-size: 10px; color: #999; flex-shrink: 0; }



/* ========================================================================== */

  /* ===== LANDING-SPECIFIC STYLES ===== */
  /* HERO */
  .lh-wrap { background: linear-gradient(180deg, #FAFAF7 0%, #F0EFEA 100%); padding: 60px 5% 80px; }
  .lh-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  @media (max-width: 900px) { .lh-grid { grid-template-columns: 1fr; } }
  .lh-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,170,187,0.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
  .lh-eyebrow > span:first-child { width: 6px; height: 6px; background: #00AABB; border-radius: 50%; }
  .lh-eyebrow > span:last-child { font-size: 12px; color: #006670; font-weight: 500; }
  .lh-headline { font-size: clamp(40px, 5vw, 60px); font-weight: 700; margin: 0 0 16px; line-height: 1.05; letter-spacing: -2px; }
  .lh-headline em { font-style: italic; color: #00AABB; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
  .lh-sub { font-size: 17px; color: #555; margin: 0 0 28px; line-height: 1.5; max-width: 480px; }
  .lh-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
  .lh-cta-pri { background: #0A0A0A; color: white; padding: 14px 24px; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
  .lh-cta-sec { background: white; color: #0A0A0A; padding: 14px 24px; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; border: 1px solid rgba(0,0,0,0.1); cursor: pointer; }
  .lh-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #888; }
  .lh-trust span { display: flex; align-items: center; gap: 6px; }
  .lh-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
  .lh-mascot { position: relative; z-index: 2; }
  .lh-mascot img { width: 320px; height: 320px; object-fit: contain; }
  .lh-qr-card { position: absolute; padding: 14px; background: white; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
  .lh-qr-card.tl { right: 0; top: 20px; transform: rotate(5deg); width: 180px; }
  .lh-qr-card.bl { left: 0; bottom: 20px; transform: rotate(-6deg); width: 180px; }
  .lh-qr-card .qr-bg { border-radius: 10px; padding: 10px; }
  @media (max-width: 600px) {
    .lh-mascot img { width: 200px; height: 200px; }
    .lh-qr-card.tl, .lh-qr-card.bl { width: 110px; }
    .lh-visual { height: 280px; }
  }

  /* BUILDER (3-step interactive) */
  .lb-section { padding: 20px 5% 60px; max-width: 1280px; margin: 0 auto; }
  .lb-steps { background: white; border-radius: 16px 16px 0 0; padding: 20px 24px; border: 0.5px solid rgba(0,0,0,0.08); border-bottom: none; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .lb-steps-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .lb-step-item { display: flex; align-items: center; gap: 8px; }
  .lb-step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; background: rgba(0,0,0,0.06); color: #888; transition: all 0.3s; }
  .lb-step-item.active .lb-step-num { background: #00AABB; color: white; }
  .lb-step-item.done .lb-step-num { background: #0F6E56; color: white; }
  .lb-step-label { font-size: 13px; color: #888; font-weight: 500; }
  .lb-step-item.active .lb-step-label { color: #0A0A0A; font-weight: 600; }
  .lb-step-arrow { color: #ccc; }
  .lb-step-actions { display: flex; gap: 8px; }
  .lb-step-btn-back { padding: 8px 16px; background: white; color: #666; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; }
  .lb-step-btn-next { padding: 8px 18px; background: #00AABB; color: white; border: none; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; }
  .lb-body { background: white; border-radius: 0 0 20px 20px; border: 0.5px solid rgba(0,0,0,0.08); border-top: none; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.04); }
  .lb-mode-bar { padding: 20px 24px; border-bottom: 0.5px solid rgba(0,0,0,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .lb-mode-toggle { display: flex; background: #FAFAF7; border-radius: 10px; padding: 4px; }
  .lb-mode-toggle button { padding: 8px 18px; background: transparent; border: none; border-radius: 7px; font-size: 13px; font-weight: 500; color: #888; cursor: pointer; display: flex; align-items: center; gap: 6px; }
  .lb-mode-toggle button.active { background: white; color: #0A0A0A; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
  .lb-mode-toggle .badge-anal { font-size: 10px; padding: 2px 6px; background: #00AABB; color: white; border-radius: 4px; }
  .lb-mode-info { font-size: 12px; color: #888; }
  .lb-types-tabs { display: flex; padding: 0 16px; border-bottom: 0.5px solid rgba(0,0,0,0.08); gap: 2px; overflow-x: auto; }
  .lb-type-tab { padding: 14px 14px; font-size: 13px; font-weight: 400; color: #777; background: transparent; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
  .lb-type-tab.active { color: #0A0A0A; font-weight: 600; border-bottom: 2px solid #00AABB; }
  .lb-type-tab .hot { font-size: 9px; padding: 2px 5px; background: #FFD66B; color: #412402; border-radius: 3px; font-weight: 600; }
  .lb-content-grid { display: grid; grid-template-columns: 1fr 320px; }
  @media (max-width: 900px) { .lb-content-grid { grid-template-columns: 1fr; } }
  .lb-form-pane { padding: 26px; max-height: 700px; overflow-y: auto; }
  .lb-preview-pane { padding: 26px; background: #FAFAF7; border-left: 0.5px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; padding-top: 40px; }
  .lb-preview-card { width: 200px; height: 200px; background: white; border-radius: 16px; padding: 16px; border: 0.5px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: flex; align-items: center; justify-content: center; }
  .lb-preview-meta { margin-top: 14px; text-align: center; }
  .lb-preview-meta-title { font-size: 13px; font-weight: 500; color: #666; }
  .lb-preview-meta-hint { font-size: 11px; color: #888; margin-top: 2px; }
  .lb-form-group { margin-bottom: 20px; }
  .lb-form-label { font-size: 11px; font-weight: 600; color: #888; letter-spacing: 0.5px; margin-bottom: 6px; display: block; text-transform: uppercase; }
  .lb-form-input { width: 100%; padding: 12px 14px; background: #FAFAF7; border: 0.5px solid rgba(0,0,0,0.08); border-radius: 10px; font-size: 14px; font-family: inherit; box-sizing: border-box; }
  .lb-form-input:focus { outline: none; border-color: #00AABB; background: white; }
  .lb-form-protip { margin-top: 12px; padding: 10px 12px; background: rgba(255,214,107,0.15); border-radius: 8px; display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: #5C4A1F; line-height: 1.5; }
  .lb-url-preview { margin-top: 14px; padding: 14px; background: white; border: 0.5px solid rgba(0,0,0,0.08); border-radius: 10px; display: flex; align-items: center; gap: 10px; }
  .lb-url-preview-ic { font-size: 22px; }
  .lb-url-preview-info > div:first-child { font-size: 13px; font-weight: 500; }
  .lb-url-preview-info > div:last-child { font-size: 11px; color: #0F6E56; margin-top: 2px; }

  /* DESIGN STUDIO */
  .ds-header { padding: 20px 24px; background: linear-gradient(135deg, #0A0A0A, #1a1a1a); color: white; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .ds-header-brand { display: flex; align-items: center; gap: 12px; }
  .ds-header-brand img { width: 36px; height: 36px; border-radius: 6px; }
  .ds-header-brand-info > div:first-child { font-size: 16px; font-weight: 600; }
  .ds-header-brand-info > div:last-child { font-size: 12px; color: rgba(255,255,255,0.6); }
  .ds-grid { display: grid; grid-template-columns: 1fr 360px; }
  @media (max-width: 900px) { .ds-grid { grid-template-columns: 1fr; } }
  .ds-tabs { display: flex; border-bottom: 0.5px solid rgba(0,0,0,0.06); padding: 0 16px; overflow-x: auto; }
  .ds-tab { padding: 14px 14px; font-size: 13px; color: #777; font-weight: 400; background: transparent; border: none; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
  .ds-tab.active { color: #0A0A0A; font-weight: 600; border-bottom: 2px solid #00AABB; }
  .ds-pane { padding: 24px; }
  .ds-presets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  @media (max-width: 600px) { .ds-presets-grid { grid-template-columns: repeat(2, 1fr); } }
  .ds-preset-card { padding: 12px; background: white; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s; }
  .ds-preset-card:hover { transform: translateY(-2px); }
  .ds-preset-card.active { background: rgba(0,170,187,0.05); border: 2px solid #00AABB; }
  .ds-preset-qr { width: 70px; height: 70px; padding: 6px; border-radius: 8px; }
  .ds-preset-name { font-size: 11px; font-weight: 500; text-align: center; }
  .ds-pattern-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
  @media (max-width: 600px) { .ds-pattern-grid { grid-template-columns: repeat(3, 1fr); } }
  .ds-pattern-item { aspect-ratio: 1; background: white; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; cursor: pointer; padding: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .ds-pattern-item.active { border: 2px solid #00AABB; }
  .ds-pattern-item .label { font-size: 10px; color: #666; }
  .ds-color-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
  @media (max-width: 600px) { .ds-color-grid { grid-template-columns: repeat(4, 1fr); } }
  .ds-color-item { aspect-ratio: 1; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .ds-color-item.active { border: 2px solid #00AABB; }
  .ds-color-item > div { width: 60%; height: 60%; border-radius: 20%; }
  .ds-eye-row { display: flex; gap: 8px; flex-wrap: wrap; }
  .ds-eye-color { width: 32px; height: 32px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; cursor: pointer; }
  .ds-eye-color.active { outline: 2px solid #00AABB; outline-offset: 2px; }
  .ds-live-pane { background: linear-gradient(135deg, #FAFAF7, #F0EFEA); padding: 32px 24px; border-left: 0.5px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; }
  .ds-live-card { background: white; border-radius: 20px; padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; }
  .ds-live-qr-bg { padding: 12px; border-radius: 12px; }
  .ds-live-meta { margin-top: 16px; text-align: center; font-size: 12px; color: #666; }
  .ds-live-meta strong { color: #0A0A0A; }

  /* MOCKUP GALLERY */
  .lm-section { padding: 60px 5%; max-width: 1280px; margin: 0 auto; }
  .lm-section h2 { font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -1px; text-align: center; margin-bottom: 8px; }
  .lm-section h2 em { font-style: italic; color: #00AABB; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
  .lm-section .lm-lead { text-align: center; color: #666; font-size: 15px; max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
  .lm-mockups { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 900px) { .lm-mockups { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .lm-mockups { grid-template-columns: 1fr; } }
  .lm-mockup { aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.06); transition: transform 0.3s ease; }
  .lm-mockup:hover { transform: translateY(-4px); }
  .lm-mockup-poster { background: linear-gradient(135deg, #FF6B6B, #FFD66B); padding: 32px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; }
  .lm-mockup-poster .qr-wrap { background: white; padding: 14px; border-radius: 14px; margin-bottom: 16px; }
  .lm-mockup-poster h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; text-align: center; letter-spacing: -0.5px; }
  .lm-mockup-poster p { font-size: 12px; opacity: 0.9; text-align: center; }
  .lm-mockup-card { background: #0A0A0A; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; color: white; }
  .lm-mockup-card-name { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; }
  .lm-mockup-card-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
  .lm-mockup-card .qr-wrap { background: white; padding: 8px; border-radius: 8px; align-self: flex-end; margin-top: auto; }
  .lm-mockup-tshirt { background: linear-gradient(135deg, #FAFAF7, #F0EFEA); display: flex; align-items: center; justify-content: center; }
  .lm-mockup-tshirt .qr-wrap { background: #0A0A0A; padding: 12px; border-radius: 12px; }
  .lm-mockup-table { background: linear-gradient(135deg, #8B2E2E, #6B1F1F); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; position: relative; }
  .lm-mockup-table::before { content: "🍽️"; position: absolute; top: 24px; left: 24px; font-size: 32px; opacity: 0.3; }
  .lm-mockup-table .qr-wrap { background: #FFF7E0; padding: 12px; border-radius: 12px; margin-bottom: 16px; }
  .lm-mockup-table h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; font-family: 'Playfair Display', serif; }
  .lm-mockup-table p { font-size: 12px; opacity: 0.85; }
  .lm-mockup-social { background: linear-gradient(135deg, #E91E63, #9C27B0); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; gap: 12px; }
  .lm-mockup-social .qr-wrap { background: white; padding: 12px; border-radius: 12px; }
  .lm-mockup-social h3 { font-size: 16px; font-weight: 700; }
  .lm-mockup-social .handle { font-size: 12px; opacity: 0.85; }
  .lm-mockup-sticker { background: #00AABB; display: flex; align-items: center; justify-content: center; }
  .lm-mockup-sticker .qr-wrap { background: white; padding: 14px; border-radius: 50%; border: 8px solid white; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .lm-context { text-align: center; margin-top: 12px; font-size: 13px; color: #666; font-weight: 500; }

  /* COMPARISON */
  .lc-section { padding: 60px 5%; max-width: 1100px; margin: 0 auto; }
  .lc-section h2 { font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -1px; text-align: center; margin-bottom: 8px; }
  .lc-section h2 em { font-style: italic; color: #00AABB; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
  .lc-section .lc-lead { text-align: center; color: #666; font-size: 15px; max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
  .lc-table-wrap { background: white; border-radius: 16px; border: 0.5px solid rgba(0,0,0,0.08); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); overflow-x: auto; }
  .lc-table { width: 100%; min-width: 700px; border-collapse: collapse; }
  .lc-table thead th { padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 600; color: #888; letter-spacing: 0.3px; border-bottom: 0.5px solid rgba(0,0,0,0.08); background: #FAFAF7; }
  .lc-table thead th.qrpanda-col { color: #006670; background: rgba(0,170,187,0.05); }
  .lc-table tbody td { padding: 14px 20px; font-size: 13px; border-bottom: 0.5px solid rgba(0,0,0,0.04); }
  .lc-table tbody tr:last-child td { border-bottom: none; }
  .lc-table tbody td:first-child { font-weight: 500; color: #0A0A0A; }
  .lc-table tbody td.qrpanda-col { background: rgba(0,170,187,0.03); color: #006670; font-weight: 500; }
  .lc-yes { color: #0F6E56; font-weight: 600; }
  .lc-no { color: #C53030; }
  .lc-meh { color: #888; }
  .lc-paid { color: #D97706; font-weight: 500; }

  /* FEATURES */
  .lf-section { padding: 60px 5%; max-width: 1280px; margin: 0 auto; }
  .lf-section h2 { font-size: clamp(30px, 4vw, 40px); font-weight: 700; letter-spacing: -1px; text-align: center; margin-bottom: 8px; }
  .lf-section h2 em { font-style: italic; color: #00AABB; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
  .lf-section .lf-lead { text-align: center; color: #666; font-size: 15px; max-width: 540px; margin: 0 auto 40px; line-height: 1.5; }
  .lf-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 900px) { .lf-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .lf-grid { grid-template-columns: 1fr; } }
  .lf-card { padding: 28px 24px; background: white; border: 0.5px solid rgba(0,0,0,0.06); border-radius: 16px; }
  .lf-card-ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
  .lf-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.3px; }
  .lf-card p { font-size: 13px; color: #666; line-height: 1.5; }

  /* CTA + FOOTER */
  .lcta-section { padding: 80px 5%; background: #0A0A0A; color: white; text-align: center; }
  .lcta-section h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
  .lcta-section h2 em { font-style: italic; color: #FFD66B; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
  .lcta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .lcta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .lcta-pri { padding: 16px 32px; background: white; color: #0A0A0A; border: none; border-radius: 100px; font-size: 16px; font-weight: 600; cursor: pointer; }
  .lcta-sec { padding: 16px 32px; background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 16px; font-weight: 500; cursor: pointer; }
  .lfooter { padding: 40px 5%; background: #0A0A0A; color: rgba(255,255,255,0.6); border-top: 0.5px solid rgba(255,255,255,0.08); text-align: center; font-size: 12px; }
