  :root {
    --navy:   #0f1c2c;
    --navy-2: #19293c;
    --navy-3: #243b5b;
    --teal:   #5fc6c0;
    --teal-2: #4ba8a3;
    --cream:  #faf6ef;
    --cream-2:#f4ecdb;
    --amber:  #f5a25d;
    --purple: #7c5cff;
    --purple-2: #a78bff;
    --text:   #0f1c2c;
    --muted:  rgba(15,28,44,.62);
    --line:   rgba(15,28,44,.08);
  }
  *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'IBM Plex Sans Arabic', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .num, .latin { font-family: 'Inter', sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img { display: block; max-width: 100%; }

  .container { width: min(1240px, 92%); margin-inline: auto; }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(15,28,44,.85);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
  .nav-brand .mark {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--teal);
    display: grid; place-items: center;
    box-shadow: 0 6px 20px rgba(95,198,192,.35);
  }
  .nav-brand .mark img { width: 22px; height: 22px; }
  .nav-brand .word { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
  .nav-links { display: flex; gap: 28px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500; align-items: center; }
  .nav-links a { display: inline-flex; align-items: center; gap: 6px; }
  .nav-links a:hover { color: #fff; }

  /* ── Poslix AI nav link ──────────────────────────────────────
     Promoted link with a shimmering sparkles icon + NEW badge so the
     AI capabilities page reads as a primary differentiator instead of
     blending into the rest of the text labels. */
  .nav-link--ai {
    background: linear-gradient(135deg, rgba(95,198,192,.18), rgba(124,92,255,.18));
    padding: 6px 12px !important;
    border-radius: 999px;
    color: #5fc6c0 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(95,198,192,.28);
    transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease, color .15s ease;
  }
  .nav-link--ai:hover {
    background: linear-gradient(135deg, rgba(95,198,192,.28), rgba(124,92,255,.28));
    border-color: rgba(95,198,192,.55);
    box-shadow: 0 6px 18px -8px rgba(95,198,192,.55);
    transform: translateY(-1px);
    color: #fff !important;
  }
  .nav-link--ai.is-active {
    background: linear-gradient(135deg, rgba(95,198,192,.35), rgba(124,92,255,.32));
    border-color: rgba(95,198,192,.7);
    color: #fff !important;
  }
  .nav-link__sparkle {
    display: inline-grid;
    place-items: center;
    width: 16px; height: 16px;
    color: #5fc6c0;
    animation: nav-sparkle-shimmer 2.4s ease-in-out infinite;
  }
  .nav-link--ai:hover .nav-link__sparkle,
  .nav-link--ai.is-active .nav-link__sparkle { color: #ffd166; }
  @keyframes nav-sparkle-shimmer {
    0%, 100% { transform: scale(1) rotate(0deg);   opacity: 0.85; }
    50%      { transform: scale(1.15) rotate(10deg); opacity: 1; }
  }
  .nav-link__badge {
    display: inline-block;
    margin-inline-start: 4px;
    padding: 1px 6px;
    background: #f59e0b;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 4px;
    line-height: 1.6;
    vertical-align: middle;
  }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 600; font-size: 14px;
    transition: transform .15s, box-shadow .15s, background .15s;
  }
  .btn-primary {
    background: var(--teal); color: var(--navy);
    box-shadow: 0 8px 24px rgba(95,198,192,.32);
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(95,198,192,.45); }
  .btn-ghost { color: rgba(255,255,255,.85); }
  .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.08); }
  .btn-light { background: #fff; color: var(--navy); }
  .btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(15,28,44,.18); }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-dark:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(15,28,44,.32); }

  /* ============ HERO ============ */
  .hero {
    background:
      radial-gradient(1200px 600px at 80% -10%, rgba(95,198,192,.18), transparent 60%),
      radial-gradient(800px 500px at 10% 100%, rgba(124,92,255,.14), transparent 60%),
      var(--navy);
    color: #fff;
    padding: 72px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500;
    margin-bottom: 24px;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(52,211,153,.2); }
    50% { box-shadow: 0 0 0 8px rgba(52,211,153,.05); }
  }
  .hero h1 {
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--teal); }
  .hero h1 .strike {
    background: linear-gradient(120deg, transparent 45%, rgba(245,162,93,.4) 45%, rgba(245,162,93,.4) 88%, transparent 88%);
    background-size: 100% 100%; padding: 0 6px;
  }
  .hero p.lead {
    font-size: 19px; color: rgba(255,255,255,.78); line-height: 1.7;
    max-width: 540px; margin-bottom: 32px;
    text-wrap: pretty;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
  .hero-bullets {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px;
    max-width: 520px;
  }
  .hero-bullet {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.78); font-size: 14px;
  }
  .hero-bullet .check {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(95,198,192,.18);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .hero-bullet .check svg { width: 12px; height: 12px; stroke: var(--teal); }

  /* Hero visual — POS preview */
  .hero-visual {
    position: relative;
    aspect-ratio: 1.1 / 1;
    perspective: 1600px;
  }
  .pos-frame {
    position: absolute; inset: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0 30px 80px rgba(0,0,0,.45),
      0 0 0 1px rgba(255,255,255,.08),
      inset 0 1px 0 rgba(255,255,255,.5);
    transform: rotateY(-12deg) rotateX(4deg) rotate(0.5deg);
    transform-origin: center;
  }
  .pos-frame::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(95,198,192,.06), transparent 40%);
    pointer-events: none; z-index: 5;
  }
  .pos-topbar {
    height: 44px; background: var(--navy); display: flex; align-items: center;
    padding: 0 14px; gap: 8px; color: #fff; font-size: 11px;
  }
  .pos-topbar .lights { display: flex; gap: 5px; }
  .pos-topbar .lights span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
  .pos-topbar .title { margin-inline-start: 6px; font-weight: 600; }
  .pos-topbar .right { margin-inline-start: auto; display: flex; gap: 10px; align-items: center; opacity: .8; font-size: 10px; }

  .pos-body { display: grid; grid-template-columns: 1fr 1.1fr; height: calc(100% - 44px); }
  .pos-cart { background: #f8fafc; padding: 14px; border-inline-end: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
  .pos-cart-title { font-size: 11px; color: var(--muted); font-weight: 600; }
  .pos-cart-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px; background: #fff; border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    font-size: 12px;
  }
  .pos-cart-item .thumb {
    width: 36px; height: 36px; border-radius: 8px;
    background: linear-gradient(135deg, #92400e, #b45309); flex-shrink: 0;
  }
  .pos-cart-item .thumb.green { background: linear-gradient(135deg, #15803d, #22c55e); }
  .pos-cart-item .thumb.amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
  .pos-cart-item .name { font-weight: 600; flex: 1; }
  .pos-cart-item .qty { font-weight: 600; color: var(--navy); }
  .pos-cart-item .price { font-weight: 700; }
  .pos-cart-spacer { flex: 1; }
  .pos-cart-total {
    border-top: 1px dashed var(--line); padding-top: 10px;
    display: flex; justify-content: space-between;
    font-size: 13px; font-weight: 700;
  }
  .pos-cart-total .big { font-size: 20px; color: var(--teal-2); }
  .pos-cart-pay {
    background: var(--teal); color: var(--navy);
    padding: 10px; border-radius: 10px; text-align: center;
    font-weight: 700; font-size: 13px;
  }

  .pos-products { padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 28px repeat(2, 1fr); gap: 10px; }
  .pos-tabs { grid-column: 1 / -1; display: flex; gap: 6px; overflow: hidden; }
  .pos-tab {
    flex: 1; padding: 6px 8px; background: #f1f5f9; border-radius: 8px;
    font-size: 10px; font-weight: 600; text-align: center;
    white-space: nowrap;
  }
  .pos-tab.active { background: var(--navy); color: #fff; }
  .pos-product {
    background: #fff; border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid var(--line);
  }
  .pos-product .img {
    flex: 1;
    background: linear-gradient(135deg, #92400e, #d97706);
    position: relative;
  }
  .pos-product .img.coffee  { background: linear-gradient(135deg, #92400e, #b45309); }
  .pos-product .img.latte   { background: linear-gradient(135deg, #d6b78a, #b08a5b); }
  .pos-product .img.cake    { background: linear-gradient(135deg, #7c2d12, #9a3412); }
  .pos-product .img.matcha  { background: linear-gradient(135deg, #166534, #16a34a); }
  .pos-product .img.juice   { background: linear-gradient(135deg, #ea580c, #f97316); }
  .pos-product .img.bagel   { background: linear-gradient(135deg, #b45309, #d97706); }
  .pos-product .meta { padding: 6px 8px; }
  .pos-product .meta .pname { font-size: 10px; font-weight: 600; }
  .pos-product .meta .pprice { font-size: 9px; color: var(--muted); font-weight: 500; }

  /* Floating chips around hero visual */
  .hero-chip {
    position: absolute;
    background: #fff; border-radius: 14px; padding: 12px 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.04);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 600;
    z-index: 3;
    animation: floaty 6s ease-in-out infinite;
  }
  .hero-chip.c1 { top: -20px; right: -12px; }
  .hero-chip.c2 { bottom: 40px; left: -32px; animation-delay: -2s; }
  .hero-chip.c3 { top: 50%; left: -20px; animation-delay: -4s; }
  .hero-chip .ic {
    width: 36px; height: 36px; border-radius: 10px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: #fff;
  }
  .hero-chip .ic.purple { background: linear-gradient(135deg, var(--purple), var(--purple-2)); }
  .hero-chip .ic.amber  { background: linear-gradient(135deg, var(--amber), #ea580c); }
  .hero-chip .lbl-sm { font-size: 11px; color: var(--muted); font-weight: 500; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ============ TRUST STRIP ============ */
  .trust {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 32px 0;
    color: rgba(255,255,255,.6);
  }
  .trust-row {
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    flex-wrap: wrap;
  }
  .trust-stat .num-big { font-size: 28px; color: #fff; font-weight: 700; }
  .trust-stat .lbl { font-size: 12px; }
  .trust-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,.1);
  }
  .trust-rating { display: flex; align-items: center; gap: 10px; }
  .trust-rating .stars { color: var(--amber); font-size: 16px; }

  /* ============ SECTION HEADERS ============ */
  .sec { padding: 96px 0; }
  .sec-cream { background: var(--cream); }
  .sec-cream-2 { background: var(--cream-2); }
  .sec-navy { background: var(--navy); color: #fff; }
  .sec-white { background: #fff; }
  .sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .sec-eyebrow {
    display: inline-block; padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
    background: rgba(95,198,192,.14); color: var(--teal-2);
    margin-bottom: 16px;
  }
  .sec-navy .sec-eyebrow { background: rgba(95,198,192,.16); color: var(--teal); }
  .sec-head h2 {
    font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
    font-weight: 700; letter-spacing: -0.02em;
    text-wrap: balance; margin-bottom: 16px;
  }
  .sec-head p {
    font-size: 18px; color: var(--muted); text-wrap: pretty;
  }
  .sec-navy .sec-head p { color: rgba(255,255,255,.7); }

  /* ============ PLATFORM TABS ============ */
  .platform-tabs {
    display: flex; gap: 8px; justify-content: center;
    background: rgba(15,28,44,.04); padding: 6px; border-radius: 14px;
    width: fit-content; margin: 0 auto 40px;
    flex-wrap: wrap;
  }
  .platform-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 600; font-size: 14px;
    color: var(--muted);
    transition: all .2s;
  }
  .platform-tab:hover { color: var(--text); background: rgba(255,255,255,.5); }
  .platform-tab.active {
    background: var(--navy); color: #fff;
    box-shadow: 0 8px 20px rgba(15,28,44,.2);
  }
  .platform-tab .ic {
    width: 22px; height: 22px; border-radius: 6px;
    display: grid; place-items: center;
    background: rgba(95,198,192,.2); color: var(--teal-2);
  }
  .platform-tab.active .ic { background: var(--teal); color: var(--navy); }

  .platform-panel { display: none; animation: fadein .4s; }
  .platform-panel.active { display: block; }
  @keyframes fadein {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .panel-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
    background: #fff; border-radius: 24px; padding: 48px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(15,28,44,.06);
  }
  .panel-grid.flip { grid-template-columns: 1.4fr 1fr; }
  .panel-grid.flip .panel-content { order: 2; }
  .panel-tag {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
    background: rgba(95,198,192,.16); color: var(--teal-2);
    margin-bottom: 12px;
  }
  .panel-tag.purple { background: rgba(124,92,255,.12); color: var(--purple); }
  .panel-tag.amber { background: rgba(245,162,93,.16); color: #c2410c; }
  .panel-content h3 {
    font-size: 36px; line-height: 1.15;
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .panel-content p.desc {
    font-size: 16px; color: var(--muted);
    margin-bottom: 24px; max-width: 520px;
  }
  .panel-features {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 28px;
  }
  .panel-feature {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .panel-feature .ic {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(95,198,192,.14); color: var(--teal-2);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .panel-feature .ic svg { width: 18px; height: 18px; }
  .panel-feature .ft-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
  .panel-feature .ft-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
  .panel-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--navy); font-weight: 600; font-size: 14px;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 2px;
  }
  .panel-link:hover { color: var(--teal-2); }

  .panel-visual {
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: var(--cream-2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,28,44,.12);
  }

  /* tiny dashboard mock */
  .dash-mock { padding: 18px; height: 100%; display: flex; flex-direction: column; gap: 12px; background: #fff; }
  .dash-row { display: flex; gap: 8px; }
  .dash-card {
    flex: 1; padding: 12px; background: var(--cream);
    border-radius: 10px; border: 1px solid var(--line);
  }
  .dash-card .lbl { font-size: 9px; color: var(--muted); font-weight: 500; }
  .dash-card .val { font-size: 18px; font-weight: 700; }
  .dash-card .delta { font-size: 9px; color: #16a34a; font-weight: 600; }
  .dash-chart {
    flex: 1; background: var(--cream); border-radius: 10px;
    border: 1px solid var(--line); padding: 12px;
    display: flex; align-items: flex-end; gap: 4px;
  }
  .dash-chart .bar {
    flex: 1; background: var(--teal); border-radius: 3px;
    opacity: 0.7;
  }
  .dash-chart .bar:nth-child(odd) { opacity: 1; }

  /* booking calendar mock */
  .cal-mock { padding: 16px; height: 100%; display: flex; flex-direction: column; gap: 10px; background: #fff; }
  .cal-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
  .cal-head .month { font-weight: 700; font-size: 14px; }
  .cal-grid { display: grid; grid-template-columns: 60px 1fr; gap: 4px; flex: 1; overflow: hidden; }
  .cal-times { display: flex; flex-direction: column; gap: 4px; font-size: 9px; color: var(--muted); }
  .cal-times span { height: 28px; }
  .cal-slots { display: flex; flex-direction: column; gap: 4px; }
  .cal-slot { height: 28px; background: var(--cream); border-radius: 6px; }
  .cal-slot.booked-amber { background: rgba(245,162,93,.18); border-inline-start: 3px solid var(--amber); padding: 3px 6px; font-size: 9px; font-weight: 600; color: #9a3412; }
  .cal-slot.booked-teal { background: rgba(95,198,192,.18); border-inline-start: 3px solid var(--teal); padding: 3px 6px; font-size: 9px; font-weight: 600; color: var(--teal-2); }
  .cal-slot.booked-purple { background: rgba(124,92,255,.14); border-inline-start: 3px solid var(--purple); padding: 3px 6px; font-size: 9px; font-weight: 600; color: var(--purple); }

  /* service jobs mock */
  .jobs-mock { padding: 16px; height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: #fff; }
  .jobs-col { display: flex; flex-direction: column; gap: 6px; }
  .jobs-col-head { font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; padding-bottom: 4px; }
  .jobs-card {
    background: var(--cream); border-radius: 8px; padding: 8px;
    font-size: 9px; font-weight: 600;
    border-inline-start: 3px solid var(--teal);
  }
  .jobs-card.warn { border-color: var(--amber); }
  .jobs-card.done { border-color: #16a34a; }
  .jobs-card .meta { font-size: 8px; color: var(--muted); font-weight: 500; margin-top: 2px; }

  /* AI chat mock */
  .ai-mock { padding: 16px; height: 100%; display: flex; flex-direction: column; gap: 8px; background: linear-gradient(165deg, #f5f3ff, #fff); }
  .ai-header { display: flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
  .ai-avatar { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 700; }
  .ai-name { font-size: 12px; font-weight: 700; }
  .ai-name .sub { font-size: 10px; color: var(--muted); font-weight: 500; }
  .ai-bubble {
    padding: 10px 12px; border-radius: 12px;
    font-size: 11px; max-width: 85%;
  }
  .ai-bubble.user { background: rgba(124,92,255,.1); color: var(--purple); align-self: flex-end; border-end-end-radius: 4px; }
  .ai-bubble.bot  { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-end-start-radius: 4px; }
  .ai-bubble.bot .accent { color: #16a34a; font-weight: 700; }

  /* ============ AI SECTION ============ */
  .ai-sec {
    background:
      radial-gradient(800px 400px at 70% 50%, rgba(124,92,255,.18), transparent 60%),
      radial-gradient(600px 400px at 20% 100%, rgba(95,198,192,.12), transparent 60%),
      var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .ai-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .ai-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(124,92,255,.18); color: var(--purple-2);
    border: 1px solid rgba(124,92,255,.3);
    font-size: 12px; font-weight: 600;
    margin-bottom: 20px;
  }
  .ai-grid h2 {
    font-size: clamp(36px, 4.4vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 20px;
  }
  .ai-grid h2 .gradient {
    background: linear-gradient(120deg, var(--purple-2), var(--teal));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .ai-grid p.lead { color: rgba(255,255,255,.78); font-size: 18px; margin-bottom: 28px; max-width: 520px; }
  .ai-caps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 520px; }
  .ai-cap {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
  }
  .ai-cap .ic {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(124,92,255,.2);
    display: grid; place-items: center; color: var(--purple-2);
    flex-shrink: 0;
  }
  .ai-cap .ic svg { width: 16px; height: 16px; }
  .ai-cap .lbl { font-size: 13px; font-weight: 600; }
  .ai-cap .desc { font-size: 12px; color: rgba(255,255,255,.65); }

  .ai-chat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px; padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
  }
  .ai-chat-head {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 16px; margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .ai-chat-head .av {
    width: 44px; height: 44px; border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    display: grid; place-items: center; color: #fff;
    font-size: 18px; font-weight: 800;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(124,92,255,.45), 0 0 0 2px rgba(255,255,255,.08);
    position: relative;
  }
  .ai-chat-head .av--icon { background: transparent; padding: 0; }
  .ai-chat-head .av--icon img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: drop-shadow(0 4px 10px rgba(124,92,255,.45));
  }
  .ai-chat-head .nm { font-weight: 700; font-size: 15px; }
  .ai-chat-head .st { font-size: 12px; color: rgba(255,255,255,.6); }
  .ai-chat-head .live { margin-inline-start: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #34d399; }
  .ai-chat-head .live .dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: pulse 2s infinite; }

  .ai-chat-msg {
    padding: 12px 16px; border-radius: 14px;
    font-size: 14px; line-height: 1.6;
    margin-bottom: 12px; max-width: 85%;
  }
  .ai-chat-msg.u { background: rgba(124,92,255,.18); color: #fff; margin-inline-start: auto; border-end-end-radius: 4px; }
  .ai-chat-msg.b { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-end-start-radius: 4px; }
  .ai-chat-msg.b .accent { color: var(--teal); font-weight: 700; }
  .ai-chat-msg.b .pos {  color: #34d399; font-weight: 700; }
  .ai-chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
  .ai-chip {
    font-size: 11px; padding: 4px 10px; border-radius: 999px;
    background: rgba(124,92,255,.15); color: var(--purple-2);
    border: 1px solid rgba(124,92,255,.25);
  }
  .ai-chat-input {
    margin-top: 16px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.5); font-size: 14px;
  }
  .ai-chat-input .send {
    margin-inline-start: auto;
    width: 32px; height: 32px; border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    display: grid; place-items: center; color: #fff;
  }

  /* ============ INDUSTRIES ============ */
  .industry-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .industry-card {
    aspect-ratio: 1/1.05;
    border-radius: 18px;
    padding: 24px;
    color: #fff;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    position: relative; overflow: hidden;
  }
  .industry-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,28,44,.18); }
  .industry-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.3));
    pointer-events: none;
  }
  .industry-card .ic-wrap {
    position: relative; z-index: 2;
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,.18); backdrop-filter: blur(10px);
    display: grid; place-items: center;
    font-size: 26px;
  }
  .industry-card .name {
    position: relative; z-index: 2;
    font-size: 18px; font-weight: 700; line-height: 1.2;
  }
  .industry-card .sub {
    font-size: 12px; color: rgba(255,255,255,.78); font-weight: 500;
    margin-top: 4px;
  }
  .ind-1 { background: linear-gradient(160deg, #92400e, #b45309); }
  .ind-2 { background: linear-gradient(160deg, #166534, #15803d); }
  .ind-3 { background: linear-gradient(160deg, var(--navy-3), var(--navy-2)); }
  .ind-4 { background: linear-gradient(160deg, #831843, #be185d); }
  .ind-5 { background: linear-gradient(160deg, #1e3a8a, #1e40af); }
  .ind-6 { background: linear-gradient(160deg, #c2410c, #ea580c); }
  .ind-7 { background: linear-gradient(160deg, #14532d, #16a34a); }
  .ind-8 { background: linear-gradient(160deg, #581c87, #7c3aed); }

  /* ============ FREE QR MENU ============ */
  .qr-band {
    background: linear-gradient(135deg, var(--cream-2), var(--cream));
    padding: 80px 0;
  }
  .qr-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  }
  .qr-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: var(--navy); color: var(--teal);
    font-size: 12px; font-weight: 600;
    margin-bottom: 16px;
  }
  .qr-grid h2 {
    font-size: clamp(36px, 4vw, 52px); line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 16px;
  }
  .qr-grid p.lead { font-size: 18px; color: var(--muted); margin-bottom: 28px; max-width: 520px; }
  .qr-bullets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .qr-bullet {
    background: #fff; padding: 8px 14px; border-radius: 999px;
    font-size: 13px; font-weight: 600; color: var(--navy);
    box-shadow: 0 2px 8px rgba(15,28,44,.06);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .qr-bullet .em { font-size: 14px; }

  .qr-visual {
    position: relative;
    aspect-ratio: 1/1;
    display: grid; place-items: center;
  }
  .phone-frame {
    width: 280px; aspect-ratio: 9/19;
    background: var(--navy);
    border-radius: 36px; padding: 8px;
    box-shadow: 0 30px 80px rgba(15,28,44,.3);
    transform: rotate(-4deg);
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 28px;
    background: #fff;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .phone-status {
    height: 22px; padding: 4px 14px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 9px; font-weight: 700;
  }
  .phone-cover {
    height: 90px;
    background: linear-gradient(135deg, #92400e, #b45309);
    display: flex; align-items: flex-end; padding: 12px;
    color: #fff;
  }
  .phone-cover .name { font-size: 16px; font-weight: 700; }
  .phone-tabs {
    display: flex; gap: 6px; padding: 10px 12px; overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .phone-tab {
    padding: 4px 10px; background: var(--cream);
    border-radius: 999px; font-size: 9px; font-weight: 600;
    white-space: nowrap;
  }
  .phone-tab.active { background: var(--navy); color: #fff; }
  .phone-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .phone-item {
    display: flex; gap: 10px; align-items: center;
    padding: 8px; border-radius: 10px;
    border: 1px solid var(--line);
  }
  .phone-item .img {
    width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, #92400e, #d97706);
  }
  .phone-item .img.b { background: linear-gradient(135deg, #15803d, #22c55e); }
  .phone-item .img.c { background: linear-gradient(135deg, #d97706, #f59e0b); }
  .phone-item .nm { font-size: 11px; font-weight: 700; }
  .phone-item .pr { font-size: 10px; color: var(--teal-2); font-weight: 700; }

  .qr-code-card {
    position: absolute; bottom: -10px; right: 0;
    background: #fff; border-radius: 20px; padding: 18px;
    box-shadow: 0 20px 50px rgba(15,28,44,.18);
    width: 200px;
    transform: rotate(6deg);
  }
  .qr-code-card .qr-img {
    width: 100%; aspect-ratio: 1/1;
    background:
      conic-gradient(from 0deg at 25% 25%, var(--navy) 25%, transparent 25%) 0 0/30% 30% no-repeat,
      conic-gradient(from 0deg at 75% 25%, var(--navy) 25%, transparent 25%) 100% 0/30% 30% no-repeat,
      conic-gradient(from 0deg at 25% 75%, var(--navy) 25%, transparent 25%) 0 100%/30% 30% no-repeat,
      repeating-conic-gradient(from 0deg, var(--navy) 0deg 30deg, transparent 30deg 60deg);
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
  }
  .qr-code-card .qr-img::before, .qr-code-card .qr-img::after {
    content: '';
    position: absolute; width: 30%; height: 30%;
    border: 6px solid var(--navy); border-radius: 4px;
  }
  .qr-code-card .qr-img::before { top: 6%; left: 6%; }
  .qr-code-card .qr-img::after  { top: 6%; right: 6%; }
  .qr-code-card .lbl { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; font-weight: 600; }

  /* ============ PRICING ============ */
  .price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1100px; margin: 0 auto;
  }
  /* 4-tier layout (Free / Starter / Pro / Business). minmax(0,1fr)
     lets the grid keep all four columns even on laptops by allowing
     the cards to shrink, instead of wrapping into a 2×2 grid the
     moment one card can't hit its intrinsic min width. We also
     tighten the card padding and stop the featured-card scaling in
     this layout so the Pro card doesn't overflow into Business. */
  .price-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1280px;
  }
  .price-grid--4 .price-card { padding: 22px 18px; gap: 14px; }
  .price-grid--4 .price-card.featured { transform: none; }
  .price-grid--4 .price-card.featured:hover { transform: translateY(-4px); }
  .price-grid--4 .price-amount .num-big { font-size: 40px; }
  .price-grid--4 .price-free-label { font-size: 30px; }
  /* Below ~780px the cards become unreadable as columns — wrap to
     2×2, then to a single column on phones. */
  @media (max-width: 780px) {
    .price-grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
  }
  @media (max-width: 480px) {
    .price-grid--4 { grid-template-columns: 1fr; max-width: 360px; }
  }

  /* ============ DETAILED COMPARISON ============ */
  .price-compare {
    max-width: 1100px; margin: 48px auto 0;
  }
  .price-compare__head { text-align: center; margin-bottom: 22px; }
  .price-compare__head h3 {
    font-size: 26px; font-weight: 700; letter-spacing: -0.01em;
    color: var(--navy); margin: 0 0 6px;
  }
  .price-compare__head p { font-size: 14px; color: var(--muted); margin: 0; }
  /* Horizontal scroll for the table on narrow viewports — the matrix
     stays legible instead of being squashed into illegible columns. */
  .price-compare__scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line); border-radius: 16px;
    background: #fff;
  }
  .price-compare__table {
    width: 100%; min-width: 720px;
    border-collapse: collapse; font-size: 14px;
  }
  .price-compare__table thead th {
    position: sticky; top: 0; z-index: 1;
    background: linear-gradient(180deg, #fff, var(--cream));
    padding: 14px 12px; font-weight: 700; font-size: 13px;
    color: var(--navy); text-align: center;
    border-bottom: 2px solid var(--line);
  }
  .price-compare__feat-col { min-width: 200px; }
  .price-compare__col.is-featured {
    background: linear-gradient(180deg, rgba(124,92,255,.08), rgba(95,198,192,.06));
    color: var(--purple);
  }
  .price-compare__group td {
    background: var(--cream); color: var(--muted);
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 10px 14px;
    border-top: 1px solid var(--line);
  }
  .price-compare__feat {
    padding: 10px 14px; color: var(--navy); font-weight: 500;
    border-top: 1px solid rgba(15,28,44,.04);
  }
  .price-compare__cell {
    padding: 10px 12px; text-align: center;
    border-top: 1px solid rgba(15,28,44,.04);
    color: var(--navy);
  }
  .price-compare__cell.is-featured {
    background: rgba(124,92,255,.04);
  }
  .price-compare__check {
    display: inline-grid; place-items: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(95,198,192,.18); color: var(--teal-2);
  }
  .price-compare__check svg { width: 12px; height: 12px; }
  .price-compare__dash { color: #cbd5e1; font-weight: 600; }
  .price-compare__text { font-weight: 600; font-size: 13px; }

  /* ============ ADD-ONS ============ */
  .price-addons {
    max-width: 1100px; margin: 40px auto 0;
  }
  .price-addons__head { text-align: center; margin-bottom: 22px; }
  .price-addons__head h3 {
    font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
    color: var(--navy); margin: 0 0 6px;
  }
  .price-addons__head p { font-size: 14px; color: var(--muted); margin: 0; }
  .price-addons__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  }
  @media (max-width: 640px) {
    .price-addons__grid { grid-template-columns: 1fr; }
  }
  .price-addon {
    display: flex; gap: 18px; align-items: flex-start;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 20px 22px;
    transition: transform .2s, box-shadow .2s;
  }
  .price-addon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15,28,44,.06);
  }
  .price-addon__icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; flex-shrink: 0;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(95,198,192,.12));
  }
  .price-addon__body { flex: 1; min-width: 0; }
  .price-addon__name {
    font-size: 15px; font-weight: 700; color: var(--navy);
    margin-bottom: 6px;
  }
  .price-addon__price {
    display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px;
  }
  .price-addon__num {
    font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--purple);
  }
  .price-addon__unit { font-size: 12px; color: var(--muted); }
  .price-addon__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
  .price-addons__note {
    margin: 18px 0 0; text-align: center;
    font-size: 13px; color: var(--muted); font-style: italic;
  }

  /* Enterprise / multi-branch callout — pitched below the cards,
     not as a fifth card. Sales-led so it stays understated. */
  .price-enterprise {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    max-width: 1100px; margin: 28px auto 0;
    padding: 22px 28px; border-radius: 18px;
    background: linear-gradient(135deg, rgba(124,92,255,.05), rgba(95,198,192,.05));
    border: 1px dashed rgba(15,28,44,.12);
  }
  .price-enterprise__body { flex: 1; min-width: 240px; }
  .price-enterprise__title {
    font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
  }
  .price-enterprise__desc { font-size: 14px; color: var(--muted); }
  .price-enterprise__cta {
    padding: 10px 20px; border-radius: 999px;
    background: var(--navy); color: #fff;
    text-align: center; font-weight: 700; font-size: 13px;
    white-space: nowrap;
  }
  .price-enterprise__cta:hover { background: var(--purple); }
  .price-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .2s;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,28,44,.08); }
  .price-card.featured {
    background: var(--navy); color: #fff;
    border-color: var(--navy);
    transform: scale(1.04);
    position: relative;
  }
  .price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
  .price-card.featured .price-badge {
    position: absolute; top: -12px; right: 24px;
    background: var(--teal); color: var(--navy);
    padding: 4px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
  }
  .price-name { font-size: 14px; font-weight: 700; color: var(--muted); }
  .price-card.featured .price-name { color: var(--teal); }
  .price-amount { display: flex; align-items: baseline; gap: 6px; }
  .price-amount .num-big { font-size: 48px; font-weight: 700; letter-spacing: -0.02em; }
  /* Free tier: a word replaces the number, scaled down so vertical
     rhythm matches the priced cards next to it. */
  .price-amount--free { align-items: baseline; gap: 8px; }
  .price-free-label {
    font-size: 36px; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--teal-2), var(--teal));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .price-amount .currency { font-size: 16px; color: var(--muted); }
  .price-amount .per { font-size: 14px; color: var(--muted); }
  .price-card.featured .currency, .price-card.featured .per { color: rgba(255,255,255,.6); }
  .price-desc { font-size: 14px; color: var(--muted); }
  .price-card.featured .price-desc { color: rgba(255,255,255,.78); }
  .price-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .price-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; }
  .price-feat .ck {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(95,198,192,.16); color: var(--teal-2);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .price-card.featured .price-feat .ck { background: rgba(95,198,192,.18); color: var(--teal); }
  .price-feat .ck svg { width: 11px; height: 11px; }
  .price-cta {
    padding: 12px; border-radius: 10px;
    background: var(--navy); color: #fff;
    text-align: center; font-weight: 700; font-size: 14px;
  }
  .price-card.featured .price-cta { background: var(--teal); color: var(--navy); }
  .price-equiv {
    font-size: 13px; color: var(--teal); font-weight: 600;
    margin-top: -8px;
  }
  .price-card.featured .price-equiv { color: #5fc6c0; }

  /* Trust strip above the cards */
  .price-trust {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; max-width: 880px; margin: 0 auto 28px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(124,92,255,.06), rgba(95,198,192,.06));
    border: 1px solid rgba(15,28,44,.06);
    border-radius: 16px;
  }
  .price-trust__item { text-align: center; }
  .price-trust__k {
    font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
  }
  .price-trust__l { font-size: 12px; color: var(--muted); margin-top: 4px; }
  @media (max-width: 640px) {
    .price-trust { grid-template-columns: repeat(2, 1fr); }
  }

  /* Billing toggle — centered via auto-margin on a fit-content block,
     which is the predictable, RTL-safe way (the previous left:50% +
     translateX(-50%) trick fought RTL flipping in some browsers). */
  .price-toggle {
    display: flex; gap: 4px;
    background: var(--cream); border: 1px solid var(--line);
    border-radius: 999px; padding: 4px;
    width: fit-content;
    margin: 0 auto 32px;
  }
  .price-toggle__btn {
    border: 0; background: transparent;
    padding: 9px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 700; color: var(--muted);
    cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit;
  }
  .price-toggle__btn:hover { color: var(--navy); }
  .price-toggle__btn.active {
    background: #fff; color: var(--navy);
    box-shadow: 0 4px 12px rgba(15,28,44,.1);
  }
  .price-toggle__save {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 999px;
    letter-spacing: .02em;
  }

  /* "All plans include" universal strip */
  .price-includes {
    margin-top: 48px; padding: 24px 28px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ecfeff 100%);
    border: 1px solid rgba(124,92,255,.15);
    border-radius: 18px;
  }
  .price-includes__title {
    font-size: 13px; font-weight: 700; color: var(--purple);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 14px; text-align: center;
  }
  .price-includes__row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px 28px;
  }
  .price-includes__item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--navy); font-weight: 500;
  }
  .price-includes__item .ck {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    background: rgba(95,198,192,.18); color: var(--teal);
    display: grid; place-items: center;
  }
  .price-includes__item .ck svg { width: 11px; height: 11px; }
  @media (max-width: 720px) {
    .price-includes__row { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .price-includes__row { grid-template-columns: 1fr; }
  }

  /* Pricing FAQ */
  .price-faq { margin-top: 56px; max-width: 760px; margin-inline: auto; }
  .price-faq__h3 {
    font-size: 22px; font-weight: 800; color: var(--navy);
    text-align: center; margin-bottom: 20px; letter-spacing: -0.01em;
  }
  .price-faq__list { display: flex; flex-direction: column; gap: 10px; }
  .price-faq__item {
    background: #fff; border: 1px solid var(--line);
    border-radius: 14px; overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
  }
  .price-faq__item[open] {
    border-color: rgba(124,92,255,.3);
    box-shadow: 0 8px 24px rgba(124,92,255,.08);
  }
  .price-faq__q {
    list-style: none; cursor: pointer;
    padding: 16px 20px; font-size: 15px; font-weight: 700;
    color: var(--navy); display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
  }
  .price-faq__q::-webkit-details-marker { display: none; }
  .price-faq__chev {
    flex-shrink: 0; color: var(--muted); transition: transform .25s;
  }
  .price-faq__item[open] .price-faq__chev { transform: rotate(180deg); color: var(--purple); }
  .price-faq__a {
    padding: 0 20px 18px; font-size: 14px; line-height: 1.7;
    color: var(--muted);
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 96px 0;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(600px 400px at 80% 20%, rgba(95,198,192,.18), transparent),
      radial-gradient(500px 300px at 20% 80%, rgba(245,162,93,.12), transparent);
  }
  .final-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
  .final-cta h2 {
    font-size: clamp(36px, 4.4vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 20px;
  }
  .final-cta p { font-size: 18px; color: rgba(255,255,255,.78); margin-bottom: 32px; }
  .final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* ============ FOOTER ============ */
  .footer {
    background: #0a141f;
    color: rgba(255,255,255,.7);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand .logo { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 16px; }
  .footer-brand .logo .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--teal); display: grid; place-items: center; }
  .footer-brand .logo .mark img { width: 20px; height: 20px; }
  .footer-brand .logo .word { font-weight: 700; font-size: 17px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); max-width: 320px; line-height: 1.7; margin-bottom: 16px; }
  .footer-stores { display: flex; gap: 8px; }
  .footer-store {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    padding: 8px 14px; border-radius: 10px;
    color: #fff; font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13px; color: rgba(255,255,255,.6); }
  .footer-col ul a:hover { color: #fff; }

  .footer-bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: rgba(255,255,255,.5);
  }
  .footer-bottom .lang { display: flex; gap: 16px; align-items: center; }
  .footer-bottom .social { display: flex; gap: 10px; }
  .footer-bottom .social a {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
  }
  .footer-bottom .social a:hover { background: rgba(255,255,255,.12); color: #fff; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 920px) {
    .hero-grid, .ai-grid, .qr-grid, .panel-grid, .panel-grid.flip { grid-template-columns: 1fr; gap: 40px; }
    .panel-grid.flip .panel-content { order: 1; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .nav-links { display: none; }
    .hero-chip.c1 { top: 0; right: 0; }
    .hero-chip.c2 { bottom: 0; left: 0; }
    .hero-chip.c3 { display: none; }
    .sec { padding: 64px 0; }
  }
  @media (max-width: 560px) {
    .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .panel-grid { padding: 28px 20px; }
    .platform-tab { padding: 8px 12px; font-size: 12px; }
    .trust-row { gap: 16px; justify-content: center; text-align: center; }
    .trust-divider { display: none; }
    .nav-cta .btn-ghost { display: none; }
  }

  /* ============ POSLIX AI FLOATING CHAT ============
     Self-contained widget (no Vue/Vite) — talks to the existing
     /api/public-chat/send endpoint that the SPA's PublicAiWidget
     uses, so it shares quotas, history cache, and rate limits. */
  /* Single floating launcher — anchors to the corner. RTL flips it
     to the left, LTR keeps it on the right. */
  .pxai {
    position: fixed; bottom: 24px;
    inset-inline-end: 24px;
    z-index: 1000; font-family: inherit;
  }
  .pxai-bubble {
    width: 56px; height: 56px; border-radius: 18px;
    background: transparent; border: 0; padding: 0;
    box-shadow:
      0 14px 34px rgba(124,92,255,.5),
      0 6px 16px rgba(95,198,192,.3),
      0 0 0 3px rgba(255,255,255,.5);
    display: grid; place-items: center; color: #fff;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
    position: relative; cursor: pointer;
    animation: pxai-float 4.2s ease-in-out infinite;
  }
  .pxai-bubble:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
      0 24px 60px rgba(124,92,255,.7),
      0 10px 28px rgba(95,198,192,.5),
      0 0 0 4px rgba(255,255,255,.6);
  }
  .pxai-bubble:active { transform: translateY(-1px) scale(.98); }
  .pxai-bubble-img {
    width: 100%; height: 100%; border-radius: inherit;
    display: block; object-fit: cover; pointer-events: none;
    filter: drop-shadow(0 6px 16px rgba(124,92,255,.45));
  }
  .pxai-halo {
    position: absolute; inset: -10px; border-radius: 26px;
    background:
      radial-gradient(closest-side, rgba(124,92,255,.55), rgba(124,92,255,0) 70%),
      radial-gradient(closest-side, rgba(95,198,192,.45), rgba(95,198,192,0) 75%);
    filter: blur(8px); opacity: .9; z-index: -1;
    animation: pxai-halo 3.6s ease-in-out infinite;
  }
  .pxai-ring {
    content: ''; position: absolute; inset: -2px; border-radius: 20px;
    border: 2px solid rgba(124,92,255,.55);
    pointer-events: none;
  }
  .pxai-ring--a { animation: pxai-pulse 2.6s ease-out infinite; }
  .pxai-ring--b { animation: pxai-pulse 2.6s ease-out 1.1s infinite; border-color: rgba(95,198,192,.55); }
  .pxai-spark {
    position: absolute; top: -5px; inset-inline-end: -5px;
    width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, #fff, #a594ff);
    display: grid; place-items: center;
    box-shadow: 0 5px 12px rgba(124,92,255,.5);
    animation: pxai-twinkle 2.2s ease-in-out infinite;
  }
  .pxai-spark svg { width: 11px; height: 11px; }
  @keyframes pxai-pulse {
    0%   { transform: scale(.96); opacity: .75; }
    100% { transform: scale(1.55); opacity: 0; }
  }
  @keyframes pxai-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -4px; }
  }
  @keyframes pxai-halo {
    0%, 100% { opacity: .75; transform: scale(1); }
    50%      { opacity: 1;  transform: scale(1.08); }
  }
  @keyframes pxai-twinkle {
    0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1;  }
    50%      { transform: scale(1.18) rotate(15deg); opacity: .85; }
  }
  .pxai-tip {
    position: absolute; bottom: 70px; inset-inline-end: 0;
    background: var(--navy); color: #fff;
    padding: 8px 12px; border-radius: 10px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    pointer-events: none;
    opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s;
  }
  .pxai:hover .pxai-tip, .pxai-tip.visible { opacity: 1; transform: translateY(0); }

  .pxai-panel {
    position: fixed; bottom: 24px; inset-inline-end: 24px;
    width: min(380px, calc(100vw - 32px));
    height: min(560px, calc(100vh - 48px));
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(15,28,44,.32), 0 0 0 1px rgba(15,28,44,.06);
    display: none; flex-direction: column;
    z-index: 1001;
  }
  .pxai-panel.open { display: flex; }
  .pxai-head {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .pxai-head .av {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    display: grid; place-items: center; color: #fff;
    font-weight: 800; font-size: 15px; flex-shrink: 0;
    overflow: hidden;
  }
  .pxai-head .av--icon { background: transparent; padding: 0; }
  .pxai-head .av--icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pxai-head .meta { flex: 1; min-width: 0; }
  .pxai-head .nm { font-weight: 700; font-size: 14px; }
  .pxai-head .st { font-size: 11px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; }
  .pxai-head .st .dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,.25); animation: pulse 2s infinite; }
  .pxai-head .x {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,.1); color: #fff;
    display: grid; place-items: center;
    transition: background .15s;
  }
  .pxai-head .x:hover { background: rgba(255,255,255,.18); }
  .pxai-body {
    flex: 1; overflow-y: auto; padding: 16px;
    background: linear-gradient(165deg, #f5f3ff 0%, #fff 60%);
    display: flex; flex-direction: column; gap: 10px;
  }
  .pxai-empty {
    text-align: center; padding: 12px 8px 8px;
    color: var(--muted); font-size: 13px; line-height: 1.6;
  }
  .pxai-empty strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 14px; }
  .pxai-chips { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 12px; }
  .pxai-chip {
    background: rgba(124,92,255,.1); color: var(--purple);
    border: 1px solid rgba(124,92,255,.2);
    padding: 6px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 600;
    transition: background .15s;
  }
  .pxai-chip:hover { background: rgba(124,92,255,.18); }
  .pxai-msg {
    padding: 10px 14px; border-radius: 14px;
    font-size: 13px; line-height: 1.6;
    max-width: 86%; word-wrap: break-word;
    white-space: pre-wrap;
  }
  .pxai-msg.u { background: var(--navy); color: #fff; align-self: flex-end; border-end-end-radius: 4px; }
  .pxai-msg.b { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-end-start-radius: 4px; }
  .pxai-msg.b.err { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

  /* Tool-result cards — richer than text bubbles. Each card has a kind
     attribute that drives the accent color. */
  .pxai-card {
    align-self: flex-start;
    max-width: 90%;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-end-start-radius: 4px;
    display: flex; flex-direction: column; gap: 6px;
    font-size: 12.5px; line-height: 1.55;
    box-shadow: 0 4px 12px rgba(15,28,44,0.04);
  }
  .pxai-card[data-kind='package_recommendation']  { border-color: rgba(124,92,255,0.4); background: linear-gradient(180deg, rgba(124,92,255,0.06), #fff); }
  .pxai-card[data-kind='otp_sent']                { border-color: rgba(34,197,94,0.4); background: linear-gradient(180deg, rgba(34,197,94,0.06), #fff); }
  .pxai-card[data-kind='tenant_created']          { border-color: rgba(95,198,192,0.5); background: linear-gradient(180deg, rgba(95,198,192,0.10), #fff); }
  .pxai-card[data-kind='demo_booked']             { border-color: rgba(245,158,11,0.45); background: linear-gradient(180deg, rgba(245,158,11,0.08), #fff); }

  .pxai-card__head {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--navy);
  }
  .pxai-card__head strong { font-weight: 700; }
  .pxai-card__body {
    display: flex; flex-direction: column; gap: 2px;
    color: #334155;
  }
  .pxai-card__body small { font-size: 11px; color: #64748b; }
  .pxai-card__price {
    font-size: 18px; font-weight: 800; color: var(--navy);
    font-variant-numeric: tabular-nums;
  }
  .pxai-card__price small { font-size: 11px; font-weight: 500; color: #64748b; margin-inline-start: 4px; }
  .pxai-card__link {
    color: var(--teal-2); font-weight: 700; text-decoration: none;
    font-size: 13px; word-break: break-all;
  }
  .pxai-card__link:hover { text-decoration: underline; }
  .pxai-typing { display: inline-flex; gap: 4px; padding: 4px 0; }
  .pxai-typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--purple); opacity: .4;
    animation: pxai-bounce 1.2s infinite;
  }
  .pxai-typing span:nth-child(2) { animation-delay: .15s; }
  .pxai-typing span:nth-child(3) { animation-delay: .3s; }
  @keyframes pxai-bounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: .4; }
    40% { transform: scale(1); opacity: 1; }
  }
  .pxai-foot {
    border-top: 1px solid var(--line); padding: 10px 12px;
    display: flex; gap: 8px; align-items: center;
    background: #fff;
  }
  .pxai-input {
    flex: 1; border: 1px solid var(--line); border-radius: 12px;
    padding: 10px 14px; font-size: 13px; font-family: inherit;
    outline: none; background: var(--cream); color: var(--text);
    transition: border-color .15s, background .15s;
  }
  .pxai-input:focus { border-color: var(--teal); background: #fff; }
  .pxai-send {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    color: #fff; display: grid; place-items: center;
    transition: transform .15s, opacity .15s;
  }
  .pxai-send:hover { transform: scale(1.05); }
  .pxai-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }

  /* ─── Mobile: full-screen, iOS-aware, keyboard-aware ───────────
     iOS Safari's "100vh" trick is broken — the viewport includes the
     space behind the URL bar, so content falls off-screen. Use 100dvh
     (dynamic viewport height) which excludes the URL bar/keyboard.
     Older browsers fall back to 100vh, and -webkit-fill-available
     gives one more safety net for iOS < 15.5.

     env(safe-area-inset-*) keeps the header below the notch and the
     input above the home indicator. */
  @media (max-width: 560px) {
    .pxai { bottom: 16px; inset-inline-end: 16px; }

    .pxai-panel {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100vh;
      height: -webkit-fill-available;
      height: 100dvh;
      max-height: 100dvh;
      border-radius: 0;
      z-index: 1000;
      display: none;
      flex-direction: column;
    }
    .pxai-panel.open { display: flex; }

    /* Header anchored to top with notch-safe padding. */
    .pxai-head {
      flex: 0 0 auto;
      padding-top: max(14px, env(safe-area-inset-top));
      padding-inline-start: max(16px, env(safe-area-inset-left));
      padding-inline-end: max(16px, env(safe-area-inset-right));
    }
    /* Body grows to fill, footer sticks to bottom with home-indicator
       safe-area so the input never sits under the iOS bar. */
    .pxai-body {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 18px 16px;
    }
    .pxai-foot {
      flex: 0 0 auto;
      padding-bottom: max(10px, env(safe-area-inset-bottom));
      padding-inline-start: max(12px, env(safe-area-inset-left));
      padding-inline-end:   max(12px, env(safe-area-inset-right));
    }
    /* Bigger tap targets on phones. */
    .pxai-input { padding: 12px 14px; font-size: 14px; }
    .pxai-send  { width: 42px; height: 42px; }
    /* Quick-start chips wrap and breathe on small screens. */
    .pxai-empty { padding: 24px 12px; }
    .pxai-chips { gap: 8px; margin-top: 16px; }
  }

/* ============ PAGE HEADER (sub-pages) ============
   A compact navy band shown at the top of every non-home
   page (pricing, features, business-type, contact, etc.) so
   the page has a clear title without re-running the full hero. */
.page-head {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(95,198,192,.18), transparent 60%),
    radial-gradient(600px 300px at 20% 100%, rgba(124,92,255,.12), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 80px 0 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.page-head h1 {
  font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
  font-weight: 700; letter-spacing: -0.02em;
  text-wrap: balance; margin-bottom: 14px;
}
.page-head p.lead {
  font-size: 17px; color: rgba(255,255,255,.78);
  max-width: 680px; margin: 0 auto;
  text-wrap: pretty;
}

/* Compact contact card used on /contact */
.contact-card {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 30px 80px rgba(15,28,44,.06);
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.contact-card .field { display: flex; flex-direction: column; gap: 6px; }
.contact-card .field label { font-size: 13px; font-weight: 600; color: var(--text); }
.contact-card .field input,
.contact-card .field textarea,
.contact-card .field select {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-size: 14px; font-family: inherit;
  background: var(--cream); color: var(--text); outline: none;
  transition: border-color .15s, background .15s;
}
.contact-card .field input:focus,
.contact-card .field textarea:focus,
.contact-card .field select:focus { border-color: var(--teal); background: #fff; }
.contact-card .row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 560px) {
  .contact-card { padding: 22px; }
  .contact-card .row-2 { grid-template-columns: 1fr; }
}

/* Active nav link — subtle teal underline so the user knows
   which page they're on without changing the dark nav vibe. */
.nav-links a.is-active {
  color: #fff;
  position: relative;
}
.nav-links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--teal); border-radius: 2px;
}

/* ============ LANG-AWARE TWEAKS ============
   The base CSS is RTL-first (Arabic). These rules layer LTR-only
   adjustments — primarily font swaps and arrow directions — without
   changing the RTL defaults. */
[dir="ltr"] body {
  font-family: 'Inter', -apple-system, sans-serif;
}
/* Keep the wordmark and headings tight in English with Inter, but
   let body copy stay friendly. */
[dir="ltr"] .nav-brand .word,
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] .panel-content h3 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.025em;
}

/* Numbers stay tabular regardless of locale — the .num class already
   forces Inter so Arabic-Indic and Latin digits both align cleanly. */

/* Floating chips swap sides in LTR so they don't collide with the
   POS preview's left edge. */
[dir="ltr"] .hero-chip.c1 { right: auto; left: -12px; }
[dir="ltr"] .hero-chip.c2 { left: auto; right: -32px; }
[dir="ltr"] .hero-chip.c3 { left: auto; right: -20px; }

/* Final-CTA actions and footer-bottom default to flex; nothing to
   flip. The contact-card and AI panel both use logical properties so
   they swap sides automatically. */
