/* AZ+ Landing v2 — clean, photography-led, Grab/Yassir-style */
:root {
  --purple: #562785;
  --purple-700: #3f1d63;
  --purple-50: #f5f0fb;
  --yellow: #F5BD20;
  --yellow-100: #fef3cd;
  --ink: #1a1428;
  --ink-700: #3a3245;
  --ink-500: #6b6478;
  --ink-300: #b8b3c2;
  --ink-100: #ece9f0;
  --bg: #ffffff;
  --bg-soft: #f8f6fb;
  --shadow-sm: 0 1px 2px rgba(38, 22, 65, .04), 0 2px 8px rgba(38, 22, 65, .04);
  --shadow-md: 0 6px 24px rgba(38, 22, 65, .08), 0 1px 3px rgba(38, 22, 65, .04);
  --shadow-lg: 0 24px 60px rgba(38, 22, 65, .14), 0 4px 12px rgba(38, 22, 65, .06);
  --shadow-xl: 0 40px 100px rgba(86, 39, 133, .25);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; line-height: 1.55; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--purple); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--yellow); color: var(--ink); }
.btn--accent:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(245, 189, 32, .35); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink-100); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; min-height: 56px;
  border-radius: 14px;
  background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .15s, background .15s, box-shadow .15s;
  font-weight: 600;
}
.btn--store:hover { transform: translateY(-2px); background: #111; box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.btn--store svg { width: 28px; height: 28px; flex-shrink: 0; }
.btn--store__sm { display: block; font-size: 10px; line-height: 1; opacity: .8; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; }
.btn--store__lg { display: block; font-size: 18px; line-height: 1; font-weight: 700; letter-spacing: -.01em; }
.btn--store--primary {
  background: #fff; color: #000;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.btn--store--primary:hover { background: #fff; box-shadow: 0 14px 36px rgba(0,0,0,.35); }
.btn--store--ghost { background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(8px); }
.btn--store--ghost:hover { background: rgba(255,255,255,.16); }

.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-50);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.kicker--on-dark { color: var(--yellow); background: rgba(245, 189, 32, .14); }

/* ---------- SCROLL PROGRESS ---------- */
.scrollprog {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple) 0%, #c084fc 100%);
  z-index: 100;
  transition: width .08s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(124, 58, 237, .35);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav--scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(38, 22, 65, .06);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  height: 72px; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.nav__brand img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(38, 22, 65, .12));
}
.nav__plus { color: var(--yellow); }
.nav__links { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  display: block;
  padding: 10px 16px; border-radius: 10px; font-size: 14.5px; font-weight: 500;
  color: var(--ink-700); transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--purple-50); color: var(--purple); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--ink-100);
  background: #fff;
}
.lang__icon { color: var(--ink-500); display: grid; place-items: center; }
.lang__icon svg { width: 16px; height: 16px; }
.lang__sep { color: var(--ink-300); }
.lang button {
  padding: 0; color: var(--ink-500);
  font: inherit;
  transition: color .15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lang button.is-on { color: var(--ink); }
.lang button:hover:not(.is-on) { color: var(--ink-700); }
@media (max-width: 1100px) {
  .lang { display: none; }
}
.nav__burger {
  display: none; flex-direction: column; gap: 4px; padding: 10px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px; }
.nav__mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--ink-100);
  padding: 12px 20px 18px;
  box-shadow: var(--shadow-md);
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500;
  color: var(--ink-700);
}
.nav__mobile a:hover, .nav__mobile a:active { background: var(--purple-50); color: var(--purple); }
.nav__mobile a.btn--primary,
.nav__mobile a.btn--primary:hover,
.nav__mobile a.btn--primary:active {
  color: #fff;
  background: var(--ink);
}
.nav__mobile a.btn--primary:hover { background: var(--purple); }
.nav__mobile .btn { display: inline-flex; margin-top: 8px; }
.nav__mobile-lang {
  display: flex; gap: 6px;
  padding-top: 12px; margin-top: 8px;
  border-top: 1px solid var(--ink-100);
}
.nav__mobile-lang button {
  flex: 1; padding: 10px 0;
  border-radius: 10px;
  background: var(--bg-soft); color: var(--ink-500);
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.nav__mobile-lang button.is-on { background: var(--ink); color: #fff; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner > .btn--primary { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: 140px 28px 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfbff 0%, #f5f0fb 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(245, 189, 32, .12), transparent 60%),
    radial-gradient(900px 500px at 0% 90%, rgba(86, 39, 133, .10), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--ink-100);
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}
.hero__title {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--purple); }
.hero__sub {
  font-size: 19px; color: var(--ink-500);
  max-width: 520px; margin-bottom: 36px;
}
.hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__stores { display: flex; gap: 14px; color: var(--ink-500); font-size: 13px; font-weight: 600; }
.hero__store {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--ink-100); color: var(--ink-500);
  text-decoration: none; transition: all .2s;
}
.hero__store:hover { color: var(--ink); border-color: var(--ink-300); }
.hero__store--on { color: var(--purple); border-color: var(--purple); background: rgba(83, 39, 142, 0.06); }

.hero__visual {
  position: relative; height: 620px;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .hero { padding: 120px 20px 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 520px; }
  .hero__sub { font-size: 17px; }
}

/* ---------- PHONE MOCKUP ---------- */
.phone {
  position: relative;
  width: 280px; height: 580px;
  background: #1a1428;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #2a2138 inset,
    0 50px 80px -20px rgba(86, 39, 133, .35),
    0 25px 50px -10px rgba(38, 22, 65, .25);
}
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 999px;
  background: #1a1428; z-index: 3;
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: #fff;
}
.phone__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity .8s ease;
}
.phone__img.is-on { opacity: 1; }
.phone__sheen {
  position: absolute; inset: 0; border-radius: 44px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.10) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.05) 100%);
}
.phone--hero { transform: rotate(-2deg); }

.float-card {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  z-index: 4;
  overflow: hidden;
}
.float-card img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.float-card--shop {
  background: var(--purple-50);
  left: -32px;
  top: 50px;
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card--deliver {
  background: #fff;
  right: -32px;
  top: 130px;
  animation: floatY 5s ease-in-out infinite reverse;
}
.float-card--eat {
  background: #fff;
  left: -20px;
  bottom: 70px;
  animation: floatY 6s ease-in-out infinite;
}
.float-card--ride {
  background: var(--yellow);
  right: -20px;
  bottom: 50px;
  animation: floatY 6s ease-in-out infinite reverse;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .float-card { display: none; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 110px 28px; background: #fff; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }
.section--purple { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%); color: #fff; }
.section__inner { max-width: 1240px; margin: 0 auto; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__title {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section__title--on-dark { color: #fff; }
.section__sub { font-size: 18px; color: var(--ink-500); }
.section__sub--on-dark { color: rgba(255,255,255,.75); }

/* ---------- STATS (preserved + restyled) ---------- */
.stats {
  padding: 64px 28px;
  background: #fff;
  border-bottom: 1px solid var(--ink-100);
}
.stats__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.stat__icon svg { width: 24px; height: 24px; }
.stat__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.stat__value { font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; line-height: 1.1; }
.stat__desc { font-size: 13px; color: var(--ink-500); line-height: 1.4; }
@media (max-width: 900px) { .stats__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats__inner { grid-template-columns: 1fr; } }

/* ---------- SERVICES ---------- */
.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services { grid-template-columns: 1fr; } }
.service {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px 24px 32px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service__art {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.service__art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 900px) {
  .service__art { height: 220px; padding: 18px; }
}
@media (max-width: 540px) {
  .service__art { height: 200px; padding: 16px; }
}
.service__title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.service__desc {
  font-size: 15px;
  color: var(--ink-500);
  position: relative;
  z-index: 1;
}

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border-radius: var(--r-lg); padding: 36px 32px;
  border: 1px solid var(--ink-100);
}
.step__num {
  display: inline-block; font-size: 14px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--purple); margin-bottom: 20px;
  padding: 6px 12px; border-radius: 999px; background: var(--purple-50);
}
.step__title { font-size: 24px; margin-bottom: 10px; color: var(--ink); }
.step__desc { font-size: 16px; color: var(--ink-500); }

/* ---------- APP SHOWCASE ---------- */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 60px; } }
.showcase__copy .kicker { margin-bottom: 16px; }
.showcase__copy .section__title { font-size: clamp(32px, 3.6vw, 46px); text-align: left; }
.showcase__copy .section__sub { margin: 16px 0 32px; }
.featlist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.featlist li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink-700); font-weight: 500; }
.featlist__check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.showcase__phones {
  position: relative; height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.phone--lift { position: absolute; }
.phone--back {
  width: 250px; height: 520px;
  transform: rotate(-6deg) translateX(-80px);
  z-index: 1;
}
.phone--front {
  width: 260px; height: 540px;
  transform: rotate(4deg) translateX(80px);
  z-index: 2;
}
@media (max-width: 900px) {
  .showcase__phones { height: 520px; }
  .phone--back { transform: rotate(-6deg) translateX(-50px); }
  .phone--front { transform: rotate(4deg) translateX(50px); }
}

/* ---------- MODULES ---------- */
.modtabs {
  display: flex; justify-content: center;
  gap: 4px; padding: 4px; border-radius: 999px;
  background: #fff; border: 1px solid var(--ink-100);
  margin: 0 auto 64px; box-shadow: var(--shadow-sm);
  max-width: max-content;
  flex-wrap: wrap;
}
.modtab {
  padding: 12px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; color: var(--ink-500);
  transition: background .15s, color .15s;
}
.modtab:hover { color: var(--ink); }
.modtab.is-on { background: var(--ink); color: #fff; }

.modshow { text-align: center; }
.modshow__title {
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.025em; margin-bottom: 12px;
}
.modshow__desc {
  font-size: 17px; color: var(--ink-500);
  max-width: 560px; margin: 0 auto 56px;
}
.modshow__viewport {
  position: relative;
  margin-bottom: 32px;
}
.modshow__stage {
  position: relative;
  height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.modshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.modshow__nav svg { width: 22px; height: 22px; }
.modshow__nav:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: translateY(-50%) scale(1.06);
  box-shadow: var(--shadow-lg);
}
.modshow__nav:active {
  transform: translateY(-50%) scale(0.98);
}
.modshow__nav--prev { left: 16px; }
.modshow__nav--next { right: 16px; }
@media (max-width: 700px) {
  .modshow__nav { width: 44px; height: 44px; }
  .modshow__nav svg { width: 18px; height: 18px; }
  .modshow__nav--prev { left: 6px; }
  .modshow__nav--next { right: 6px; }
}
.modscreen {
  position: absolute;
  width: 280px; height: 580px;
  border-radius: 36px;
  background: #1a1428;
  padding: 6px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.06) inset,
    0 30px 60px -15px rgba(86, 39, 133, .35),
    0 15px 35px -8px rgba(38, 22, 65, .25);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}
.modscreen img {
  width: 100%; height: 100%;
  border-radius: 36px;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.06);
}
.modscreen.is-focus { cursor: default; }
.moddots {
  display: flex; justify-content: center; gap: 8px;
}
.moddot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-300);
  transition: background .15s, transform .15s, width .2s;
  padding: 0;
}
.moddot.is-on { background: var(--purple); width: 24px; border-radius: 4px; }

@media (max-width: 700px) {
  .modshow__stage { height: 520px; }
  .modscreen { width: 240px; height: 500px; }
}

/* ---------- VALUES ---------- */
.values {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
}
.values img { width: 100%; height: auto; display: block; }

/* ---------- DIASPORA ---------- */
.diaspora {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .diaspora { grid-template-columns: 1fr; gap: 40px; } }
.diaspora__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.diaspora__media img { width: 100%; height: 460px; object-fit: cover; }
.bullets { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.bullets li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: rgba(255,255,255,.85); }
.bullets svg { color: var(--yellow); flex-shrink: 0; }
.section--dark .section__title { color: #fff; }
.section--dark .section__sub { color: rgba(255,255,255,.75); }

/* ---------- PAYMENTS ---------- */
.pay {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 900px) { .pay { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pay { grid-template-columns: 1fr 1fr; gap: 12px; } }
.pay__card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--r-md);
  padding: 24px 16px; text-align: center;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.pay__card:hover { border-color: var(--purple); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pay__logo {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pay__logo img {
  height: 64px;
  width: 64px;
  max-width: 100%;
  object-fit: contain;
}
/* Le PNG cash a beaucoup d'espace transparent intégré : on scale-up pour matcher visuellement les autres logos */
.pay__logo img[src*="pay-cash"] {
  transform: scale(1.35);
}
.pay__name { font-size: 14px; font-weight: 600; color: var(--ink-700); }

/* ---------- PARTNER ---------- */
.partner {
  background: #fff; border-radius: var(--r-lg); padding: 56px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  border: 1px solid var(--ink-100);
  text-align: center;
}
.partner__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.partner__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: var(--ink-700);
}
.partner__bullets svg { color: var(--purple); }
.partner__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- CONTACT (NEW FORM) ---------- */
.contact { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%); padding: 110px 28px; color: #fff; }
.contact__inner { max-width: 1240px; margin: 0 auto; }
.contact__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.contact__head .section__title { color: #fff; }
.contact__head .section__sub { color: rgba(255,255,255,.78); }
.contact__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: stretch;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  color: var(--ink);
}
@media (max-width: 540px) { .contact-card { padding: 28px 22px; } }

.contact-tabs {
  display: flex; gap: 4px; padding: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  margin-bottom: 32px;
}
.contact-tab {
  flex: 1; padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  color: var(--ink-500);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.contact-tab:hover:not(.is-on) { color: var(--ink); }
.contact-tab.is-on { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.contact-tab svg { width: 18px; height: 18px; }

.contact-form { display: none; }
.contact-form.is-show { display: block; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(86, 39, 133, .08);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.contact-submit {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 15px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.contact-submit:hover:not(:disabled) { background: var(--purple); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.contact-submit:disabled { opacity: .6; cursor: not-allowed; }
.contact-submit svg { width: 18px; height: 18px; }

.contact-side {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-side__title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.contact-side__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(245, 189, 32, .14);
  border: 1px solid rgba(245, 189, 32, .35);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  align-self: flex-start;
}
.contact-side__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.contact-side__list { display: flex; flex-direction: column; gap: 14px; }
.contact-side__item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  color: #fff;
  transition: background .15s, transform .15s;
}
.contact-side__item:hover { background: rgba(255,255,255,.12); transform: translateX(2px); }
.contact-side__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-side__icon svg { width: 18px; height: 18px; }
.contact-side__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.contact-side__value { font-size: 14.5px; font-weight: 600; color: #fff; word-break: break-word; }

/* ---------- DOWNLOAD ---------- */
.download {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 800px) { .download { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
.download__btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 800px) { .download__btns { justify-content: center; } }
@media (max-width: 480px) { .download__btns { flex-direction: column; align-items: stretch; } }
.download__qr { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.qr {
  width: 200px; height: 200px;
  background: #fff; border-radius: 22px; padding: 14px;
  box-shadow: var(--shadow-xl);
}
.qr img { width: 100%; height: 100%; object-fit: contain; }
.qr__label { font-size: 14px; color: rgba(255,255,255,.8); }
.download__hint {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 8px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 13px; color: rgba(255,255,255,.85);
}
.download__hint .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .25);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ---------- FOOTER ---------- */
.footer { background: #fff; border-top: 1px solid var(--ink-100); padding: 64px 28px 32px; }
.footer__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 48px;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }
.footer__brand p { color: var(--ink-500); font-size: 14px; max-width: 260px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.02em; }
.footer__logo img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(38, 22, 65, .12));
}
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { padding: 0; margin: 0; }
.footer__col a, .footer__col span {
  display: block;
  padding: 6px 0; font-size: 14px; color: var(--ink-500);
  transition: color .15s;
  text-decoration: none;
  cursor: pointer;
}
.footer__col a:hover { color: var(--purple); }
.footer__note { font-size: 13px; color: var(--ink-700); font-weight: 600; margin: 12px 0 8px; line-height: 1.4; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple-50); color: var(--purple);
  display: grid; place-items: center;
  transition: background .15s, color .15s, transform .15s;
}
.footer__social a:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bot {
  max-width: 1240px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-500);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  /* Aligné horizontalement sur le centre de la bulle chat (chat: right:24px, w:64px → centre à right:56px ; bouton: w:48px → right:56-24 = 32px) */
  right: 32px;
  bottom: 120px;
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ink-100);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(38, 22, 65, .15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(86, 39, 133, .35);
}
.back-to-top:active { transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 540px) {
  /* Bulle chat: right:24px w:64px → centre à right:56px ; bouton w:44px → right:56-22 = 34px */
  .back-to-top { right: 34px; bottom: 112px; width: 44px; height: 44px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* ---------- CHATBOT ----------
   Le widget existant (chat.css) utilise --chat-primary-color, qui a été
   ré-aligné sur --purple côté chat.css. On harmonise ici juste l'ombre
   (la valeur d'origine était neutre et ne reflétait plus la nouvelle palette). */
#chat-widget-container .chat-widget-button,
#chat-widget-container #chat-open-button {
  box-shadow: 0 10px 30px rgba(86, 39, 133, .4);
}

/* ---------- ANIMATIONS / REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scrollprog { transition: none !important; }
}

/* ---------- FOCUS STATES ---------- */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- TIGHTER MOBILE RHYTHM ---------- */
@media (max-width: 700px) {
  .section { padding: 70px 18px; }
  .contact { padding: 70px 18px; }
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: clamp(28px, 7vw, 38px); }
  .section__sub { font-size: 16px; }
  .hero { padding: 100px 18px 50px; }
  .hero__title { font-size: clamp(40px, 11vw, 64px); }
  .hero__sub { font-size: 16px; }
  .modshow__title { font-size: clamp(22px, 5.5vw, 30px); }
  .modshow__desc { font-size: 15px; }
  .nav__inner { padding: 0 16px; }
  .footer { padding: 48px 20px 24px; }
  .partner { padding: 36px 22px; }
  .stats { padding: 40px 18px; }
  .stat__value { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__cta .btn--lg { width: 100%; justify-content: center; }
  .hero__stores { gap: 12px; }
  .download__btns .btn--store { justify-content: flex-start; width: 100%; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .nav__links { gap: 0; }
  .section__inner, .footer__inner, .nav__inner { padding-left: 32px; padding-right: 32px; }
}
