/* ============================================================
   Shop263 — Marketing v2
   Full enhancement layer for public-facing pages.
   Builds on top of main.css — no duplication.
   ============================================================ */

/* ── Global overrides for marketing pages ──────────────────── */
.lp-hero {
  background: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
/* Subtle brand-colour decoration — right-side glow */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(10,36,114,.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 75% 0%, rgba(230,57,70,.07) 0%, transparent 50%),
    radial-gradient(ellipse 35% 45% at 0% 100%, rgba(245,200,66,.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Dot-grid texture on the right visual panel only */
.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0 0 0 50%;
  background-image: radial-gradient(circle, rgba(10,36,114,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: 3rem;
  align-items: center;
  min-height: 0;
  padding: 3.25rem 0 4rem;
  position: relative;
  z-index: 1;
}
.lp-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--navy);
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  border-left: 4px solid var(--red);
}
.lp-hero h1 .accent {
  color: var(--red);
  display: block;
}
.lp-hero-sub {
  font-size: clamp(.92rem, 1.4vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 480px;
}
.lp-hero-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; }
.lp-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--navy-light); border: 1px solid rgba(10,36,114,.12);
  color: var(--navy); border-radius: 999px; padding: .3rem .75rem;
}
.lp-pill.green { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.lp-pill.red { background: var(--red-light); border-color: rgba(230,57,70,.2); color: var(--red); }
.lp-hero-actions { display: flex; gap: .65rem; flex-wrap: wrap; align-items: center; margin-bottom: 0; }
.lp-hero-hotline {
  display: flex; align-items: center; gap: .75rem;
  background: #f8fafc; border: 1.5px solid var(--border);
  border-radius: 12px; padding: .75rem 1rem; font-size: .82rem; color: var(--text-secondary);
  max-width: fit-content;
  box-shadow: 0 2px 8px rgba(10,36,114,.06);
}
.lp-hero-hotline .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-hero-hotline .ic i { color: #16a34a; font-size: .95rem; }
.lp-hero-hotline strong { display: block; color: var(--navy); font-size: .9rem; }

/* counters */
.lp-hero-counters {
  display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 1.75rem;
  background: #f8fafc; border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,36,114,.06);
}
.lp-counter {
  text-align: center; padding: .7rem 1.2rem;
  border-right: 1px solid var(--border);
  flex: 1;
}
.lp-counter:last-child { border-right: none; }
.lp-counter .num { font-size: 1.35rem; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.lp-counter .num .plus { font-size: .9rem; color: var(--red); }
.lp-counter .cap { font-size: .62rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-top: .2rem; }

/* ── Hero badge / eyebrow ───────────────────────────────────── */
.lp-hero-copy { display: flex; flex-direction: column; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  color: var(--navy); background: #f0f4ff;
  border: 1px solid rgba(10,36,114,.14);
  border-radius: 999px; padding: .35rem 1rem .35rem .65rem;
  margin-bottom: .9rem; width: fit-content;
  box-shadow: 0 2px 8px rgba(10,36,114,.07);
}
.lp-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,.18);
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(230,57,70,.18); }
  50% { box-shadow: 0 0 0 6px rgba(230,57,70,.06); }
}

/* ── Accent gradient text ───────────────────────────────────── */
.lp-hero h1 .accent {
  background: linear-gradient(120deg, var(--red) 0%, #ff5a67 60%, var(--red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* ── Trust strip (payment chips) ────────────────────────────── */
.lp-trust-strip {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  margin: 1.75rem 0 0;
}
.lp-trust-label {
  font-size: .7rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em; margin-right: .1rem;
}
.lp-trust-item {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--text-secondary);
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 6px; padding: .25rem .6rem;
  transition: border-color .15s, color .15s;
}
.lp-trust-item i { font-size: .65rem; color: var(--navy); }
.lp-trust-item:hover { border-color: rgba(10,36,114,.25); color: var(--navy); }

/* ── Hero stats row ─────────────────────────────────────────── */
.lp-hero-stats {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}
.lp-hero-stat { display: flex; flex-direction: column; gap: .2rem; padding: 0 1.1rem; }
.lp-hero-stat:first-child { padding-left: 0; }
.lp-stat-num {
  font-size: 1.35rem; font-weight: 900;
  color: var(--navy); line-height: 1; letter-spacing: -.03em;
}
.lp-stat-label {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-muted);
}
.lp-hero-stat-div {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}

/* Inline stat counters (storefront-showcase hero) */
.lp-hero-inline-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .86rem; color: var(--text-secondary);
}
.lp-hero-inline-stats strong { color: var(--navy); font-weight: 900; letter-spacing: -.02em; }
.lp-hero-inline-stats .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--border-dark); flex-shrink: 0;
}

/* ── Visual panel ───────────────────────────────────────────── */
.lp-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* ── Storefront showcase (angled browser) ───────────────────── */
.lp-stage {
  position: relative;
  width: 100%;
  perspective: 1900px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem .5rem;
}
.lp-browser {
  width: 100%;
  max-width: 660px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(10,36,114,.1);
  overflow: hidden;
  box-shadow:
    0 34px 80px rgba(10,36,114,.22),
    0 10px 28px rgba(10,36,114,.1),
    0 2px 6px rgba(230,57,70,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
  transform: rotateY(-14deg) rotateX(5deg);
  transform-origin: center center;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
}
.lp-browser:hover {
  transform: rotateY(-6deg) rotateX(2deg);
  box-shadow:
    0 40px 90px rgba(10,36,114,.26),
    0 12px 32px rgba(10,36,114,.12);
}
.lp-browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .95rem;
  background: #eef1f7;
  border-bottom: 1px solid #e2e6ef;
}
.lp-browser-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.lp-browser-dot:nth-child(1) { background: #ff5f57; }
.lp-browser-dot:nth-child(2) { background: #febc2e; }
.lp-browser-dot:nth-child(3) { background: #28c840; }
.lp-browser-url {
  flex: 1; margin-left: .6rem;
  background: #fff; border: 1px solid #e2e6ef; border-radius: 8px;
  padding: .4rem .85rem; font-size: .74rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .45rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lp-browser-url i { font-size: .62rem; color: #16a34a; flex-shrink: 0; }
.lp-browser-url strong { color: var(--navy); font-weight: 700; }
.lp-browser-screen { background: #f8fafc; }

/* Storefront content scaled up for the browser frame */
.lp-browser .lp-shop-header { padding: 1rem 1.25rem; gap: .85rem; }
.lp-browser .lp-shop-av { width: 44px; height: 44px; border-radius: 12px; font-size: 1.05rem; }
.lp-browser .lp-shop-nm { font-size: .98rem; }
.lp-browser .lp-shop-sub { font-size: .74rem; }
.lp-browser .lp-shop-verify { font-size: .68rem; padding: .25rem .6rem; }
.lp-browser .lp-shop-search {
  margin: .9rem 1.1rem .55rem; padding: .6rem 1rem;
  font-size: .82rem; border-radius: 10px; gap: .55rem;
}
.lp-browser .lp-shop-search i { font-size: .78rem; }
.lp-browser .lp-shop-cats { padding: 0 1.1rem .75rem; gap: .5rem; flex-wrap: wrap; }
.lp-browser .lp-shop-cat { font-size: .72rem; padding: .3rem .8rem; }
.lp-browser .lp-shop-products {
  grid-template-columns: repeat(3, 1fr); gap: .85rem; padding: 1.1rem;
}
.lp-browser .lp-shop-product-img { height: 96px; font-size: 2.3rem; }
.lp-browser .lp-shop-product-body { padding: .55rem .7rem .7rem; }
.lp-browser .lp-shop-product-name { font-size: .8rem; }
.lp-browser .lp-shop-product-price { font-size: .92rem; }
.lp-browser .lp-shop-product-btn {
  font-size: .68rem; padding: .3rem .6rem; border-radius: 7px; margin-top: .45rem;
}

/* Floating cards over the stage corners */
.lp-stage .lp-notif {
  position: absolute; z-index: 6; margin: 0; max-width: 252px;
}
.lp-stage .lp-notif-top { top: 2px; left: -10px; align-self: auto; }
.lp-stage .lp-notif-bottom { bottom: 2px; right: -12px; align-self: auto; }
.lp-visual-panel {
  position: relative;
  background: linear-gradient(145deg, #f0f4ff 0%, #e8eeff 40%, #fef0f0 100%);
  border-radius: 28px;
  padding: 3rem 2rem 0;
  border: 1px solid rgba(10,36,114,.1);
  box-shadow:
    0 24px 64px rgba(10,36,114,.1),
    0 4px 16px rgba(10,36,114,.06),
    inset 0 1px 0 rgba(255,255,255,.8);
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
  width: 100%;
}
/* decorative grid on the panel */
.lp-visual-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,36,114,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ── Notification cards ─────────────────────────────────────── */
.lp-notif {
  position: relative; z-index: 4;
  display: flex; align-items: center; gap: .65rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(10,36,114,.08);
  padding: .7rem .9rem;
  box-shadow: 0 8px 24px rgba(10,36,114,.12), 0 2px 8px rgba(10,36,114,.06);
  width: 100%;
  max-width: 300px;
  margin-bottom: .85rem;
  animation: float-bob 4s ease-in-out infinite;
}
.lp-notif-top { align-self: flex-start; animation-delay: 0s; }
.lp-notif-bottom { align-self: flex-end; animation-delay: 1.4s; }
.lp-notif-ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lp-notif-ic--green { background: #dcfce7; }
.lp-notif-ic--green i { color: #16a34a; font-size: .9rem; }
.lp-notif-ic--gold { background: #fef9c3; }
.lp-notif-ic--gold i { color: var(--gold-dark); font-size: .9rem; }
.lp-notif-body { display: flex; flex-direction: column; gap: .1rem; flex: 1; min-width: 0; }
.lp-notif-title { font-size: .78rem; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-notif-sub { font-size: .68rem; color: var(--text-muted); }
.lp-notif-time { font-size: .62rem; font-weight: 600; color: var(--red); flex-shrink: 0; }

/* ── Seller strip at panel bottom ───────────────────────────── */
.lp-seller-strip {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1rem;
  background: rgba(10,36,114,.04);
  border-top: 1px solid rgba(10,36,114,.07);
  width: calc(100% + 4rem); margin: .85rem -2rem 0;
  font-size: .74rem; font-weight: 600; color: var(--navy);
}
.lp-av-group { display: flex; }
.lp-av {
  width: 28px; height: 28px; border-radius: 50%;
  color: #fff; font-size: .58rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; margin-right: -7px; flex-shrink: 0;
}
.lp-av-group { margin-right: 10px; }
.lp-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
  margin-left: auto; flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

/* ── Phone/Visual mockup ────────────────────────────────────── */
.lp-phone-wrap {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(10,36,114,.2)) drop-shadow(0 4px 10px rgba(230,57,70,.1));
  flex-shrink: 0;
}
.lp-phone {
  width: 240px;
  background: #0f172a;
  border-radius: 32px;
  border: 5px solid #1e293b;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.lp-phone-notch {
  background: #0f172a;
  height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lp-phone-notch-bar {
  width: 80px; height: 10px; background: #1e293b; border-radius: 999px;
}
.lp-phone-screen {
  background: #f8fafc;
  min-height: 380px;
  padding: 0;
  overflow: hidden;
}
.lp-shop-header {
  background: var(--navy);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.lp-shop-av {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: var(--navy); flex-shrink: 0;
}
.lp-shop-nm { font-size: .72rem; font-weight: 700; color: #fff; }
.lp-shop-sub { font-size: .6rem; color: rgba(255,255,255,.55); }
.lp-shop-verify { margin-left: auto; font-size: .55rem; color: #4ade80; background: rgba(74,222,128,.15); border-radius: 999px; padding: .15rem .4rem; }
.lp-shop-products {
  padding: .6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.lp-shop-product {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.lp-shop-product-img {
  height: 68px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.lp-shop-product-img i { color: rgba(15,23,42,.55); }
.lp-shop-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-shop-cat i { font-size: .5rem; opacity: .85; }
.lp-notif-stars { color: #f5c842; font-size: .72rem; letter-spacing: .5px; }
/* Hero reassurance line — the explicit "anyone can do this" message */
.lp-hero-reassure {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-top: 1rem; max-width: 34rem;
  font-size: .92rem; font-weight: 600; color: var(--text-secondary, #475569); line-height: 1.5;
}
.lp-hero-reassure i { color: var(--success, #16a34a); margin-top: .18rem; flex-shrink: 0; }
.lp-shop-product-body { padding: .35rem .45rem .4rem; }
.lp-shop-product-name { font-size: .6rem; font-weight: 600; color: #0f172a; line-height: 1.3; }
.lp-shop-product-price { font-size: .68rem; font-weight: 800; color: var(--navy); margin-top: .1rem; }
.lp-shop-product-btn {
  font-size: .55rem; background: var(--navy); color: #fff;
  border-radius: 5px; padding: .2rem .4rem; margin-top: .3rem;
  display: inline-block;
}
.lp-shop-search {
  margin: .6rem .6rem .3rem;
  background: #f1f5f9; border-radius: 8px;
  padding: .4rem .7rem; font-size: .6rem; color: #94a3b8;
  display: flex; align-items: center; gap: .4rem;
}
.lp-shop-cats {
  display: flex; gap: .35rem; padding: 0 .6rem .5rem; overflow: hidden;
}
.lp-shop-cat {
  font-size: .55rem; background: #eff6ff; color: #1d4ed8;
  border-radius: 999px; padding: .2rem .55rem; white-space: nowrap; flex-shrink: 0;
}

/* floating cards */
.lp-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(10,36,114,.08);
  box-shadow: 0 8px 32px rgba(10,36,114,.14), 0 2px 8px rgba(10,36,114,.06);
  z-index: 3;
  animation: float-bob 3.5s ease-in-out infinite;
}
/* legacy float positions — kept for back-compat, replaced by .lp-notif */
.lp-float-order, .lp-float-rating, .lp-float-pos, .lp-float-shops { display: none; }

@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Marquee ────────────────────────────────────────────────── */
.lp-marquee {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  overflow: hidden;
}
.lp-marquee-track {
  display: flex; gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.lp-marquee-item {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 0 2rem;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.lp-marquee-item i { color: var(--gold-dark); }
.lp-marquee-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--border-dark);
}
.lp-marquee-item { position: relative; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Pain section ───────────────────────────────────────────── */
.pain-section {
  padding: 5rem 0;
  /* Soft cool base with two faint brand glows: a warm red wash behind the
     "problem" side and a navy wash behind the "solution" side — reinforces the
     problem → solution narrative and makes both card sets pop off the section. */
  background:
    radial-gradient(1100px 380px at 12% 0%, rgba(230, 57, 70, 0.05), transparent 60%),
    radial-gradient(1000px 460px at 92% 100%, rgba(10, 36, 114, 0.07), transparent 55%),
    #f6f8fc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pain-cards { display: grid; gap: .75rem; }
.pain-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 3px solid var(--red);
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 26px rgba(230,57,70,.14);
}
.pain-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: #fee2e2; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pain-card-icon i { color: #dc2626; font-size: .95rem; }
.pain-card-text strong { display: block; font-size: .9rem; color: #7f1d1d; margin-bottom: .2rem; }
.pain-card-text p { font-size: .82rem; color: #991b1b; margin: 0; line-height: 1.5; }

.solution-card {
  background: linear-gradient(135deg, var(--navy), #0e2d8a);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 90% 10%, rgba(245,200,66,.2) 0%, transparent 60%);
}
.solution-card-content { position: relative; z-index: 1; }
.solution-card h3 { color: #fff; font-size: 1.4rem; margin: 0 0 1rem; letter-spacing: -.02em; }
.solution-card p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; margin: 0 0 1.5rem; }
.solution-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .65rem; }
.solution-list li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: rgba(255,255,255,.85); }
.solution-list li i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }

/* ── Feature bento grid ────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 1.25rem;
}
/* Flagship card: a 2×2 hero tile so the six cards fill a balanced 3×3 grid
   (no lone card leaving a gap on the last row). */
.bento-card--feature { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento-card--feature .bento-marketplace { margin-top: auto; }
@media (max-width: 1024px) { .bento-card--feature { grid-row: span 1; } }
@media (max-width: 768px) {
  .bento-card--feature, .bento-card--wide { grid-column: span 1; grid-row: span 1; }
}
.bento-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 2rem;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,36,114,.12), 0 4px 16px rgba(10,36,114,.06);
  border-color: rgba(10,36,114,.12);
}
.bento-card--dark:hover {
  box-shadow: 0 16px 48px rgba(6,24,64,.4), 0 4px 16px rgba(230,57,70,.15);
}
.bento-card--gold:hover {
  box-shadow: 0 16px 48px rgba(120,53,15,.4), 0 4px 16px rgba(245,200,66,.25);
}
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: transparent;
}
.bento-card--dark h3 { color: rgba(255,255,255,.96); }
/* Double class (.bento-card.bento-card--dark) outranks the base ".bento-card p"
   rule below so the body text stays light on the navy cards, not dark-on-dark. */
.bento-card.bento-card--dark p { color: rgba(255,255,255,.9); }
.bento-card--gold {
  background: linear-gradient(135deg, #78350f, #d97706);
  border-color: transparent;
}
.bento-card--red {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  border-color: transparent;
}
.bento-card--red:hover {
  box-shadow: 0 16px 48px rgba(199,37,53,.4), 0 4px 16px rgba(230,57,70,.25);
}
.bento-card--red h3 { color: #fff !important; }
.bento-card--red > p,
.bento-card--red p:not(.bento-receipt p) { color: rgba(255,255,255,.92) !important; }
.bento-card--red .bento-icon { background: rgba(255,255,255,.15); }
.bento-card--red .bento-icon i { color: #fff; }
/* receipt sits on a white card — keep its text dark */
.bento-card--red .bento-receipt { background: #fff; border-color: rgba(0,0,0,.06); }
.bento-card--red .bento-receipt-row,
.bento-card--red .bento-receipt-row span { color: #334155; }
.bento-card--red .bento-receipt-row.total,
.bento-card--red .bento-receipt-row.total span { color: #0f172a; border-top-color: #e2e8f0; }
.bento-card--red .bento-receipt-method { color: #15803d; background: #f0fdf4; }
.bento-card--gold h3 { color: #fff !important; }
.bento-card--gold > p,
.bento-card--gold p:not(.bento-receipt p) { color: rgba(255,255,255,.92) !important; }
/* receipt sits on a white card — force all text dark */
.bento-card--gold .bento-receipt { background: #fff; border-color: rgba(0,0,0,.06); }
.bento-card--gold .bento-receipt-row { color: #334155; }
.bento-card--gold .bento-receipt-row span { color: #334155; }
.bento-card--gold .bento-receipt-row.total { color: #0f172a; border-top-color: #e2e8f0; }
.bento-card--gold .bento-receipt-row.total span { color: #0f172a; }
.bento-card--gold .bento-receipt-method { color: #15803d; background: #f0fdf4; }
.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: #eff6ff;
  flex-shrink: 0;
}
.bento-icon i { font-size: 1.2rem; color: var(--navy); }
.bento-card--dark .bento-icon { background: rgba(255,255,255,.1); }
.bento-card--dark .bento-icon i { color: var(--gold); }
.bento-card--gold .bento-icon { background: rgba(255,255,255,.15); }
.bento-card--gold .bento-icon i { color: #fff; }
.bento-card h3 { font-size: 1.05rem; margin: 0 0 .5rem; }
.bento-card p { font-size: .88rem; line-height: 1.65; margin: 0; color: var(--text-secondary); }
.bento-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.bento-chip {
  font-size: .72rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.bento-card:not(.bento-card--dark):not(.bento-card--gold) .bento-chip {
  background: #eff6ff; color: var(--navy); border-color: #bfdbfe;
}
.bento-visual {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}
/* POS receipt visual */
.bento-receipt {
  background: #f8fafc; border-radius: 10px; padding: .85rem 1rem;
  border: 1px solid var(--border); font-size: .75rem; margin-top: 1.25rem;
}
.bento-receipt-row { display: flex; justify-content: space-between; padding: .25rem 0; color: #475569; }
.bento-receipt-row.total { font-weight: 800; color: #0f172a; border-top: 1px dashed var(--border); margin-top: .35rem; padding-top: .5rem; }
.bento-receipt-method { text-align: center; margin-top: .75rem; font-size: .7rem; font-weight: 700; color: #16a34a; background: #f0fdf4; border-radius: 6px; padding: .3rem; }

/* payment rail */
.bento-payments { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.bento-payment-pill {
  font-size: .72rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: 999px;
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; gap: .35rem;
}
.bento-payment-pill i { font-size: .75rem; color: var(--gold-dark); }

/* marketplace mini */
.bento-marketplace {
  margin-top: 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
}
.bento-mp-card {
  background: rgba(255,255,255,.08); border-radius: 10px; padding: .55rem .6rem;
  display: flex; align-items: center; gap: .5rem;
}
.bento-mp-av {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: var(--navy);
  background: linear-gradient(135deg,#fff,#e2e8f0);
}
.bento-mp-info { min-width: 0; }
.bento-mp-card strong {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; color: #fff; margin-bottom: .12rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bento-mp-tick { color: #4ade80; font-size: .62rem; flex-shrink: 0; }
.bento-mp-loc {
  display: flex; align-items: center; gap: .25rem;
  font-size: .62rem; color: rgba(255,255,255,.6);
}
.bento-mp-loc i { font-size: .55rem; }

/* Storefront preview inside the flagship feature card — fills the space and
   shows what "your own shop" actually looks like. */
.bento-shop-preview {
  margin-top: 1.15rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .7rem;
}
.bento-shop-bar { display: flex; align-items: center; gap: .3rem; margin-bottom: .6rem; }
.bento-shop-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.bento-shop-url {
  margin-left: .45rem; display: inline-flex; align-items: center; gap: .3rem;
  font-size: .6rem; color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.08); padding: .18rem .55rem; border-radius: 999px;
}
.bento-shop-url i { font-size: .52rem; color: #4ade80; }
.bento-shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.bento-shop-item { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.16); }
.bento-shop-thumb { aspect-ratio: 4 / 3; overflow: hidden; background: #eef2f7; }
.bento-shop-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-shop-meta { padding: .38rem .5rem .48rem; }
.bento-shop-nm { display: block; font-size: .62rem; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bento-shop-pr { display: block; font-size: .72rem; font-weight: 800; color: var(--navy); margin-top: .05rem; }
.bento-mp-label {
  margin-top: 1.1rem; font-size: .6rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.bento-card--feature .bento-mp-label { margin-top: auto; padding-top: 1.1rem; }
.bento-card--feature .bento-marketplace { margin-top: .5rem; }

/* analytics bars */
.bento-bars { margin-top: 1.25rem; display: grid; gap: .7rem; }
.bento-bar-row { display: flex; align-items: center; gap: .7rem; }
.bento-bar-label { font-size: .7rem; color: rgba(255,255,255,.85); width: 60px; flex-shrink: 0; }
.bento-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.bento-bar-fill { height: 100%; border-radius: 999px; background: var(--gold); }
.bento-bar-val { font-size: .7rem; color: rgba(255,255,255,.92); font-weight: 700; width: 34px; text-align: right; flex-shrink: 0; }

/* ── Social proof / stats banner ──────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #112380 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,200,66,.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 10% 80%, rgba(230,57,70,.1) 0%, transparent 55%);
}
.stats-head {
  position: relative; z-index: 1;
  text-align: center; max-width: 40rem; margin: 0 auto 2.75rem;
}
.stats-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .6rem;
}
.stats-title {
  color: #fff; font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
  text-align: center;
}
.stats-item { display: flex; flex-direction: column; align-items: center; }
.stats-ic {
  width: 50px; height: 50px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: .9rem;
  background: rgba(245,200,66,.14); border: 1px solid rgba(245,200,66,.28);
}
.stats-item-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1;
  letter-spacing: -.04em;
}
.stats-item-num span { color: var(--gold); }
.stats-item-label {
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(255,255,255,.82); margin-top: .55rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,36,114,.1), 0 4px 12px rgba(10,36,114,.05);
  border-color: rgba(10,36,114,.14);
}
.quote-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; line-height: 1; color: var(--border); font-family: Georgia, serif;
  pointer-events: none;
}
.quote-stars { color: var(--gold-dark); font-size: .85rem; letter-spacing: 2px; }
.quote-text { font-size: .92rem; line-height: 1.75; color: var(--text-secondary); margin: 0; flex: 1; }
.quote-person { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #31448f);
  color: #fff; font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quote-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.quote-role { font-size: .75rem; color: var(--text-muted); }

/* ── CTA hero ───────────────────────────────────────────────── */
.lp-cta-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, #112380 75%, var(--navy-dark) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% 110%, rgba(245,200,66,.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 10%, rgba(230,57,70,.1) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 95% 15%, rgba(245,200,66,.08) 0%, transparent 50%);
}
.lp-cta-hero .container { position: relative; z-index: 1; }
.lp-cta-hero h2 {
  color: #fff; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -.04em; margin: 0 0 1rem;
}
.lp-cta-hero .lead {
  color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2.5rem;
  font-size: 1.05rem; line-height: 1.7;
}
.lp-cta-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 5rem; text-align: left;
}
.lp-cta-trio .ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.lp-cta-trio .ic i { font-size: 1.2rem; color: var(--gold); }
.lp-cta-trio h3 { color: #fff; font-size: 1rem; margin: 0 0 .45rem; }
.lp-cta-trio p { color: rgba(255,255,255,.6); font-size: .86rem; line-height: 1.65; margin: 0; }

/* ── WhatsApp strip ─────────────────────────────────────────── */
.lp-wa-strip {
  background:
    radial-gradient(ellipse 40% 90% at 92% 50%, rgba(37,211,102,.22), transparent 60%),
    linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 3.25rem 0;
}
.lp-wa-strip-inner {
  display: flex; align-items: center;
  gap: 1.4rem 2rem; flex-wrap: wrap;
}
.lp-wa-mark {
  width: 62px; height: 62px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: #25d366; font-size: 2rem;
}
.lp-wa-copy { flex: 1; min-width: 260px; }
.lp-wa-strip h3 { color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 0 0 .4rem; font-weight: 800; letter-spacing: -.01em; }
.lp-wa-strip p { color: rgba(255,255,255,.88); margin: 0; font-size: .98rem; max-width: 48ch; line-height: 1.55; }
.lp-wa-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin-top: .85rem; }
.lp-wa-meta span { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.92); }
.lp-wa-meta i { color: #a7f3d0; font-size: .78rem; }
.lp-wa-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; color: #075e54; font-weight: 800; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: 12px; text-decoration: none;
  box-shadow: 0 14px 32px -12px rgba(0,0,0,.5); transition: transform .15s ease, box-shadow .2s ease;
}
.lp-wa-btn i { color: #25d366; font-size: 1.3rem; }
.lp-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(0,0,0,.55); color: #075e54; }

/* ── Featured shops ─────────────────────────────────────────── */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lp-profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.lp-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,36,114,.12), 0 4px 12px rgba(10,36,114,.06);
  border-color: rgba(10,36,114,.14);
}
.lp-profile-cover {
  height: 100px;
  position: relative;
}
.lp-profile-avatar {
  position: absolute;
  bottom: -24px; left: 1.25rem;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
  overflow: hidden;
}
.lp-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-profile-body { padding: 2rem 1.25rem 1.25rem; }
.lp-profile-name { font-weight: 800; font-size: .95rem; color: var(--navy); margin: 0 0 .2rem; }
.lp-profile-sub { font-size: .75rem; color: var(--text-muted); margin: 0 0 .75rem; }
.lp-profile-actions { margin-top: .85rem; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 90% 10%, rgba(10,36,114,.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 5% 90%, rgba(230,57,70,.04) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy); font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.04em; margin: 0 0 1rem; }
.page-hero h1 .accent { color: var(--red); }
.page-hero .lead { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.hero-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy);
  background: rgba(10,36,114,.06); border: 1px solid rgba(10,36,114,.15);
  border-radius: 999px; padding: .3rem .9rem; margin-bottom: 1.25rem;
}

/* ── Pricing enhanced ───────────────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.tier-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,36,114,.12), 0 4px 14px rgba(10,36,114,.06);
  border-color: rgba(10,36,114,.15);
}
.tier-card.highlight {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(10,36,114,.3);
}
.tier-card.highlight:hover { transform: scale(1.03) translateY(-4px); }
.tier-flag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 0 0 10px 10px;
}
.tier-name { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 .5rem; }
.tier-card.highlight .tier-name { color: rgba(255,255,255,.55); }
.tier-price { margin-bottom: 1rem; }
.tier-price .amount { font-size: 2.8rem; font-weight: 900; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.tier-card.highlight .tier-price .amount { color: #fff; }
.tier-price .period { font-size: .85rem; color: var(--text-muted); }
.tier-card.highlight .tier-price .period { color: rgba(255,255,255,.5); }
.tier-desc { font-size: .85rem; color: var(--text-secondary); margin: 0 0 1.25rem; line-height: 1.6; }
.tier-card.highlight .tier-desc { color: rgba(255,255,255,.65); }
.tier-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .65rem; }
.tier-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: var(--text-secondary); }
.tier-list li i { color: #16a34a; font-size: .75rem; margin-top: .2rem; flex-shrink: 0; }
.tier-card.highlight .tier-list li { color: rgba(255,255,255,.75); }
.tier-card.highlight .tier-list li i { color: var(--gold); }

/* ── How it works steps ─────────────────────────────────────── */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--red), var(--navy));
  opacity: .2;
  z-index: 0;
}
.hiw-step {
  text-align: center;
  padding: 0 1rem;
  position: relative; z-index: 1;
}
.hiw-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 1.35rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(10,36,114,.1), 0 6px 20px rgba(10,36,114,.2);
  transition: transform .22s, box-shadow .22s;
}
.hiw-step:hover .hiw-step-num { transform: scale(1.08); }
.hiw-step:nth-child(1) .hiw-step-num { background: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,.12), 0 6px 20px rgba(230,57,70,.25); }
.hiw-step:nth-child(2) .hiw-step-num { background: var(--gold-dark); box-shadow: 0 0 0 4px rgba(224,180,48,.15), 0 6px 20px rgba(224,180,48,.25); }
.hiw-step:nth-child(3) .hiw-step-num { background: var(--navy); box-shadow: 0 0 0 4px rgba(10,36,114,.12), 0 6px 20px rgba(10,36,114,.25); }
.hiw-step:nth-child(4) .hiw-step-num { background: #059669; box-shadow: 0 0 0 4px rgba(5,150,105,.12), 0 6px 20px rgba(5,150,105,.25); }
.hiw-step h3 { font-size: 1rem; margin: 0 0 .5rem; }
.hiw-step p { font-size: .86rem; line-height: 1.65; color: var(--text-secondary); margin: 0; }

/* ── Feature cards (enhanced) ────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,36,114,.1), 0 4px 12px rgba(10,36,114,.05);
  border-color: rgba(10,36,114,.14);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon i { font-size: 1.25rem; color: var(--navy); }
.feature-card:nth-child(3n+2) .feature-icon { background: var(--gold-light); }
.feature-card:nth-child(3n+2) .feature-icon i { color: var(--gold-dark); }
.feature-card:nth-child(3n) .feature-icon { background: var(--red-light); }
.feature-card:nth-child(3n) .feature-icon i { color: var(--red); }
.feature-card h3 { font-size: 1rem; margin: 0 0 .5rem; }
.feature-card p { font-size: .86rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* ── Misc ───────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, #112380 100%);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,36,114,.2), 0 4px 20px rgba(10,36,114,.1);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(245,200,66,.12) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 5% 80%, rgba(230,57,70,.1) 0%, transparent 50%);
}
.cta-banner .container,
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.4rem); letter-spacing: -.03em; margin: 0 0 .9rem; }
.cta-banner p { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.65; }

/* ── Button glow overrides for marketing pages ──────────────── */
.btn-red.btn-xl, .btn-red.btn-lg {
  box-shadow: 0 4px 16px rgba(230,57,70,.35);
}
.btn-red.btn-xl:hover, .btn-red.btn-lg:hover {
  box-shadow: 0 8px 28px rgba(230,57,70,.5);
  transform: translateY(-2px);
}
.btn-gold.btn-xl, .btn-gold.btn-lg {
  box-shadow: 0 4px 16px rgba(10,36,114,.3);
}
.btn-gold.btn-xl:hover, .btn-gold.btn-lg:hover {
  box-shadow: 0 8px 28px rgba(10,36,114,.4);
  transform: translateY(-2px);
}
.btn-outline.btn-lg:hover {
  box-shadow: 0 6px 20px rgba(10,36,114,.2);
}

.mkt-section { padding: 5.5rem 0; }
.mkt-center { text-align: center; }
.mkt-center .mkt-lead { margin-left: auto; margin-right: auto; }
.mkt-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.mkt-eyebrow.centered { justify-content: center; }
.mkt-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.03em; margin: 0 0 .75rem; }
.mkt-lead { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin: 0 0 1.5rem; max-width: 580px; }
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-size: .93rem; color: var(--text-secondary); line-height: 1.55; }
.checklist li i { color: #16a34a; font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.checklist li strong { color: var(--navy); }

.lp-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.lp-chip {
  font-size: .75rem; font-weight: 600;
  background: #eff6ff; color: var(--navy);
  border-radius: 999px; padding: .3rem .8rem;
  display: flex; align-items: center; gap: .35rem;
}
.lp-chip i { font-size: .65rem; color: #16a34a; }
.lp-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 700; color: var(--navy); margin-top: .75rem; }
.lp-link:hover { color: var(--red); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-play {
  display: inline-flex; align-items: center; gap: .85rem;
  font-size: .9rem; font-weight: 600; color: var(--navy);
  text-decoration: none;
}
.btn-play:hover { color: var(--red); }
.btn-play .ring {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-light); border: 1.5px solid rgba(230,57,70,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.btn-play:hover .ring {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 4px 16px rgba(230,57,70,.35);
}
.btn-play .ring i { font-size: .75rem; color: var(--red); margin-left: 2px; }
.btn-play:hover .ring i { color: #fff; }

/* ── Polish pass: refine existing components (brand-aligned) ─── */

/* Section eyebrows get a short accent rule in the current brand colour */
.mkt-eyebrow::before {
  content: ''; width: 24px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .5; flex-shrink: 0;
}
.mkt-eyebrow.centered::after {
  content: ''; width: 24px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .5; flex-shrink: 0;
}

/* Hero h1 accent line breathes with the brand red */
.lp-hero h1 { border-image: linear-gradient(var(--red), var(--red-dark)) 1; }

/* Primary CTA gets a slow sheen so it reads as the main action */
.lp-cta-primary { position: relative; overflow: hidden; }
.lp-cta-primary::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: cta-sheen 4s ease-in-out infinite;
}
@keyframes cta-sheen {
  0%, 55% { left: -130%; }
  100% { left: 140%; }
}

/* Plain bento cards reveal a full-brand top accent on hover */
.bento-card:not(.bento-card--dark):not(.bento-card--gold)::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red) 55%, var(--gold));
  opacity: 0; transition: opacity .22s ease;
}
.bento-card:not(.bento-card--dark):not(.bento-card--gold):hover::after { opacity: 1; }

/* Testimonial avatars share the brand ring; lift the opening quote mark */
.quote-card:hover::before { color: var(--gold); opacity: .35; transition: color .22s; }

/* How-it-works connector line shows full brand spectrum a touch stronger */
.hiw-steps::before { opacity: .3; height: 3px; }

/* Marquee icons alternate brand colours for rhythm */
.lp-marquee-item:nth-child(3n) i { color: var(--red); }
.lp-marquee-item:nth-child(3n+1) i { color: var(--navy); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hiw-steps::before { display: none; }
}
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .lp-card-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tier-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .tier-card.highlight { transform: scale(1); }
}
@media (max-width: 768px) {
  .lp-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 2.5rem 0 2.5rem; gap: 2rem; }
  /* Commercial-grade mobile: keep the storefront preview, flattened & compact */
  .lp-visual { display: flex; }
  .lp-stage { perspective: none; padding: 0; }
  .lp-browser {
    transform: none; max-width: 440px;
    box-shadow: 0 14px 36px rgba(10,36,114,.14), 0 3px 10px rgba(10,36,114,.08);
  }
  .lp-browser:hover { transform: none; }
  .lp-stage .lp-notif { display: none; }
  .lp-browser .lp-shop-products { grid-template-columns: 1fr 1fr; }
  .lp-browser .lp-shop-product:nth-child(n+5) { display: none; }
  .lp-hero-stats { gap: 0; }
  .lp-hero-stat { padding: 0 .75rem; }
  .lp-stat-num { font-size: 1.1rem; }
  .lp-hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide, .bento-card--tall { grid-column: span 1; grid-row: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .lp-card-grid { grid-template-columns: 1fr; }
  .lp-cta-trio { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-section { padding: 3.5rem 0; }
  .hiw-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lp-cta-hero { padding: 4rem 0; }
  .cta-banner { padding: 3rem 1.5rem; border-radius: 16px; }
  .page-hero { padding: 4rem 0 3rem; }
}

/* ── Mobile polish pass — bigger tap targets, tighter rhythm ──── */
@media (max-width: 560px) {
  /* Stack hero CTAs full-width so they're easy to tap */
  .lp-hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .lp-hero-actions .btn { width: 100%; justify-content: center; }
  .btn-play { justify-content: center; }
  .lp-hero-inner { padding: 2rem 0 2.5rem; }
  .lp-hero h1 { padding-left: 0.85rem; }
  .lp-hero-inline-stats { gap: 0.5rem 0.65rem; font-size: 0.8rem; }
  /* Section headings + spacing */
  .mkt-section { padding: 3rem 0; }
  .mkt-h2 { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  /* Card padding */
  .solution-card { padding: 1.75rem 1.5rem; }
  .lp-cta-hero { padding: 3.5rem 0; }
  .lp-cta-trio { margin-top: 2.5rem; gap: 1.75rem; }
  /* WhatsApp help strip stacks with full-width button */
  .lp-wa-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .lp-wa-strip-inner .lp-wa-btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .stats-grid { gap: 1.25rem 1.5rem; }
  .lp-hero h1 { font-size: clamp(1.85rem, 9vw, 2.25rem); }
  .lp-trust-item { font-size: 0.68rem; }
  .lp-hero-badge { font-size: 0.7rem; }
}

/* ============================================================
   RESPONSIVE HARDENING — public pages
   Root-cause safety net for "breaks on mobile/tablet": media and
   long strings can no longer punch past the viewport, so layouts
   stop being clipped/pushed sideways on small screens.
   ============================================================ */

/* 1. Media never exceeds its container (the #1 mobile-overflow cause). */
img, svg, video, canvas, iframe, embed, object,
picture, audio { max-width: 100%; }
img, video { height: auto; }

/* 2. Long words, URLs and emails wrap instead of widening the page. */
body { overflow-wrap: break-word; }

/* 3. Preformatted/code blocks wrap rather than scroll the whole page. */
pre, code, kbd, samp { white-space: pre-wrap; overflow-wrap: anywhere; }

/* 4. Any data table scrolls inside its own box, never the page. */
table { max-width: 100%; }
.table-scroll, .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* 5. Tablet range (real-world iPad / landscape phones) ------------- */
@media (max-width: 1024px) {
  /* Generic 3-up / 4-up content grids step down on tablet */
  .lp-cta-trio, .quote-grid, .lp-card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 6. Touch-friendly tap targets on phones (min ~44px) ------------- */
@media (max-width: 768px) {
  .btn, .nav-signin-btn, .footer-links a, .mm-link,
  .nav-icon-btn, .mobile-menu-btn { min-height: 44px; }
  .footer-links a { display: inline-flex; align-items: center; }
  /* Hero counter strip can wrap instead of squishing to nothing */
  .lp-hero-counters { flex-wrap: wrap; }
  .lp-counter { min-width: 33%; }
  /* Buttons in any hero/CTA row go full-width for easy tapping */
  .cta-banner .btn, .page-hero .btn { width: 100%; max-width: 320px; justify-content: center; }
  /* Contact page: channels + form were a fixed 2-col with NO collapse
     rule — stack them so the form isn't crushed on phones/tablets. */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.75rem 1.35rem; }
  /* Sponsorship 2-col form row stacks */
  .sponsor-form-grid { grid-template-columns: 1fr !important; }
}

/* 7. Very small phones — kill side padding waste, keep readable ---- */
@media (max-width: 400px) {
  .lp-hero-counters { flex-direction: column; }
  .lp-counter { min-width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .lp-counter:last-child { border-bottom: none; }
}

/* ============================================================
   PREMIUM POLISH LAYER — public pages (additive, brand-consistent)
   Lifts buttons, cards, inputs, links & section reveals across the
   whole marketing site without changing layout structure.
   ============================================================ */

/* Buttons — subtle gradient, lift + press feedback */
.btn { transition: transform .16s cubic-bezier(.16,1,.3,1), box-shadow .16s, filter .16s, background .16s; will-change: transform; }
.btn-primary, .btn-navy { background-image: linear-gradient(135deg, var(--navy) 0%, #16307a 100%); }
.btn-red { background-image: linear-gradient(135deg, var(--red) 0%, #c42f3b 100%); }
.btn-gold { background-image: linear-gradient(135deg, var(--gold) 0%, #e0ad1f 100%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,36,114,.18); filter: brightness(1.03); }
.btn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(10,36,114,.14); }
.btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* Card lift — generic across the shared card components */
.feature-card, .lp-card, .lp-solution-card, .solution-card, .tier-card,
.contact-channel, .hiw-step, .bento-card, .about-value, .about-bento-card,
.about-stat-cell, .quote-card, .mkt-shop-card {
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s, border-color .18s;
}
.feature-card:hover, .lp-card:hover, .lp-solution-card:hover, .solution-card:hover,
.hiw-step:hover, .bento-card:hover, .about-value:hover, .quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(10,36,114,.12);
}

/* Inputs — smooth, branded focus ring */
.form-input, .form-textarea, .form-select, input[type="text"], input[type="email"],
input[type="search"], input[type="number"], textarea, select {
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,114,.12);
  outline: none;
}

/* Animated underline for nav links (desktop) */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); border-radius: 2px; transition: width .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Section reveal — smoother easing + slight scale; respects reduced motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible, .reveal.revealed, .reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .btn, .feature-card, .lp-card, .hiw-step, .reveal, .nav-link::after { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .feature-card:hover, .lp-card:hover, .hiw-step:hover { transform: none !important; }
}

/* ============================================================
   MOBILE RESPONSIVE LAYER — public pages (enhance, preserve UI/UX)
   Stacks every grid, scales heroes/typography, kills horizontal
   overflow, and makes tap targets comfortable on phones.
   ============================================================ */

/* Hard guard: nothing on a public page may cause sideways scroll */
.lp-hero, .mkt-section, .page-hero, .pain-section, .lp-wa-strip,
.lp-cta-hero, .ax-reviews-section { overflow-x: clip; }
img, svg, video, iframe, table { max-width: 100%; }

/* ── Tablet & below (≤1024) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-card-grid, .feature-grid, .stats-grid, .quote-grid,
  .lp-cta-trio, .about-bento, .about-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Mobile (≤768) — single column, stacked heroes ──────────── */
@media (max-width: 768px) {
  .lp-hero-inner,
  .split-grid, .contact-grid, .about-story-grid, .about-hero-grid,
  .about-zim-strip { grid-template-columns: 1fr !important; gap: 2rem; }

  /* All content grids collapse to one column */
  .lp-card-grid, .feature-grid, .quote-grid, .lp-cta-trio,
  .hiw-steps, .bento-grid, .pain-grid, .about-bento,
  .about-values-grid, .tier-grid { grid-template-columns: 1fr !important; }

  /* Hero visual (browser mockup) flows under the copy, scaled */
  .lp-visual { margin-top: 1.5rem; }
  .lp-browser { transform: none !important; max-width: 100% !important; }
  .lp-stage { perspective: none !important; padding: 0 !important; }
  .lp-notif { display: none !important; }          /* floating chips off on phones */

  /* Headings & section rhythm scale down */
  .mkt-h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .lp-hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .mkt-section, .pain-section { padding: 2.75rem 0; }
  .page-hero { padding: 3rem 0 2.25rem; }

  /* Hero & CTA buttons go full-width, easy to tap */
  .lp-hero-actions, .cta-banner .btn, .page-hero .btn { width: auto; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-actions .btn { width: 100%; justify-content: center; }

  /* Comfortable tap targets */
  .btn, .nav-link, .mm-link, .footer-links a, .tier-card .btn { min-height: 44px; }
  .tier-card .btn { display: inline-flex; align-items: center; justify-content: center; }

  /* Trust strip / payment chips wrap */
  .lp-trust-strip, .lp-hero-inline-stats, .lp-trust-bar { flex-wrap: wrap; }
}

/* ── Small phones (≤480) ────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid, .about-stats-strip { grid-template-columns: 1fr 1fr !important; }
  .lp-hero h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .mkt-section, .pain-section { padding: 2.25rem 0; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .lp-hero-badge { font-size: .7rem; }
  /* CTA banners breathe less on tiny screens */
  .cta-banner, .lp-cta-hero { padding: 2.25rem 1.25rem; }
  .tier-card { padding: 1.5rem 1.25rem; }
}

/* ── Very small (≤360) — last-resort stacking ───────────────── */
@media (max-width: 360px) {
  .stats-grid, .about-stats-strip { grid-template-columns: 1fr !important; }
}
