/* Nanopixo "Made for" landing pages. Builds on style.css + features.css (ft tokens). */
.mf-body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ft-ink); }
.mf-main { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px 96px; }

/* Black pill button (the pillar pages define this inline; pre-rendered pages need it here). */
.mf-body .btn-primary { background: var(--ft-ink); color: #fff; font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity .15s ease, transform .15s ease; }
.mf-body .btn-primary:hover { opacity: .92; transform: translateY(-1px); }
.mf-body .btn-primary svg { width: 18px; height: 18px; }

/* Breadcrumb */
.mf-crumb { font-size: 13px; color: var(--ft-muted); margin: 22px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.mf-crumb a { color: var(--ft-muted); text-decoration: none; }
.mf-crumb a:hover { color: var(--ft-ink); }
.mf-crumb__sep { opacity: .5; }
.mf-crumb [aria-current] { color: var(--ft-ink); font-weight: 600; }

/* Hero */
.mf-hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; padding: 48px 0 80px; }
.mf-hero__eyebrow { display: inline-block; background: var(--ft-yellow); color: var(--ft-ink); font-weight: 700; font-size: 16.25px; letter-spacing: .01em; padding: 7.5px 15px; border-radius: 7.5px; margin-bottom: 24px; }
.mf-hero h1 { font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08; font-weight: 900; letter-spacing: -.02em; margin: 0 0 24px; }
.mf-hero__sub { font-size: 18px; line-height: 1.6; color: #2b2f36; font-weight: 500; margin: 0 0 62px; max-width: 56ch; }
.mf-hero__cta { margin-bottom: 30px; }
.mf-hero__geo { font-size: 14px; line-height: 1.6; color: var(--ft-muted); margin: 0; max-width: 60ch; }
.mf-hero__media { border-radius: 22px; overflow: hidden; background: var(--ft-soft); border: 1px solid var(--ft-line); }
.mf-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }

/* Key takeaways (yellow box) */
.mf-takeaways { background: #fbfbe0; border: 1px solid #ecec9a; border-left: 4px solid var(--ft-yellow); border-radius: 14px; padding: 24px 26px; margin: 8px 0 72px; }
.mf-takeaways h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; margin: 0 0 14px; color: #6b6b1f; }
.mf-takeaways ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mf-takeaways li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.mf-takeaways li svg { width: 20px; height: 20px; color: #1a7f37; flex: none; margin-top: 1px; }

/* Section + yellow chip label (like the blog/features kicker) */
.mf-block { padding: 8px 0 64px; max-width: 820px; }
.mf-label { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px; }
.mf-label__ic { display: inline-flex; color: var(--ft-ink); }
.mf-label__ic svg, .mf-label__ic i { width: 24px; height: 24px; stroke-width: 2; }
.mf-label__t { display: inline-block; background: var(--ft-yellow); color: var(--ft-ink); font-weight: 700; font-size: 18px; letter-spacing: -.01em; padding: 7px 16px; border-radius: 6px; }
.mf-pain p { font-size: 19px; line-height: 1.65; color: #2b2f36; margin: 0; max-width: 60ch; }

/* Solution (3 cards) */
.mf-solution { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: none; }
.mf-solution__item { border: 1px solid var(--ft-line); border-radius: 16px; padding: 28px 26px; background: var(--ft-bg); }
.mf-solution__ic { display: inline-flex; margin-bottom: 14px; color: var(--ft-ink); }
.mf-solution__ic svg, .mf-solution__ic i { width: 40px; height: 40px; stroke-width: 1.5; }
.mf-solution__item h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.mf-solution__item p { font-size: 15.5px; line-height: 1.6; color: var(--ft-muted); margin: 0; }

/* How it works (numbered steps) */
.mf-steps { list-style: none; counter-reset: mf; margin: 0; padding: 0; display: grid; gap: 22px; }
.mf-steps li { counter-increment: mf; position: relative; padding-left: 56px; }
.mf-steps li::before { content: counter(mf); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 999px; background: var(--ft-ink); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.mf-steps li h3 { font-size: 18px; font-weight: 800; margin: 4px 0 4px; }
.mf-steps li p { font-size: 16px; line-height: 1.6; color: var(--ft-muted); margin: 0; }

/* Features (checklist) */
.mf-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.mf-features li { display: flex; gap: 14px; align-items: center; font-size: 16px; line-height: 1.5; }
.mf-feat-ic { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: var(--ft-soft); color: var(--ft-ink); flex: none; }
.mf-feat-ic svg, .mf-feat-ic i { width: 19px; height: 19px; stroke-width: 1.75; }

/* Quote */
.mf-quote { max-width: 820px; margin: 16px 0 56px; }
.mf-quote blockquote { margin: 0; font-size: 20px; line-height: 1.5; font-weight: 500; color: var(--ft-ink); border-left: 4px solid var(--ft-yellow); padding: 6px 0 6px 22px; }

/* Price band */
.mf-price { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; background: var(--ft-soft); border-radius: 16px; padding: 24px 28px; margin: 0 0 56px; }
.mf-price p { margin: 0; font-size: 16px; color: #2b2f36; }
.mf-price a { font-weight: 800; color: var(--ft-ink); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.mf-price a svg { width: 18px; height: 18px; }

/* FAQ */
.mf-faq { max-width: 820px; margin: 94px 0 56px; }
.mf-faq h2 { font-size: 24px; font-weight: 800; margin: 0 0 14px; }
.mf-faq__item { border-bottom: 1px solid var(--ft-line); }
.mf-faq__item summary { cursor: pointer; font-weight: 700; padding: 16px 28px 16px 0; list-style: none; position: relative; }
.mf-faq__item summary::-webkit-details-marker { display: none; }
.mf-faq__item summary::after { content: '+'; position: absolute; right: 4px; top: 13px; font-size: 22px; color: var(--ft-muted); }
.mf-faq__item[open] summary::after { content: '\2013'; }
.mf-faq__item > div { padding: 0 0 18px; line-height: 1.65; color: #2b2f36; }

/* "How it works" + "What it does for you" side by side on desktop. */
.mf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 40px 0 64px; }
.mf-two-col .mf-block { max-width: none; padding: 0; }
/* Start the steps / features 20px lower under their labels. */
.mf-two-col .mf-label { margin-bottom: 42px; }

/* Closing CTA = the blog "Start free" box (css/blog.css .blog-freecta*); no
   newsletter below it here, so trim the wrap margin. */
.mf-freecta { margin: 40px 0 0; }

@media (max-width: 880px) {
  .mf-hero { grid-template-columns: 1fr; gap: 28px; }
  .mf-hero__media { order: -1; }
  .mf-solution { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .mf-two-col { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 560px) {
  .mf-price { flex-direction: column; align-items: flex-start; }
}

/* "Vraag een demo" popup (hero pill -> Google booking iframe) */
.mf-demo[hidden] { display: none; }
.mf-demo { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.mf-demo__backdrop { position: absolute; inset: 0; background: rgba(15, 17, 21, .55); }
.mf-demo__dialog { position: relative; width: 100%; max-width: 720px; max-height: 90vh; background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0, 0, 0, .38); }
.mf-demo__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 22px; background: var(--ft-ink); border-bottom: 3px solid var(--ft-yellow); }
.mf-demo__heading { min-width: 0; }
.mf-demo__title { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.2; color: #fff; }
.mf-demo__sub { margin: 5px 0 0; font-size: 13.5px; line-height: 1.4; font-weight: 500; color: rgba(255, 255, 255, .68); }
.mf-demo__newtab { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ft-yellow); text-decoration: underline; text-underline-offset: 2px; }
.mf-demo__newtab:hover { text-decoration: none; }
.mf-demo__close { appearance: none; border: 0; background: rgba(255, 255, 255, .14); width: 34px; height: 34px; border-radius: 999px; font-size: 20px; line-height: 1; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none; transition: background .15s ease; }
.mf-demo__close:hover { background: rgba(255, 255, 255, .26); }
.mf-demo__body { flex: 1; min-height: 0; background: #fff; }
.mf-demo__frame { width: 100%; height: 640px; max-height: 100%; border: 0; display: block; }
body.mf-demo-open { overflow: hidden; }
@media (max-width: 560px) {
  .mf-demo { padding: 0; }
  .mf-demo__dialog { max-width: none; max-height: 100vh; height: 100vh; border-radius: 0; }
  .mf-demo__frame { height: 100%; }
}
