/* =====================================================
   MLC Marketing Pages — Kinetic Bold v3.0
   Authors: Gagan Sardaar, Richard Kohn
   Fonts loaded via wp_head <link> — no @import needed
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --mk-purple:     #7c3aed;
  --mk-indigo:     #4f46e5;
  --mk-blue:       #2563eb;
  --mk-green:      #10b981;
  --mk-amber:      #f59e0b;
  --mk-red:        #ef4444;
  --mk-grad:       linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --mk-grad-r:     linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --mk-grad-warm:  linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --mk-ink:        #08080f;
  --mk-dark:       #0f0f1c;
  --mk-mid:        #6b7280;
  --mk-subtle:     #9ca3af;
  --mk-border:     rgba(0, 0, 0, .07);
  --mk-white:      #ffffff;
  --mk-bg:         #f8f7ff;
  --mk-r-sm:       8px;
  --mk-r-md:       16px;
  --mk-r-lg:       24px;
  --mk-r-xl:       40px;
  --mk-r-pill:     9999px;
  --mk-shadow-sm:  0 1px 4px rgba(0,0,0,.05);
  --mk-shadow-md:  0 8px 32px rgba(0,0,0,.08);
  --mk-shadow-lg:  0 24px 80px rgba(0,0,0,.12);
  --mk-glow:       0 0 80px rgba(124,58,237,.22);
  --mk-font-h:     'Plus Jakarta Sans', system-ui, sans-serif;
  --mk-font-b:     'Inter', system-ui, sans-serif;
  --mk-ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ───────────────────────────────────── */
.mlc-marketing-wrapper, .mlc-marketing-wrapper * { box-sizing: border-box; }
.mlc-marketing-wrapper {
  font-family: var(--mk-font-b);
  background: var(--mk-white);
  color: var(--mk-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wp-block-post-title, .entry-title, .page-header { display: none !important; }
.mlc-marketing-wrapper, .mlc-section-full,
.wp-block-group.mlc-marketing-wrapper,
.wp-block-group.alignfull.mlc-marketing-wrapper {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}
/* Force theme wrappers to not constrain our pages */
body.mlc-light-theme .site-main,
body.mlc-light-theme .wp-site-blocks,
body.mlc-light-theme .wp-block-post-content,
body.mlc-light-theme .entry-content,
body.mlc-light-theme .page-content,
body.mlc-light-theme article.page,
body.mlc-light-theme .hentry {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.mlc-light-theme { background: var(--mk-white) !important; color: var(--mk-ink) !important; }

/* ── Layout ─────────────────────────────────────────── */
.mlc-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5%, 80px); }
.mlc-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5%, 80px); }
.mk-section { padding: clamp(80px, 10vw, 140px) 0; }
.mk-section-tint { background: var(--mk-bg); }
.mk-section-dark { background: var(--mk-dark); }
/* Inner-page hero sections (pricing, faq, contact, about-story etc.) */
.mk-section-hero { background: var(--mk-bg) !important; padding-top: clamp(80px, 12vw, 140px) !important; }
/* Short hero (About page – 60svh instead of 100svh) */
.mk-hero-short { min-height: 60svh !important; }
/* Neutralise wp-block-group default padding within our wrapper */
.mlc-marketing-wrapper > .wp-block-group,
.mlc-marketing-wrapper .wp-block-group {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* ── Keyframe Animations ────────────────────────────── */
@keyframes mk-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(1.5deg); }
}
@keyframes mk-pulse-dot {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}
@keyframes mk-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes mk-shimmer {
  0%   { background-position: -400% 0; }
  100% { background-position: 400% 0; }
}
@keyframes mk-spin-ring {
  to { transform: rotate(360deg); }
}
@keyframes mk-bar-grow {
  from { width: 0; }
  to   { width: var(--mk-bar-w, 85%); }
}

/* ── Scroll Reveal System ───────────────────────────── */
[data-mk-reveal] {
  opacity: 0;
  transition: opacity .65s var(--mk-ease), transform .65s var(--mk-ease);
}
[data-mk-reveal="up"]    { transform: translateY(44px); }
[data-mk-reveal="left"]  { transform: translateX(-44px); }
[data-mk-reveal="right"] { transform: translateX(44px); }
[data-mk-reveal="scale"] { transform: scale(0.91); }
[data-mk-reveal="fade"]  { transform: none; }
[data-mk-reveal].mk-visible { opacity: 1 !important; transform: none !important; }
[data-mk-delay="1"] { transition-delay: .08s; }
[data-mk-delay="2"] { transition-delay: .16s; }
[data-mk-delay="3"] { transition-delay: .24s; }
[data-mk-delay="4"] { transition-delay: .32s; }
[data-mk-delay="5"] { transition-delay: .42s; }
[data-mk-delay="6"] { transition-delay: .52s; }

/* ── Typography ─────────────────────────────────────── */
.mk-h1 {
  font-family: var(--mk-font-h);
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -0.04em;
  color: var(--mk-ink);
  margin: 0;
}
.mk-h2 {
  font-family: var(--mk-font-h);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -0.035em;
  color: var(--mk-ink);
  margin: 0;
}
.mk-h3 {
  font-family: var(--mk-font-h);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--mk-ink);
  margin: 0 0 10px;
}
.mk-lead {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--mk-mid);
  margin: 0;
}
.mk-label {
  display: inline-block;
  font-family: var(--mk-font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mk-purple);
  margin-bottom: 16px;
}
.mk-grad-text {
  background: var(--mk-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mk-white-text { color: #fff !important; }
.mk-muted-text { color: rgba(255,255,255,.58) !important; }

/* ── Pill Badge ─────────────────────────────────────── */
.mk-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 8px;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.18);
  border-radius: var(--mk-r-pill);
  font-family: var(--mk-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mk-purple);
  margin-bottom: 22px;
}
.mk-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mk-purple);
  animation: mk-pulse-dot 2.2s ease-in-out infinite;
}
.mk-badge-dark {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}
.mk-badge-dark .mk-badge-dot { background: #fff; }
.mk-badge-green {
  background: rgba(16,185,129,.08);
  border-color: rgba(16,185,129,.2);
  color: #059669;
}
.mk-badge-green .mk-badge-dot { background: #10b981; }

/* ── Buttons ─────────────────────────────────────────── */
.mk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--mk-font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none !important;
  border-radius: var(--mk-r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .28s var(--mk-ease), box-shadow .28s var(--mk-ease), background .18s, color .18s;
  -webkit-user-select: none;
  user-select: none;
}
.mk-btn:hover  { transform: translateY(-2px); }
.mk-btn:active { transform: translateY(0) scale(.98); }

.mk-btn-primary {
  background: var(--mk-grad);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(124,58,237,.32);
}
.mk-btn-primary:hover { box-shadow: 0 10px 36px rgba(124,58,237,.5); }

.mk-btn-dark {
  background: var(--mk-ink);
  color: #fff !important;
  box-shadow: var(--mk-shadow-md);
}
.mk-btn-dark:hover { box-shadow: var(--mk-shadow-lg); }

.mk-btn-ghost {
  background: transparent;
  color: var(--mk-ink) !important;
  border-color: rgba(0,0,0,.12);
}
.mk-btn-ghost:hover {
  border-color: var(--mk-purple);
  color: var(--mk-purple) !important;
  background: rgba(124,58,237,.04);
}
.mk-btn-ghost-white {
  background: rgba(255,255,255,.08);
  color: #fff !important;
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.mk-btn-ghost-white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}
.mk-btn-lg  { padding: 18px 40px; font-size: 16px; }
.mk-btn-sm  { padding: 9px 18px;  font-size: 13px; }
.mk-btn-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 36px; }

/* ── Icons ───────────────────────────────────────────── */
.mk-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.mk-icon-purple { background: rgba(124,58,237,.1); }
.mk-icon-blue   { background: rgba(37,99,235,.1);  }
.mk-icon-green  { background: rgba(16,185,129,.1); }
.mk-icon-amber  { background: rgba(245,158,11,.1); }
.mk-icon-grad   { background: var(--mk-grad); }

/* ── Hero ───────────────────────────────────────────── */
.mk-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--mk-dark);
  overflow: hidden;
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
}
.mk-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}
.mk-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  will-change: transform;
}
.mk-orb-1 {
  width: min(640px, 80vw); height: min(640px, 80vw);
  background: radial-gradient(circle, rgba(124,58,237,.52), transparent 70%);
  top: -15%; right: -10%;
  animation: mk-float 13s ease-in-out infinite;
}
.mk-orb-2 {
  width: min(440px, 60vw); height: min(440px, 60vw);
  background: radial-gradient(circle, rgba(37,99,235,.38), transparent 70%);
  bottom: -12%; left: -8%;
  animation: mk-float 17s ease-in-out infinite reverse;
}
.mk-orb-3 {
  width: min(280px, 40vw); height: min(280px, 40vw);
  background: radial-gradient(circle, rgba(16,185,129,.22), transparent 70%);
  top: 38%; left: 38%;
  animation: mk-float 21s ease-in-out infinite 4s;
}
.mk-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.mk-hero .mk-h1  { color: #fff; }
.mk-hero .mk-lead { color: rgba(255,255,255,.58); margin-top: 22px; max-width: 600px; }
.mk-hero-actions  { margin-top: 42px; }

/* ── Marquee ─────────────────────────────────────────── */
.mk-marquee-bar {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--mk-border);
  border-bottom: 1px solid var(--mk-border);
  padding: 18px 0;
  background: var(--mk-bg);
}
.mk-marquee-track {
  display: inline-block;
  animation: mk-marquee 38s linear infinite;
}
.mk-marquee-bar:hover .mk-marquee-track { animation-play-state: paused; }
.mk-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mk-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--mk-mid);
  padding: 0 28px;
}
.mk-marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mk-purple);
  flex-shrink: 0;
}
.mk-marquee-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--mk-grad);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Feature Cards ───────────────────────────────────── */
.mk-card {
  background: var(--mk-white);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  padding: 32px;
  transition: transform .38s var(--mk-ease), box-shadow .38s var(--mk-ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.mk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mk-shadow-lg);
  border-color: rgba(124,58,237,.22);
}
.mk-card-dark {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--mk-r-lg);
  padding: 32px;
  transition: background .3s, border-color .3s;
}
.mk-card-dark:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(124,58,237,.45);
}
.mk-card-glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--mk-r-lg);
  padding: 32px;
}
.mk-card-featured {
  background: var(--mk-grad);
  border: none;
  color: #fff;
}
.mk-card-featured .mk-h3 { color: #fff; }
.mk-card-featured .mk-lead { color: rgba(255,255,255,.75); }
.mk-shimmer-border {
  position: relative;
}
.mk-shimmer-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--mk-r-lg) + 1px);
  padding: 1px;
  background: linear-gradient(135deg, #7c3aed, #2563eb, #7c3aed);
  background-size: 200% 200%;
  animation: mk-shimmer 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
}
.mk-shimmer-border:hover::after { opacity: 1; }

/* ── Bento Grid ──────────────────────────────────────── */
.mk-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.mk-bento-7 { grid-column: span 7; }
.mk-bento-5 { grid-column: span 5; }
.mk-bento-6 { grid-column: span 6; }
.mk-bento-4 { grid-column: span 4; }
.mk-bento-8 { grid-column: span 8; }
.mk-bento-12{ grid-column: span 12; }

/* ── Stats ───────────────────────────────────────────── */
.mk-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--mk-border);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  overflow: hidden;
  margin-top: 56px;
}
.mk-stat-cell {
  background: var(--mk-white);
  padding: 40px 32px;
  text-align: center;
  transition: background .25s;
}
.mk-stat-cell:hover { background: var(--mk-bg); }
/* Stat cells inside the dark hero stay dark on hover */
.mk-hero .mk-stat-cell { background: rgba(255,255,255,.04); }
.mk-hero .mk-stat-cell:hover { background: rgba(255,255,255,.08); }
.mk-stat-num {
  font-family: var(--mk-font-h);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--mk-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.mk-stat-label {
  font-family: var(--mk-font-h);
  font-size: 12px;
  font-weight: 600;
  color: var(--mk-mid);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── How It Works Steps ──────────────────────────────── */
.mk-steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  margin-top: 64px;
}
.mk-steps-connector {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.4), rgba(37,99,235,.4), transparent);
  pointer-events: none;
}
.mk-step { text-align: center; position: relative; z-index: 1; }
.mk-step-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--mk-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mk-font-h);
  font-size: 20px; font-weight: 800;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 10px rgba(124,58,237,.1), var(--mk-glow);
}
.mk-step-title { font-family: var(--mk-font-h); font-weight: 700; font-size: 17px; color: var(--mk-ink); margin-bottom: 10px; }
.mk-step-desc  { font-size: 14px; color: var(--mk-mid); line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────────── */
.mk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 18px;
  align-items: end;
  margin-top: 56px;
}
.mk-pricing-card {
  background: var(--mk-white);
  border: 1.5px solid var(--mk-border);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .38s var(--mk-ease), box-shadow .38s var(--mk-ease);
}
.mk-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--mk-shadow-lg); }
.mk-pricing-card-featured {
  background: var(--mk-dark);
  border-color: rgba(124,58,237,.5);
  box-shadow: var(--mk-glow);
  transform: scale(1.03);
}
.mk-pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.mk-plan-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--mk-grad);
  color: #fff;
  padding: 3px 11px;
  border-radius: var(--mk-r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase;
}
.mk-plan-name {
  font-family: var(--mk-font-h);
  font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--mk-purple);
  margin-bottom: 8px;
}
.mk-plan-name-dark { color: rgba(255,255,255,.7); }
.mk-price {
  font-family: var(--mk-font-h);
  font-size: 48px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--mk-ink);
  margin: 12px 0 4px;
}
.mk-price-dark { color: #fff; }
.mk-price sup { font-size: 22px; vertical-align: super; }
.mk-price sub { font-size: 14px; font-weight: 500; color: var(--mk-mid); }
.mk-price-sub-dark sub { color: rgba(255,255,255,.5); }
.mk-plan-desc { font-size: 14px; color: var(--mk-mid); margin: 12px 0 24px; line-height: 1.5; }
.mk-plan-desc-dark { color: rgba(255,255,255,.55); }
.mk-plan-feats { list-style: none; padding: 0; margin: 0 0 28px; }
.mk-plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--mk-border);
  font-size: 14px; color: var(--mk-mid);
}
.mk-plan-feat-dark { border-bottom-color: rgba(255,255,255,.07); color: rgba(255,255,255,.65); }
.mk-plan-feat:last-child { border-bottom: none; }
.mk-feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,.1);
  color: var(--mk-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.mk-feat-check-purple { background: rgba(124,58,237,.1); color: var(--mk-purple); }

/* ── Comparison Table ────────────────────────────────── */
.mk-comp-wrap {
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  overflow: hidden;
}
.mk-comp-table { width: 100%; border-collapse: collapse; }
.mk-comp-table th, .mk-comp-table td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid var(--mk-border);
  font-size: 14px;
}
.mk-comp-table thead { background: var(--mk-bg); }
.mk-comp-table th {
  font-family: var(--mk-font-h);
  font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--mk-mid);
}
.mk-comp-table th:first-child { color: var(--mk-ink); }
.mk-comp-table td:first-child { font-weight: 600; color: var(--mk-ink); }
.mk-comp-table tr:last-child td { border-bottom: none; }
.mk-comp-table tr:hover td { background: var(--mk-bg); }
.mk-yes { color: var(--mk-green); font-weight: 700; }
.mk-no  { color: var(--mk-subtle); font-weight: 500; }
.mk-th-highlight { background: rgba(124,58,237,.07) !important; color: var(--mk-purple) !important; }

/* ── FAQ ─────────────────────────────────────────────── */
.mk-faq-wrap { margin-top: 56px; }
.mk-faq-item { border-bottom: 1px solid var(--mk-border); }
.mk-faq-item:first-child { border-top: 1px solid var(--mk-border); }
.mk-faq-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 24px 0;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--mk-font-h);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--mk-ink);
  transition: color .2s;
}
.mk-faq-trigger:hover { color: var(--mk-purple); }
.mk-faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--mk-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--mk-mid);
  flex-shrink: 0;
  transition: transform .38s var(--mk-ease), background .25s, border-color .25s, color .25s;
}
.mk-faq-item.mk-open .mk-faq-icon {
  transform: rotate(45deg);
  background: var(--mk-grad);
  border-color: transparent;
  color: #fff;
}
.mk-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--mk-ease);
}
.mk-faq-body-inner {
  padding-bottom: 28px;
  font-size: 16px; line-height: 1.78;
  color: var(--mk-mid);
  max-width: 700px;
}
.mk-faq-item.mk-open .mk-faq-body { max-height: 600px; }

/* ── Contact ─────────────────────────────────────────── */
.mk-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 56px;
}
.mk-contact-card {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  padding: 36px;
  transition: transform .32s var(--mk-ease), box-shadow .32s var(--mk-ease), border-color .25s;
}
.mk-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mk-shadow-md);
  border-color: rgba(124,58,237,.22);
}
.mk-contact-value {
  font-family: var(--mk-font-h);
  font-size: 15px; font-weight: 700;
  color: var(--mk-purple);
  text-decoration: none;
  word-break: break-all;
  display: inline-block;
  margin-top: 6px;
  transition: color .2s;
}
.mk-contact-value:hover { color: var(--mk-indigo); text-decoration: underline; }
.mk-contact-note { font-size: 13px; color: var(--mk-subtle); margin-top: 8px; }

/* ── Auth Pages ──────────────────────────────────────── */
.mk-auth-wrap {
  min-height: 88svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--mk-bg);
  padding: 80px 20px;
  position: relative; overflow: hidden;
}
.mk-auth-wrap::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.1), transparent 65%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.mk-auth-wrap::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.08), transparent 65%);
  bottom: -150px; left: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.mk-auth-card {
  width: 100%; max-width: 480px;
  background: var(--mk-white);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-xl);
  padding: 48px;
  box-shadow: var(--mk-shadow-lg);
  position: relative; z-index: 2;
}
.mk-auth-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--mk-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
}
.mk-auth-title {
  font-family: var(--mk-font-h);
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--mk-ink);
  margin-bottom: 8px;
}
.mk-auth-sub { font-size: 14px; color: var(--mk-mid); margin-bottom: 32px; }

/* ── Logout ───────────────────────────────────────────── */
.mk-logout-icon {
  width: 76px; height: 76px;
  border-radius: 22px;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  margin: 0 auto 26px;
  animation: mk-float 5s ease-in-out infinite;
}

/* ── Account / My Account ────────────────────────────── */
.mk-account-wrap {
  min-height: 85svh;
  background: var(--mk-bg);
  padding: 56px 0;
}

/* ── Pricing shortcode spacing ───────────────────────── */
.mk-pricing-shortcode-wrap { margin-top: 48px; }

/* ── Checkout ─────────────────────────────────────────── */
.mk-checkout-wrap {
  min-height: 85svh;
  background: var(--mk-bg);
  padding: 60px 0;
}
.mk-checkout-inner {
  background: var(--mk-white);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-xl);
  padding: 48px;
  box-shadow: var(--mk-shadow-md);
  max-width: 920px;
  margin: 0 auto;
}
.mk-checkout-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.mk-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mk-font-h);
  font-size: 12px; font-weight: 700;
  color: var(--mk-mid);
  letter-spacing: .03em;
}

/* ── CTA Section ──────────────────────────────────────── */
.mk-cta-section {
  background: var(--mk-dark);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.mk-cta-orb-a {
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(124,58,237,.38), transparent 70%);
  top: -200px; left: -100px;
  border-radius: 50%;
  filter: blur(60px);
  animation: mk-float 15s ease-in-out infinite;
}
.mk-cta-orb-b {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(37,99,235,.3), transparent 70%);
  bottom: -140px; right: -60px;
  border-radius: 50%;
  filter: blur(60px);
  animation: mk-float 19s ease-in-out infinite reverse;
}
.mk-cta-section .mk-h2 { color: #fff; }
.mk-cta-section .mk-lead { color: rgba(255,255,255,.55); margin: 20px auto 0; max-width: 500px; }
.mk-cta-actions { margin-top: 44px; justify-content: center; }

/* ── Divider ─────────────────────────────────────────── */
.mk-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--mk-border), transparent); }
.mk-spacer-sm { height: clamp(40px, 5vw, 64px); }
.mk-spacer-md { height: clamp(64px, 8vw, 100px); }
.mk-spacer-lg { height: clamp(80px, 10vw, 140px); }

/* ── About Page ──────────────────────────────────────── */
.mk-team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 56px;
}
.mk-team-card {
  background: var(--mk-bg);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-r-lg);
  padding: 36px;
  text-align: center;
  transition: transform .32s var(--mk-ease), box-shadow .32s;
}
.mk-team-card:hover { transform: translateY(-4px); box-shadow: var(--mk-shadow-md); }
.mk-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mk-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mk-font-h);
  font-size: 26px; font-weight: 800; color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 4px rgba(124,58,237,.15);
}
.mk-team-name { font-family: var(--mk-font-h); font-weight: 700; font-size: 18px; color: var(--mk-ink); margin-bottom: 4px; }
.mk-team-role { font-size: 13px; font-weight: 600; color: var(--mk-purple); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.mk-team-bio  { font-size: 14px; color: var(--mk-mid); line-height: 1.6; }

/* ── Inline Feature Grid ──────────────────────────────── */
.mk-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 56px;
}

/* ── Dark section text protection ────────────────────── */
/* Prevents theme color overrides from breaking dark-bg sections */
.mk-hero,
.mk-cta-section,
.mk-section-dark { color: rgba(255,255,255,.88); }
.mk-hero .mk-h1,
.mk-hero .mk-h2   { color: #fff; -webkit-text-fill-color: #fff; }
.mk-hero .mk-lead { color: rgba(255,255,255,.58); }
.mk-cta-section .mk-h2   { color: #fff; }
.mk-cta-section .mk-lead { color: rgba(255,255,255,.5); }

/* ── Two-column split (collapses to 1 col on mobile) ── */
.mk-split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
.mk-split-2-start { align-items: start; }

/* ── 3-card grids: lock to exactly 3 cols on desktop, 2 on tablet, 1 on mobile ── */
.mk-team-row,
.mk-feat-grid,
.mk-contact-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .mk-team-row,
  .mk-feat-grid,
  .mk-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .mk-team-row,
  .mk-feat-grid,
  .mk-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing callout inner row */
.mk-callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mk-callout-row > *:first-child { flex: 1; min-width: 260px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .mk-bento { grid-template-columns: 1fr 1fr; }
  .mk-bento-7, .mk-bento-5, .mk-bento-6, .mk-bento-4 { grid-column: span 1; }
  /* bento-8 and bento-12 stay full-width at tablet */
  .mk-bento-8  { grid-column: span 2; }
  .mk-bento-12 { grid-column: span 2; }
  .mk-steps-connector { display: none; }
}
@media (max-width: 768px) {
  .mk-hero { min-height: auto; }
  .mk-bento { grid-template-columns: 1fr; }
  .mk-bento-8, .mk-bento-12 { grid-column: span 1; }
  .mk-btn-lg  { padding: 14px 28px; font-size: 15px; }
  .mk-auth-card { padding: 32px 22px; }
  .mk-checkout-inner { padding: 28px 20px; }
  .mk-pricing-card-featured { transform: none; }
  .mk-pricing-card-featured:hover { transform: translateY(-6px); }
  /* Collapse two-col splits on mobile */
  .mk-split-2 { grid-template-columns: 1fr; }
  /* Comparison table: make it horizontally scrollable on mobile */
  .mk-comp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mk-comp-table { min-width: 600px; }
}
