/* ==============================================================
   Quibot Retails — Landing styles (v2 · Bot IA + WhatsApp Commerce)
   These styles back the HTML widgets inside the Elementor template.
   Assumes tokens.css is already loaded (--teal, --coral, etc.).
   Bare class names — kept compatible with the standalone landing.
   ============================================================== */


  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bone);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  img, svg { display: block; max-width: 100%; }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ============================================================
     NAV
     ============================================================ */
  .nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(247,244,239,.85);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid rgba(31,41,55,.06);
    transition: box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  }
  .nav.scrolled {
    background: rgba(247,244,239,.94);
    box-shadow: 0 8px 24px -16px rgba(31,41,55,.18);
  }
  .nav-row { display: flex; align-items: center; gap: 32px; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; margin-right: 8px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-stack { display: flex; flex-direction: column; line-height: 1; }
  .retails {
    font-family: var(--font-display); font-weight: 700;
    font-size: 8px; text-transform: uppercase; letter-spacing: 0.22em;
    color: var(--teal); margin-top: 4px;
  }
  .nav-links {
    display: flex; gap: 28px; list-style: none;
    font-size: 14px; font-weight: 500; color: var(--slate-700);
  }
  .nav-links a { transition: color var(--dur-fast) var(--ease-out); }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
  .nav-cta a.signin { font-size: 14px; font-weight: 600; color: var(--slate-700); }
  .nav-cta a.signin:hover { color: var(--ink); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600; font-size: 14px; line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
    white-space: nowrap;
  }
  .btn-spark {
    background: var(--coral); color: #fff;
    box-shadow: 0 6px 20px -8px rgba(255,107,77,.7), inset 0 -1px 0 rgba(0,0,0,.08);
  }
  .btn-spark:hover { background: var(--coral-600); transform: translateY(-1px); }
  .btn-ink { background: var(--ink); color: #fff; }
  .btn-ink:hover { background: #0e1622; transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--slate-300); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-lg { padding: 14px 24px; font-size: 15px; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero { position: relative; padding: 72px 0 80px; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 0%, rgba(180,232,231,.55), transparent 60%),
      radial-gradient(ellipse 60% 40% at 90% 30%, rgba(255,232,229,.5), transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 64px; align-items: center;
  }
  .eyebrow-row {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6px 12px 6px 8px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--slate-600);
    box-shadow: var(--shadow-1);
  }
  .eyebrow-row .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(34,197,139,.18);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,139,.18); }
    50%      { box-shadow: 0 0 0 7px rgba(34,197,139,.06); }
  }
  .eyebrow-row b { color: var(--ink); font-weight: 700; }

  h1.hero-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.02; letter-spacing: -0.035em;
    color: var(--ink); text-wrap: balance;
  }
  h1.hero-title .spark {
    color: var(--teal); position: relative; display: inline-block;
  }
  h1.hero-title .spark::after {
    content: ""; position: absolute;
    right: -14px; top: 0;
    width: 12px; height: 12px;
    background: var(--coral); border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255,107,77,.18);
  }
  .hero-sub {
    margin-top: 22px; font-size: 19px; line-height: 1.5;
    color: var(--slate-600); max-width: 540px; text-wrap: pretty;
  }
  .hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
  .hero-meta {
    display: flex; gap: 28px; margin-top: 32px;
    font-size: 13px; color: var(--slate-500);
  }
  .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
  .hero-meta svg { color: var(--teal); }

  .hero-art { position: relative; min-height: 600px; }
  .hero-art .sparkbot-float {
    position: absolute; top: -10px; right: -20px;
    width: 130px; height: 130px; z-index: 3;
    animation: float 4.5s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-10px) rotate(2deg); }
  }

  /* ============================================================
     PHONE FRAME (for WhatsApp mockup in hero)
     ============================================================ */
  .phone {
    background: #0E1A1F;
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-3);
    width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .phone-screen {
    background: #ECE5DD;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }
  .phone-statusbar {
    height: 22px;
    background: #075E54;
    color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 14px 0 18px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
  }
  .phone-statusbar .icons {
    display: inline-flex; align-items: center; gap: 4px;
  }
  .phone-notch {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 22px;
    background: #0E1A1F; border-radius: 12px; z-index: 5;
  }

  /* WhatsApp header inside phone */
  .wa-head {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px 10px;
    background: #075E54;
    color: #fff;
  }
  .wa-head .back { color: rgba(255,255,255,.8); }
  .wa-avatar {
    width: 34px; height: 34px;
    background: #fff; border-radius: 50%;
    padding: 3px; flex-shrink: 0;
  }
  .wa-avatar svg { width: 100%; height: 100%; }
  .wa-id { flex: 1; min-width: 0; }
  .wa-name {
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 4px;
  }
  .wa-name .verified {
    background: #14C5C4; color: #fff; border-radius: 50%;
    width: 12px; height: 12px;
    display: inline-grid; place-items: center;
    font-size: 8px;
  }
  .wa-status { font-size: 10px; color: rgba(255,255,255,.7); }
  .wa-actions { display: inline-flex; gap: 10px; color: rgba(255,255,255,.85); }

  /* Chat body */
  .wa-body {
    padding: 12px;
    background: #ECE5DD;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.4) 0, transparent 70%);
    min-height: 480px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .wa-day-pill {
    align-self: center;
    background: rgba(255,255,255,.7);
    color: var(--slate-600);
    padding: 3px 10px; border-radius: 12px;
    font-size: 10px; font-family: var(--font-mono);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .wa-bubble {
    max-width: 82%;
    padding: 7px 10px 16px;
    border-radius: 8px;
    font-size: 13px; line-height: 1.35;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,.06);
    color: var(--ink);
  }
  .wa-bubble small {
    position: absolute; bottom: 3px; right: 8px;
    font-size: 9px; color: rgba(0,0,0,.45); font-family: var(--font-mono);
  }
  .wa-bubble.in  { background: #fff;    align-self: flex-start; border-top-left-radius: 2px; }
  .wa-bubble.out { background: #DCF8C6; align-self: flex-end;   border-top-right-radius: 2px; }
  .wa-bubble .spark-tag {
    display: inline-flex; align-items: center; gap: 3px;
    background: var(--coral-50); color: var(--coral-700);
    font-family: var(--font-mono); font-size: 9px;
    font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1px 5px; border-radius: 4px;
    margin-bottom: 4px;
  }

  /* Product carousel inside chat */
  .wa-carousel {
    display: flex; gap: 6px;
    margin: 4px -4px 6px;
    overflow: hidden;
  }
  .wa-card {
    flex: 0 0 110px;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
  }
  .wa-card-img {
    height: 90px;
    display: grid; place-items: center;
    font-size: 36px;
  }
  .wa-card-img.c1 { background: linear-gradient(135deg, #FFE8E5, #FFC9BD); }
  .wa-card-img.c2 { background: linear-gradient(135deg, #B4E8E7, #7DD8D6); }
  .wa-card-img.c3 { background: linear-gradient(135deg, #FBE9C2, #F2D078); }
  .wa-card-body { padding: 6px 8px 8px; }
  .wa-card-name { font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.15; }
  .wa-card-price { font-family: var(--font-mono); font-size: 10px; color: var(--slate-600); margin-top: 2px; font-variant-numeric: tabular-nums; }

  .wa-promo {
    background: var(--coral-50);
    border: 1px dashed var(--coral);
    border-radius: 6px;
    padding: 6px 8px;
    margin: 4px 0;
    font-size: 11px; color: var(--coral-700);
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
  }
  .wa-payment-link {
    background: #075E54;
    color: #fff;
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* Floating "Bot online" card on hero */
  .bot-stat-card {
    position: absolute;
    bottom: 28px; left: -56px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-3);
    z-index: 2;
    display: flex; align-items: center; gap: 14px;
  }
  .bot-stat-card .pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(34,197,139,.25);
    animation: pulse 2s infinite;
  }
  .bot-stat-card .stat-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 22px; letter-spacing: -0.02em;
  }
  .bot-stat-card .stat-num em {
    font-style: normal;
    color: var(--teal-light);
  }
  .bot-stat-card .stat-lbl {
    font-family: var(--font-mono); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,.6);
    margin-top: 2px;
  }

  /* ============================================================
     INDUSTRIES STRIP
     ============================================================ */
  .industries {
    border-top: 1px solid rgba(31,41,55,.06);
    border-bottom: 1px solid rgba(31,41,55,.06);
    padding: 28px 0;
    background: rgba(255,255,255,.4);
  }
  .industries .wrap { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
  .industries .lead {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--slate-500);
  }
  .industries .items { display: flex; gap: 36px; flex: 1; flex-wrap: wrap; }
  .industries .item {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 18px;
    color: var(--slate-700); letter-spacing: -0.02em;
  }
  .industries .item svg { color: var(--teal); }

  /* ============================================================
     SECTION HEADS
     ============================================================ */
  .section { padding: 96px 0; }
  .section-eyebrow {
    font-family: var(--font-mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.22em;
    color: var(--teal); font-weight: 700;
    margin-bottom: 16px;
  }
  .section-head h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05; letter-spacing: -0.03em;
    color: var(--ink); max-width: 720px; text-wrap: balance;
  }
  .section-head .sub {
    margin-top: 20px; font-size: 18px; line-height: 1.55;
    color: var(--slate-600); max-width: 620px; text-wrap: pretty;
  }

  /* ============================================================
     VALUE PROPS
     ============================================================ */
  .value-grid {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  }
  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
  }
  .value-card .ic {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--teal-50); color: var(--teal);
    display: grid; place-items: center;
    margin-bottom: 24px;
  }
  .value-card.spark .ic { background: var(--coral-50); color: var(--coral); }
  .value-card h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 20px; letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .value-card p { font-size: 14px; line-height: 1.55; color: var(--slate-600); }
  .value-card .stat {
    margin-top: 18px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase;
    border-top: 1px dashed var(--border); padding-top: 14px;
  }
  .value-card .stat b {
    color: var(--ink); font-weight: 700;
    font-family: var(--font-display); font-size: 13px; letter-spacing: -0.01em;
  }

  /* ============================================================
     FEATURE
     ============================================================ */
  .feature {
    padding: 80px 0;
    border-top: 1px solid rgba(31,41,55,.06);
  }
  .feature-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: center;
  }
  .feature-grid.flip { grid-template-columns: 1.1fr 1fr; }
  .feature-grid.flip .feature-copy { order: 2; }
  .feature-grid.flip .feature-art  { order: 1; }

  .feature-copy .label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--teal); font-weight: 700;
    margin-bottom: 20px;
  }
  .feature-copy .label::before {
    content: ""; width: 24px; height: 1px; background: var(--teal);
  }
  .feature-copy h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 3.5vw, 44px);
    line-height: 1.08; letter-spacing: -0.025em;
    color: var(--ink); text-wrap: balance;
  }
  .feature-copy .lead {
    margin-top: 18px; font-size: 17px; line-height: 1.55;
    color: var(--slate-600); text-wrap: pretty;
  }
  .feature-list {
    margin-top: 28px; list-style: none;
    display: flex; flex-direction: column; gap: 14px;
  }
  .feature-list li {
    display: grid; grid-template-columns: 24px 1fr; gap: 12px;
    font-size: 15px; line-height: 1.5; color: var(--slate-700);
  }
  .feature-list li b { color: var(--ink); font-weight: 600; }
  .feature-list .check {
    width: 22px; height: 22px;
    border-radius: 50%; background: var(--teal-50); color: var(--teal);
    display: grid; place-items: center; margin-top: 1px;
  }

  /* ============================================================
     FEATURE 1 — Big WhatsApp chat panel
     ============================================================ */
  .art-frame {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }
  .wa-frame-head {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: #075E54;
    color: #fff;
  }
  .wa-frame-head .wa-avatar { width: 40px; height: 40px; padding: 4px; }
  .wa-frame-head .wa-name { font-size: 15px; }
  .wa-frame-head .wa-status { font-size: 11px; }
  .wa-frame-body {
    padding: 20px;
    background: #ECE5DD;
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.4) 0, transparent 70%);
    min-height: 540px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .wa-frame-body .wa-bubble { font-size: 14px; padding: 8px 12px 18px; }
  .wa-frame-body .wa-bubble small { font-size: 10px; }
  .wa-frame-body .wa-card { flex: 0 0 130px; }
  .wa-frame-body .wa-card-img { height: 100px; font-size: 44px; }
  .wa-frame-body .wa-card-name { font-size: 12px; }
  .wa-frame-body .wa-card-price { font-size: 11px; }

  .bot-handoff {
    align-self: center;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    padding: 6px 14px 6px 8px;
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
  }
  .bot-handoff .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

  /* ============================================================
     FEATURE 2 — Catálogo con foto IA
     ============================================================ */
  .catalog-art {
    background: linear-gradient(135deg, #FAF9F6 0%, #ECE5DD 100%);
    padding: 48px;
    position: relative;
    min-height: 580px;
    display: grid;
    grid-template-columns: 240px 80px 1fr;
    gap: 24px;
    align-items: center;
  }
  .photo-phone {
    background: #1F2937;
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-3);
    aspect-ratio: 10/19;
    position: relative;
  }
  .photo-phone-screen {
    background: linear-gradient(160deg, #2A2520 0%, #3D352F 50%, #6B5847 100%);
    border-radius: 26px;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .photo-phone-menu {
    background: #FFFBEF;
    border-radius: 6px;
    padding: 16px 14px;
    width: 80%;
    font-family: var(--font-display);
    color: #2D1F12;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    transform: rotate(-3deg);
  }
  .photo-phone-menu h4 {
    font-size: 16px; font-weight: 800;
    text-align: center;
    border-bottom: 2px solid #2D1F12;
    padding-bottom: 6px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .photo-phone-menu .line {
    display: flex; justify-content: space-between;
    font-size: 10px; line-height: 1.45;
    padding: 2px 0;
  }
  .photo-phone-menu .line b { font-family: var(--font-mono); font-weight: 700; }

  .photo-phone-overlay {
    position: absolute;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(14,165,164,.92);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(14,165,164,.4);
  }
  .photo-phone-overlay .spinner {
    width: 12px; height: 12px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .catalog-arrow {
    color: var(--teal);
    display: grid; place-items: center;
  }
  .catalog-arrow .arrow-stack {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
  }
  .catalog-arrow .arrow-stack svg { animation: arrow-bob 1.6s ease-in-out infinite; }
  @keyframes arrow-bob {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(6px); }
  }
  .catalog-arrow .arrow-label {
    font-family: var(--font-mono); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--coral); font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 8px;
  }

  .products-stack {
    display: flex; flex-direction: column; gap: 12px;
  }
  .product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    box-shadow: var(--shadow-1);
    animation: card-in .6s var(--ease-spark) backwards;
  }
  .product-card:nth-child(1) { animation-delay: .1s; }
  .product-card:nth-child(2) { animation-delay: .25s; }
  .product-card:nth-child(3) { animation-delay: .4s; }
  @keyframes card-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .product-card .thumb {
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
    font-size: 32px;
  }
  .product-card .thumb.t1 { background: #FFE8E5; }
  .product-card .thumb.t2 { background: #FBE9C2; }
  .product-card .thumb.t3 { background: #B4E8E7; }
  .product-card .pname {
    font-family: var(--font-display); font-weight: 700;
    font-size: 15px; letter-spacing: -0.01em;
    color: var(--ink);
  }
  .product-card .pdesc {
    font-size: 12px; color: var(--slate-600);
    margin-top: 2px; line-height: 1.4;
  }
  .product-card .pmeta {
    display: flex; gap: 6px; margin-top: 6px;
    font-family: var(--font-mono); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .product-card .pmeta .pill {
    background: var(--teal-50); color: var(--teal);
    padding: 2px 6px; border-radius: 4px; font-weight: 700;
  }
  .product-card .pmeta .pill.ai {
    background: var(--coral-50); color: var(--coral-700);
  }
  .product-card .pprice {
    font-family: var(--font-display); font-weight: 800;
    font-size: 18px; letter-spacing: -0.02em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }

  /* ============================================================
     FEATURE 3 — Meta vs QR (comparison panel)
     ============================================================ */
  .channel-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .channel-side {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .channel-side:last-child { border-right: none; }
  .channel-side.meta { background: linear-gradient(180deg, #EAF3FC 0%, #fff 100%); }
  .channel-side.qr   { background: linear-gradient(180deg, #E6F8F8 0%, #fff 100%); }

  .channel-side .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 10px;
    font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-700);
  }
  .channel-side.meta .badge { color: #0A4DB0; }
  .channel-side.qr   .badge { color: var(--teal); }
  .channel-side .meta-check {
    color: #25D366; font-size: 12px;
  }
  .channel-side h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.02em;
    margin: 14px 0 6px;
  }
  .channel-side p.tag {
    font-size: 13px; color: var(--slate-600);
    margin-bottom: 18px;
  }

  /* Mock Meta catalog header */
  .meta-mock {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 18px;
  }
  .meta-mock .meta-head {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--slate-500); font-weight: 700;
  }
  .meta-mock .meta-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  }
  .meta-mock .meta-grid div {
    aspect-ratio: 1;
    border-radius: 6px;
    display: grid; place-items: center; font-size: 22px;
  }
  .meta-mock .meta-grid .m1 { background: #FFE8E5; }
  .meta-mock .meta-grid .m2 { background: #B4E8E7; }
  .meta-mock .meta-grid .m3 { background: #FBE9C2; }
  .meta-mock .meta-grid .m4 { background: #E6F8F8; }
  .meta-mock .meta-grid .m5 { background: #FAF9F6; border: 1px dashed var(--border); }
  .meta-mock .meta-grid .m6 { background: #FFE8E5; }

  /* QR mock */
  .qr-mock {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-bottom: 18px;
  }
  .qr-mock .qr-svg {
    width: 120px; height: 120px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 8px;
    padding: 6px;
    margin: 0 auto;
  }
  .qr-mock .qr-svg svg { width: 100%; height: 100%; }
  .qr-mock .qr-status {
    margin-top: 12px;
    font-family: var(--font-mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 700; color: var(--teal);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .qr-mock .qr-status .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 3px rgba(34,197,139,.25);
    animation: pulse 2s infinite;
  }

  .channel-list {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    font-size: 13px; line-height: 1.45; color: var(--slate-700);
  }
  .channel-list li {
    display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  }
  .channel-list .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--slate-400); margin-top: 7px; justify-self: center;
  }
  .channel-side.meta .channel-list .dot { background: #0A4DB0; }
  .channel-side.qr   .channel-list .dot { background: var(--teal); }
  .channel-list b { color: var(--ink); font-weight: 600; }

  .channel-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    font-family: var(--font-mono); font-size: 11px;
    color: var(--slate-500);
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .channel-foot b {
    color: var(--ink); font-weight: 700;
    font-family: var(--font-display); font-size: 13px;
    letter-spacing: -0.01em; display: block; margin-bottom: 4px;
  }

  /* ============================================================
     FEATURE 4 — Pedidos + logística (kanban + mini map)
     ============================================================ */
  .ops-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    overflow: hidden;
  }
  .ops-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .ops-head .ops-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: 15px; letter-spacing: -0.015em;
  }
  .ops-head .ops-meta {
    font-family: var(--font-mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--slate-500);
  }
  .ops-kanban {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; padding: 16px;
    background: var(--canvas);
  }
  .ops-col h6 {
    font-family: var(--font-mono); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--slate-500); font-weight: 700;
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .ops-col h6 .count {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 1px 6px;
    font-size: 9px;
  }
  .ops-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: 11px;
    box-shadow: 0 1px 1px rgba(0,0,0,.03);
  }
  .ops-card .id {
    font-family: var(--font-mono); font-size: 9px;
    color: var(--slate-500); letter-spacing: 0.06em;
  }
  .ops-card .name {
    font-weight: 600; color: var(--ink);
    margin-top: 2px; line-height: 1.3;
  }
  .ops-card .meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 6px;
  }
  .ops-card .amt {
    font-family: var(--font-mono); font-size: 10px;
    font-variant-numeric: tabular-nums; color: var(--slate-700);
  }
  .ops-col.confirmed h6 { color: var(--teal); }
  .ops-col.delivery h6 { color: var(--amber); }
  .ops-col.done h6 { color: var(--mint-600); }

  .ops-card.spark {
    border-color: var(--coral);
    background: var(--coral-50);
  }
  .ops-card.spark .id { color: var(--coral-700); }
  .ops-card .courier-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--font-mono); font-size: 9px;
    background: var(--teal-50); color: var(--teal);
    padding: 1px 6px; border-radius: 999px; font-weight: 700;
  }

  .ops-map {
    height: 240px;
    position: relative;
    background: #E6EEF2;
    background-image:
      linear-gradient(rgba(31,41,55,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(31,41,55,.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border-top: 1px solid var(--border);
  }
  .ops-map::before {
    content: ""; position: absolute;
    inset: 20% 30% 25% 18%;
    background: rgba(14,165,164,.06);
    border: 2px dashed var(--teal);
    border-radius: 40% 60% 50% 50%;
  }
  .ops-map .road {
    position: absolute;
    background: var(--slate-300);
    border-radius: 4px;
  }
  .ops-map .road.h1 { top: 30%; left: 0; right: 0; height: 4px; }
  .ops-map .road.h2 { top: 65%; left: 0; right: 0; height: 4px; }
  .ops-map .road.v1 { left: 40%; top: 0; bottom: 0; width: 4px; }
  .ops-map .road.v2 { left: 70%; top: 0; bottom: 0; width: 4px; }

  .ops-pin {
    position: absolute;
    width: 28px; height: 28px;
    border-radius: 50% 50% 50% 4px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
  }
  .ops-pin::after {
    content: ""; position: absolute;
    inset: 7px;
    background: #fff; border-radius: 50%;
  }
  .ops-pin.store { background: var(--ink); top: 40%; left: 40%; }
  .ops-pin.courier {
    background: var(--coral);
    top: 50%; left: 60%;
    animation: pin-bob 2s ease-in-out infinite;
  }
  @keyframes pin-bob {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50%      { transform: rotate(-45deg) translateY(-4px); }
  }
  .ops-pin.client { background: var(--teal); top: 28%; left: 72%; }
  .ops-pin-label {
    position: absolute;
    background: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    white-space: nowrap;
  }
  .ops-pin-label.l-store { top: 36%; left: 30%; color: var(--ink); }
  .ops-pin-label.l-courier { top: 56%; left: 56%; color: var(--coral-700); }
  .ops-pin-label.l-client { top: 21%; left: 75%; color: var(--teal); }

  /* ============================================================
     OTHER MODULES grid (6 cards)
     ============================================================ */
  .modules-grid {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .module-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: start;
    transition: transform var(--dur) var(--ease-out), border var(--dur) var(--ease-out);
  }
  .module-card:hover { transform: translateY(-2px); border-color: var(--teal); }
  .module-card .ic {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal);
    display: grid; place-items: center;
  }
  .module-card h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 16px; letter-spacing: -0.015em;
    margin-bottom: 4px;
  }
  .module-card p {
    font-size: 13px; line-height: 1.5; color: var(--slate-600);
  }

  /* ============================================================
     SPARK BOT MOODS (dark)
     ============================================================ */
  .moods-section {
    padding: 96px 0;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .moods-section::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 100%, rgba(14,165,164,.25), transparent 60%),
      radial-gradient(ellipse 50% 40% at 90% 0%, rgba(255,107,77,.15), transparent 60%);
    pointer-events: none;
  }
  .moods-section .wrap { position: relative; }
  .moods-section .section-eyebrow { color: var(--coral); }
  .moods-section h2 { color: #fff; }
  .moods-section .sub { color: rgba(255,255,255,.65); }
  .moods-grid {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .mood {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: background var(--dur) var(--ease-out), border var(--dur) var(--ease-out);
  }
  .mood:hover { background: rgba(255,255,255,.06); border-color: rgba(14,197,196,.4); }
  .mood svg { width: 80px; height: 80px; margin-bottom: 20px; }
  .mood .pill {
    display: inline-block;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-light);
    border: 1px solid rgba(20,197,196,.3);
    padding: 3px 8px; border-radius: var(--radius-pill);
    margin-bottom: 12px;
  }
  .mood h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 18px; letter-spacing: -0.015em; margin-bottom: 6px;
  }
  .mood p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.6); }

  /* ============================================================
     FLOW (5-step)
     ============================================================ */
  .flow {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    position: relative;
  }
  .flow-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px 20px;
    position: relative;
  }
  .flow-step .num {
    font-family: var(--font-mono); font-size: 11px;
    font-weight: 700; letter-spacing: 0.08em;
    color: var(--teal);
    background: var(--teal-50);
    border-radius: 999px;
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 14px;
  }
  .flow-step h5 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 15px; letter-spacing: -0.015em;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .flow-step p {
    font-size: 12px; color: var(--slate-600); line-height: 1.5;
  }
  .flow-step::after {
    content: ""; position: absolute;
    top: 38px; right: -12px;
    width: 16px; height: 1px;
    background: var(--slate-300);
    border-top: 1px dashed var(--slate-400);
    z-index: 1;
  }
  .flow-step:last-child::after { display: none; }

  /* ============================================================
     COMPARE
     ============================================================ */
  .compare {
    margin-top: 56px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .compare-side { background: var(--surface); padding: 36px 32px; }
  .compare-side.before { background: var(--mist); }
  .compare-side .tag {
    display: inline-block;
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 10px; border-radius: var(--radius-pill);
    font-weight: 700; margin-bottom: 18px;
  }
  .compare-side.before .tag { background: var(--slate-200); color: var(--slate-600); }
  .compare-side.after  .tag { background: var(--teal-50);   color: var(--teal); }
  .compare-side h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.02em; margin-bottom: 24px;
  }
  .compare-side ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .compare-side li {
    display: grid; grid-template-columns: 22px 1fr; gap: 10px;
    font-size: 14px; line-height: 1.45; color: var(--slate-700);
  }
  .compare-side.before .mark { color: var(--slate-400); }
  .compare-side.after  .mark { color: var(--teal); }

  /* ============================================================
     FINAL CTA
     ============================================================ */
  .cta-block {
    margin: 80px 0;
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 80px 56px;
    color: #fff;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 48px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-block::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 100% 50%, rgba(14,165,164,.3), transparent 60%),
      radial-gradient(ellipse 30% 50% at 0% 0%, rgba(255,107,77,.2), transparent 60%);
  }
  .cta-block > * { position: relative; }
  .cta-block h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.02; letter-spacing: -0.03em;
    text-wrap: balance;
  }
  .cta-block h2 em {
    font-style: normal; color: var(--teal-light); position: relative;
  }
  .cta-block h2 em::after {
    content: ""; position: absolute;
    right: -10px; top: 4px; width: 8px; height: 8px;
    background: var(--coral); border-radius: 50%;
  }
  .cta-block p {
    margin-top: 20px; font-size: 17px; color: rgba(255,255,255,.7);
    line-height: 1.5; max-width: 480px;
  }
  .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
  .cta-actions .btn-spark { padding: 16px 24px; font-size: 16px; justify-content: center; }
  .cta-actions .btn-ghost-light {
    padding: 16px 24px; font-size: 16px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff; border-radius: var(--radius-pill);
    text-align: center; background: transparent;
    transition: background var(--dur-fast) var(--ease-out);
    font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  }
  .cta-actions .btn-ghost-light:hover { background: rgba(255,255,255,.08); }
  .cta-fine {
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,.4); text-align: center; margin-top: 8px;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer { border-top: 1px solid rgba(31,41,55,.08); padding: 56px 0 36px; }
  .foot-grid {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px; margin-bottom: 48px;
  }
  .foot-brand p {
    margin-top: 16px; font-size: 14px;
    color: var(--slate-600); max-width: 320px; line-height: 1.5;
  }
  .foot-col h6 {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--slate-500); margin-bottom: 16px; font-weight: 700;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { font-size: 14px; color: var(--slate-700); font-weight: 500; }
  .foot-col a:hover { color: var(--teal); }
  .foot-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(31,41,55,.08);
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--slate-500);
  }
  .foot-bottom .by-geintec b { color: var(--geintec-blue); font-weight: 700; }

  /* Wordmark inline */
  .qw {
    font-family: var(--font-display); font-weight: 800;
    color: var(--ink); letter-spacing: -0.045em;
    line-height: 1; position: relative; display: inline-block;
  }
  .qw::after {
    content: ""; position: absolute;
    background: var(--coral); border-radius: 50%;
  }
  .qw-20 { font-size: 20px; } .qw-20::after { width: 3.5px; height: 3.5px; top: 3px; left: 75.5%; }
  .qw-24 { font-size: 24px; } .qw-24::after { width: 4px; height: 4px; top: 4px; left: 75.5%; }
  .qw-32 { font-size: 32px; } .qw-32::after { width: 5px; height: 5px; top: 5px; left: 75.5%; }
  .qw-white { color: #fff; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .hero-grid, .feature-grid, .feature-grid.flip,
    .cta-block, .foot-grid, .channel-panel { grid-template-columns: 1fr; }
    .value-grid, .moods-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: 1fr; }
    .flow { grid-template-columns: 1fr; }
    .flow-step::after { display: none; }
    .compare { grid-template-columns: 1fr; }
    .feature-grid.flip .feature-copy { order: 1; }
    .feature-grid.flip .feature-art { order: 2; }
    .hero-art .sparkbot-float { width: 90px; height: 90px; right: 0; top: -40px; }
    .bot-stat-card { left: 0; }
    .catalog-art { grid-template-columns: 1fr; padding: 32px; }
    .catalog-arrow { transform: rotate(90deg); }
    .cta-block { padding: 48px 32px; }
  }
