/* ============================================================
   SMAKIGO — MAIN STYLESHEET
   smakigo.css  |  v1.0  |  May 2026
   ============================================================

   QUICK CUSTOMISATION GUIDE
   ─────────────────────────
   All brand colours, fonts, spacing and radii live in the
   :root block below. Change a value once → updates everywhere.

   FONTS
   ─────
   Currently using Google Fonts:
     • Syne       → headings (bold, geometric)
     • DM Sans    → body text (clean, readable)

   To swap fonts:
   1. Change the @import URL in smakigo.html <head> to your
      chosen Google Fonts URL (fonts.google.com)
   2. Update --font-heading and --font-body below

   Popular alternatives:
     Headings : 'Poppins', 'Playfair Display', 'Space Grotesk',
                'Bricolage Grotesque', 'Fraunces'
     Body     : 'Inter', 'Nunito', 'Outfit', 'Plus Jakarta Sans'

   COLOURS
   ───────
   --color-brand      Main magenta — buttons, accents, links
   --color-brand-dark Hover state of brand colour
   --color-brand-light Tint used for borders, progress bars
   --color-brand-pale  Very light tint — badge backgrounds, boxes

   To change brand colour (e.g. to orange):
     --color-brand:       #E8420A;
     --color-brand-dark:  #B33200;
     --color-brand-light: #FDDDD0;
     --color-brand-pale:  #FFF5F0;

   SPACING & RADII
   ───────────────
   --radius       Cards, inputs, small elements (14px)
   --radius-lg    Large cards, modals (22px)
   --section-pad  Vertical padding of each section (5.5rem 5vw)
   --max-width    Content container max width (1120px)

   ============================================================ */


/* ── GOOGLE FONTS are imported in <head> of smakigo.html ── */


/* ────────────────────────────────────────────────────────────
   DESIGN TOKENS  — change these to retheme the whole site
   ──────────────────────────────────────────────────────────── */
:root {

  /* Brand colours */
  --color-brand:        #C2006B;   /* magenta — main CTA, accents     */
  --color-brand-dark:   #8B004C;   /* hover / pressed state            */
  --color-brand-light:  #F7D6EA;   /* borders, bar fills               */
  --color-brand-pale:   #FDF0F7;   /* notice boxes, tag backgrounds    */

  /* Neutral colours */
  --color-ink:          #0F0A0D;   /* primary text, dark UI elements   */
  --color-ink-2:        #3D2535;   /* secondary text, subtitles        */
  --color-mist:         #F9F4F7;   /* section backgrounds (light grey) */
  --color-white:        #FFFFFF;
  --color-grey:         #8A7880;   /* placeholder text, meta text      */
  --color-border:       #ECD8E5;   /* card borders, dividers           */

  /* Typography */
  --font-heading:       "Bricolage Grotesque", sans-serif;    /* h1–h4                */
  --font-body:          "Bricolage Grotesque", sans-serif; /* p, li, inputs, etc   */

  --text-xs:            0.72rem;   /* tags, labels                     */
  --text-sm:            0.85rem;   /* body small, captions             */
  --text-base:          1rem;      /* default body                     */
  --text-lg:            1.05rem;   /* hero paragraph                   */
  --text-xl:            1.5rem;    /* stat numbers                     */

  /* Spacing */
  --radius:             14px;      /* cards, inputs, small elements    */
  --radius-lg:          22px;      /* large cards, modals              */
  --section-pad:        5.5rem 5vw;
  --max-width:          1120px;

  /* Shadows */
  --shadow-card:        0 12px 40px rgba(194, 0, 107, 0.07);
  --shadow-phone:       0 36px 72px rgba(194, 0, 107, 0.22),
                        0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-float:       0 8px 28px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition:         0.22s ease;
  --transition-slow:    0.65s ease;

  /* Animation durations */
  --anim-ticker:        24s;
  --anim-bob:           3s;
  --anim-pulse:         2s;
}


/* ────────────────────────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

img { display: block; }


/* ────────────────────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(1.6); }
}

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

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll-reveal */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fi.vis {
  opacity: 1;
  transform: none;
}


/* ────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
}

.ni {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 5vw;
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-brand);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo b {
  color: var(--color-ink);
  font-weight: 800;
}

/* Nav links */
.nl {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nl a {
  text-decoration: none;
  color: var(--color-ink-2);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nl a:hover { color: var(--color-brand); }

/* Nav right slot */
.nr {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Language switcher */
.lsw {
  display: flex;
  background: var(--color-mist);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 3px;
}
.lb {
  background: none;
  border: none;
  padding: 0.28rem 0.72rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-grey);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lb.on {
  background: var(--color-brand);
  color: #fff;
}

/* Nav CTA button */
.ncta {
  background: var(--color-brand);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition);
}
.ncta:hover { background: var(--color-brand-dark); }


/* ────────────────────────────────────────────────────────────
   BUTTONS  (reusable across all sections)
   ──────────────────────────────────────────────────────────── */
.bp { /* primary — filled brand */
  background: var(--color-brand);
  color: #fff;
  padding: 0.78rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.bp:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
}

.bo { /* outline — brand border */
  border: 1.5px solid var(--color-brand);
  color: var(--color-brand);
  background: transparent;
  padding: 0.78rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.bo:hover { background: var(--color-brand-pale); }

.bwh { /* white — used on dark/brand background */
  background: #fff;
  color: var(--color-brand);
  padding: 0.78rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-body);
}
.bwh:hover { background: var(--color-brand-pale); }

.btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}


/* ────────────────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────────────────── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 5vw 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 90vh;
}

/* Live badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-brand-pale);
  border: 1px solid var(--color-brand-light);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
}
.bdot {
  width: 7px;
  height: 7px;
  background: var(--color-brand);
  border-radius: 50%;
  animation: pulse var(--anim-pulse) infinite;
}

/* Hero heading */
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.1rem;
}
.hero h1 mark {
  color: var(--color-brand);
  background: none;
}

/* Hero paragraph */
.hp {
  font-size: var(--text-lg);
  color: var(--color-ink-2);
  max-width: 450px;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.82;
}

/* Hero stats row */
.hstats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--color-border);
}
.sn {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-ink);
}
.sl {
  font-size: 0.77rem;
  color: var(--color-grey);
  margin-top: 0.1rem;
}

/* Hero visual wrapper */
.hv {
  position: relative;
  display: flex;
  justify-content: center;
}


/* ────────────────────────────────────────────────────────────
   PHONE MOCKUP  (hero)
   ──────────────────────────────────────────────────────────── */
.ph {
  width: 255px;
  height: 494px;
  background: #0F0A0D;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
}
.ps {
  position: absolute;
  inset: 7px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.pbar {
  height: 26px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
}
.pbar span { font-size: 9px; color: #bbb; font-weight: 600; }
.pb { padding: 0 10px 10px; }

.ptop {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.pav {
  width: 30px;
  height: 30px;
  background: var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.phi { font-family: var(--font-heading); font-size: 9.5px; font-weight: 800; color: var(--color-ink); }
.psu { font-size: 7.5px; color: var(--color-grey); }

.psr {
  background: var(--color-mist);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 8px;
  color: var(--color-grey);
  margin-bottom: 8px;
}

.ptabs { display: flex; gap: 5px; margin-bottom: 9px; }
.ptb {
  background: var(--color-brand-pale);
  border: 1px solid var(--color-brand-light);
  color: var(--color-brand);
  font-size: 7.5px;
  padding: 3px 7px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.ptb.on {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}

.pcard {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 7px;
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.pthumb { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.t1 { background: linear-gradient(135deg, #FFCBA4, #FF7A30); }
.t2 { background: linear-gradient(135deg, #A8E6CF, #2ECC8E); }
.t3 { background: linear-gradient(135deg, #FFD3E8, #E042A0); }

.pcn { font-size: 9px; font-weight: 700; color: var(--color-ink); font-family: var(--font-heading); }
.pcm { font-size: 7.5px; color: var(--color-grey); }
.pcp { font-size: 9px; font-weight: 700; color: var(--color-brand); margin-left: auto; flex-shrink: 0; }

/* Per-restaurant points tag inside phone */
.pts-tag {
  font-size: 6.5px;
  background: var(--color-brand-pale);
  color: var(--color-brand);
  border-radius: 4px;
  padding: 1px 4px;
  font-weight: 700;
  margin-top: 2px;
  display: inline-block;
}

/* Floating elements around phone */
.fbadge {
  position: absolute;
  bottom: 18px;
  right: -14px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 7px 10px;
  box-shadow: var(--shadow-float);
  animation: bob var(--anim-bob) ease-in-out infinite;
}
.fbn { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--color-brand); }
.fbl { font-size: 8px; color: var(--color-grey); }

.fpill {
  position: absolute;
  top: 55px;
  left: -26px;
  background: var(--color-brand);
  color: #fff;
  border-radius: 10px;
  padding: 7px 10px;
  animation: bob var(--anim-bob) ease-in-out infinite 0.5s;
  max-width: 120px;
}
.fpn { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 800; line-height: 1.2; }
.fpl { font-size: 7px; opacity: 0.8; margin-top: 2px; }


/* ────────────────────────────────────────────────────────────
   SHARED SECTION STYLES
   ──────────────────────────────────────────────────────────── */
section { padding: var(--section-pad); }

.si {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Section tag (small uppercase pill above heading) */
.stag {
  display: inline-block;
  background: var(--color-brand-pale);
  color: var(--color-brand);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.28rem 0.78rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Section heading */
.sh {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.7px;
  margin-bottom: 0.75rem;
}

/* Section paragraph */
.spp {
  font-size: var(--text-base);
  color: var(--color-ink-2);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.82;
}


/* ────────────────────────────────────────────────────────────
   CITIES TICKER
   ──────────────────────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
  overflow: hidden;
}
.ti {
  display: flex;
  gap: 2.2rem;
  animation: ticker var(--anim-ticker) linear infinite;
  width: max-content;
}
.titem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-grey);
  font-size: 0.85rem;
  white-space: nowrap;
}
.tdot {
  width: 5px;
  height: 5px;
  background: var(--color-brand);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   HOW IT WORKS
   ──────────────────────────────────────────────────────────── */
.how { background: var(--color-mist); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}

.step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
/* Large decorative step number */
.step::before {
  content: attr(data-n);
  position: absolute;
  right: 14px;
  top: 6px;
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-brand-light);
  line-height: 1;
  pointer-events: none;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(194, 0, 107, 0.1);
}

.sic {
  width: 46px;
  height: 46px;
  background: var(--color-brand-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.sic svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.step p  { font-size: var(--text-sm); color: var(--color-grey); line-height: 1.7; }


/* ────────────────────────────────────────────────────────────
   LOYALTY SECTION
   ──────────────────────────────────────────────────────────── */
.lsec { background: var(--color-white); }

/* Important notice box */
.how-notice {
  background: var(--color-brand-pale);
  border: 1.5px solid var(--color-brand-light);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.hn-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.05rem; }
.hn-text { font-size: 0.88rem; color: var(--color-ink-2); line-height: 1.7; font-weight: 300; }
.hn-text strong { color: var(--color-brand); font-weight: 600; }

/* 2-col grid */
.lgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Restaurant point wallet cards */
.rest-pts-stack { display: flex; flex-direction: column; gap: 0.9rem; }

.rpc {
  background: var(--color-ink);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rpc::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.rpc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.rpc-name { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 800; }
.rpc-chip { font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 50px; }
.chip-active { background: var(--color-brand); color: #fff; }
.chip-lock   { background: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }

.rpc-pts { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--color-brand); line-height: 1; }
.rpc-sub  { font-size: 0.7rem; opacity: 0.5; margin-bottom: 0.7rem; }
.rpc-bar  { background: rgba(255,255,255,.12); border-radius: 50px; height: 5px; overflow: hidden; }
.rpc-fill { height: 100%; border-radius: 50px; background: var(--color-brand); }
.rpc-note { font-size: 0.68rem; opacity: 0.45; margin-top: 0.35rem; }

/* Step-by-step explanation */
.loy-explain { display: flex; flex-direction: column; gap: 1rem; }
.le-step { display: flex; gap: 0.8rem; align-items: flex-start; }
.led {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--color-brand-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 800;
  color: var(--color-brand);
}
.le-step p    { font-size: 0.87rem; color: var(--color-ink-2); line-height: 1.72; font-weight: 300; }
.le-step strong { color: var(--color-ink); font-weight: 500; }

.lbox {
  background: var(--color-brand-pale);
  border: 1px solid var(--color-brand-light);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  line-height: 1.72;
  margin-top: 0.5rem;
}
.lbox strong { color: var(--color-brand); }

/* Dark strategy callout */
.key-rule {
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.kr-icon { font-size: 1.2rem; flex-shrink: 0; }
.kr-text { font-size: var(--text-sm); line-height: 1.7; font-weight: 300; opacity: 0.9; }
.kr-text strong { color: var(--color-brand); font-weight: 600; opacity: 1; }


/* ────────────────────────────────────────────────────────────
   ABOUT US
   ──────────────────────────────────────────────────────────── */
.about { background: var(--color-mist); }

.agrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Value cards grid */
.avals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.avc {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.avi { font-size: 1.4rem; margin-bottom: 0.45rem; }
.avt { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; margin-bottom: 0.28rem; }
.avd { font-size: 0.79rem; color: var(--color-grey); line-height: 1.6; }

/* Mission card */
.acard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.ac-ey {
  font-size: 0.7rem; font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.ac-h  { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; margin-bottom: 0.7rem; }
.ac-p  { font-size: 0.84rem; color: var(--color-ink-2); line-height: 1.78; font-weight: 300; }

.ac-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
}
.acn .n { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--color-brand); }
.acn .l { font-size: 0.74rem; color: var(--color-grey); }

/* Team avatar strip */
.tstrip { display: flex; align-items: center; margin-top: 1.2rem; }
.tav {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.62rem; font-weight: 700; color: #fff;
  margin-left: -8px;
}
.tav:first-child { margin-left: 0; }
.av1 { background: #C2006B; }
.av2 { background: #8B004C; }
.av3 { background: #E85D9E; }
.av4 { background: #3D2535; }
.tnote { font-size: 0.76rem; color: var(--color-grey); margin-left: 0.6rem; }


/* ────────────────────────────────────────────────────────────
   FOR RESTAURANTS
   ──────────────────────────────────────────────────────────── */
.rsec {
  background: var(--color-brand);
  color: #fff;
  overflow: hidden;
  position: relative;
}
/* Decorative background circles */
.rsec::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.rsec::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(0,0,0,.08);
  border-radius: 50%;
  pointer-events: none;
}

.rgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Benefit cards */
.rbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.rb {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.rbi { font-size: 1.3rem; margin-bottom: 0.4rem; }
.rbt { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.rbd { font-size: 0.78rem; opacity: 0.72; line-height: 1.5; }

/* Commission white card */
.cbox {
  background: rgba(255,255,255,.97);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cbey {
  font-size: 0.7rem; font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.cbnum { font-family: var(--font-heading); font-size: 4.2rem; font-weight: 800; color: var(--color-brand); line-height: 1; }
.cblbl { font-size: 0.95rem; color: var(--color-ink-2); margin-bottom: 1.1rem; }

.cblist { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.cblist li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.84rem; color: var(--color-ink-2); }
.cblist li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.cbeg {
  margin-top: 1.1rem;
  padding: 0.8rem;
  background: var(--color-brand-pale);
  border-radius: 10px;
  border: 1px solid var(--color-brand-light);
  font-size: 0.8rem;
  color: var(--color-ink-2);
  line-height: 1.65;
}

.cb-loy-note {
  margin-top: 0.9rem;
  padding: 0.8rem;
  background: var(--color-ink);
  border-radius: 10px;
  font-size: 0.79rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.cb-loy-note strong { color: var(--color-brand); }


/* ────────────────────────────────────────────────────────────
   APP DOWNLOAD
   ──────────────────────────────────────────────────────────── */
.appsec { background: var(--color-white); }

.appgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Store buttons */
.stores { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }
.store {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--color-ink);
  color: #fff;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--transition);
}
.store:hover { background: var(--color-ink-2); }
.store svg   { width: 21px; height: 21px; fill: #fff; flex-shrink: 0; }
.ssub  { font-size: 0.6rem; opacity: 0.6; line-height: 1; }
.sname { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; line-height: 1.3; }

/* Email notify row */
.nrow { display: flex; gap: 0.5rem; margin-top: 1rem; max-width: 380px; }
.nrow input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  color: var(--color-ink);
  transition: border-color var(--transition);
}
.nrow input:focus { border-color: var(--color-brand); }

/* Mini phone pair */
.pwrap { display: flex; gap: 1.2rem; justify-content: center; }
.mph {
  width: 138px; height: 256px;
  background: var(--color-ink);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.mph:first-child { transform: rotate(-4deg) translateY(14px); }
.mph:last-child  { transform: rotate(3.5deg) translateY(8px); }

.mscr { position: absolute; inset: 5px; background: #fff; border-radius: 17px; overflow: hidden; }
.msh  { height: 44px; display: flex; align-items: flex-end; padding: 0.35rem 0.65rem; }
.msht { color: #fff; font-family: var(--font-heading); font-size: 0.58rem; font-weight: 800; }
.msb  { padding: 0.5rem 0.55rem; }
.msrow { display: flex; gap: 0.35rem; margin-bottom: 0.35rem; }
.msbl  { border-radius: 6px; height: 42px; flex: 1; }

/* Mini phone gradient blocks */
.ba { background: linear-gradient(135deg, #FFCBA4, #FF7A30); }
.bb { background: linear-gradient(135deg, #A8E6CF, #2ECC8E); }
.bc { background: linear-gradient(135deg, #FFD3E8, #E042A0); }
.bd2{ background: linear-gradient(135deg, #B8D4F8, #3A7BD5); }

.msl { height: 9px; background: var(--color-border); border-radius: 4px; margin-bottom: 0.28rem; }
.w7  { width: 70%; }
.w5  { width: 50%; }


/* ────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────── */
.faqsec { background: var(--color-mist); }

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 2.5rem;
}

.fi2 {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.fi2:hover {
  border-color: var(--color-brand);
  box-shadow: 0 4px 20px rgba(194, 0, 107, 0.08);
}

.fq { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.fa { font-size: 0.82rem; color: var(--color-grey); line-height: 1.7; }


/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 5vw 2rem;
}

.foi { max-width: var(--max-width); margin: 0 auto; }

.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.fbrand p { font-size: 0.82rem; line-height: 1.75; max-width: 230px; margin-top: 0.7rem; }

.fcol h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.fcol ul a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}
.fcol ul a:hover { color: #fff; }

.fbot {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.fbot p { font-size: 0.75rem; }

.flag {
  background: var(--color-brand);
  color: #fff;
  font-size: 0.68rem;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}


/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .hero,
  .lgrid,
  .agrid,
  .rgrid,
  .appgrid        { grid-template-columns: 1fr; }

  .hv             { order: -1; }
  .ftop           { grid-template-columns: 1fr 1fr; }
  .fgrid          { grid-template-columns: 1fr; }
  .nl             { display: none; }
  .hero           { min-height: auto; padding: 3rem 5vw; }
}

@media (max-width: 520px) {
  .ftop           { grid-template-columns: 1fr; }
  .avals,
  .rbs            { grid-template-columns: 1fr; }
}
