/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: rgb(250, 250, 245);
  color: #111827;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --ink:     #0D0D0D;
  --ink-2:   #374151;
  --muted:   #6B7280;
  --border:  #E5E7EB;
  --bg-soft: #F9FAFB;
  --dark:    #0D0F12;
  --accent:  #111827;
  --green:   #059669;
  --radius:  12px;
}

/* ── Utility ───────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* NAVBAR                                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  pointer-events: none;
}
.mk-nav__pill {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-radius: 40px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(255,255,255,0.12),
    inset 1px 0 0 rgba(255,255,255,0.28),
    inset -1px 0 0 rgba(255,255,255,0.18);
  padding: 8px 8px 8px 20px;
  display: flex; align-items: center; gap: 0;
  pointer-events: all;
}
.mk-nav__logo {
  flex-shrink: 0;
  display: flex; align-items: center;
  margin-right: 48px;
}
.mk-nav__logo-img {
  height: 34.3px; width: auto; display: block; /* 28.6px * 1.2 -- another 20% bigger on top of the earlier 30% bump, requested 18/08/2026 */
}
.mk-nav__links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
  margin-right: 8px;
}
.mk-nav__links a {
  display: block;
  font-size: 14px; font-weight: 400; color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  letter-spacing: -0.3px;
  transition: background .12s;
}
.mk-nav__links a:hover { background: var(--bg-soft); }
.mk-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border-radius: 40px;
  padding: 8px 8px 8px 16px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.3px;
  transition: background .12s;
  white-space: nowrap;
}
.mk-nav__cta:hover { background: #1F2937; color: #fff; }
.mk-nav__cta-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgb(250, 250, 245); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mk-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .12s; border: none; font-family: inherit;
}
.mk-btn--dark { background: var(--ink); color: #fff; }
.mk-btn--dark:hover { background: #1F2937; }
.mk-btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.mk-btn--outline:hover { background: var(--bg-soft); border-color: #9CA3AF; }
.mk-btn--lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.mk-btn--white { background: rgb(250, 250, 245); color: var(--ink); }
.mk-btn--white:hover { background: #F3F4F6; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HERO                                                                        */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 0 80px;
  background: rgb(246, 245, 242);
  overflow: hidden;
}
.mk-hero .container { width: 100%; padding: 0; }
.mk-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 500px) 1fr;
  gap: 40px;
  align-items: center;
  padding-left: 32px;
}
.mk-hero__content {
  text-align: left;
}
.mk-hero__video-wrap {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16/9;
}
.mk-hero__video {
  width: 100%;
  height: auto;
  display: block;
}
.mk-hero--no-nav {
  padding-top: 80px;
}
.mk-hero__h1--lora {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4.4vw, 58px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--ink);
  max-width: 500px; margin: 0 0 22px;
}
.mk-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #F3F4F6; border-radius: 999px;
  padding: 5px 14px; margin-bottom: 22px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  letter-spacing: .05em; text-transform: uppercase;
}
.mk-hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.mk-hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4.4vw, 58px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--ink);
  max-width: 500px; margin: 0 0 22px;
}
.mk-hero h1 em { font-style: italic; color: #374151; }
.mk-hero__sub {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  max-width: 480px; margin: 0 0 38px;
}
.mk-hero__ctas {
  display: flex; align-items: center; justify-content: flex-start; gap: 12px;
  flex-wrap: wrap; margin-bottom: 0;
}
.mk-hero__social-proof {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 64px;
}
.mk-hero__avatars {
  display: flex;
}
.mk-hero__avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff; background: #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #374151;
  margin-left: -8px;
}
.mk-hero__avatars span:first-child { margin-left: 0; }
.mk-hero__stars { color: #F59E0B; letter-spacing: -1px; }

/* Dashboard mockup */
.mk-hero__mockup {
  max-width: 1000px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 80px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);
  background: #F9FAFB;
}
.mk-hero__mockup-bar {
  background: #F3F4F6; border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mk-hero__mockup-dots { display: flex; gap: 6px; }
.mk-hero__mockup-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.mk-hero__mockup-dots span:nth-child(1) { background: #FC5F57; }
.mk-hero__mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mk-hero__mockup-dots span:nth-child(3) { background: #28C840; }
.mk-hero__mockup-url {
  flex: 1; background: rgb(250, 250, 245); border-radius: 6px;
  padding: 4px 12px; font-size: 12px; color: var(--muted);
  border: 1px solid var(--border); text-align: left; margin: 0 8px;
}
.mk-hero__mockup-body {
  padding: 24px;
  display: grid; grid-template-columns: 260px 1fr; gap: 16px;
  min-height: 340px;
}
.mk-hero__mockup-sidebar {
  background: rgb(250, 250, 245); border-radius: 10px; padding: 16px;
  border: 1px solid var(--border);
}
.mk-hero__mockup-sidebar-label {
  font-size: 10px; font-weight: 600; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.mk-hero__mockup-prompt {
  background: var(--ink); color: #fff;
  border-radius: 8px; padding: 12px 14px;
  font-size: 12px; line-height: 1.5; margin-bottom: 12px;
}
.mk-hero__mockup-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.mk-hero__mockup-tag {
  background: #EFF6FF; color: #1D4ED8;
  border-radius: 5px; padding: 3px 8px;
  font-size: 11px; font-weight: 500;
}
.mk-hero__mockup-main { display: flex; flex-direction: column; gap: 10px; }
.mk-hero__mockup-card {
  background: rgb(250, 250, 245); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.mk-hero__mockup-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; font-size: 14px; color: #fff; font-weight: 600;
}
.mk-hero__mockup-avatar.g2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.mk-hero__mockup-avatar.g3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.mk-hero__mockup-info { flex: 1; }
.mk-hero__mockup-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.mk-hero__mockup-role { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.mk-hero__mockup-score {
  background: #ECFDF5; color: #059669;
  border-radius: 6px; padding: 3px 10px;
  font-size: 12px; font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* LOGO STRIP                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-logos {
  padding: 40px 0;
  overflow: hidden;
  background: rgb(250, 250, 245);
}
.mk-logos__label {
  text-align: center;
  font-size: 12px; font-weight: 500; color: #9CA3AF;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px;
}
.mk-logos__track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 19.6s linear infinite; /* 28s * 0.7 -- 30% faster, requested 18/08/2026 */
  width: max-content;
}
.mk-logos__track--dup { animation-delay: -14s; }
.mk-logos__strip { display: flex; gap: 56px; align-items: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mk-logo-item {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.mk-logo-item img {
  height: 32px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(1); opacity: .5;
  transition: opacity .2s ease, filter .2s ease;
}
.mk-logo-item img:hover { filter: grayscale(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FEATURES NUMBERED                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-features {
  padding: 100px 0;
  background: rgb(245, 245, 240);
}
.mk-features__header { text-align: center; margin-bottom: 72px; }
.mk-section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgb(220, 250, 230); border: 1px solid rgb(30, 200, 100);
  border-radius: 999px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: rgb(30, 200, 100);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.mk-section-h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.8px; color: var(--ink);
  margin-bottom: 16px;
}
.mk-section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.6;
  max-width: 500px; margin: 0 auto;
}
.mk-features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.mk-feature-item {
  background: rgb(250, 250, 245); padding: 40px 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  display: grid; grid-template-columns: 52px 1fr; gap: 28px;
  transition: box-shadow .15s;
}
.mk-feature-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); z-index: 1; position: relative; }
.mk-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mk-feature-icon svg {
  width: 20px; height: 20px; color: #00B94C;
}
.mk-feature-body h3 {
  font-size: 18px; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; line-height: 1.3;
}
.mk-feature-body p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FEATURE TABS                                                                */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-tabs {
  padding: 100px 0;
  background: rgb(250, 250, 245);
}
.mk-tabs__header { text-align: center; margin-bottom: 56px; }
.mk-tabs__nav {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 5px;
  width: fit-content; margin: 0 auto 48px;
}
.mk-tab-btn {
  padding: 9px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  cursor: pointer; border: none; background: transparent;
  font-family: inherit; transition: all .15s;
  white-space: nowrap;
}
.mk-tab-btn.active {
  background: rgb(250, 250, 245); color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 8px rgba(0,0,0,.04);
}
.mk-tab-panel { display: none; }
.mk-tab-panel.active { display: block; }
.mk-tab-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.mk-tab-content--rev { direction: rtl; }
.mk-tab-content--rev > * { direction: ltr; }
.mk-tab-content__text h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 32px; font-weight: 700; line-height: 1.2;
  letter-spacing: -.5px; color: var(--ink); margin-bottom: 14px;
}
.mk-tab-content__text p {
  font-size: 15.5px; color: var(--muted); line-height: 1.65; margin-bottom: 24px;
}
.mk-tab-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mk-tab-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.mk-tab-bullets li::before {
  content: '✓'; color: var(--green);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.mk-tab-visual {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.mk-tab-visual__inner {
  padding: 24px; width: 100%;
}
.mk-tab-visual__search {
  background: rgb(250, 250, 245); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.mk-tab-visual__search-icon { font-size: 16px; opacity: .5; }
.mk-tab-visual__chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.mk-tab-visual__chip {
  background: #EFF6FF; color: #1D4ED8;
  border-radius: 6px; padding: 4px 10px;
  font-size: 12px; font-weight: 500;
}
.mk-tab-visual__chip.green { background: #ECFDF5; color: #059669; }
.mk-tab-visual__chip.purple { background: #F5F3FF; color: #7C3AED; }
.mk-tab-visual__results { display: flex; flex-direction: column; gap: 8px; }
.mk-tab-visual__row {
  background: rgb(250, 250, 245); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.mk-tab-visual__dot {
  width: 32px; height: 32px; border-radius: 50%;
  flex-shrink: 0; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.mk-tab-visual__dot.a { background: linear-gradient(135deg,#667eea,#764ba2); }
.mk-tab-visual__dot.b { background: linear-gradient(135deg,#f093fb,#f5576c); }
.mk-tab-visual__dot.c { background: linear-gradient(135deg,#4facfe,#00f2fe); }
.mk-tab-visual__rname { font-size: 13px; font-weight: 600; color: var(--ink); }
.mk-tab-visual__rrole { font-size: 11px; color: var(--muted); }
.mk-tab-visual__rbadge {
  margin-left: auto; background: #ECFDF5; color: #059669;
  border-radius: 5px; padding: 2px 8px; font-size: 11px; font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* INTEGRATIONS                                                                */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-integrations {
  padding: 100px 0;
  background: var(--bg-soft);
}
.mk-integrations__header { text-align: center; margin-bottom: 72px; }
.mk-integrations__layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center;
}
.mk-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mk-step {
  display: flex; gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.mk-step:last-child { border-bottom: none; }
.mk-step__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.mk-step__body h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.mk-step__body p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.mk-int-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.mk-int-card {
  background: rgb(250, 250, 245); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; transition: box-shadow .12s;
}
.mk-int-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.mk-int-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.mk-int-card__name { font-size: 12px; font-weight: 600; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PRICING                                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-pricing {
  padding: 100px 0;
  background: rgb(250, 250, 245);
}
.mk-pricing__header { text-align: center; margin-bottom: 56px; }
.mk-pricing__toggle {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-bottom: 48px;
  font-size: 14px; color: var(--muted);
}
.mk-billing-label {
  cursor: pointer; transition: color .12s, font-weight .12s;
  user-select: none;
}
.mk-pricing__switch {
  width: 44px; height: 24px; background: var(--ink);
  border-radius: 999px; position: relative; cursor: pointer;
  transition: background .15s;
}
.mk-pricing__switch::after {
  content: ''; position: absolute;
  width: 18px; height: 18px; background: rgb(250, 250, 245);
  border-radius: 50%; top: 3px; left: 3px;
  transition: transform .15s;
}
.mk-pricing__switch.annual::after { transform: translateX(20px); }
.mk-pricing__badge {
  background: rgb(220, 250, 230); color: rgb(30, 200, 100);
  border: 1px solid rgb(30, 200, 100);
  border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 600;
}
.mk-pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.mk-plan {
  background: rgb(250, 250, 245); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .15s;
}
.mk-plan:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.mk-plan--featured {
  background: var(--ink); border-color: var(--ink);
  color: #fff;
}
.mk-plan__label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px;
}
.mk-plan--featured .mk-plan__label { color: rgba(255,255,255,.5); }
.mk-plan__price {
  font-family: 'Lora', Georgia, serif;
  font-size: 44px; font-weight: 700; line-height: 1;
  color: var(--ink); margin-bottom: 4px;
}
.mk-plan--featured .mk-plan__price { color: #fff; }
.mk-plan__period { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.mk-plan--featured .mk-plan__period { color: rgba(255,255,255,.55); }
.mk-plan__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 28px; }
.mk-plan--featured .mk-plan__desc { color: rgba(255,255,255,.65); }
.mk-plan__features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
.mk-plan__features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: var(--ink-2); line-height: 1.4;
}
.mk-plan--featured .mk-plan__features li { color: rgba(255,255,255,.8); }
.mk-plan__features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.mk-plan--featured .mk-plan__features li::before { color: #34D399; }
.mk-plan__cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 9px;
  font-size: 14px; font-weight: 600;
  transition: all .12s;
}
.mk-plan--featured .mk-plan__cta {
  background: rgb(250, 250, 245); color: var(--ink);
}
.mk-plan--featured .mk-plan__cta:hover { background: #F3F4F6; }
.mk-plan:not(.mk-plan--featured) .mk-plan__cta {
  background: var(--ink); color: #fff;
}
.mk-plan:not(.mk-plan--featured) .mk-plan__cta:hover { background: #1F2937; }
.mk-plan__label-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.mk-plan__label-row .mk-plan__label { margin-bottom: 0; }
.mk-plan__popular {
  display: inline-flex;
  background: rgb(220, 250, 230); color: rgb(30, 200, 100);
  border: 1px solid rgb(30, 200, 100);
  border-radius: 999px; padding: 3px 12px;
  font-size: 11px; font-weight: 700;
  width: fit-content; flex-shrink: 0;
}
.mk-plan__divider {
  height: 1px; background: var(--border);
  margin: 24px 0 20px;
}
.mk-plan--featured .mk-plan__divider { background: rgba(255,255,255,.15); }
.mk-plan__tier-label {
  font-size: 10.5px; font-weight: 700; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px;
}
.mk-plan--featured .mk-plan__tier-label { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* TESTIMONIALS                                                                */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-testimonials {
  padding: 100px 0;
  background: var(--dark);
}
.mk-testimonials__header { text-align: center; margin-bottom: 64px; }
.mk-testimonials .mk-section-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.5); }
.mk-testimonials .mk-section-h2 { color: #fff; }
.mk-testimonials .mk-section-sub { color: rgba(255,255,255,.5); }
.mk-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.mk-testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 28px;
}
.mk-testi-card__stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.mk-testi-card__body {
  font-size: 15px; color: rgba(255,255,255,.75);
  line-height: 1.65; margin-bottom: 22px;
  font-style: italic;
}
.mk-testi-card__author { display: flex; align-items: center; gap: 12px; }
.mk-testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.mk-testi-card__name { font-size: 13.5px; font-weight: 600; color: #fff; }
.mk-testi-card__role { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FAQ                                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-faq {
  padding: 100px 0;
  background: rgb(250, 250, 245);
}
.mk-faq__header { text-align: center; margin-bottom: 60px; }
.mk-faq__list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.mk-faq-item {
  border-bottom: 1px solid var(--border);
}
.mk-faq-item:last-child { border-bottom: none; }
.mk-faq-item__q {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; background: rgb(250, 250, 245);
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: background .1s;
  list-style: none; user-select: none;
}
.mk-faq-item__q:hover { background: var(--bg-soft); }
.mk-faq-item__q::after {
  content: '+'; font-size: 20px; font-weight: 300;
  color: var(--muted); flex-shrink: 0; transition: transform .2s;
}
.mk-faq-item.open .mk-faq-item__q::after { transform: rotate(45deg); }
.mk-faq-item__a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 14.5px; color: var(--muted); line-height: 1.65;
  transition: max-height .25s ease, padding .25s ease;
}
.mk-faq-item.open .mk-faq-item__a {
  max-height: 300px; padding: 0 24px 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CTA BANNER                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-cta {
  padding: 100px 0;
  background: var(--ink);
  text-align: center;
}
.mk-cta h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: #fff;
  letter-spacing: -.8px; line-height: 1.1;
  margin-bottom: 18px;
}
.mk-cta p { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 36px; }
.mk-cta__btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FOOTER                                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-footer {
  background: var(--dark);
  padding: 72px 0 40px;
}
.mk-footer__top {
  display: grid; grid-template-columns: 260px 1fr; gap: 80px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 40px;
}
.mk-footer__brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 10px; display: block;
}
.mk-footer__brand-desc { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.6; }
.mk-footer__links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.mk-footer__col-label {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.3);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.mk-footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mk-footer__col-links a {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  transition: color .12s;
}
.mk-footer__col-links a:hover { color: #fff; }
.mk-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.mk-footer__social { display: flex; gap: 16px; }
.mk-footer__social a {
  color: rgba(255,255,255,.35); font-size: 16px;
  transition: color .12s;
}
.mk-footer__social a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* STATS BAR                                                                   */
/* ═══════════════════════════════════════════════════════════════════════════ */
.mk-stats {
  padding: 60px 0;
  background: rgb(250, 250, 245);
  border-top: 1px solid var(--border);
}
.mk-stats__pill {
  display: block; text-align: center;
  margin-bottom: 28px;
}
.mk-stats__pill span {
  display: inline-flex;
  background: rgb(220, 250, 230); border: 1px solid rgb(30, 200, 100);
  border-radius: 999px; padding: 4px 14px;
  font-size: 11px; font-weight: 700; color: rgb(30, 200, 100);
  letter-spacing: .08em; text-transform: uppercase;
}
.mk-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.mk-stats__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mk-stat {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.mk-stat:last-child { border-right: none; }
.mk-stat__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 42px; font-weight: 700; color: var(--ink);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.mk-stat__label { font-size: 13.5px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mk-hero .mk-hero__split { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .mk-hero__content { text-align: center; }
  .mk-hero__h1--lora { margin: 0 auto 22px; }
  .mk-hero__sub { margin: 0 auto 38px; }
  .mk-hero__ctas { justify-content: center; }
  .mk-hero__video-wrap { border-radius: 20px; width: 100%; }
}
@media (max-width: 900px) {
  .mk-hero__h1--lora, .mk-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .mk-hero__mockup-body { grid-template-columns: 1fr; }
  .mk-hero__mockup-sidebar { display: none; }
  .mk-features__grid { grid-template-columns: 1fr; }
  .mk-tabs__content { grid-template-columns: 1fr; }
  .mk-tab-content { grid-template-columns: 1fr; }
  .mk-tab-content--rev { direction: ltr; }
  .mk-integrations__layout { grid-template-columns: 1fr; }
  .mk-pricing__grid { grid-template-columns: 1fr; }
  .mk-testi-grid { grid-template-columns: 1fr; }
  .mk-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .mk-stat { padding: 0 12px; }
  .mk-stat__num { font-size: 28px; }
  .mk-stat__label { font-size: 12px; }
  .mk-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .mk-footer__links { grid-template-columns: repeat(2, 1fr); }
  .mk-nav__links { display: none; }
  .mk-nav__pill { padding: 8px 8px 8px 14px; }
  .mk-int-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .mk-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .mk-stat { padding: 0 8px; }
  .mk-stat__num { font-size: 22px; }
  .mk-stat__label { font-size: 11px; }
  .mk-int-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-footer__links { grid-template-columns: 1fr; }
  .mk-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .mk-tabs__nav { flex-wrap: wrap; }
  .mk-tab-btn { font-size: 13px; padding: 8px 14px; }
}

/* ── Legal pages (privacy / terms) ────────────────────────────────────── */
.mk-legal { padding: 140px 0 96px; }
.mk-legal .container { max-width: 760px; }
.mk-legal h1 { font-family: 'Lora', Georgia, serif; font-size: 40px; margin-bottom: 8px; }
.mk-legal .mk-legal__updated { color: #6b7280; font-size: 14px; margin-bottom: 40px; }
.mk-legal h2 { font-family: 'Lora', Georgia, serif; font-size: 22px; margin: 40px 0 12px; }
.mk-legal p, .mk-legal li { color: #374151; line-height: 1.7; font-size: 15px; }
.mk-legal ul { padding-left: 20px; margin: 12px 0; }
.mk-legal li { margin-bottom: 6px; }
.mk-legal a { color: inherit; text-decoration: underline; }
