.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga' 1;
  -webkit-font-feature-settings: 'liga' 1;
}

/* ---------------- Fidly design system ---------------- */
:root {
  --navy: #131A3F;
  --navy-2: #1C2553;
  --navy-3: #2A3370;
  --red: #E5193A;
  --red-2: #C7102E;
  --red-soft: #FBEAEA;
  --pink: #FBEAEA;
  --pink-2: #F7DADA;
  --cream: #F4F5F9;
  --yellow: #FFC940;
  --yellow-2: #FFB300;
  --white: #FFFFFF;
  --ink: #131A3F;
  --ink-2: #2B2F4A;
  --muted: #6B7186;
  --muted-2: #9097AC;
  --line: rgba(19,26,63,0.08);
  --line-strong: rgba(19,26,63,0.14);
  --shadow-sm: 0 2px 8px rgba(19,26,63,0.06);
  --shadow-md: 0 12px 28px rgba(19,26,63,0.10);
  --shadow-lg: 0 24px 60px rgba(19,26,63,0.18);
  --shadow-red: 0 18px 40px rgba(229,25,58,0.25);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--white); color: var(--ink); font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(38px, 4.8vw, 77px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); line-height: 1.05; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
p { text-wrap: pretty; }

.wordmark {
  font-family: "Caveat Brush", "Pacifico", cursive;
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.wordmark .star {
  position: absolute;
  top: -0.12em;
  left: 0.05em;
  width: 0.28em;
  height: 0.28em;
  color: var(--yellow);
}
.wordmark.lg { font-size: 64px; }
.wordmark.md { font-size: 34px; }
.wordmark.sm { font-size: 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.eyebrow .flame {
  width: 22px; height: 22px; border-radius: 999px; background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.eyebrow.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; box-shadow: none; }
.eyebrow.on-red { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); color: #fff; box-shadow: none; }

.red-mark {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 0.02em 0.22em 0.06em;
  border-radius: 10px;
  transform: rotate(-1deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0.05);
}
.red-text { color: var(--red); }
.yellow-text { color: var(--yellow); }
.yellow-mark { display: inline-block; background: var(--yellow); color: var(--ink); padding: 0.02em 0.2em 0.06em; border-radius: 10px; transform: rotate(-1deg); }

.underline-swoosh {
  display: inline-block;
  position: relative;
}
.underline-swoosh::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 C 40 -2, 100 14, 198 4' stroke='%23FFC940' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

/* Layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; overflow-x: clip; }
.section-tight { padding: 80px 0; overflow-x: clip; }
.section-sm { padding: 56px 0; overflow-x: clip; }

.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-pink { background: var(--pink); }
.bg-cream { background: var(--cream); }
.bg-red { background: var(--red); color: #fff; }
.bg-red h1, .bg-red h2, .bg-red h3 { color: #fff; }
.bg-white { background: var(--white); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 56px; padding: 0 26px; border-radius: 999px; font-weight: 700; font-size: 16px; transition: transform .15s ease, box-shadow .2s ease, background .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-2); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 14px 30px rgba(255,201,64,0.4); }
.btn-yellow:hover { background: var(--yellow-2); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f5f5f5; }
.btn-sm { height: 44px; padding: 0 20px; font-size: 14px; }

.store-btn {
  display: inline-flex; align-items: center; gap: 12px; height: 58px; padding: 0 22px 0 18px;
  background: var(--ink); color: #fff; border-radius: 14px; transition: transform .15s, background .2s;
}
.store-btn:hover { background: #000; transform: translateY(-1px); }
.store-btn .store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .store-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-btn .store-label small { font-size: 10px; opacity: 0.75; letter-spacing: 0.08em; text-transform: uppercase; }
.store-btn .store-label b { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-pill { display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; background: transparent; transition: border-color .15s, background .15s; }
.lang-pill:hover { border-color: var(--red); background: var(--surface); }
.lang-switcher { position: relative; }
.lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--line-strong); border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12); min-width: 130px; overflow: hidden; z-index: 1000; }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; transition: background .1s; }
.lang-dropdown a:hover { background: var(--surface); color: var(--red); }
.lang-dropdown a.active { color: var(--red); background: var(--surface); }
.lang-dropdown a .lang-flag { font-size: 16px; }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
}
.card-soft { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }

/* Decorative sparkles */
.sparkle {
  position: absolute; pointer-events: none; color: var(--red);
}
.sparkle.yellow { color: var(--yellow); }
.sparkle.pink { color: #FFB7C0; }

/* Hero */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding: 120px 0 60px;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
/* But preserve the in-phone screens, which sit on light backgrounds */
.hero .phone .wordmark { color: var(--ink); }
.hero .phone h1, .hero .phone h2, .hero .phone h3 { color: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(229,25,58,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(255,201,64,0.08) 0%, transparent 50%);
}
.hero-bg-star {
  position: absolute; right: -180px; top: -100px; font-size: 720px; line-height: 1;
  opacity: 0.06; color: #fff; pointer-events: none; border-radius: 48px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.hero h1 strong { display: inline-block; }
.hero-lede { font-size: 18px; color: rgba(255,255,255,0.78); margin-top: 28px; max-width: 520px; line-height: 1.55; }
.hero-cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,0.62); font-size: 13.5px; font-weight: 500; }
.avatars { display: flex; }
.avatars > img { width: 32px; height: 32px; border-radius: 999px; border: 2px solid var(--navy); object-fit: cover; margin-left: -8px; }
.avatars > img:first-child { margin-left: 0; }

.hero-phone-stage {
  position: relative; display: flex; justify-content: center; align-items: center; min-height: 640px;
}

/* Galère ticker */
.galere-strip {
  background: var(--cream); padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.galere-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.galere-cell { display: flex; align-items: center; gap: 14px; }
.galere-num {
  width: 44px; height: 44px; border-radius: 999px; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.galere-cell h4 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 2px; letter-spacing: -0.01em; }
.galere-cell p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Feature grid */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content h2 { margin: 20px 0 18px; }
.feature-content .lede { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 28px; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list li {
  list-style: none; display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.feature-list li .tick {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 999px; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px;
}
.feature-list li strong { color: var(--ink); }

.kpi-row { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.kpi { display: flex; flex-direction: column; gap: 4px; }
.kpi b { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.kpi span { font-size: 13px; color: var(--muted); }

/* Tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tier-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 24px; position: relative; overflow: hidden;
  border: 1.5px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card .tier-medal {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff; letter-spacing: 0.04em; margin-bottom: 22px;
}
.tier-card.silver .tier-medal { background: linear-gradient(135deg,#C7CDE0,#8E96B5); }
.tier-card.gold .tier-medal { background: linear-gradient(135deg,#FFD66E,#E6A20F); }
.tier-card.platinum .tier-medal { background: linear-gradient(135deg,#E8EAEF,#9CA4BC); color: var(--ink); }
.tier-card.vip .tier-medal { background: linear-gradient(135deg, var(--red), #9C0A24); }
.tier-card.vip { background: var(--ink); color: #fff; border-color: var(--ink); }
.tier-card.vip h3 { color: #fff; }
.tier-card.vip p, .tier-card.vip li { color: rgba(255,255,255,0.7); }
.tier-card .tier-range { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 4px; letter-spacing: 0.04em; }
.tier-card.vip .tier-range { color: var(--yellow); }
.tier-card h3 { margin-bottom: 14px; }
.tier-card ul { margin-top: 16px; display: grid; gap: 10px; }
.tier-card li {
  list-style: none; font-size: 14px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start;
}
.tier-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--red); margin-top: 8px; flex-shrink: 0;
}
.tier-card.vip li::before { background: var(--yellow); }

/* Merchant strip */
.merchant-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.merchant-tile {
  aspect-ratio: 1.4 / 1; border-radius: 18px; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s;
  padding: 16px;
}
.merchant-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.merchant-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Stats banner */
.stats-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
}
.stats-banner .cell { background: #fff; padding: 32px 28px; display: flex; flex-direction: column; gap: 6px; }
.stats-banner .cell b { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.stats-banner .cell span { font-size: 13px; color: var(--muted); }

/* Voucher row */
.voucher-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.voucher-card {
  background: #fff; border-radius: 22px; padding: 22px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
.voucher-card::before {
  content: ""; position: absolute; left: -10px; top: 50%; width: 20px; height: 20px; border-radius: 999px;
  background: var(--cream); transform: translateY(-50%);
}
.voucher-card::after {
  content: ""; position: absolute; right: -10px; top: 50%; width: 20px; height: 20px; border-radius: 999px;
  background: var(--cream); transform: translateY(-50%);
}
.voucher-card .v-head { display: flex; justify-content: space-between; align-items: center; }
.voucher-card .v-logo {
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.voucher-card .v-amount { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--red); }
.voucher-card .v-amount small { font-size: 16px; font-weight: 600; color: var(--ink); margin-left: 4px; }
.voucher-card .v-divider { border-top: 2px dashed var(--line-strong); }
.voucher-card .v-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

/* Final CTA */
.cta-final {
  background: var(--red); color: #fff; border-radius: 36px; padding: 80px 64px; position: relative; overflow: hidden;
  text-align: center;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute; pointer-events: none;
}
.cta-final h2 { color: #fff; }
.cta-final .date-banner { color: var(--yellow); font-weight: 800; font-size: clamp(40px,5vw,72px); margin-bottom: 8px; }
.cta-final .countdown { display: inline-flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.cta-final .cell {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: 18px;
  padding: 16px 22px; min-width: 92px;
}
.cta-final .cell b { font-size: 40px; font-weight: 800; line-height: 1; display: block; }
.cta-final .cell span { font-size: 11px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.14em; }

/* CTA store buttons row */
.cta-store-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.footer h5 { color: #fff; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* Marquee */
.marquee {
  overflow: hidden; padding: 18px 0; background: var(--navy); color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track { display: inline-flex; gap: 48px; animation: scroll 26s linear infinite; white-space: nowrap; }
.marquee span { font-family: "Manrope"; font-weight: 800; font-size: 24px; letter-spacing: -0.01em; }
.marquee .dot { color: var(--red); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Phone mockup */
.phone {
  width: 320px; height: 640px; background: var(--ink); border-radius: 44px; padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.04) inset;
  position: relative;
}
.phone .screen .home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 5px; background: rgba(0,0,0,0.18); border-radius: 999px; z-index: 9;
}
.phone .screen {
  width: 100%; height: 100%; background: var(--cream); border-radius: 32px; overflow: hidden; position: relative;
}
.phone .notch {
  position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 92px; height: 26px;
  background: var(--ink); border-radius: 999px; z-index: 10;
}
.phone-screen-inner { padding: 56px 18px 18px; height: 100%; overflow: hidden; }
.status-bar { display: flex; justify-content: space-between; align-items: center; padding: 0 6px; margin-bottom: 14px; font-size: 12px; font-weight: 700; color: var(--ink); }
.status-bar .right { display: flex; gap: 4px; align-items: center; }
/* Status bar always sits at notch level (notch: top:14px from phone = 2px from screen) */
.phone .screen .status-bar {
  position: absolute; top: 2px; left: 0; right: 0; height: 32px; z-index: 5;
  padding: 0 14px; margin-bottom: 0;
}

.app-card-hero {
  background: var(--red); border-radius: 22px; padding: 20px; color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 12px 28px rgba(229,25,58,0.4);
}
.app-card-hero .label { font-size: 11px; font-weight: 700; opacity: 0.8; letter-spacing: 0.1em; text-transform: uppercase; }
.app-card-hero .balance { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; line-height: 1; }
.app-card-hero .balance small { font-size: 14px; opacity: 0.85; margin-left: 4px; }
.app-card-hero .row { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }

.qr-block {
  background: #fff; color: var(--ink); border-radius: 14px; padding: 12px; display: flex; gap: 10px; align-items: center;
}
.qr-block .qr { width: 38px; height: 38px; border-radius: 7px; background: var(--ink); position: relative; }
.qr-block .qr::after {
  content: ""; position: absolute; inset: 6px; background:
    linear-gradient(white 2px, transparent 2px) 0 0 / 6px 6px,
    linear-gradient(90deg, white 2px, transparent 2px) 0 0 / 6px 6px;
  background-color: var(--ink);
  border-radius: 2px;
}
.qr-block .qr-text b { font-size: 12px; display: block; font-weight: 800; }
.qr-block .qr-text span { font-size: 10px; color: var(--muted); }

/* Receipt scanner UI mock */
.scan-frame {
  background: #fff; border-radius: 22px; padding: 16px; box-shadow: var(--shadow-md); position: relative;
}
.scan-frame .scan-window {
  border: 2px dashed var(--red); border-radius: 16px; padding: 22px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFF, var(--cream));
}
.scan-frame .scan-window .corner { position: absolute; width: 22px; height: 22px; border: 3px solid var(--red); }
.scan-frame .scan-window .corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.scan-frame .scan-window .corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.scan-frame .scan-window .corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.scan-frame .scan-window .corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

/* Float decorations */
.float-card {
  position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 10px; z-index: 10;
}
.float-card .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .ico.yellow { background: var(--yellow); color: var(--ink); }
.float-card .ico.navy { background: var(--navy); color: #fff; }
.float-card b { font-size: 13px; display: block; }
.float-card span { font-size: 11px; color: var(--muted); }

/* Misc */
.section-title-block { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 56px; }
.section-title-block.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }
.section-title-block .lede { font-size: 18px; color: var(--muted); max-width: 600px; }

.chips-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.chip .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--red); }
.chip.on-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.86); }

/* Bullets emoji-free */
.emoji-tag {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px;
  background: var(--pink); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(0.92) translateY(24px); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* Flexy grid */
.flexy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Security grid */
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }


/* Responsive */
@media (max-width: 1080px) {
  .hero-grid, .feature-row, .flexy-grid, .security-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-row.reverse { direction: ltr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .merchant-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galere-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .voucher-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .float-card.fc-left { left: -10px !important; right: auto !important; }
  .float-card.fc-right { right: -10px !important; left: auto !important; }
}
@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 720px) {
  .flexy-grid { gap: 32px; }
  .security-grid { gap: 32px; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .section { padding: 80px 0; }
  .tier-grid { grid-template-columns: 1fr; }
  .merchant-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .cta-final { padding: 56px 24px; border-radius: 24px; }
  .cta-final .date-banner { font-size: clamp(32px, 9vw, 56px); }
  .cta-final .countdown { gap: 10px; }
  .cta-final .cell { padding: 14px 16px; min-width: 72px; }
  .cta-final .cell b { font-size: 32px; }
  .footer-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cta-final { padding: 40px 16px; border-radius: 20px; }
  .cta-final .date-banner { font-size: 36px; }
  .cta-final h2 { font-size: 28px; }
  .cta-final .countdown { gap: 8px; margin-top: 24px; }
  .cta-final .cell { padding: 10px 12px; min-width: 60px; border-radius: 12px; }
  .cta-final .cell b { font-size: 26px; }
  .cta-final .cell span { font-size: 9px; }
  .cta-store-row { gap: 8px; margin-top: 24px; }
  .cta-store-row .store-btn { height: 46px; padding: 0 14px 0 12px; border-radius: 10px; gap: 8px; }
  .cta-store-row .store-btn .store-icon { width: 20px; height: 20px; }
  .cta-store-row .store-btn .store-label small { font-size: 8px; }
  .cta-store-row .store-btn .store-label b { font-size: 13px; }
  .phone { zoom: 0.8; }
  .footer-grid { grid-template-columns: 1fr; }
}
