/* ============================================================
   MIRRIM for Brands — B2B Landing Page
   Conversion-focused page for brand partnerships
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: #fff; color: #0A0A0A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font-family: inherit; border: 0; }

/* ── Layout ── */
.fb-w { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.fb-s { padding: clamp(64px, 8vw, 100px) 0; position: relative; }
.fb-s--g { background: #F7F7F8; }
.fb-s--p {
  background: radial-gradient(120% 80% at 50% 0%, #A78BFA, #7C3AED 35%, #5B21B6);
  color: #fff;
}
.fb-center { text-align: center; }

/* ── Typography ── */
.fb-ey {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 12px/1 "Manrope", sans-serif;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #7C3AED; margin-bottom: 16px;
}
.fb-ey::before {
  content: ""; width: 20px; height: 3px; border-radius: 3px; background: #C6F432;
}
.fb-s--p .fb-ey { color: #C6F432; }
.fb-s--p .fb-ey::before { background: rgba(255,255,255,.5); }

.fb-h1 {
  font: 800 clamp(36px, 4.5vw, 56px)/1.06 "Manrope", sans-serif;
  letter-spacing: -0.03em; text-wrap: balance;
}
.fb-h2 {
  font: 800 clamp(28px, 3.5vw, 42px)/1.1 "Manrope", sans-serif;
  letter-spacing: -0.02em; text-wrap: balance;
}
.fb-h3 { font: 700 clamp(18px, 2vw, 24px)/1.2 "Manrope", sans-serif; }
.fb-h4 { font: 700 17px/1.3 "Manrope", sans-serif; }
.fb-bd {
  font: 500 clamp(15px, 1.1vw, 17px)/1.55 "Manrope", sans-serif;
  color: #6B6B6B;
}
.fb-bd--w { color: rgba(255,255,255,.72); }
.fb-sub {
  font: 500 15px/1.5 "Manrope", sans-serif;
  color: #9A9A9A; text-align: center; max-width: 600px; margin: 12px auto 0;
}

/* ── Buttons ── */
.fb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 32px; border-radius: 999px; cursor: pointer;
  font: 700 16px/1 "Manrope", sans-serif; letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s;
  white-space: nowrap; border: none;
}
.fb-btn:active { transform: scale(.97); }
.fb-btn--l {
  background: #C6F432; color: #0A0A0A;
  box-shadow: 0 10px 24px -8px rgba(168,217,32,.55);
}
.fb-btn--l:hover {
  filter: brightness(1.04);
  box-shadow: 0 14px 30px -8px rgba(168,217,32,.7);
  transform: scale(1.03);
}
.fb-btn--o {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.fb-btn--o:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.fb-btn--od {
  background: transparent; color: #7C3AED;
  border: 1.5px solid #C9B8FF;
}
.fb-btn--od:hover { background: #F4F0FF; border-color: #7C3AED; }
.fb-btn--p {
  background: #7C3AED; color: #fff;
  box-shadow: 0 10px 24px -8px rgba(124,58,237,.45);
}
.fb-btn--p:hover { background: #6D28D9; transform: scale(1.03); }
.fb-btn--sm { height: 46px; padding: 0 24px; font-size: 14px; }
.fb-btn--blk { width: 100%; }

@keyframes fb-glow {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(168,217,32,.55); }
  50% { box-shadow: 0 10px 34px -4px rgba(168,217,32,.8); }
}
.fb-btn--pulse { animation: fb-glow 2.5s ease-in-out infinite; }
.fb-btn--pulse:hover { animation: none; }

/* ── Header ── */
.fb-hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px;
  display: flex; align-items: center;
  background: rgba(91,33,182,.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: background .3s, box-shadow .3s;
}
.fb-hd.scrolled {
  background: rgba(46,16,101,.95);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.fb-hd-in {
  max-width: 1120px; width: 100%; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; gap: 28px;
}
.fb-logo {
  display: flex; align-items: center; gap: 10px;
  font: 800 20px/1 "Manrope", sans-serif; color: #fff; flex-shrink: 0;
}
.fb-logo-m {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #9B7DF7, #6B45D6);
  font: 800 18px/1 "Manrope", sans-serif; color: #fff;
}
.fb-logo .sfx { color: #C6F432; font-weight: 600; font-size: 16px; }
.fb-nav { display: flex; gap: 24px; margin-left: 16px; }
.fb-nav a {
  font: 600 14px/1 "Manrope", sans-serif;
  color: rgba(255,255,255,.75); transition: color .15s;
}
.fb-nav a:hover { color: #fff; }
.fb-hd-cta { margin-left: auto; flex-shrink: 0; }

/* ── HERO ── */
.fb-hero {
  padding-top: 72px;
  background: radial-gradient(120% 80% at 50% 0%, #A78BFA, #7C3AED 35%, #5B21B6);
  color: #fff; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
}
.fb-hero-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
}
.fb-hero-t { max-width: 520px; }
.fb-hero-t .fb-h1 { margin: 0 0 20px; }
.fb-hero-t .fb-bd { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 17px; }
.fb-hero-a { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.fb-hero-st { display: flex; gap: 28px; flex-wrap: wrap; }
.fb-sv { font: 800 30px/1 "Manrope", sans-serif; color: #C6F432; }
.fb-sl { font: 500 13px/1.3 "Manrope", sans-serif; color: rgba(255,255,255,.6); max-width: 110px; margin-top: 4px; }

/* Phone mockup */
.fb-ph-w { display: flex; justify-content: center; perspective: 1200px; }
.fb-ph {
  width: 280px; border-radius: 36px; overflow: hidden;
  border: 5px solid #1a1a2e; background: #E2231A;
  box-shadow: 0 40px 80px -20px rgba(10,4,40,.5), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotateY(-8deg) rotateX(3deg);
  position: relative;
}
@keyframes fb-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(3deg) translateY(-14px); }
}
.fb-ph { animation: fb-float 4s ease-in-out infinite; }
.fb-ph-n {
  width: 90px; height: 22px; background: #1a1a2e;
  border-radius: 0 0 14px 14px; margin: 0 auto; position: relative; z-index: 2;
}
.fb-ph-s { padding: 8px 14px 20px; display: flex; flex-direction: column; min-height: 460px; }
.fb-ph-br {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; margin: 8px auto 10px;
  font: 800 16px/1 "Manrope", sans-serif; color: #fff;
}
.fb-ph-tt { font: 800 18px/1.15 "Manrope", sans-serif; color: #fff; text-align: center; margin-bottom: 14px; }
.fb-ph-q { font: 600 13px/1.4 "Manrope", sans-serif; color: rgba(255,255,255,.85); text-align: center; margin-bottom: 12px; }
.fb-ph-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.fb-ph-opt {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 11px 14px;
  font: 600 12px/1.3 "Manrope", sans-serif; color: #fff;
}
.fb-ph-opt.act { background: #FFD400; color: #1A1A1A; border-color: #FFD400; }
.fb-ph-pg { height: 4px; background: rgba(255,255,255,.2); border-radius: 4px; margin-bottom: 14px; }
.fb-ph-pg i { display: block; height: 100%; width: 60%; background: #FFD400; border-radius: 4px; }
.fb-ph-cta {
  width: 100%; height: 44px; border-radius: 999px;
  background: #FFD400; color: #1A1A1A;
  font: 700 14px/1 "Manrope", sans-serif;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.fb-ph-at { font: 500 10px/1 "Manrope", sans-serif; color: rgba(255,255,255,.4); text-align: center; margin-top: 10px; }

/* ── CONTRAST ── */
.fb-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.fb-vs-c {
  border-radius: 20px; padding: 36px 32px; position: relative; overflow: hidden;
}
.fb-vs-c--old { background: #F2F2F4; border: 1.5px solid #E5E5E5; }
.fb-vs-c--new {
  background: linear-gradient(160deg, #F4F0FF, #E7DEFF);
  border: 1.5px solid #C9B8FF;
}
.fb-vs-c .tag {
  font: 700 12px/1 "Manrope", sans-serif;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.fb-vs-c--old .tag { color: #9A9A9A; }
.fb-vs-c--new .tag { color: #7C3AED; }
.fb-vs-c .fb-h3 { margin-bottom: 14px; }
.fb-vs-ls { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fb-vs-ls li {
  display: flex; align-items: flex-start; gap: 11px;
  font: 500 15px/1.45 "Manrope", sans-serif; color: #6B6B6B;
}
.fb-vs-ls .ic {
  width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  font: 700 13px/1 "Manrope", sans-serif;
}
.fb-vs-c--old .ic { background: #E5E5E5; color: #9A9A9A; }
.fb-vs-c--new .ic { background: #C6F432; color: #0A0A0A; }
.fb-vs-c--new li { color: #2A2A2A; }

/* ── FORMATS ── */
.fb-fg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.fb-fc {
  background: #fff; border: 1.5px solid #E5E5E5; border-radius: 20px;
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.fb-fc:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -16px rgba(20,10,60,.15);
  border-color: #A78BFA;
}
.fb-fi {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 16px;
  font: 800 22px/1 "Manrope", sans-serif;
}
.fb-fc .fb-h4 { margin-bottom: 8px; }
.fb-fc .fb-bd { font-size: 14px; margin-bottom: 14px; }
.fb-fmt-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11px/1 "Manrope", sans-serif;
  letter-spacing: .8px; text-transform: uppercase;
  color: #7C3AED; background: #F4F0FF;
  padding: 6px 12px; border-radius: 999px;
}

/* ── RESULTS ── */
.fb-rg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.fb-rc {
  background: #fff; border: 1.5px solid #E5E5E5; border-radius: 20px;
  padding: 28px 24px; text-align: center;
}
.fb-rv {
  font: 800 42px/1 "Manrope", sans-serif;
  letter-spacing: -0.02em; color: #7C3AED; margin-bottom: 8px;
}
.fb-rl { font: 600 15px/1.3 "Manrope", sans-serif; color: #0A0A0A; margin-bottom: 6px; }
.fb-rs { font: 500 12px/1.3 "Manrope", sans-serif; color: #9A9A9A; }
.fb-rb { height: 6px; background: #F2F2F4; border-radius: 6px; margin-top: 14px; overflow: hidden; }
.fb-rb i { display: block; height: 100%; border-radius: 6px; background: #7C3AED; width: 0; transition: width 1.2s ease-out; }
.visible .fb-rb i { width: var(--bw); }
.fb-rf {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  border-radius: 20px; padding: 32px; color: #fff;
  display: flex; align-items: center; gap: 28px;
}
.fb-rf .fb-rv { color: #C6F432; font-size: 52px; }
.fb-rf .fb-rl { color: #fff; font-size: 18px; }
.fb-rf .fb-rs { color: rgba(255,255,255,.6); }

/* ── PROOF / FUNNEL ── */
.fb-fnl {
  background: #fff; border: 1.5px solid #E5E5E5; border-radius: 24px;
  padding: 36px 32px; margin-top: 40px;
}
.fb-fnl-h { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.fb-fnl-h h3 { font: 700 20px/1.1 "Manrope", sans-serif; margin: 0; }
.fb-fnl-rows { display: flex; flex-direction: column; gap: 10px; }
.fb-fnl-r { display: flex; align-items: center; gap: 16px; }
.fb-fnl-lb { font: 500 14px/1 "Manrope", sans-serif; color: #6B6B6B; min-width: 120px; text-align: right; }
.fb-fnl-b {
  height: 46px; border-radius: 12px;
  display: flex; align-items: center; padding: 0 18px;
  font: 700 15px/1 "Manrope", sans-serif; color: #fff;
  width: 0; transition: width 1s ease-out;
}
.fb-fnl-rows.visible .fb-fnl-b { width: var(--fw); }
.fb-fnl-desc {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid #E5E5E5;
  font: 500 14px/1.5 "Manrope", sans-serif; color: #6B6B6B;
}

/* ── CASE ── */
.fb-cas-g { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-top: 40px; }
.fb-cas-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.fb-cas-s { background: #F4F0FF; border-radius: 14px; padding: 18px; }
.fb-cas-s .v { font: 800 24px/1 "Manrope", sans-serif; color: #7C3AED; }
.fb-cas-s .l { font: 500 13px/1.3 "Manrope", sans-serif; color: #6B6B6B; margin-top: 4px; }
.fb-cas-d {
  background: #fff; border: 1.5px solid #E5E5E5; border-radius: 20px;
  overflow: hidden; box-shadow: 0 8px 30px -12px rgba(20,10,60,.12);
}
.fb-cas-dh {
  background: #F7F7F8; padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #E5E5E5;
  font: 700 14px/1 "Manrope", sans-serif;
}
.fb-cas-dh .dot { width: 8px; height: 8px; border-radius: 50%; background: #5DD33C; }
.fb-cas-db { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.fb-cas-mb {
  height: 32px; border-radius: 8px;
  display: flex; align-items: center; padding: 0 12px;
  font: 700 12px/1 "Manrope", sans-serif; color: #fff;
}
.fb-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 40px;
}
.fb-trust p { font: 600 14px/1 "Manrope", sans-serif; color: #9A9A9A; }
.fb-trust-i {
  width: 90px; height: 40px; border-radius: 10px; background: #F2F2F4;
  display: grid; place-items: center;
  font: 700 13px/1 "Manrope", sans-serif; color: #9A9A9A;
}

/* ── STEPS ── */
.fb-stp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; position: relative; }
.fb-stp::before {
  content: ""; position: absolute; top: 36px; left: 9%; right: 9%;
  height: 3px; background: #E5E5E5; border-radius: 3px;
}
.fb-stp-pg {
  position: absolute; top: 36px; left: 9%; height: 3px;
  background: #7C3AED; border-radius: 3px;
  width: 0; transition: width 1.5s ease-out;
}
.fb-stp.visible .fb-stp-pg { width: 82%; }
.fb-st { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.fb-st-n {
  width: 72px; height: 72px; border-radius: 50%;
  background: #7C3AED; color: #fff;
  display: grid; place-items: center;
  font: 800 28px/1 "Manrope", sans-serif;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px -6px rgba(124,58,237,.4);
}
.fb-st .fb-h4 { margin-bottom: 8px; }
.fb-st .fb-bd { font-size: 13px; max-width: 200px; margin: 0 auto; }

/* ── COMPARISON ── */
.fb-cmp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.fb-cmp-c {
  border: 1.5px solid #E5E5E5; border-radius: 20px; padding: 28px 24px;
  background: #fff;
}
.fb-cmp-c.hl {
  border-color: #7C3AED;
  background: linear-gradient(180deg, #F4F0FF, #fff);
  box-shadow: 0 12px 30px -8px rgba(124,58,237,.2);
  transform: scale(1.02);
}
.fb-cmp-c .tg {
  font: 700 11px/1 "Manrope", sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.fb-cmp-c .fb-h3 { margin-bottom: 14px; }
.fb-cmp-ls { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fb-cmp-ls li {
  display: flex; align-items: flex-start; gap: 10px;
  font: 500 14px/1.45 "Manrope", sans-serif; color: #6B6B6B;
}
.fb-cmp-ls .dt {
  width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0;
  font: 700 12px/1 "Manrope", sans-serif; margin-top: 1px;
}
.fb-cmp-c.hl li { color: #2A2A2A; }

/* ── PRICING ── */
.fb-pr { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.fb-pc {
  border: 1.5px solid #E5E5E5; border-radius: 20px; padding: 28px 22px;
  background: #fff; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.fb-pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(20,10,60,.12);
}
.fb-pc.rec {
  border-color: #C6F432;
  background: linear-gradient(180deg, #FBFFE6, #fff);
  box-shadow: 0 8px 24px -6px rgba(168,217,32,.3);
}
.fb-pc-bg {
  display: none; font: 700 11px/1 "Manrope", sans-serif;
  letter-spacing: .8px; text-transform: uppercase;
  color: #0A0A0A; background: #C6F432;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
  width: fit-content;
}
.fb-pc.rec .fb-pc-bg { display: inline-flex; }
.fb-pc-nm { font: 800 20px/1.2 "Manrope", sans-serif; margin-bottom: 6px; }
.fb-pc-vl { font: 800 26px/1 "Manrope", sans-serif; color: #7C3AED; margin-bottom: 6px; }
.fb-pc-ds { font: 500 13px/1.4 "Manrope", sans-serif; color: #6B6B6B; margin-bottom: 20px; flex: 1; }
.fb-pc .fb-btn { width: 100%; }

/* ── CTA FORM ── */
.fb-cta {
  background: radial-gradient(120% 80% at 50% 0%, #A78BFA, #7C3AED 35%, #5B21B6);
  padding: clamp(64px, 8vw, 100px) 0; color: #fff;
}
.fb-cta-in {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 0 clamp(20px, 4vw, 40px);
}
.fb-cta-in .fb-h2 { margin-bottom: 12px; }
.fb-cta-in .fb-bd { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.fb-fm {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px; padding: 32px 28px; text-align: left;
}
.fb-fm-g { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fb-fm-f { display: flex; flex-direction: column; gap: 6px; }
.fb-fm-f.fu { grid-column: 1 / -1; }
.fb-fm-l {
  font: 600 12px/1 "Manrope", sans-serif;
  color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px;
}
.fb-fm-i {
  height: 48px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); padding: 0 16px;
  font: 500 15px/1 "Manrope", sans-serif; color: #fff;
  transition: border-color .15s;
}
.fb-fm-i::placeholder { color: rgba(255,255,255,.35); }
.fb-fm-i:focus { outline: none; border-color: #C6F432; }
.fb-fm-ta {
  min-height: 80px; padding: 14px 16px; resize: vertical;
  border-radius: 12px; border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  font: 500 15px/1.4 "Manrope", sans-serif; color: #fff;
  transition: border-color .15s;
}
.fb-fm-ta::placeholder { color: rgba(255,255,255,.35); }
.fb-fm-ta:focus { outline: none; border-color: #C6F432; }
.fb-fm-sub { margin-top: 18px; }
.fb-fm-nt {
  font: 500 13px/1.3 "Manrope", sans-serif;
  color: rgba(255,255,255,.5); margin-top: 14px; text-align: center;
}

/* ── FOOTER ── */
.fb-ft { background: #0A0A0A; color: #fff; padding: 48px 0 32px; }
.fb-ft-in {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.fb-ft-logo {
  font: 800 20px/1 "Manrope", sans-serif;
  display: flex; align-items: center; gap: 10px;
}
.fb-ft-logo .sfx { color: #C6F432; font-weight: 600; font-size: 16px; }
.fb-ft-lk { display: flex; gap: 20px; }
.fb-ft-lk a {
  font: 500 14px/1 "Manrope", sans-serif;
  color: rgba(255,255,255,.6); transition: color .15s;
}
.fb-ft-lk a:hover { color: #fff; }
.fb-ft-cp {
  width: 100%; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; margin-top: 20px;
  font: 500 13px/1.4 "Manrope", sans-serif; color: rgba(255,255,255,.35);
}

/* ── Animations ── */
.anim {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.anim.v { opacity: 1; transform: translateY(0); }
.anim-l { opacity: 0; transform: translateX(-32px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.anim-r { opacity: 0; transform: translateX(32px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.anim-l.v, .anim-r.v { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
/* Stagger children */
.stag > * { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.3,1); }
.stag.v > * { opacity: 1; transform: translateY(0); }
.stag.v > *:nth-child(1) { transition-delay: 0s; }
.stag.v > *:nth-child(2) { transition-delay: .08s; }
.stag.v > *:nth-child(3) { transition-delay: .14s; }
.stag.v > *:nth-child(4) { transition-delay: .22s; }
.stag.v > *:nth-child(5) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .anim, .anim-l, .anim-r, .stag > * { opacity: 1; transform: none; transition: none; }
  .fb-ph { animation: none !important; }
  .fb-btn--pulse { animation: none !important; }
  .fb-stp-pg { transition: none; }
  .fb-fnl-b { transition: none; }
  .fb-rb i { transition: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fb-hero-g { grid-template-columns: 1fr; text-align: center; }
  .fb-hero-t { max-width: 100%; margin: 0 auto; }
  .fb-hero-a { justify-content: center; }
  .fb-hero-st { justify-content: center; }
  .fb-ph-w { margin-top: 32px; }
  .fb-fg { grid-template-columns: repeat(2, 1fr); }
  .fb-rg { grid-template-columns: repeat(2, 1fr); }
  .fb-cmp { grid-template-columns: 1fr; }
  .fb-cmp-c.hl { transform: none; }
  .fb-pr { grid-template-columns: repeat(2, 1fr); }
  .fb-stp { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .fb-stp::before, .fb-stp-pg { display: none; }
  .fb-cas-g { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fb-nav { display: none; }
  .fb-hero-g { padding: 32px 0 48px; }
  .fb-ph { width: 240px; }
  .fb-ph-s { min-height: 380px; }
  .fb-vs { grid-template-columns: 1fr; }
  .fb-fg { grid-template-columns: 1fr; }
  .fb-rg { grid-template-columns: 1fr; }
  .fb-rf { flex-direction: column; text-align: center; }
  .fb-pr { grid-template-columns: 1fr; }
  .fb-stp { grid-template-columns: 1fr; }
  .fb-fm-g { grid-template-columns: 1fr; }
  .fb-fm-f.fu { grid-column: 1; }
  .fb-hero-st { gap: 20px; }
  .fb-sv { font-size: 24px; }
  .fb-cas-stats { grid-template-columns: 1fr; }
  .fb-trust { gap: 12px; }
  .fb-trust-i { width: 72px; height: 34px; font-size: 11px; }
  .fb-fnl-r { flex-direction: column; align-items: stretch; gap: 4px; }
  .fb-fnl-lb { text-align: left; min-width: auto; }
}
