/* ==========================================================================
   AfrikMoms — Landing page premium
   Design system aligné sur l'app réelle (frontend/src/theme.ts + composants) :
   rose bois #A8456A, or #F2C36B, crème #FCF5F1, radius 16/14/20, ombres teintées.
   ========================================================================== */

:root {
  --bg: #FCF5F1;
  --surface: #FFFFFF;
  --border: #F0E3DC;
  --text: #3A2A2F;
  --subtle: #6E5A61;
  --muted: #B8A49E;

  --rose: #A8456A;
  --rose-rgb: 168, 69, 106;
  --rose-deep: #8A3556;
  --rose-deep-rgb: 138, 53, 86;

  --gold: #F2C36B;
  --gold-light: #F7D98A;
  --gold-deep: #DDA94E;
  --on-gold: #2B1206;

  --tint: #FBEEF3;
  --skeleton: #F3E8E2;

  --night0: #2B1320;
  --night1: #3E1B2F;
  --night2: #5C2A45;

  --r-card: 16px;
  --r-btn: 14px;
  --r-pill: 20px;
  --r-icon: 13px;

  --shadow-rose: 0 10px 24px -6px rgba(var(--rose-rgb), 0.32);
  --shadow-rose-lg: 0 20px 44px -12px rgba(var(--rose-rgb), 0.38);
  --shadow-gold: 0 12px 26px -6px rgba(242, 195, 107, 0.5);
  --shadow-soft: 0 2px 10px rgba(58, 42, 47, 0.06);

  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, .brand-font { font-family: 'Fredoka', 'Poppins', sans-serif; }
a { text-decoration: none; color: inherit; }
svg { display: block; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

::selection { background: rgba(var(--rose-rgb), 0.22); color: var(--rose-deep); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 40px; }

/* ─── Scroll progress bar ────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0); transform-origin: left; z-index: 1000;
  will-change: transform;
}

/* ─── Cursor glow (desktop, fine pointer only) ───────────────────────── */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(var(--rose-rgb), 0.10) 0%, rgba(242,195,107,0.06) 45%, transparent 72%);
  transform: translate(-50%, -50%);
  will-change: transform; opacity: 0; transition: opacity .4s var(--ease);
}
.cursor-glow.active { opacity: 1; }

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(240, 227, 220, 0.7);
  position: sticky; top: 0; z-index: 100;
  transition: padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled { padding: 12px 40px; box-shadow: 0 8px 30px -12px rgba(58,42,47,0.12); }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 48px; height: 48px; border-radius: 13px; transition: transform .35s var(--ease); }
.nav.scrolled .logo img { transform: scale(0.9); }
.logo-name { font-size: 20px; font-weight: 600; color: var(--rose); letter-spacing: -0.2px; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 14px; color: var(--subtle); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-soft);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 50px; padding: 13px 26px; font-size: 14px; font-weight: 500;
  cursor: pointer; border: none; font-family: inherit; position: relative;
  overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease-soft), box-shadow .35s var(--ease-soft), background .25s;
  will-change: transform;
}
.btn:active { transform: scale(0.96); }
.btn-sm { padding: 10px 22px; font-size: 13.5px; }

.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-rose); }
.btn-primary:hover { box-shadow: var(--shadow-rose-lg); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-soft);
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-ghost { background: transparent; color: var(--rose); border: 1.5px solid rgba(var(--rose-rgb), 0.45); }
.btn-ghost:hover { background: var(--tint); border-color: var(--rose); }

.btn-magnetic { will-change: transform; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero-shell { position: relative; overflow: hidden; }

.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: 0.55; animation: blobFloat 20s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(var(--rose-rgb),0.30), transparent 70%); top: -140px; right: -100px; animation-duration: 24s; }
.blob-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(242,195,107,0.35), transparent 70%); bottom: -120px; left: -80px; animation-duration: 19s; animation-delay: -6s; }
.blob-3 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(var(--rose-deep-rgb),0.22), transparent 70%); top: 30%; left: 38%; animation-duration: 27s; animation-delay: -12s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -24px) scale(1.08); }
  66% { transform: translate(-22px, 20px) scale(0.95); }
}

.hearts-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.heart-particle {
  position: absolute; bottom: -40px; opacity: 0;
  animation: heartRise linear infinite;
}
@keyframes heartRise {
  0% { transform: translate(0, 0) rotate(-6deg) scale(0.7); opacity: 0; }
  10% { opacity: 0.55; }
  85% { opacity: 0.35; }
  100% { transform: translate(var(--drift, 26px), -620px) rotate(8deg) scale(1); opacity: 0; }
}

.hero {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  grid-template-areas: "top phone" "bottom phone";
  gap: 8px 48px;
  padding: 84px 40px 72px; max-width: 1120px; margin: 0 auto;
}
.hero-text-top { grid-area: top; }
.hero-text-bottom { grid-area: bottom; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--tint); color: var(--rose-deep); font-size: 12.5px; font-weight: 500;
  padding: 7px 18px 7px 14px; border-radius: 50px; margin-bottom: 22px;
  box-shadow: 0 0 0 0 rgba(var(--rose-rgb), 0.35);
  animation: pillPulse 2.6s ease-in-out infinite;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--rose-rgb), 0.28); }
  50% { box-shadow: 0 0 0 6px rgba(var(--rose-rgb), 0); }
}

.hero h1 { font-size: 44px; font-weight: 600; line-height: 1.18; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--rose), var(--rose-deep) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 16px; line-height: 1.75; color: var(--subtle); margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid var(--bg);
  margin-left: -10px; box-shadow: var(--shadow-soft);
}
.proof-avatars span:first-child { margin-left: 0; }
.hero-proof small { font-size: 12.5px; color: var(--subtle); }
.hero-proof strong { color: var(--rose-deep); }

.hero-trust {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; color: var(--subtle);
}
.hero-trust svg { stroke: var(--rose-deep); flex-shrink: 0; }

/* ─── PHONE MOCK ──────────────────────────────────────────────────────── */
.phone-scene {
  display: flex; justify-content: center; position: relative;
  perspective: 1300px;
}
.phone {
  width: 288px; background: linear-gradient(160deg, #2c1c22, var(--text));
  border-radius: 42px; padding: 12px; position: relative; z-index: 2;
  box-shadow: 0 40px 70px -20px rgba(58,42,47,0.42), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform .1s var(--ease-soft);
  transform-style: preserve-3d; will-change: transform;
}
.phone::before {
  content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 20px; background: #17100f; border-radius: 20px; z-index: 3;
}
.screen { background: var(--bg); border-radius: 30px; overflow: hidden; position: relative; }
.screen-shot { width: 100%; display: block; }
.fbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 14px; background: var(--surface); border-bottom: 1px solid var(--border); }
.fbar-l { display: flex; align-items: center; gap: 8px; }
.flogo { width: 20px; height: 20px; }
.flogo img { width: 100%; height: 100%; }
.ftitle { font-size: 13.5px; font-weight: 500; color: var(--text); }
.fchips { display: flex; gap: 7px; padding: 12px 16px 6px; }
.fchip { padding: 6px 13px; border-radius: 50px; font-size: 10.5px; font-weight: 500; white-space: nowrap; transition: all .3s; }
.fchip-on { background: var(--rose); color: #fff; box-shadow: 0 6px 14px -4px rgba(var(--rose-rgb),0.5); }
.fchip-off { background: var(--surface); color: var(--subtle); border: 1px solid var(--border); }
.fpost { background: var(--surface); margin: 8px 12px; border-radius: var(--r-card); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-soft); }
.ph { display: flex; align-items: center; gap: 8px; padding: 10px 12px 8px; }
.pav { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.pnm { font-size: 11px; font-weight: 600; color: var(--text); }
.pmeta { font-size: 9px; color: var(--muted); }
.ptopic { display: inline-block; margin-top: 2px; background: var(--tint); color: var(--rose-deep); font-size: 8.5px; font-weight: 500; padding: 2px 8px; border-radius: 10px; }
.pimg { width: 100%; height: 70px; background: var(--skeleton); }
.pbody { padding: 8px 12px; font-size: 10.5px; color: var(--text); line-height: 1.55; }
.pfoot { display: flex; gap: 14px; padding: 8px 12px; border-top: 1px solid var(--border); font-size: 10px; color: var(--rose-deep); }
.pfoot span { display: inline-flex; align-items: center; gap: 4px; }
.pfoot .heart-ico { animation: heartBeat 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.28); }
  30% { transform: scale(1); }
}
.tabbar { display: flex; align-items: center; justify-content: space-around; padding: 13px 0; background: var(--surface); border-top: 1px solid var(--border); }
.tab-add { width: 30px; height: 30px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-rose); }

.float-card {
  position: absolute; z-index: 3; background: var(--surface); border-radius: var(--r-card);
  box-shadow: 0 18px 34px -10px rgba(58,42,47,0.22); padding: 10px 14px;
  display: flex; align-items: center; gap: 9px; opacity: 0;
  animation: floatIn .7s var(--ease-soft) forwards, floatBob 5s ease-in-out infinite;
}
.float-badge { top: 8%; left: -13%; animation-delay: 1.1s, 1.8s; }
.float-points { bottom: 14%; right: -11%; animation-delay: 1.5s, 2.2s; }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.float-badge .ico { width: 30px; height: 30px; border-radius: 10px; background: var(--rose); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-badge .lbl { font-size: 11px; font-weight: 600; color: var(--text); }
.float-badge .sub { font-size: 9.5px; color: var(--muted); }

.float-points { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); box-shadow: var(--shadow-gold); }
.float-points .lbl { font-size: 12.5px; font-weight: 700; color: var(--on-gold); }

/* ─── SECTIONS / REVEAL ──────────────────────────────────────────────── */
.section { padding: 72px 40px; max-width: 1120px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 28px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px; }
.section-head p { font-size: 14.5px; color: var(--subtle); }
.white-panel { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ─── FEATURES ────────────────────────────────────────────────────────── */
.fgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.fcard { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: var(--r-card); transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background .4s; }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); background: var(--bg); }
.fico { width: 46px; height: 46px; border-radius: var(--r-icon); background: var(--tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .45s var(--ease-soft), background .3s; }
.fico svg { stroke: var(--rose-deep); }
.fcard:hover .fico { transform: scale(1.1) rotate(-6deg); background: var(--rose); }
.fcard:hover .fico svg { stroke: #fff; }
.ft { font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.fd { font-size: 13px; color: var(--subtle); line-height: 1.65; }
.fd strong { color: var(--rose-deep); font-weight: 600; }

.trust-chip {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
  background: var(--tint); color: var(--rose-deep); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
}

.ai-demo { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; max-width: 300px; }
.ai-bubble { font-size: 11.5px; line-height: 1.5; padding: 9px 13px; border-radius: 14px; }
.ai-user { align-self: flex-end; background: var(--rose); color: #fff; border-bottom-right-radius: 4px; }
.ai-bot {
  align-self: flex-start; background: var(--surface); border: 1px solid var(--border);
  border-bottom-left-radius: 4px; display: flex; align-items: flex-start; gap: 7px; color: var(--text);
}
.ai-avatar {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center; font-size: 9px;
}

/* ─── STEPS ───────────────────────────────────────────────────────────── */
.steps-wrap { position: relative; max-width: 680px; margin: 0 auto; }
.steps-line { position: absolute; top: 22px; left: 0; width: 100%; height: 2px; z-index: 0; }
.steps-line svg { width: 100%; height: 2px; overflow: visible; }
.steps-line path { stroke: var(--border); stroke-width: 2; fill: none; }
.steps-line .fill { stroke: var(--rose); stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.4s var(--ease); }
.steps-line.drawn .fill { stroke-dashoffset: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Fredoka';
  font-size: 16px; color: var(--rose-deep); font-weight: 600; transition: all .4s var(--ease-soft);
}
.step.in .step-num { background: var(--rose); border-color: var(--rose); color: #fff; box-shadow: var(--shadow-rose); }
.step-t { font-family: 'Fredoka'; font-size: 16px; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.step-d { font-size: 12.5px; color: var(--subtle); line-height: 1.6; }

/* ─── STAGES (parcours) ───────────────────────────────────────────────── */
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stage-card {
  background: var(--bg); border-radius: var(--r-card); padding: 20px;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
  transform-style: preserve-3d; will-change: transform;
}
.stage-card:hover { box-shadow: 0 18px 30px -12px rgba(58,42,47,0.16); }
.stage-ico { width: 38px; height: 38px; border-radius: var(--r-icon); background: var(--surface); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: var(--shadow-soft); transition: transform .4s var(--ease-soft); }
.stage-card:hover .stage-ico { transform: scale(1.12) translateZ(20px); }
.stage-ico svg { stroke: var(--rose-deep); }
.stage-t { font-family: 'Fredoka'; font-size: 14.5px; font-weight: 500; margin-bottom: 4px; }
.stage-d { font-size: 11.5px; color: var(--subtle); margin-bottom: 12px; }
.stage-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.schip { background: var(--surface); border: 1px solid var(--border); border-radius: 50px; padding: 4px 10px; font-size: 10px; color: var(--subtle); }

/* ─── GROUPES (accordéon) ─────────────────────────────────────────────── */
.gcats { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.gcat { border-bottom: 1px solid var(--border); }
.gcat:first-child { border-top: 1px solid var(--border); }
.gcat-head {
  display: flex; align-items: center; gap: 10px; width: 100%; padding: 18px 4px;
  background: none; border: none; cursor: pointer; text-align: left; font: inherit; color: inherit;
}
.gcat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.gcat-name { font-family: 'Fredoka'; font-size: 14.5px; font-weight: 500; flex: 1; transition: color .25s; }
.gcat-head:hover .gcat-name { color: var(--rose-deep); }
.gcat-chevron { flex-shrink: 0; stroke: var(--muted); transition: transform .4s var(--ease-soft); }
.gcat.open .gcat-chevron { transform: rotate(180deg); stroke: var(--rose); }
.gcat-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.gcat.open .gcat-body { grid-template-rows: 1fr; }
.gcat-body-inner { overflow: hidden; }
.gcat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 4px 22px; }
.gchip {
  font-size: 11.5px; padding: 7px 15px; border-radius: 50px; border: 1px solid;
  background: var(--surface); color: var(--text); white-space: nowrap; cursor: default;
  transition: transform .25s var(--ease-soft), background .25s, color .25s;
}
.gchip:hover { transform: translateY(-3px); color: #fff; border-color: transparent !important; }

/* ─── TESTIMONIALS (marquee) ──────────────────────────────────────────── */
.tmarquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ttrack { display: flex; gap: 18px; width: max-content; animation: scrollX 34s linear infinite; }
.tmarquee:hover .ttrack { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tcard {
  background: var(--bg); border-radius: var(--r-card); padding: 24px; width: 320px; flex-shrink: 0;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.tquote { color: var(--rose); opacity: 0.5; margin-bottom: 10px; }
.tq { font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; }
.tby { display: flex; align-items: center; gap: 10px; }
.tav { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; }
.tnm { font-size: 12px; color: var(--rose-deep); font-weight: 500; }

/* ─── CTA (nuit) ──────────────────────────────────────────────────────── */
.cta {
  position: relative; text-align: center; padding: 90px 40px; overflow: hidden;
  background: linear-gradient(135deg, var(--night0), var(--night1) 55%, var(--night2));
  color: #fff;
}
.cta::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(180deg, transparent, rgba(245,196,81,0.12));
  pointer-events: none;
}
.cta-stars { position: absolute; inset: 0; }
.star { position: absolute; width: 3px; height: 3px; background: #F7D98A; border-radius: 50%; animation: twinkle 3.2s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.6); } }
.cta-content { position: relative; z-index: 2; }
.cta h2 { font-size: 30px; font-weight: 600; margin-bottom: 12px; }
.cta p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 10px; border-radius: 14px; padding: 13px 24px;
  font-size: 14px; font-weight: 600; color: var(--on-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: var(--shadow-gold);
  transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.store:hover { transform: translateY(-4px); box-shadow: 0 18px 32px -6px rgba(242,195,107,0.6); }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer { display: flex; align-items: center; justify-content: space-between; padding: 26px 40px; background: var(--surface); border-top: 1px solid var(--border); font-size: 12.5px; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand img { width: 24px; height: 24px; border-radius: 7px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { transition: color .25s; }
.footer-links a:hover { color: var(--rose-deep); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-areas: "top" "phone" "bottom"; padding: 44px 20px 48px; gap: 28px; }
  .hero h1 { font-size: 32px; }
  .float-badge, .float-points { display: none; }
  .fgrid { grid-template-columns: 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps-line { display: none; }
  .stage-grid { grid-template-columns: 1fr 1fr; }
  .tcard { width: 82vw; }
  .section, .wrap { padding-left: 20px; padding-right: 20px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .heart-particle, .hero-pill, .pfoot .heart-ico, .float-card, .star, .ttrack {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cursor-glow { display: none; }
}
