:root {
  --coral: #ff5945;
  --coral-dark: #e94132;
  --orange: #ff8a36;
  --ink: #201b18;
  --muted: #746b65;
  --cream: #fff7e9;
  --paper: #fffdf9;
  --line: #eadccf;
  --green: #128c62;
  --shadow: 0 20px 55px rgba(104, 64, 34, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff9ef;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: 20px; }
.site-header, main, section, footer { max-width: 100%; }
.section { padding: 104px 0; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 14px;
  color: white; background: var(--ink); border-radius: 9px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 60px; color:#241d19; background: rgba(255,250,241,.9);
  border-bottom: 1px solid rgba(126,80,43,.12); backdrop-filter: blur(20px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 800 24px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.brand-mark, .modal-brand-mark {
  width:36px;height:36px;display:grid;place-items:center;color:white;
  background:linear-gradient(145deg,#ff3f3f 0%,#ff7a31 58%,#ffb52f 100%);border-radius:13px 13px 13px 5px;
  box-shadow:0 8px 20px rgba(229,72,42,.28),inset 0 1px 0 rgba(255,255,255,.35);transform:rotate(-5deg);
}
.brand-mark svg,.modal-brand-mark svg{width:31px;height:31px;overflow:visible;fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;transform:rotate(5deg)}
.brand-mark .mark-loop,.modal-brand-mark .mark-loop{stroke-width:3;opacity:.94}.brand-mark .mark-arrow,.modal-brand-mark .mark-arrow{stroke-width:3}.brand-mark .mark-s,.modal-brand-mark .mark-s{stroke-width:2.7}
.brand-mark + span { transform: translateY(-1px); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.icon-button, .login-button,.language-button { border: 0; background: transparent; cursor: pointer; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; }
.icon-button:hover { background: rgba(255,111,55,.09); }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.login-button { padding: 11px 14px; font-weight: 700; }
.language-switcher{position:relative}.language-button{min-width:58px;height:40px;display:flex;align-items:center;justify-content:center;gap:6px;padding:0 9px;border-radius:12px;font-size:11px;font-weight:800}.language-button:hover,.language-button[aria-expanded="true"]{background:rgba(255,111,55,.1)}.language-button svg{width:19px;fill:none;stroke:currentColor;stroke-width:1.65}
.language-popover{position:absolute;z-index:80;right:0;top:calc(100% + 12px);width:238px;max-height:min(430px,calc(100vh - 90px));padding:9px;display:grid;grid-template-columns:1fr 1fr;gap:4px;overflow:auto;border:1px solid rgba(145,89,47,.14);border-radius:18px;background:rgba(255,253,248,.98);box-shadow:0 24px 55px rgba(82,47,25,.2);opacity:0;visibility:hidden;transform:translateY(-7px) scale(.97);transform-origin:top right;transition:.2s}.language-popover.is-open{opacity:1;visibility:visible;transform:translateY(0) scale(1)}.language-popover button{display:flex;align-items:center;justify-content:space-between;padding:10px;border:0;border-radius:10px;background:transparent;color:#554a44;font-size:12px;text-align:left;cursor:pointer}.language-popover button:hover,.language-popover button.is-active{color:var(--coral-dark);background:#fff0e4}.language-popover button span{font-size:9px;font-weight:800;opacity:.65}.account-chip{max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--green);background:#e5f7ef;border-radius:12px}

.primary-button, .dark-button, .white-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px;
  border: 0; border-radius: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.primary-button { padding: 0 24px; color: white; background: linear-gradient(135deg, var(--coral), #ff6e40); box-shadow: 0 10px 24px rgba(255,89,69,.24); }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,89,69,.32); }

.hero { position:relative;overflow:hidden;padding:54px 0 72px;color:#fff;background:radial-gradient(circle at 73% 23%,rgba(255,224,151,.31),transparent 22%),radial-gradient(circle at 13% 82%,rgba(177,52,24,.18),transparent 30%),linear-gradient(118deg,#ef542c 0%,#fb6a30 34%,#ff8d3d 66%,#f65b2d 100%); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; left: -230px; top: 10%; border: 65px solid rgba(255,244,218,.13); border-radius: 50%; }
.hero::after { content:"";position:absolute;width:190px;height:190px;right:4%;bottom:-125px;border:38px solid rgba(255,255,255,.11);transform:rotate(45deg);box-shadow:-330px -430px 0 45px rgba(255,221,168,.035); }
.hero-coins{position:absolute;inset:0;z-index:0;pointer-events:none}.hero-coin{position:absolute;isolation:isolate;width:38px;height:38px;display:grid;place-items:center;border:2px solid #ffea89;border-radius:50%;color:#97550a;background:conic-gradient(from 210deg,#b9690c,#ffd853 18%,#fff2a1 31%,#d98a12 51%,#ffc83d 68%,#9e5709 84%,#e99b17);box-shadow:0 4px 0 #a65b0b,0 10px 22px rgba(99,42,3,.3),inset 0 0 0 3px rgba(255,246,172,.7),inset 0 -5px 8px rgba(145,71,2,.28);font:900 17px/1 Manrope,sans-serif;text-shadow:0 1px 0 #fff1a0,0 -1px 0 rgba(105,51,0,.28);opacity:.9;animation:coin-drift 4.8s ease-in-out infinite}.hero-coin::before{content:"";position:absolute;z-index:-1;inset:6px;border-radius:50%;background:radial-gradient(circle at 35% 27%,#fffbd0 0 8%,#ffde62 30%,#efad24 70%,#c4720a 100%);box-shadow:inset 0 0 0 1px rgba(145,72,2,.32)}.hero-coin::after{content:"";position:absolute;inset:4px;border:1px dashed rgba(142,70,0,.55);border-radius:50%;box-shadow:0 0 0 1px rgba(255,250,194,.38)}.hero-coin.coin-a{left:2.5%;top:12%}.hero-coin.coin-b{left:7%;top:70%;width:27px;height:27px;font-size:11px;animation-delay:-1.2s}.hero-coin.coin-c{left:43%;top:8%;width:31px;height:31px;font-size:13px;animation-delay:-2.5s}.hero-coin.coin-d{left:49%;bottom:6%;width:26px;height:26px;font-size:10px;animation-delay:-.8s}.hero-coin.coin-e{right:3%;top:18%;width:47px;height:47px;font-size:20px;animation-delay:-3.2s}.hero-coin.coin-f{right:9%;top:61%;width:30px;height:30px;font-size:12px;animation-delay:-1.8s}.hero-coin.coin-g{right:42%;top:39%;width:23px;height:23px;font-size:8px;opacity:.58;animation-delay:-4s}.hero-coin.coin-h{left:31%;bottom:9%;width:42px;height:42px;animation-delay:-2s}.hero-coin.coin-i{left:17%;top:5%;width:24px;height:24px;font-size:9px;animation-delay:-3.7s}.hero-coin.coin-j{left:20%;bottom:3%;width:31px;height:31px;font-size:12px;animation-delay:-.4s}.hero-coin.coin-k{left:54%;top:17%;width:22px;height:22px;font-size:8px;animation-delay:-2.9s}.hero-coin.coin-l{right:22%;top:6%;width:28px;height:28px;font-size:11px;animation-delay:-1.5s}.hero-coin.coin-m{right:1.5%;bottom:9%;width:34px;height:34px;font-size:13px;animation-delay:-4.4s}.hero-coin.coin-n{right:34%;bottom:2.5%;width:25px;height:25px;font-size:10px;animation-delay:-2.2s}@keyframes coin-drift{0%,100%{translate:0 0;rotate:-8deg}50%{translate:0 -18px;rotate:12deg}}
.hero-grid { position: relative; z-index:1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 66px; }
.hero-carousel { position: relative; min-width: 0; min-height:610px; display:grid; place-items:center; padding:28px 0 94px; perspective:1400px; }
.hero-carousel::before { content:""; position:absolute; z-index:0; width:78%; aspect-ratio:1; top:4%; left:11%; background:rgba(255,245,220,.22); clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); transform:scale(1.08) rotate(3deg); filter:drop-shadow(0 30px 35px rgba(115,48,16,.23)); }
.hero-slides { position: relative; z-index:1; width:min(500px,78%); height:auto; aspect-ratio:1; overflow: hidden; background:#d96a33; clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); filter:drop-shadow(0 28px 38px rgba(95,38,12,.28)); transform-style:preserve-3d; }
.hero-slides::after { content: ""; position: absolute; inset: 2px; z-index:3; border: 2px solid rgba(255,255,255,.56); clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); pointer-events: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform:translateX(20%) rotateY(62deg) scale(.82); transform-origin:center; transition:opacity .5s ease,transform .78s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.hero-slide.is-active { opacity: 1; transform:translateX(0) rotateY(0) scale(1); pointer-events: auto; z-index: 1; }
.hero-slide.is-leaving { opacity:0; transform:translateX(-20%) rotateY(-62deg) scale(.82); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 35%,rgba(66,24,7,.2) 58%,rgba(37,15,6,.84)); }
.slide-copy { position: absolute; left: 25%; bottom: 20%; right: 25%; z-index: 2; display: flex; align-items: center; justify-content:center; gap: 12px; color: white; }
.slide-copy div { display: flex; flex-direction: column; gap: 2px; }
.slide-copy span:not(.slide-icon) { font-size: 13px; font-weight: 600; opacity: .8; letter-spacing: .08em; text-transform: uppercase; }
.slide-copy strong { font: 800 clamp(27px,3vw,39px)/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.hero-slide[data-slide="1"] .slide-copy strong { font-size:clamp(21px,2.45vw,31px); }
.slide-icon { flex:0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 15px; background: rgba(255,255,255,.18); backdrop-filter: blur(12px); font-size: 22px; }
.side-category { position:absolute; z-index:6; top:43%; width:126px; min-height:72px; display:flex; align-items:center; justify-content:center; gap:9px; padding:11px 14px; border:1px solid rgba(255,255,255,.58); color:#b5421f; background:rgba(255,249,233,.94); box-shadow:0 15px 30px rgba(104,40,10,.18); clip-path:polygon(12% 0,100% 0,88% 100%,0 100%); cursor:pointer; transition:transform .25s,background .25s; }
.side-category:hover { transform:translateY(-4px) scale(1.04); background:#fff; }
.side-category > span:not([aria-hidden]) { display:flex; flex-direction:column; }
.side-category > span[aria-hidden] { display:block; font-size:20px; font-weight:800; }
.side-category small { color:#a67864; font-size:8px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.side-category strong { margin-top:2px; font:800 15px/1.1 "Manrope",sans-serif; }
.side-category strong{max-width:84px;font-size:13px;white-space:nowrap;overflow-wrap:normal}
.side-previous { left:-1%; }
.side-next { right:-1%; clip-path:polygon(0 0,88% 0,100% 100%,12% 100%); }
.carousel-controls { position: absolute; z-index: 7; left:50%; bottom:12px; width:max-content; max-width:100%; transform:translateX(-50%); }
.carousel-dots { display: flex; align-items:center; gap: 7px; padding:7px; border:1px solid rgba(255,255,255,.25); border-radius:18px; background:rgba(126,53,17,.18); backdrop-filter:blur(12px); }
.carousel-dot { width:auto; height:34px; padding:0 12px; border:0; border-radius:12px; color:rgba(255,255,255,.74); background:transparent; cursor:pointer; transition:color .25s,background .25s,transform .25s; }
.carousel-dot span { font-size:11px; font-weight:800; }
.carousel-dot:hover { color:#fff; transform:translateY(-1px); }
.carousel-dot.is-active { width:auto; color:#d24d24; background:#fff8e8; box-shadow:0 7px 16px rgba(104,40,10,.14); }

.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: currentColor; }
.hero-content h1 { max-width: 560px; margin: 0; font: 800 clamp(48px,5.2vw,74px)/1.02 "Manrope", sans-serif; letter-spacing: -.065em; }
.hero .eyebrow { color:#fff7df; }
.hero-content h1 em{color:#fff0c6;font-style:normal}.hero-100{font-size:1.2em;letter-spacing:-.075em}
.hero-content h2 { margin: 30px 0 8px; font: 700 clamp(20px,2.2vw,26px)/1.25 "Manrope", sans-serif; }
.hero-content > p:not(.eyebrow) { max-width: 490px; margin: 0; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-button { min-height: 56px; padding-inline: 30px; }
.hero .hero-button { color:#d74e24; background:#fff8e9; box-shadow:0 14px 28px rgba(120,43,12,.2); }
.text-link { font-size: 14px; font-weight: 800; }
.hero .text-link { color:#fff; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.avatar-stack { display: flex; }
.avatar-stack img { width: 34px; height: 34px; margin-right: -8px; border: 3px solid #f36d33; border-radius: 50%; object-fit:cover; background:#ffd7bd; box-shadow:0 4px 10px rgba(107,43,16,.17); }
.avatar-stack img:nth-child(1),.avatar-stack img:nth-child(2),.avatar-stack img:nth-child(3) { object-position:center; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: rgba(255,255,255,.78); font-size: 13px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2 { margin: 0; font: 800 clamp(36px,4vw,52px)/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.section-heading > p { max-width: 440px; margin: 0 0 2px; color: var(--muted); line-height: 1.65; }
.store-section { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 3%, rgba(255,255,255,.72), transparent 27%), #ffe8ce; }
.store-section::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.4; background-image:linear-gradient(rgba(185,109,52,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(185,109,52,.05) 1px,transparent 1px); background-size:54px 54px; }
.store-section .container { position:relative; z-index:1; }
.store-grid { width:100%; min-width:0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.store-card {
  --mx: 50%; --my: 50%; position: relative; min-width: 0; min-height: 260px; overflow: hidden; padding: 0 0 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  max-width:100%; border: 1px solid rgba(159,91,40,.14); border-radius: 26px; color: var(--ink); background: #fff9ef;
  box-shadow: 0 13px 30px rgba(111,65,32,.1); cursor: pointer; isolation: isolate;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s, box-shadow .28s;
}
.store-card::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: 0; background: radial-gradient(circle at var(--mx) var(--my), rgba(255,123,83,.27), transparent 45%); transition: opacity .25s; }
.store-card::after { content: ""; position: absolute; top: -80%; left: -60%; width: 35%; height: 240%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent); transform: rotate(25deg); transition: left .65s ease; }
.store-card:hover, .store-card:focus-visible { transform: translateY(-9px) rotateX(2deg); border-color: rgba(255,89,69,.5); box-shadow: 0 26px 54px rgba(113,62,25,.2), 0 0 0 1px rgba(255,89,69,.12); outline: none; }
.store-card:hover::before, .store-card:focus-visible::before { opacity: 1; }
.store-card:hover::after { left: 140%; }
.store-card:active { transform: translateY(-1px) scale(.975); }
.logo-stage { width:100%; height:190px; position:relative; flex:0 0 190px; display:grid; place-items:center; overflow:hidden; padding:22px; border-radius:25px 25px 18px 18px; transition:filter .3s,border-radius .3s; }
.logo-stage::selection { background: transparent; }
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; border-radius: 50%; transition: transform .35s; }
.logo-stage::before { width: 90px; height: 90px; right: -25px; top: -25px; background: rgba(255,255,255,.22); }
.logo-stage::after { width: 48px; height: 48px; left: -12px; bottom: -15px; background: rgba(255,255,255,.22); }
.store-card:hover .logo-stage { border-radius:25px 25px 22px 22px; filter:saturate(1.08) brightness(1.02); }
.store-card:hover .logo-stage::before { transform: translate(-12px,12px) scale(1.18); }
.logo-stage img { position:relative; z-index:1; display:block; width:auto; height:auto; max-width:82%; max-height:72%; aspect-ratio:auto; object-fit:contain; filter:drop-shadow(0 7px 10px rgba(0,0,0,.1)); transition:filter .25s; }
.logo-stage img[hidden], .modal-store-logo img[hidden] { display:none; }
.logo-fallback { position: relative; z-index: 1; display: grid; place-items: center; max-width: 88%; color:#17181d; font: 800 clamp(13px,2.2vw,25px)/1 "Manrope",sans-serif; letter-spacing: -.055em; text-align: center; }
.store-card:hover .logo-stage img { transform:none; filter:drop-shadow(0 9px 12px rgba(0,0,0,.14)); }
  .logo-amazon img { max-width:78%; max-height:54%; }
  .logo-ebay img { max-width:68%; max-height:62%; }
  .logo-tiktok img { max-width:84%; max-height:58%; }
  .logo-shopee img { max-width:76%; max-height:60%; }
  .logo-shein img { max-width:74%; max-height:55%; }
  .logo-mercado img { max-width:82%; max-height:82%; transform:translateY(-15px) scale(1.42); }
  .store-card:hover .logo-mercado img { transform:translateY(-15px) scale(1.42); }
  .logo-trip img { max-width:82%; max-height:56%; }
  .logo-booking img { max-width:86%; max-height:48%; }
  .logo-uber img { max-width:50%; max-height:40%; transform:scale(2); transform-origin:center; }
  .store-card:hover .logo-uber img { transform:scale(2); }
  .logo-walmart img { max-width:82%; max-height:54%; }
  .logo-klook img { max-width:78%; max-height:60%; }
  .logo-temu img { max-width:76%; max-height:58%; }
  .logo-aliexpress img { max-width:84%; max-height:54%; }
  .logo-ikea img { max-width:25%; max-height:30%; transform:scale(4); transform-origin:center; }
  .store-card:hover .logo-ikea img { transform:scale(4); }
  .logo-apple img { max-width:48%; max-height:70%; }
.logo-amazon { background: linear-gradient(145deg,#fff1d5,#ffd9a0); }
.logo-ebay { background: linear-gradient(145deg,#e2f7ff,#e9e3ff); }
.logo-tiktok { background: linear-gradient(145deg,#dffbfa,#ffe2ec); }
.logo-shopee { background: linear-gradient(145deg,#fff0ea,#ffd6c7); }
.logo-shein { background: linear-gradient(145deg,#f4f1f0,#ddd8d4); }
.logo-mercado { background: linear-gradient(145deg,#fff9c9,#ffe672); }
.logo-trip { background: linear-gradient(145deg,#def0ff,#bedcff); }
.logo-booking { background: linear-gradient(145deg,#e5efff,#bfd5ff); }
.logo-uber { background: linear-gradient(145deg,#e0fbeb,#b9efcd); }
.logo-walmart { background: linear-gradient(145deg,#e4f4ff,#c6e5ff); }
.logo-klook { background: linear-gradient(145deg,#fff1e3,#ffd9bd); }
.logo-temu { background:linear-gradient(145deg,#fff0e3,#ffc894); }
.logo-aliexpress { background: linear-gradient(145deg,#ffe5e6,#ffc9ca); }
.logo-ikea { background: linear-gradient(145deg,#ffef9d,#ffd53d); }
.logo-apple { background: linear-gradient(145deg,#f4f5f8,#dbdce2); }
.store-card{gap:0;padding-bottom:18px}.store-name{display:block;width:100%;margin-top:13px;padding-inline:8px;color:#17130f;font:800 17px/1.15 Manrope,sans-serif;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.store-card strong{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;margin-top:5px;padding-inline:7px;color:#17130f;font-size:14px;line-height:1.2;text-align:center}.store-card strong::before{content:attr(data-badge);flex:none;padding:4px 7px;border-radius:999px;color:#fff;background:linear-gradient(135deg,#ff3f3f,#ff7b32);box-shadow:0 5px 12px rgba(226,65,39,.2);font-size:8px;font-weight:900;letter-spacing:.04em;animation:deal-badge-pulse 2.5s ease-in-out infinite}.store-card:nth-child(3n+2) strong::before{background:linear-gradient(135deg,#171717,#494949)}.store-card:nth-child(3n) strong::before{color:#60260c;background:linear-gradient(135deg,#ffd55b,#ff9b2f)}@keyframes deal-badge-pulse{50%{transform:translateY(-1px) scale(1.06);box-shadow:0 7px 16px rgba(226,65,39,.3)}}
.card-arrow { position: absolute; z-index:2; right: 15px; top: 15px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #24252a; background: rgba(255,255,255,.72); opacity: .8; transition: color .2s, background .2s, transform .25s; }
.store-card:hover .card-arrow { color: white; background: var(--coral); opacity: 1; transform: rotate(45deg); }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,89,69,.18); transform: translate(-50%,-50%) scale(0); animation: ripple .65s ease-out; pointer-events: none; }
@keyframes ripple { to { transform: translate(-50%,-50%) scale(1); opacity: 0; } }

.stats-section {
  position:relative; left:50%; width:100vw; max-width:none; margin:78px 0 -104px -50vw; padding:30px 24px; overflow:hidden;
  color:white; background:linear-gradient(118deg,#7a285d 0%,#d94250 44%,#ff7138 76%,#ffad3f 100%);
  clip-path:polygon(0 0,100% 0,98.6% 18%,99.5% 50%,98.6% 82%,100% 100%,0 100%,1.4% 82%,.5% 50%,1.4% 18%);
  filter:drop-shadow(0 24px 30px rgba(117,52,44,.2));
}
.stats-section::after { content:""; position:absolute; inset:-40% -8%; pointer-events:none; background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.13) 45%,transparent 62%); transform:rotate(-4deg); }
.stats-grid { position:relative; z-index:1; width:100%; max-width:1120px; margin-inline:auto; display:grid; grid-template-columns:repeat(4,1fr); }
.stats-grid article { position: relative; padding: 24px 34px; }
.stats-section.stats-animate{perspective:1200px}.stats-section.stats-animate .stats-grid article{opacity:0;transform:translateY(-48px) rotateX(-82deg) scale(.92);transform-origin:center top;backface-visibility:hidden;will-change:transform,opacity;transition:opacity .6s ease,transform .82s cubic-bezier(.18,.82,.2,1)}.stats-section.stats-animate .stats-grid article:nth-child(even){transform:translateY(48px) rotateX(82deg) scale(.92);transform-origin:center bottom}.stats-section.stats-animate.is-visible .stats-grid article{opacity:1;transform:translateY(0) rotateX(0) scale(1)}.stats-section.stats-animate.is-visible .stats-grid article:nth-child(1){transition-delay:.05s}.stats-section.stats-animate.is-visible .stats-grid article:nth-child(2){transition-delay:.16s}.stats-section.stats-animate.is-visible .stats-grid article:nth-child(3){transition-delay:.27s}.stats-section.stats-animate.is-visible .stats-grid article:nth-child(4){transition-delay:.38s}.stats-section.stats-animate.is-visible .stats-grid strong{animation:stat-number-pop .58s .48s both}@keyframes stat-number-pop{0%{letter-spacing:-.13em;filter:blur(3px)}100%{letter-spacing:-.04em;filter:blur(0)}}
.stats-grid article + article::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: rgba(255,255,255,.14); }
.stat-icon { display: block; margin-bottom: 12px; color: #fff2d5; font-size: 12px; }
.stats-grid strong { font: 800 clamp(30px,4vw,47px)/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.stats-grid p { margin:10px 0 0; color:rgba(255,255,255,.94); font-size:16px; font-weight:700; line-height:1.35; }

.how-section { overflow: hidden; background: radial-gradient(circle at 0 20%,rgba(255,139,74,.13),transparent 30%), #fff8eb; }
.how-heading { margin-bottom: 46px; }
.steps-shell { overflow: hidden; border: 1px solid #efdece; border-radius: 34px; background: #fffdf9; box-shadow: var(--shadow); }
.steps-visual { position: relative; height: 460px; perspective: 1600px; }
.step-page { position: absolute; inset: 0; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 55px; padding: 52px 78px; opacity: 0; transform: rotateY(35deg) translateX(50px) scale(.94); transform-origin: left center; pointer-events: none; transition: opacity .55s, transform .7s cubic-bezier(.2,.8,.2,1); }
.step-page.is-active { opacity: 1; transform: rotateY(0) translateX(0) scale(1); pointer-events: auto; }
.step-page.is-leaving { opacity: 0; transform: rotateY(-35deg) translateX(-50px) scale(.94); transform-origin: right center; }
.step-art { position: relative; height: 300px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg,#ffe4d1,#fff3dc); }
.step-art::before { content: ""; position: absolute; width: 190px; height: 190px; right: -80px; top: -80px; border: 30px solid rgba(255,89,69,.09); border-radius: 50%; }
.step-copy > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 24px; border-radius: 13px; color: white; background: var(--coral); font-weight: 800; }
.step-copy > p:first-of-type { margin: 0 0 9px; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.step-copy h3 { margin: 0 0 15px; font: 800 clamp(31px,4vw,48px)/1.05 "Manrope", sans-serif; letter-spacing: -.05em; }
.step-copy > p:last-child { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.65; }
.steps-controls { min-height: 92px; display: flex; align-items: center; justify-content: center; padding: 16px 7%; border-top: 1px solid var(--line); }
.step-tab { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 0; color: var(--muted); background: transparent; font-weight: 800; cursor: pointer; }
.step-tab span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); background: #f3e8de; transition: background .3s,color .3s,transform .3s; }
.step-tab.is-active { color: var(--ink); }
.step-tab.is-active span { color: white; background: var(--coral); transform: scale(1.08); box-shadow: 0 5px 14px rgba(255,89,69,.3); }
.steps-controls > i { flex: 1; max-width: 160px; height: 2px; background: linear-gradient(90deg,#ffc1aa,#eadfd6); }
.art-window { position: absolute; left: 20%; top: 25%; width: 60%; height: 50%; border-radius: 15px; background: white; box-shadow: 0 16px 30px rgba(80,40,25,.14); }
.art-window i { display: block; height: 28px; border-radius: 15px 15px 0 0; background: #28282d; }
.art-window b,.art-window em { position: absolute; left: 12%; height: 8px; border-radius: 8px; background: #ffd3c7; }
.art-window b { top: 44%; width: 64%; }.art-window em { top: 64%; width: 43%; }
.art-magnifier { position: absolute; left: 50%; top: 40%; width: 80px; height: 80px; border: 15px solid var(--coral); border-radius: 50%; box-shadow: 0 10px 20px rgba(255,89,69,.2); animation: float 3s ease-in-out infinite; }
.art-magnifier::after { content: ""; position: absolute; width: 60px; height: 15px; right: -48px; bottom: -25px; border-radius: 10px; background: var(--coral); transform: rotate(45deg); }
.float-coin { position: absolute; display: grid; place-items: center; width: 45px; height: 45px; border-radius: 50%; color: white; background: #ffb02e; font-weight: 900; box-shadow: 0 8px 20px rgba(255,176,46,.35); animation: float 2.7s ease-in-out infinite; }
.coin-one { left: 14%; top: 15%; }.coin-two { right: 17%; top: 16%; }.coin-three { right: 18%; top: 17%; }
.art-cart { position: absolute; left: 27%; top: 35%; width: 44%; height: 35%; border: 14px solid var(--coral); border-top: 0; border-radius: 0 0 18px 18px; transform: skew(-7deg); }
.art-cart::before { content: ""; position: absolute; left: -28px; top: -30px; width: 45px; height: 14px; border-radius: 10px; background: var(--coral); }
.art-cart i,.art-cart b { position: absolute; bottom: -36px; width: 24px; height: 24px; border-radius: 50%; background: #29292e; }.art-cart i { left: 12%; }.art-cart b { right: 10%; }
.art-bag { position: absolute; left: 39%; top: 20%; width: 68px; height: 78px; display: grid; place-items: center; border-radius: 8px 8px 16px 16px; color: white; background: var(--orange); font-size: 30px; font-weight: 900; animation: float 3.2s ease-in-out infinite; }
.art-bag::before { content:""; position:absolute; width:30px; height:22px; top:-17px; border:6px solid var(--orange); border-bottom:0; border-radius:15px 15px 0 0; }
.art-wallet { position: absolute; left: 24%; top: 31%; width: 53%; height: 43%; border-radius: 28px; background: linear-gradient(145deg,var(--coral),#ff7b43); box-shadow: 0 20px 36px rgba(255,89,69,.3); animation: float 3.4s ease-in-out infinite; }
.art-wallet::before { content:""; position:absolute; width:38%; height:40%; right:-5%; top:30%; border-radius:13px; background:#ca392d; }
.art-wallet i { position:absolute; right:9%; top:42%; z-index:1; color:white; font-style:normal; font-weight:900; }
.sparkle { position:absolute; right:19%; top:18%; color:var(--coral); font-size:38px; animation: spin 5s linear infinite; }
@keyframes float { 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ShopBack-inspired how-it-works layout, intentionally mirrored left-to-right. */
.how-section{position:relative;color:#fff;background:radial-gradient(circle at 78% 30%,rgba(255,225,158,.3),transparent 25%),radial-gradient(circle at 9% 88%,rgba(171,43,18,.16),transparent 28%),linear-gradient(128deg,#f0542d 0%,#ff7334 48%,#ff963f 100%);overflow:hidden}.how-section::before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(115deg,transparent 18%,rgba(255,255,255,.07) 38%,transparent 58%);transform:skewX(-14deg)}.shopback-how-layout{position:relative;z-index:1;min-height:500px;display:grid;grid-template-columns:.88fr 1.12fr;align-items:center;gap:88px}.how-copy-panel{min-width:0}.how-copy-panel .section-heading{display:block;margin:0 0 26px}.how-copy-panel .section-heading>.eyebrow,.how-copy-panel .section-heading>p{display:none}.how-copy-panel .section-heading h2{color:#fff;font-size:clamp(42px,4.2vw,58px);text-shadow:0 5px 20px rgba(116,37,12,.18)}.vertical-steps{position:relative;display:grid}.vertical-steps::before{content:"";position:absolute;left:20px;top:42px;bottom:42px;width:1px;background:rgba(255,255,255,.35)}.vertical-steps .step-tab{position:relative;z-index:1;width:100%;min-height:88px;display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;gap:16px;padding:10px 0;border:0;color:rgba(255,255,255,.6);background:transparent;text-align:left;font-size:0;font-weight:700;cursor:pointer}.vertical-steps .step-tab span{grid-column:1;grid-row:1}.vertical-steps .step-tab::after{content:attr(data-label);grid-column:2;grid-row:1;font-size:15px;line-height:1.4}.vertical-steps .step-tab span{width:42px;height:42px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.3);border-radius:50%;color:rgba(255,255,255,.75);background:rgba(255,255,255,.14);font-size:15px;font-weight:800;transition:color .35s,background .35s,transform .35s,box-shadow .35s}.vertical-steps .step-tab.is-active{color:#fff}.vertical-steps .step-tab.is-active span{color:#e94f28;background:#fff;transform:scale(1.08);box-shadow:0 9px 23px rgba(112,36,12,.24)}
.how-live-demo{position:relative;min-width:0;min-height:430px}.how-live-demo::before{content:"";position:absolute;inset:5% 1%;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.27),transparent 67%);filter:blur(8px)}.how-live-demo .step-page{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:27px;padding:34px;opacity:0;transform:translateY(28px) rotateX(-10deg) scale(.95);transform-origin:center bottom;pointer-events:none;transition:opacity .5s ease,transform .72s cubic-bezier(.2,.82,.2,1)}.how-live-demo .step-page.is-active{opacity:1;transform:none;pointer-events:auto}.how-live-demo .step-page.is-leaving{opacity:0;transform:translateY(-24px) rotateX(10deg) scale(.96)}.how-section .demo-shop-scene>p{color:rgba(255,255,255,.88)}
.how-copy-panel .eyebrow{display:none}
.demo-logo-row{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;gap:17px}.demo-logo-row span,.demo-store-strip span{width:62px;height:45px;display:grid;place-items:center;padding:8px;border:1px solid #e5e7eb;border-radius:12px;background:#fff;box-shadow:0 7px 18px rgba(32,37,48,.09);animation:demo-logo-float 3.4s ease-in-out infinite}.demo-logo-row span:nth-child(2){animation-delay:-1.1s}.demo-logo-row span:nth-child(3){animation-delay:-2.2s}.demo-logo-row-bottom span:nth-child(odd){animation-delay:-1.7s}.demo-logo-row img,.demo-store-strip img{width:100%;height:100%;object-fit:contain}.demo-search-bar{position:relative;z-index:2;width:min(460px,92%);height:60px;display:flex;align-items:center;justify-content:space-between;padding-left:24px;border-radius:32px;color:#777f8d;background:#fff;box-shadow:0 13px 32px rgba(28,34,46,.14);font-size:15px}.demo-search-bar b{width:48px;height:48px;margin-right:6px;display:grid;place-items:center;border-radius:50%;color:#fff;background:#030303}.demo-search-bar svg{width:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}.demo-cursor{position:absolute;z-index:4;left:72%;top:48%;width:44px;height:58px;background:linear-gradient(145deg,#35e89b,#10b86f);clip-path:polygon(0 0,100% 47%,58% 57%,43% 100%);filter:drop-shadow(0 5px 3px rgba(0,102,61,.25));transform:rotate(-19deg);animation:demo-pointer 2.8s ease-in-out infinite}.demo-logo-row-bottom{gap:12px}.demo-logo-row-bottom span{width:66px;height:44px}.demo-logo-row-bottom span:last-child img{transform:scale(1.9)}
.demo-store-strip{display:flex;gap:15px}.demo-store-strip span{width:74px;height:52px}.demo-cart{position:relative;width:230px;height:145px;border:12px solid #ff5848;border-top:0;border-radius:0 0 22px 22px}.demo-cart::before{content:"";position:absolute;left:-30px;top:-22px;width:54px;height:12px;border-radius:8px;background:#ff5848}.demo-cart i,.demo-cart b{position:absolute;bottom:-35px;width:24px;height:24px;border-radius:50%;background:#24262c}.demo-cart i{left:20px}.demo-cart b{right:20px}.demo-cart em{position:absolute;left:48%;top:-42px;width:75px;height:88px;border-radius:11px 11px 19px 19px;background:#ff8437;box-shadow:0 12px 22px rgba(255,105,55,.23);transform:translateX(-50%)}.demo-cart em::before{content:"";position:absolute;left:21px;top:-18px;width:31px;height:22px;border:6px solid #ff8437;border-bottom:0;border-radius:15px 15px 0 0}.demo-cart strong{position:absolute;z-index:2;left:48%;top:-10px;color:#fff;font-size:34px;transform:translateX(-50%)}.demo-shop-scene>p{margin:8px 0 0;color:#7e8591;font-weight:700}.demo-track-line{width:min(360px,86%);display:flex;align-items:center;justify-content:space-between}.demo-track-line::before{content:"";position:absolute;width:55%;height:3px;background:linear-gradient(90deg,#ff6b4c,#ffc05e)}.demo-track-line i{position:relative;z-index:1;width:20px;height:20px;border:5px solid #fff;border-radius:50%;background:#ff654b;box-shadow:0 0 0 2px #ffb29d}.demo-cash-card{position:relative;z-index:2;width:min(330px,86%);padding:30px;border:1px solid #f0ded1;border-radius:24px;background:#fff;box-shadow:0 20px 42px rgba(86,52,32,.15);text-align:center}.demo-cash-card small,.demo-cash-card strong,.demo-cash-card span{display:block}.demo-cash-card small{color:#80838c}.demo-cash-card strong{margin:8px 0;color:#168b61;font:800 42px/1 Manrope,sans-serif}.demo-cash-card span{color:#a27660;font-size:12px}.demo-earn-coin{position:absolute;right:18%;top:16%;width:60px;height:60px;display:grid;place-items:center;border-radius:50%;color:#9d5c08;background:radial-gradient(circle at 30% 25%,#fff2a4,#ffc239 57%,#c56c0a);font-size:25px;font-weight:900;box-shadow:0 12px 24px rgba(180,100,10,.25);animation:float 2.8s ease-in-out infinite}.demo-earn-spark{position:absolute;left:17%;bottom:17%;color:#ff6a4c;font-size:34px;animation:spin 6s linear infinite}@keyframes demo-logo-float{50%{transform:translateY(-7px)}}@keyframes demo-pointer{0%,100%{translate:0 0}45%{translate:-14px -11px}55%{scale:.9}}

.scroll-pop{opacity:0;transform:translateY(58px) scale(.9);filter:blur(7px);will-change:transform,opacity,filter;transition:opacity .64s ease,transform .82s cubic-bezier(.17,.89,.25,1.18),filter .55s ease}.scroll-pop.is-revealed{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}.feature-grid .feature-card:nth-child(2).scroll-pop{transition-delay:.12s}.trust-inner.scroll-pop{transform:translateY(42px) scale(.94)}.trust-inner.scroll-pop.is-revealed{transform:none}

.feature-section { background: #ffe7ca; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card { min-height: 450px; position: relative; overflow: hidden; padding: 48px; border-radius: 30px; }
.feature-card h2 { max-width: 390px; margin: 13px 0 15px; font: 800 clamp(30px,3.6vw,47px)/1.08 "Manrope", sans-serif; letter-spacing: -.05em; }
.feature-card p { max-width: 410px; color: var(--muted); line-height: 1.6; }
.feature-kicker { color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.extension-card { padding-right: 35%; background: linear-gradient(145deg,#fffaf2,#fff1e0); border:1px solid rgba(180,105,49,.12); }
.dark-button { margin-top: 20px; padding: 0 22px; color: white; background: var(--ink); }
.dark-button:hover { transform: translateY(-2px); background: #2a2a2e; }
.browser-art { position: absolute; width: 47%; height: 310px; right: -8%; bottom: -25px; border: 1px solid #e2d6d1; border-radius: 22px 22px 0 0; background: #fff; box-shadow: -20px 15px 40px rgba(91,55,33,.13); transform: rotate(-3deg); }
.browser-bar { height: 38px; display: flex; gap: 5px; align-items: center; padding: 0 13px; border-bottom: 1px solid #eee; }.browser-bar i { width:8px;height:8px;border-radius:50%;background:#ff9a8c; }.browser-bar i:nth-child(2){background:#ffd36a}.browser-bar i:nth-child(3){background:#7edb9a}
.browser-line { position:absolute; left:12%; height:10px; border-radius:10px; background:#f1eeee; }.line-a{top:26%;width:62%}.line-b{top:35%;width:39%}
.cashback-pop { position:absolute; right:8%; bottom:20%; width:205px; padding:20px; display:flex; flex-direction:column; gap:5px; border:1px solid #eadfd7; border-radius:18px; background:#fff; box-shadow:0 18px 45px rgba(91,55,33,.16); animation:float 3.6s ease-in-out infinite; }
.cashback-pop b { width:34px;height:34px;display:grid;place-items:center;border-radius:50%;color:white;background:var(--coral); }.cashback-pop em{color:var(--green);font-style:normal;font-size:13px;font-weight:800}
.app-card { color: white; background: linear-gradient(145deg,#e95b2d,#ff8a42); }
.app-card p { color: rgba(255,255,255,.62); }
.app-card .feature-kicker { color: #ff9588; }
.app-card > div:first-child { position: relative; z-index: 2; max-width: 68%; }
.app-badges{display:flex;gap:8px;margin-top:24px}.app-badges span{min-height:38px;display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:8px 12px;border:1px solid rgba(255,255,255,.3);border-radius:9px;color:#fff;font-size:12px;font-weight:700}.app-badges svg{width:17px;height:17px;flex:none;fill:currentColor}.app-badges b{font:inherit;white-space:nowrap}
.phone-art { position:absolute; width:210px; height:390px; right:-18px; bottom:-90px; padding:72px 24px 20px; border:7px solid #5a3427; border-radius:40px 40px 0 0; color:var(--ink); background:#fff8f3; transform:rotate(9deg); box-shadow:-20px 20px 40px rgba(99,47,21,.22); }
.phone-art i { position:absolute;top:12px;left:50%;width:65px;height:18px;border-radius:15px;background:#111;transform:translateX(-50%); }.phone-art strong,.phone-art span,.phone-art b{display:block}.phone-art strong{font:800 28px "Manrope"}.phone-art span{margin-top:5px;color:#777;font-size:11px}.phone-art b{margin-top:30px;padding:16px;border-radius:14px;color:#16895f;background:#e4f8ef;font-size:15px}

.trust-section { padding:72px 0;color:white;background:radial-gradient(circle at 73% 23%,rgba(255,224,151,.31),transparent 22%),radial-gradient(circle at 13% 82%,rgba(177,52,24,.18),transparent 30%),linear-gradient(118deg,#ef542c 0%,#fb6a30 34%,#ff8d3d 66%,#f65b2d 100%); }
.trust-inner { display:flex; align-items:center; justify-content:space-between; gap:45px; }.trust-inner h2{max-width:760px;margin:0;font:800 clamp(34px,4.3vw,58px)/1.08 "Manrope";letter-spacing:-.05em}.eyebrow.light{color:white;opacity:.72}.white-button{flex:none;min-height:57px;padding:0 27px;color:var(--ink);background:white}.white-button:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(105,30,20,.18)}
.site-footer { padding: 72px 0 28px; background: #fff7e9; }
.footer-grid { display:grid; grid-template-columns:2fr repeat(4,1fr); gap:40px; }.footer-grid h3{margin:0 0 17px;font-size:14px}.footer-grid > div:not(.footer-brand){display:flex;flex-direction:column;gap:10px}.footer-grid a:not(.brand){color:var(--muted);font-size:13px}.footer-grid a:hover{color:var(--coral)}.footer-brand p{max-width:180px;color:var(--muted);font-size:14px}.socials{display:flex;gap:8px}.socials a{width:36px;height:36px;display:grid;place-items:center;border:1px solid var(--line);border-radius:12px;background:#fffaf1;transition:transform .2s,color .2s,background .2s}.socials a:hover{transform:translateY(-3px) rotate(-4deg);color:white;background:var(--coral)}.socials svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.socials .social-fill{fill:currentColor;stroke:none}.footer-bottom{display:flex;justify-content:space-between;margin-top:55px;padding-top:22px;border-top:1px solid var(--line);color:#999;font-size:12px}

.redirect-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.redirect-overlay.is-open { visibility: visible; opacity: 1; }
.redirect-backdrop { position:absolute;inset:0;background:rgba(50,28,17,.7);backdrop-filter:blur(8px); }
.redirect-modal { position:relative; width:min(610px,100%); max-height:calc(100vh - 38px); overflow:auto; padding:35px 58px 32px; text-align:center; border:1px solid #f0ddd0; border-radius:31px; background:#fffdf9; box-shadow:0 35px 90px rgba(65,36,19,.36),0 0 60px rgba(255,138,69,.1); transform:translateY(30px) scale(.94); transition:transform .45s cubic-bezier(.2,.85,.2,1); }
.redirect-overlay.is-open .redirect-modal { transform:translateY(0) scale(1); }
.modal-close { position:absolute;right:20px;top:17px;width:38px;height:38px;border:0;border-radius:50%;color:#87766d;background:#f5ebe4;font-size:27px;line-height:1;cursor:pointer;transition:transform .2s,background .2s; }.modal-close:hover{transform:rotate(90deg);color:var(--coral-dark);background:#ffe2d5}
.modal-brand-mark { width:38px;height:38px;margin:0 auto 15px;font-size:24px; }
.activation-orbit { position:relative;width:84px;height:84px;margin:0 auto 7px;display:grid;place-items:center; }.activation-orbit > span{position:relative;z-index:2;width:49px;height:49px;display:grid;place-items:center;border-radius:50%;color:white;background:linear-gradient(145deg,var(--coral),var(--orange));font-size:23px;font-weight:900;box-shadow:0 9px 20px rgba(255,89,69,.3)}.activation-orbit > i{position:absolute;width:7px;height:7px;border-radius:50%;background:var(--coral);animation:orbit 2s linear infinite}.activation-orbit > i:nth-of-type(2){animation-delay:-.66s}.activation-orbit > i:nth-of-type(3){animation-delay:-1.32s}@keyframes orbit{from{transform:rotate(0) translateX(38px)}to{transform:rotate(360deg) translateX(38px)}}
.modal-store-logo { width:150px;height:60px;display:grid;place-items:center;margin:0 auto 3px; }.modal-store-logo img{max-width:105px;max-height:48px}.modal-store-logo.has-fallback::after{content:attr(data-fallback);font:800 24px/1 "Manrope",sans-serif;letter-spacing:-.05em}.modal-kicker{margin:4px 0 6px;color:var(--coral-dark);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.redirect-modal h2{margin:0;font:800 clamp(25px,4vw,35px)/1.2 "Manrope";letter-spacing:-.035em}.redirect-modal h3{margin:8px 0 13px;font-size:16px}.redirect-modal > p:not(.modal-kicker):not(.progress-percentage):not(.automatic-note){max-width:430px;margin:0 auto;color:var(--muted);font-size:14px;line-height:1.55}.progress-track{height:13px;margin:25px 0 8px;overflow:hidden;border-radius:10px;background:#f3e9e6}.progress-track span{display:block;width:0;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--coral),var(--orange));box-shadow:0 0 14px rgba(255,89,69,.45);transition:width .12s linear}.progress-track span::after{content:"";display:block;width:30%;height:100%;margin-left:auto;background:linear-gradient(90deg,transparent,rgba(255,255,255,.7));animation:progress-glow 1s ease-in-out infinite}@keyframes progress-glow{50%{opacity:.2}}
.progress-percentage{margin:0;color:#887b74;font-size:12px;font-weight:700}.progress-percentage strong{color:var(--coral-dark);font:800 20px/1 Manrope,sans-serif}.activation-steps{display:flex;align-items:flex-start;margin:25px 0 20px}.activation-steps div{width:105px;display:flex;flex-direction:column;align-items:center;gap:8px;color:#aaa09b}.activation-steps div > span{width:31px;height:31px;display:grid;place-items:center;border:2px solid #d9cec8;border-radius:50%;font-size:12px;font-weight:800;transition:color .3s,border .3s,background .3s,transform .3s}.activation-steps div.is-done{color:var(--ink)}.activation-steps div.is-done > span{color:white;border-color:var(--coral);background:var(--coral);transform:scale(1.08)}.activation-steps i{flex:1;height:2px;margin-top:15px;background:linear-gradient(90deg,var(--coral),#ddd2cc)}.activation-steps small{font-size:10px;white-space:nowrap}.automatic-note{margin:0;color:#938983;font-size:12px}.cancel-button{margin-top:14px;padding:9px 23px;border:1px solid #dfd2ca;border-radius:10px;color:#6e625c;background:#fffaf5;font-weight:700;cursor:pointer}.cancel-button:hover{border-color:var(--coral);color:var(--coral-dark)}

.utility-overlay{position:fixed;inset:0;z-index:210;display:grid;place-items:center;padding:20px;visibility:hidden;opacity:0;transition:opacity .25s,visibility .25s}.utility-overlay.is-open{visibility:visible;opacity:1}.utility-backdrop{position:absolute;inset:0;background:rgba(55,30,17,.64);backdrop-filter:blur(9px)}.utility-modal{position:relative;width:min(520px,100%);max-height:calc(100vh - 32px);overflow:auto;padding:38px;border:1px solid #f0ddd0;border-radius:28px;background:#fffdf9;box-shadow:0 35px 90px rgba(65,36,19,.34);transform:translateY(24px) scale(.96);transition:transform .35s cubic-bezier(.2,.85,.2,1)}.utility-overlay.is-open .utility-modal{transform:none}.utility-close{position:absolute;z-index:2;right:17px;top:15px;width:38px;height:38px;border:0;border-radius:50%;color:#87766d;background:#f5ebe4;font-size:27px;line-height:1;cursor:pointer}.utility-close:hover{color:var(--coral-dark);background:#ffe3d6;transform:rotate(8deg)}.modal-logo-row{display:flex;align-items:center;gap:10px;margin-bottom:26px;font:800 20px/1 Manrope,sans-serif}.utility-kicker{margin:0 0 8px;color:var(--coral-dark);font-size:11px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}.utility-modal h2{margin:0;font:800 clamp(29px,5vw,42px)/1.08 Manrope,sans-serif;letter-spacing:-.045em}.auth-intro{margin:11px 0 22px;color:var(--muted);line-height:1.5}#auth-form{display:grid;gap:14px}#auth-form label{display:grid;gap:7px;color:#4e4540;font-size:12px;font-weight:800}#auth-form input{width:100%;height:49px;padding:0 14px;border:1px solid #dfd3ca;border-radius:12px;outline:0;background:#fffaf5;font:inherit;transition:border .2s,box-shadow .2s}#auth-form input:focus{border-color:var(--coral);box-shadow:0 0 0 4px rgba(255,89,69,.1)}.form-message{min-height:18px;margin:-1px 0 0;color:#b62f28;font-size:12px}.form-message.is-success{color:var(--green)}.auth-submit{width:100%;margin-top:2px}.auth-switch{width:100%;margin-top:17px;border:0;color:var(--coral-dark);background:transparent;font-weight:800;cursor:pointer}.local-account-note{display:block;margin-top:18px;color:#9b8e86;text-align:center}
.search-modal{width:min(920px,100%);padding:38px 38px 32px}.search-box{height:56px;margin-top:24px;display:flex;align-items:center;gap:11px;padding:0 16px;border:1px solid #dfd3ca;border-radius:15px;background:#fffaf5}.search-box:focus-within{border-color:var(--coral);box-shadow:0 0 0 4px rgba(255,89,69,.1)}.search-box svg{width:21px;flex:none;fill:none;stroke:#5b514c;stroke-width:1.8;stroke-linecap:round}.search-box input{width:100%;height:100%;border:0;outline:0;background:transparent;font:600 15px DM Sans,sans-serif}.search-meta{display:flex;justify-content:space-between;gap:15px;margin:18px 2px 12px;color:var(--muted);font-size:12px}.search-meta button{border:0;color:var(--coral-dark);background:transparent;font-weight:800;cursor:pointer}.product-results{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.product-result{min-width:0;display:grid;grid-template-columns:46px 1fr;align-items:center;gap:11px;padding:12px;border:1px solid #eee0d6;border-radius:15px;background:#fffaf6;text-align:left;cursor:pointer;transition:transform .2s,border-color .2s,box-shadow .2s}.product-result:hover{transform:translateY(-3px);border-color:#ffae8f;box-shadow:0 10px 22px rgba(106,61,30,.12)}.product-emoji{width:46px;height:46px;display:grid;place-items:center;border-radius:13px;background:linear-gradient(145deg,#ffe8d3,#ffd3b7);font-size:23px}.product-result strong,.product-result small,.product-result em{display:block;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.product-result strong{font-size:12px}.product-result small{margin:3px 0;color:#8b7e77;font-size:10px}.product-result em{color:var(--green);font-size:10px;font-style:normal;font-weight:800}.no-results{padding:35px 0;color:var(--muted);text-align:center}.success-toast{position:fixed;z-index:300;left:50%;top:78px;max-width:calc(100% - 28px);display:flex;align-items:center;gap:10px;padding:13px 18px;border:1px solid #b8e2d2;border-radius:14px;color:#116648;background:#eaf9f3;box-shadow:0 15px 35px rgba(29,93,68,.18);opacity:0;visibility:hidden;transform:translate(-50%,-12px);transition:.3s}.success-toast.is-visible{opacity:1;visibility:visible;transform:translate(-50%,0)}.success-toast>span{width:25px;height:25px;display:grid;place-items:center;border-radius:50%;color:white;background:var(--green)}.success-toast strong{font-size:13px}html[dir="rtl"] body{text-align:right}.language-popover[dir="ltr"]{text-align:left}.product-result{direction:ltr}.header-actions{direction:ltr}

@media (max-width: 850px) {
  .container { width: 100%; max-width: 720px; padding-inline: 14px; }
  .section { padding: 74px 0; }
  .hero { padding-top: 25px; }
  .hero-grid { grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:25px; }
  .hero-carousel { order:1;min-height:470px; }
  .hero-content { order:2;min-width:0; }
  .hero-slides { width:min(350px,41vw);height:auto;min-height:0; }
  .side-previous { left:0; }.side-next{right:0;}
  .hero-content h1 { font-size:clamp(34px,5.8vw,49px); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 17px; }
  .store-grid { gap: 12px; }
  .store-card { min-height: 218px; padding: 0 0 19px; border-radius: 20px; }
  .logo-stage { width:100%; height:158px; flex-basis:158px; padding:18px; border-radius:19px 19px 15px 15px; }
  .store-name{font-size:14px}.store-card strong{font-size:12px}
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-section { margin-top:64px; margin-bottom:-74px; padding:24px 18px; }
  .stats-grid article:nth-child(3)::before { display: none; }
  .stats-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .step-page { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .steps-visual { height: 690px; }
  .step-art { height: 330px; }
  .shopback-how-layout{grid-template-columns:.88fr 1.12fr;gap:28px;min-height:450px}.how-copy-panel .section-heading h2{font-size:40px}.how-live-demo{min-height:390px}.vertical-steps .step-tab::after{font-size:13px}.demo-search-bar{width:100%}.demo-logo-row{gap:9px}.demo-logo-row span{width:54px}.demo-logo-row-bottom span{width:56px}
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 430px; }
  .trust-inner { align-items:flex-start;flex-direction:column; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-brand{grid-row:span 2}
}

@media (max-width: 560px) {
  .container { padding-inline: 12px; }
  .hero-grid,.hero-content,.store-grid,.store-card,.section-heading,.steps-shell,.feature-grid,.feature-card,.trust-inner,.footer-grid { min-width:0; max-width:100%; }
  .hero-content h1,.hero-content h2,.section-heading h2,.section-heading p,.feature-card h2,.trust-inner h2 { max-width:100%; overflow-wrap:anywhere; }
  .site-header { height: 58px; }
  .header-inner { gap: 10px; }
  .brand { font-size: 21px; }.brand-mark{width:31px;height:31px;font-size:20px}
  .header-actions{gap:0}.header-actions .icon-button{display:grid;width:36px;height:36px}.login-button{display:none}.header-cta{min-height:36px;padding:0 11px;font-size:11px}.language-button{min-width:46px;height:36px;padding:0 6px}.language-button svg{width:17px}.language-popover{position:fixed;top:64px;right:10px;left:10px;width:auto;grid-template-columns:1fr 1fr}.account-chip{max-width:110px}
  .hero{padding:28px 0 48px;min-height:0;display:block}
  .hero-grid{grid-template-columns:1fr;gap:24px;align-items:start}
  .hero-carousel{min-height:370px;padding:4px 0 58px}
  .hero-carousel::before{width:min(320px,84vw);left:50%;top:4%;transform:translateX(-50%) scale(1.08) rotate(3deg)}
  .hero-slides{width:min(286px,74vw);height:auto;min-height:0}
  .slide-copy{left:20%;right:20%;bottom:18%;gap:7px}.slide-copy strong{font-size:26px}.slide-copy span:not(.slide-icon){font-size:8px;letter-spacing:.05em}.slide-icon{width:38px;height:38px;border-radius:11px;font-size:17px}
  .side-category{display:none}
  .hero-slide[data-slide="1"] .slide-copy strong{font-size:21px}
  .carousel-controls{left:50%;right:auto;bottom:5px}.carousel-dots{gap:2px;padding:5px;border-radius:14px}.carousel-dot{height:30px;padding:0 8px;border-radius:10px}.carousel-dot span{font-size:8px}
  .hero-content{text-align:center}
  .hero-content h1{max-width:420px;margin-inline:auto;font-size:clamp(34px,10.5vw,44px);line-height:1.02;letter-spacing:-.06em;overflow-wrap:normal}
  .hero-content h2{margin:20px 0 7px;font-size:18px;line-height:1.25}
  .hero-content>p:not(.eyebrow){max-width:390px;margin-inline:auto;font-size:14px;line-height:1.5}
  .hero-actions{align-items:stretch;flex-direction:column;gap:14px;margin-top:24px}.hero-button{width:100%;min-height:52px;padding-inline:18px;font-size:14px}.text-link{font-size:12px}.hero-proof{justify-content:center;gap:10px;margin-top:24px}.avatar-stack img{width:30px;height:30px;margin-right:-7px;border-width:2px}.hero-proof strong{font-size:12px}.hero-proof span{font-size:10px}
  .section-heading h2 { font-size: 38px; }
  .store-grid { width:100%; max-width:100%; grid-template-columns:repeat(3,minmax(0,1fr)); gap: 7px; }
  .store-card { width:100%; min-width:0; min-height: 154px; gap: 9px; padding: 0 0 11px; border-radius: 15px; box-shadow:0 8px 18px rgba(116,67,31,.1) }
  .logo-stage { width:100%; min-width:0; height:112px; flex:0 0 112px; padding:9px; border-radius:14px 14px 11px 11px; }.logo-stage img{width:auto;height:auto;max-width:82%;max-height:68%}.logo-stage::before{width:42px;height:42px;right:-11px;top:-9px}.logo-stage::after{width:25px;height:25px}
  .logo-mercado img { max-width:86%; max-height:76%; transform:translateY(-12px) scale(1.42); }
  .store-card:hover .logo-mercado img { transform:translateY(-12px) scale(1.42); }
  .logo-uber img { max-width:50%; max-height:46%; transform:scale(2); }
  .store-card:hover .logo-uber img { transform:scale(2); }
  .logo-ikea img { max-width:25%; max-height:34%; transform:scale(4); }
  .store-card:hover .logo-ikea img { transform:scale(4); }
  .store-card{gap:0;padding-bottom:9px}.store-name{margin-top:6px;padding-inline:2px;font-size:11px;line-height:1.05}.store-card strong{display:flex;gap:3px;width:100%;margin-top:4px;padding-inline:2px;font-size:8px;line-height:1.08;letter-spacing:-.035em;white-space:nowrap;text-align:center}.store-card strong::before{padding:2px 3px;font-size:6px;letter-spacing:-.01em}
  .card-arrow { display:none; }
  .stats-section { margin-top:-74px; margin-bottom:54px; padding:18px 10px; clip-path:polygon(0 0,100% 0,98% 8%,99.3% 50%,98% 92%,100% 100%,0 100%,2% 92%,.7% 50%,2% 8%); }
  .stats-grid article { padding:21px 14px}.stats-grid strong{font-size:33px}.stats-grid p{margin-top:8px;font-size:13px;line-height:1.3}
  .how-heading { margin-bottom:31px}.steps-visual{height:565px}.step-page{padding:20px;gap:20px}.step-art{height:265px}.step-copy>span{margin-bottom:14px}.step-copy h3{font-size:33px}.step-copy>p:last-child{font-size:14px}.steps-controls{padding:12px 10px;min-height:80px}.step-tab{padding:7px 5px;font-size:11px;gap:5px}.step-tab span{width:28px;height:28px}.steps-controls>i{min-width:8px}.steps-shell{border-radius:24px}
  .how-section.section{padding:64px 0}.shopback-how-layout{grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:7px;min-height:410px;align-items:center}.how-copy-panel .section-heading{margin-bottom:14px}.how-copy-panel .section-heading .eyebrow{margin-bottom:10px;font-size:8px;letter-spacing:.1em}.how-copy-panel .section-heading .eyebrow span{width:16px}.how-copy-panel .section-heading h2{font-size:28px;line-height:1.03}.how-copy-panel .section-heading>p{display:none}.vertical-steps::before{left:14px;top:34px;bottom:34px}.vertical-steps .step-tab{min-height:91px;grid-template-columns:29px minmax(0,1fr);gap:7px;padding:5px 0}.vertical-steps .step-tab span{width:29px;height:29px;font-size:11px}.vertical-steps .step-tab::after{font-size:9.5px;line-height:1.28;overflow-wrap:anywhere}.how-live-demo{min-height:350px}.how-live-demo .step-page{gap:17px;padding:8px}.demo-logo-row{gap:5px}.demo-logo-row span,.demo-store-strip span{width:42px;height:32px;padding:5px;border-radius:8px}.demo-logo-row-bottom{gap:4px}.demo-logo-row-bottom span{width:42px;height:31px}.demo-search-bar{width:100%;height:45px;padding-left:10px;border-radius:24px;font-size:9px;box-shadow:0 9px 22px rgba(28,34,46,.13)}.demo-search-bar b{width:35px;height:35px;margin-right:5px}.demo-search-bar svg{width:16px}.demo-cursor{left:67%;top:49%;width:29px;height:39px}.demo-store-strip{gap:5px}.demo-cart{width:132px;height:95px;border-width:8px;border-top:0}.demo-cart::before{left:-20px;top:-15px;width:35px;height:8px}.demo-cart i,.demo-cart b{bottom:-25px;width:17px;height:17px}.demo-cart em{top:-29px;width:51px;height:60px}.demo-cart em::before{left:13px;top:-13px;width:22px;height:16px;border-width:4px}.demo-cart strong{top:-9px;font-size:25px}.demo-shop-scene>p{font-size:9px;text-align:center}.demo-track-line{width:90%}.demo-cash-card{width:100%;padding:19px 9px;border-radius:17px}.demo-cash-card strong{font-size:28px}.demo-cash-card span{font-size:8px}.demo-earn-coin{right:2%;top:16%;width:38px;height:38px;font-size:16px}.demo-earn-spark{left:4%;bottom:19%;font-size:24px}
  .feature-card { min-height: 490px; padding:35px 28px; border-radius:24px}.extension-card{padding-right:28px}.extension-card>div:first-child{position:relative;z-index:2}.browser-art{width:82%;height:230px;right:-9%;bottom:-33px}.cashback-pop{width:175px;padding:14px;right:8%;bottom:25%}.app-card>div:first-child{max-width:100%}.phone-art{width:190px;height:300px;right:-13px;bottom:-78px;padding-top:60px}.app-badges{flex-direction:column;width:max-content}.trust-section{padding:57px 0}.trust-inner h2{font-size:37px}.white-button{width:100%}
  .footer-grid { grid-template-columns:1fr 1fr; gap:34px 25px}.footer-brand{grid-column:1/-1;grid-row:auto}.footer-bottom{flex-direction:column;gap:7px}
  .redirect-overlay { padding: 10px; align-items: end; }
  .redirect-modal { max-height:calc(100vh - 15px); padding:25px 22px 22px; border-radius:27px 27px 18px 18px; }.modal-brand-mark{margin-bottom:7px}.activation-orbit{width:70px;height:70px}.activation-orbit>i{animation-name:orbit-mobile}@keyframes orbit-mobile{from{transform:rotate(0) translateX(31px)}to{transform:rotate(360deg) translateX(31px)}}.modal-store-logo{height:50px}.redirect-modal h2{font-size:25px}.activation-steps{margin:19px 0 15px}.activation-steps div{width:78px}.activation-steps small{font-size:8.5px}.progress-track{margin-top:20px}
  .utility-overlay{padding:8px;align-items:end}.utility-modal{max-height:calc(100vh - 12px);padding:28px 20px 22px;border-radius:25px 25px 16px 16px}.search-modal{padding-top:32px}.product-results{grid-template-columns:1fr 1fr;gap:7px}.product-result{grid-template-columns:38px 1fr;padding:9px;gap:8px}.product-emoji{width:38px;height:38px;font-size:19px}.search-box{height:51px}.success-toast{top:68px}.hero-coin{display:none}.hero-coin.coin-b,.hero-coin.coin-f{display:grid}.hero-coin.coin-b{left:3%;top:auto;bottom:7%}.hero-coin.coin-f{right:3%;top:58%}.hero-100{font-size:1.16em}
}

/* Natural mobile flow: each section gets its own readable vertical space. */
@media (max-width: 560px) {
  .section{padding:56px 0}

  .hero{padding:30px 0 52px}
  .hero-grid{display:grid;grid-template-columns:1fr;gap:26px}
  .hero-carousel{order:1;min-height:350px;padding:8px 0 58px}
  .hero-carousel::before{width:min(350px,92vw);aspect-ratio:4/3;left:50%;top:5%;clip-path:polygon(2% 2%,8% 0,15% 2%,23% 0,31% 2%,40% 0,49% 2%,58% 0,67% 2%,76% 0,85% 2%,93% 0,98% 3%,100% 10%,98% 18%,100% 27%,98% 36%,100% 45%,98% 54%,100% 63%,98% 72%,100% 81%,98% 90%,100% 97%,93% 100%,85% 98%,76% 100%,67% 98%,58% 100%,49% 98%,40% 100%,31% 98%,23% 100%,15% 98%,7% 100%,2% 98%,0 91%,2% 83%,0 75%,2% 67%,0 59%,2% 50%,0 42%,2% 34%,0 26%,2% 18%,0 10%);transform:translateX(-50%) scale(1.04) rotate(-1.4deg)}
  .hero-slides{width:min(336px,89vw);aspect-ratio:4/3;clip-path:polygon(2% 2%,8% 0,15% 2%,23% 0,31% 2%,40% 0,49% 2%,58% 0,67% 2%,76% 0,85% 2%,93% 0,98% 3%,100% 10%,98% 18%,100% 27%,98% 36%,100% 45%,98% 54%,100% 63%,98% 72%,100% 81%,98% 90%,100% 97%,93% 100%,85% 98%,76% 100%,67% 98%,58% 100%,49% 98%,40% 100%,31% 98%,23% 100%,15% 98%,7% 100%,2% 98%,0 91%,2% 83%,0 75%,2% 67%,0 59%,2% 50%,0 42%,2% 34%,0 26%,2% 18%,0 10%);border-radius:0}
  .hero-slides::after{inset:3px;border:2px solid rgba(255,255,255,.72);clip-path:polygon(2% 2%,8% 0,15% 2%,23% 0,31% 2%,40% 0,49% 2%,58% 0,67% 2%,76% 0,85% 2%,93% 0,98% 3%,100% 10%,98% 18%,100% 27%,98% 36%,100% 45%,98% 54%,100% 63%,98% 72%,100% 81%,98% 90%,100% 97%,93% 100%,85% 98%,76% 100%,67% 98%,58% 100%,49% 98%,40% 100%,31% 98%,23% 100%,15% 98%,7% 100%,2% 98%,0 91%,2% 83%,0 75%,2% 67%,0 59%,2% 50%,0 42%,2% 34%,0 26%,2% 18%,0 10%)}
  .hero-content{order:2;width:100%;max-width:100%;overflow:visible;text-align:center}
  .hero-content h1{width:100%;max-width:360px;margin-inline:auto;font-size:clamp(32px,9vw,36px);line-height:1.04;overflow-wrap:normal;word-break:normal}
  .hero-content h1 em{white-space:normal}
  .hero-content h2{max-width:360px;margin:20px auto 8px;font-size:clamp(17px,4.8vw,20px);line-height:1.3}
  .hero-content>p:not(.eyebrow){max-width:350px;margin-inline:auto;font-size:14px;line-height:1.55}
  .hero-actions{width:100%;max-width:360px;margin:25px auto 0;align-items:stretch}
  .hero-button{width:100%;min-height:52px;font-size:14px}
  .hero .text-link{align-self:center;font-size:12px}
  .hero-proof{max-width:360px;margin:25px auto 0;justify-content:center;flex-wrap:wrap}
  .hero-proof strong{font-size:12px}.hero-proof span{font-size:10px}

  /* Keep the mobile hero lively without letting the coins compete with the copy. */
  .hero-coin{display:none}
  .hero-coin.coin-a,.hero-coin.coin-b,.hero-coin.coin-c,.hero-coin.coin-f,
  .hero-coin.coin-h,.hero-coin.coin-i,.hero-coin.coin-k,.hero-coin.coin-m{display:grid}
  .hero-coin.coin-a{left:-8px;top:6%;width:32px;height:32px;font-size:13px}
  .hero-coin.coin-c{left:15%;top:2%;width:24px;height:24px;font-size:9px}
  .hero-coin.coin-i{left:72%;top:2.5%;width:22px;height:22px;font-size:8px}
  .hero-coin.coin-f{right:-7px;top:14%;width:29px;height:29px;font-size:11px}
  .hero-coin.coin-b{left:-8px;top:31%;bottom:auto;width:26px;height:26px;font-size:10px}
  .hero-coin.coin-m{right:-10px;top:32%;bottom:auto;width:36px;height:36px;font-size:14px}
  .hero-coin.coin-h{left:4%;top:44%;bottom:auto;width:23px;height:23px;font-size:8px}
  .hero-coin.coin-k{left:auto;right:4%;top:45%;width:20px;height:20px;font-size:7px}

  .store-section .section-heading{gap:12px;margin-bottom:30px}
  .section-heading h2{font-size:34px;line-height:1.05}
  .section-heading>p{font-size:14px;line-height:1.55}
  .stats-section{left:auto;width:100%;margin:44px 0 0;padding:12px;border-radius:24px;clip-path:none;filter:drop-shadow(0 16px 22px rgba(117,52,44,.18))}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stats-grid article{min-width:0;padding:20px 12px;text-align:center}
  .stats-grid article:nth-child(3)::before{display:block}
  .stats-grid article:nth-child(odd)::before{display:none}
  .stats-grid article:nth-child(n+3){border-top:1px solid rgba(255,255,255,.14)}
  .stat-icon{margin-bottom:8px}
  .stats-grid strong{font-size:30px}.stats-grid p{margin-top:7px;font-size:12px;line-height:1.35}

  .store-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}
  .store-card{min-height:174px;padding-bottom:10px;border-radius:16px}
  .logo-stage{height:112px;flex-basis:112px;padding:9px;border-radius:15px 15px 12px 12px}
  .logo-stage img{max-width:84%;max-height:70%}
  .store-name{margin-top:7px;padding-inline:2px;font-size:11px;line-height:1.1}
  .store-card strong{min-height:35px;margin-top:4px;flex-direction:column;gap:3px;padding-inline:2px;font-size:8px;line-height:1.15;white-space:normal}
  .store-card strong::before{padding:2px 4px;font-size:6px}
  .logo-mercado img{max-width:88%;max-height:76%;transform:translateY(-8px) scale(1.34)}
  .store-card:hover .logo-mercado img{transform:translateY(-8px) scale(1.34)}
  .logo-uber img{max-width:55%;max-height:48%;transform:scale(1.9)}
  .store-card:hover .logo-uber img{transform:scale(1.9)}
  .logo-ikea img{max-width:30%;max-height:36%;transform:scale(3.2)}
  .store-card:hover .logo-ikea img{transform:scale(3.2)}

  .how-section.section{padding:62px 0 68px}
  .shopback-how-layout{grid-template-columns:1fr;gap:24px;min-height:0;align-items:start}
  .how-copy-panel .section-heading{margin-bottom:16px}
  .how-copy-panel .section-heading h2{font-size:38px;line-height:1.05}
  .vertical-steps::before{left:20px;top:34px;bottom:34px}
  .vertical-steps .step-tab{min-height:72px;grid-template-columns:42px minmax(0,1fr);gap:14px;padding:7px 0}
  .vertical-steps .step-tab span{width:42px;height:42px;font-size:14px}
  .vertical-steps .step-tab::after{font-size:14px;line-height:1.4;overflow-wrap:normal}
  .how-live-demo{min-height:390px}
  .how-live-demo .step-page{gap:22px;padding:18px}
  .demo-logo-row{gap:9px}.demo-logo-row span,.demo-store-strip span{width:56px;height:40px;padding:6px;border-radius:10px}
  .demo-logo-row-bottom{gap:7px}.demo-logo-row-bottom span{width:54px;height:38px}
  .demo-search-bar{width:100%;height:52px;padding-left:15px;font-size:12px}
  .demo-search-bar b{width:40px;height:40px}.demo-search-bar svg{width:18px}
  .demo-cursor{left:69%;top:49%;width:35px;height:46px}
  .demo-store-strip{gap:8px}.demo-cart{width:176px;height:112px;border-width:9px;border-top:0}
  .demo-cart::before{left:-23px;top:-17px;width:42px;height:9px}
  .demo-cart i,.demo-cart b{bottom:-28px;width:19px;height:19px}
  .demo-cart em{top:-33px;width:58px;height:68px}.demo-cart em::before{left:16px;top:-14px;width:24px;height:18px;border-width:4px}
  .demo-shop-scene>p{font-size:12px}.demo-cash-card{width:94%;padding:24px 14px}.demo-cash-card strong{font-size:35px}.demo-cash-card span{font-size:10px}

  .feature-grid{grid-template-columns:1fr;gap:18px}
  .feature-card{padding:30px 25px;border-radius:24px}
  .feature-card h2{font-size:34px;line-height:1.08}.feature-card p{font-size:14px;line-height:1.55}
  .extension-card{min-height:520px;padding-right:25px}
  .browser-art{width:88%;height:235px;right:-5%;bottom:-25px}
  .cashback-pop{width:174px;right:7%;bottom:22%;padding:14px}
  .app-card{min-height:560px}
  .app-card>div:first-child{max-width:100%}
  .app-badges{flex-direction:row;flex-wrap:wrap;width:100%}
  .phone-art{width:210px;height:315px;right:22px;bottom:-66px}

  .trust-section{padding:58px 0}
  .trust-inner{align-items:stretch;gap:28px}
  .trust-inner h2{font-size:32px;line-height:1.1}
  .white-button{width:100%;min-height:54px}

  .site-footer{padding:54px 0 26px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px 24px}
  .footer-brand{grid-column:1/-1}
  .footer-brand p{max-width:none}
  .footer-bottom{margin-top:40px;align-items:flex-start}
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .stats-section.stats-animate .stats-grid article{opacity:1;transform:none}
  .scroll-pop,.scroll-pop.is-revealed{opacity:1;transform:none;filter:none}
}

html[dir="rtl"] .product-result{direction:rtl;text-align:right}
html[dir="rtl"] .search-box input,html[dir="rtl"] .auth-modal input{text-align:right}
html[dir="rtl"] .hero-content,html[dir="rtl"] .feature-card,html[dir="rtl"] .trust-inner{text-align:right}
