/* ============================================
   MARKETEK DESIGN SYSTEM
   Version 2.0 — Light Mode Default
   ============================================ */

/* === GOOGLE FONTS ===
   Loaded via <link> in header for non-blocking render.
   See marketek_preload_fonts() in functions.php.
   DO NOT use @import here — it creates a render-blocking chain. */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Primary Colors */
  --mk-green: #00D68F;
  --mk-green-deep: #00A670;
  --mk-green-light: #4AEDB8;
  --mk-green-glow: rgba(0, 214, 143, 0.12);

  /* Accent & Neutrals */
  --mk-indigo: #6366F1;
  --mk-amber: #F59E0B;
  --mk-red: #F87171;
  --mk-midnight: #0B1120;
  --mk-surface: #131B2E;

  /* Light Mode (Default) */
  --mk-text-primary: #1E293B;
  --mk-text-secondary: #64748B;
  --mk-bg-snow: #F8FAFC;
  --mk-bg-cloud: #F0FDF7;
  --mk-bg-white: #FFFFFF;

  /* States */
  --mk-success: #10B981;
  --mk-warning: #F59E0B;
  --mk-danger: #EF4444;
  --mk-info: #6366F1;

  /* Typography */
  --font-display: 'DM Sans', sans-serif;
  --font-accent: 'Bricolage Grotesque', sans-serif; /* Only for numbers, wordmark — no accented text */
  --font-ui: 'DM Sans', sans-serif;
  --font-body: 'Mulish', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-green-glow: 0 0 20px rgba(0, 214, 143, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--mk-text-primary);
  background-color: var(--mk-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--mk-green-deep);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--mk-green);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mk-text-primary);
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1rem;
  color: var(--mk-text-secondary);
}

.text-display {
  font-family: var(--font-display);
}

.text-ui {
  font-family: var(--font-ui);
}

.text-body {
  font-family: var(--font-body);
}

/* === LAYOUT === */
.mk-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.mk-container--narrow {
  max-width: var(--container-narrow);
}

.mk-container--wide {
  max-width: var(--container-wide);
}

.mk-section {
  padding: var(--space-4xl) 0;
}

.mk-section--sm {
  padding: var(--space-2xl) 0;
}

.mk-section--lg {
  padding: calc(var(--space-4xl) * 1.5) 0;
}

/* Background variants */
.mk-bg-white { background-color: var(--mk-bg-white); }
.mk-bg-snow { background-color: var(--mk-bg-snow); }
.mk-bg-cloud { background-color: var(--mk-bg-cloud); }
.mk-bg-midnight {
  background-color: var(--mk-midnight);
  color: #FFFFFF;
}
.mk-bg-midnight h1,
.mk-bg-midnight h2,
.mk-bg-midnight h3,
.mk-bg-midnight h4,
.mk-bg-midnight h5,
.mk-bg-midnight h6 {
  color: #FFFFFF;
}
.mk-bg-midnight p {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid System */
.mk-grid {
  display: grid;
  gap: var(--space-lg);
}

.mk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mk-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .mk-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mk-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .mk-grid--4,
  .mk-grid--3,
  .mk-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Flex utilities */
.mk-flex { display: flex; }
.mk-flex--center { align-items: center; justify-content: center; }
.mk-flex--between { align-items: center; justify-content: space-between; }
.mk-flex--gap-sm { gap: var(--space-sm); }
.mk-flex--gap-md { gap: var(--space-md); }
.mk-flex--gap-lg { gap: var(--space-lg); }
.mk-flex--wrap { flex-wrap: wrap; }

/* === BUTTONS === */
.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.mk-btn--primary {
  background-color: var(--mk-green);
  color: var(--mk-midnight);
  border-color: var(--mk-green);
}

.mk-btn--primary:hover {
  background-color: var(--mk-green-light);
  border-color: var(--mk-green-light);
  color: var(--mk-midnight);
  box-shadow: var(--shadow-green-glow);
}

.mk-btn--secondary {
  background-color: transparent;
  color: var(--mk-green-deep);
  border-color: rgba(0, 166, 112, 0.3);
}

.mk-btn--secondary:hover {
  background-color: var(--mk-green-glow);
  border-color: var(--mk-green-deep);
  color: var(--mk-green-deep);
}

.mk-btn--ghost {
  background: none;
  border: none;
  color: var(--mk-green-deep);
  padding: 0.5rem 0.75rem;
}

.mk-btn--ghost:hover {
  color: var(--mk-green);
}

.mk-btn--dark {
  background-color: var(--mk-green);
  color: var(--mk-midnight);
}

.mk-btn--dark:hover {
  background-color: var(--mk-green-light);
  color: var(--mk-midnight);
  box-shadow: var(--shadow-green-glow);
}

.mk-btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.mk-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.mk-btn--full {
  width: 100%;
}

/* Button on dark backgrounds */
.mk-bg-midnight .mk-btn--secondary {
  color: var(--mk-green);
  border-color: rgba(0, 214, 143, 0.3);
}

.mk-bg-midnight .mk-btn--secondary:hover {
  background-color: rgba(0, 214, 143, 0.1);
  border-color: var(--mk-green);
}

.mk-bg-midnight .mk-btn--ghost {
  color: var(--mk-green);
}

/* === CARDS === */
.mk-card {
  background: var(--mk-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.mk-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-green-glow);
}

.mk-card--flat {
  border: none;
  background: var(--mk-bg-snow);
}

.mk-card--feature {
  text-align: center;
  padding: var(--space-2xl);
}

.mk-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mk-green-glow);
  color: var(--mk-green-deep);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.mk-card--feature .mk-card__icon {
  margin: 0 auto var(--space-md);
}

.mk-card__title {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--mk-text-primary);
}

.mk-card__desc {
  font-size: 0.9375rem;
  color: var(--mk-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.mk-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--mk-green-deep);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}

.mk-card__link:hover {
  gap: 0.5rem;
  color: var(--mk-green);
}

/* === BADGES === */
.mk-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mk-badge--green {
  background: var(--mk-green-glow);
  color: var(--mk-green-deep);
}

.mk-badge--indigo {
  background: rgba(99, 102, 241, 0.1);
  color: var(--mk-indigo);
}

.mk-badge--amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--mk-amber);
}

.mk-badge--dark {
  background: rgba(0, 214, 143, 0.15);
  color: var(--mk-green);
}

/* === CALLOUTS (for docs/help) === */
.mk-callout {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin: var(--space-lg) 0;
  font-size: 0.9375rem;
}

.mk-callout__title {
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.mk-callout--tip {
  border-color: var(--mk-green);
  background: var(--mk-bg-cloud);
}

.mk-callout--warning {
  border-color: var(--mk-amber);
  background: rgba(245, 158, 11, 0.05);
}

.mk-callout--important {
  border-color: var(--mk-red);
  background: rgba(248, 113, 113, 0.05);
}

.mk-callout--note {
  border-color: var(--mk-indigo);
  background: rgba(99, 102, 241, 0.05);
}

/* === BREADCRUMBS === */
.mk-breadcrumbs {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--mk-text-secondary);
  padding: var(--space-md) 0;
}

.mk-breadcrumbs a {
  color: var(--mk-text-secondary);
}

.mk-breadcrumbs a:hover {
  color: var(--mk-green-deep);
}

.mk-breadcrumbs .separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* === FORMS === */
.mk-form-group {
  margin-bottom: var(--space-md);
}

.mk-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  color: var(--mk-text-primary);
}

.mk-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  background: var(--mk-bg-white);
  color: var(--mk-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mk-input:focus {
  outline: none;
  border-color: var(--mk-green);
  box-shadow: 0 0 0 3px var(--mk-green-glow);
}

.mk-input::placeholder {
  color: var(--mk-text-secondary);
  opacity: 0.6;
}

/* Dark background forms */
.mk-bg-midnight .mk-input {
  background: var(--mk-surface);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.mk-bg-midnight .mk-input:focus {
  border-color: var(--mk-green);
}

/* === TABLE === */
.mk-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.mk-table th {
  font-family: var(--font-ui);
  font-weight: 600;
  text-align: left;
  padding: 0.875rem 1rem;
  background: var(--mk-bg-snow);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  color: var(--mk-text-primary);
}

.mk-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--mk-text-secondary);
}

.mk-table tr:last-child td {
  border-bottom: none;
}

.mk-table tr:hover td {
  background: var(--mk-bg-snow);
}

/* Dark table variant (inside midnight sections) */
.mk-bg-midnight .mk-table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
}

.mk-bg-midnight .mk-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mk-bg-midnight .mk-table td {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.mk-bg-midnight .mk-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.mk-bg-midnight .mk-table tr:last-child td {
  border-bottom: none;
}

/* Comparison table checkmarks */
.mk-check {
  color: var(--mk-green-deep);
  font-weight: 700;
}

.mk-cross {
  color: var(--mk-red);
  opacity: 0.5;
}

/* === CODE BLOCKS (API docs) === */
.mk-code-wrap {
  margin: var(--space-lg) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mk-code-tabs {
  display: flex;
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-code-tab {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.mk-code-tab.active,
.mk-code-tab:hover {
  color: var(--mk-green);
}

.mk-code-block {
  background: #0f1420;
  padding: var(--space-lg);
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.mk-code-block code {
  font-family: inherit;
}

/* Inline code */
code:not([class]) {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.875em;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--mk-green-deep);
}

/* === SECTION HEADERS === */
.mk-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.mk-section-header h2 {
  margin-bottom: var(--space-md);
}

.mk-section-header p {
  font-size: 1.0625rem;
}

/* === STEPS / TIMELINE === */
.mk-steps {
  display: flex;
  gap: var(--space-xl);
  counter-reset: step;
}

.mk-step {
  flex: 1;
  text-align: center;
  position: relative;
  counter-increment: step;
}

.mk-step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mk-green-glow);
  color: var(--mk-green-deep);
  border-radius: 50%;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
}

.mk-step__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.mk-step__desc {
  font-size: 0.9375rem;
  color: var(--mk-text-secondary);
}

@media (max-width: 640px) {
  .mk-steps {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

/* === TABS === */
.mk-tabs {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mk-tab {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem;
  color: var(--mk-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.mk-tab:hover {
  color: var(--mk-text-primary);
}

.mk-tab.active {
  color: var(--mk-green-deep);
  border-bottom-color: var(--mk-green-deep);
}

.mk-tab-panel {
  display: none;
}

.mk-tab-panel.active {
  display: block;
}

/* === FAQ ACCORDION === */
.mk-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mk-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  color: var(--mk-text-primary);
  cursor: pointer;
  text-align: left;
}

.mk-faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--mk-green-deep);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.mk-faq-item.active .mk-faq-question::after {
  content: '\2212';
}

.mk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.mk-faq-item.active .mk-faq-answer {
  max-height: 500px;
}

.mk-faq-answer__inner {
  padding-bottom: var(--space-lg);
  color: var(--mk-text-secondary);
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.mk-testimonial {
  background: var(--mk-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.mk-testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--mk-text-primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.mk-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.mk-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.mk-testimonial__name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--mk-text-primary);
}

.mk-testimonial__role {
  font-size: 0.8125rem;
  color: var(--mk-text-secondary);
}

/* === HERO SECTION === */
.mk-hero {
  padding: var(--space-4xl) 0 calc(var(--space-4xl) * 1.5);
  position: relative;
  overflow: hidden;
}

.mk-hero--dark {
  background: var(--mk-midnight);
  color: #FFFFFF;
}

.mk-hero--dark h1 {
  color: #FFFFFF;
}

.mk-hero--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.mk-hero__content {
  max-width: 650px;
}

.mk-hero__badge {
  margin-bottom: var(--space-lg);
}

.mk-hero h1 {
  margin-bottom: var(--space-lg);
}

.mk-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.mk-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.mk-hero__image {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* === PROOF BAR === */
.mk-proof-bar {
  padding: var(--space-xl) 0;
  text-align: center;
}

.mk-proof-bar__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.mk-proof-bar__item {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--mk-text-secondary);
}

.mk-proof-bar__number {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--mk-text-primary);
  display: block;
}

/* === BLOG CARDS === */
.mk-post-card {
  background: var(--mk-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.mk-post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.mk-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.mk-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mk-post-card:hover .mk-post-card__thumb img {
  transform: scale(1.05);
}

.mk-post-card__thumb-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  background: linear-gradient(145deg, #0B1120 0%, #132238 60%, #0d2a2a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mk-post-card__thumb-fallback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mk-green);
}

.mk-post-card__thumb-fallback::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 214, 143, 0.12) 0%, transparent 70%);
}

.mk-post-card__thumb-cat {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mk-green);
  background: rgba(0, 214, 143, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.mk-post-card__thumb-title {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  position: relative;
  z-index: 1;
}

.mk-post-card__thumb-brand {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  color: rgba(160, 174, 192, 0.6);
  margin-top: auto;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.mk-post-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mk-post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--mk-text-secondary);
  margin-bottom: var(--space-sm);
}

.mk-post-card__cat {
  font-weight: 600;
  color: var(--mk-green-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.6875rem;
}

.mk-post-card__date::before {
  content: '\00B7';
  margin-right: var(--space-sm);
  opacity: 0.4;
}

.mk-post-card__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.35;
  margin-bottom: var(--space-sm);
}

.mk-post-card__title a {
  color: var(--mk-text-primary);
  text-decoration: none;
}

.mk-post-card__title a:hover {
  color: var(--mk-green-deep);
}

.mk-post-card__author {
  font-size: 0.6875rem;
  color: var(--mk-text-secondary);
}

.mk-post-card__excerpt {
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.mk-post-card__footer {
  display: flex;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: auto;
}

.mk-post-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--mk-text-secondary);
}

.mk-post-card__reading svg {
  opacity: 0.6;
}

/* === SIDEBAR (Blog/Docs) === */
.mk-sidebar {
  position: sticky;
  top: calc(var(--space-xl) + 80px);
}

.mk-sidebar__widget {
  margin-bottom: var(--space-xl);
}

.mk-sidebar__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mk-text-secondary);
  margin-bottom: var(--space-md);
}

/* === DOCS SIDEBAR (Knowledge Base & API) === */
.mk-docs-sidebar {
  width: 280px;
  flex-shrink: 0;
  padding-right: var(--space-xl);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mk-docs-sidebar__section {
  margin-bottom: var(--space-lg);
}

.mk-docs-sidebar__heading {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mk-text-secondary);
  margin-bottom: var(--space-sm);
}

.mk-docs-sidebar__list {
  list-style: none;
}

.mk-docs-sidebar__link {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  color: var(--mk-text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  margin-bottom: 1px;
}

.mk-docs-sidebar__link:hover {
  color: var(--mk-text-primary);
  background: var(--mk-bg-snow);
}

.mk-docs-sidebar__link.active {
  color: var(--mk-green-deep);
  background: var(--mk-green-glow);
  font-weight: 500;
}

/* === PAGINATION === */
.mk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.mk-pagination a,
.mk-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  transition: all var(--transition-fast);
}

.mk-pagination a:hover {
  background: var(--mk-bg-snow);
  color: var(--mk-text-primary);
}

.mk-pagination .current {
  background: var(--mk-green);
  color: var(--mk-midnight);
  font-weight: 600;
}

/* === SEARCH === */
.mk-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.mk-search__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background: var(--mk-bg-white);
  transition: all var(--transition-fast);
}

.mk-search__input:focus {
  outline: none;
  border-color: var(--mk-green);
  box-shadow: 0 0 0 4px var(--mk-green-glow);
}

.mk-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mk-text-secondary);
}

/* === PRICING CARDS === */
.mk-pricing-card {
  background: var(--mk-bg-white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.mk-pricing-card--featured {
  border-color: var(--mk-green);
  position: relative;
  transform: scale(1.02);
}

.mk-pricing-card--featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mk-green);
  color: var(--mk-midnight);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mk-pricing-card__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.mk-pricing-card__price {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 3rem;
  color: var(--mk-text-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.mk-pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mk-text-secondary);
}

.mk-pricing-card__period {
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  margin-bottom: var(--space-xl);
}

.mk-pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
}

.mk-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--mk-text-secondary);
}

.mk-pricing-card__features li::before {
  content: '\2713';
  color: var(--mk-green-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* === TOC (Table of Contents) === */
.mk-toc {
  background: var(--mk-bg-snow);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.mk-toc__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.mk-toc__list {
  list-style: none;
}

.mk-toc__list li {
  margin-bottom: var(--space-xs);
}

.mk-toc__list a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  padding: 0.25rem 0;
  display: block;
}

.mk-toc__list a:hover {
  color: var(--mk-green-deep);
}

.mk-toc__list .toc-h3 {
  padding-left: var(--space-lg);
}

.mk-toc__list .toc-h4 {
  padding-left: calc(var(--space-lg) * 2);
}

/* === ARTICLE CONTENT === */
.mk-article-content {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--mk-text-primary);
}

/* Hide duplicate H1 inside the_content (title already in header) */
.mk-article-content > h1:first-child {
  display: none;
}

.mk-article-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--mk-green-glow);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  letter-spacing: -0.01em;
}

.mk-article-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--mk-text-primary);
}

.mk-article-content h4 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: 1.0625rem;
  color: var(--mk-text-primary);
}

.mk-article-content p {
  margin-bottom: var(--space-lg);
  color: var(--mk-text-primary);
}

.mk-article-content > p:first-of-type {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--mk-text-secondary);
}

.mk-article-content a {
  color: var(--mk-green-deep);
  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 112, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}

.mk-article-content a:hover {
  text-decoration-color: var(--mk-green-deep);
}

.mk-article-content ul,
.mk-article-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.mk-article-content ul {
  list-style: none;
}

.mk-article-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.mk-article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mk-green);
}

.mk-article-content ol li {
  margin-bottom: var(--space-sm);
  padding-left: 0.25rem;
}

.mk-article-content ol li::marker {
  color: var(--mk-green-deep);
  font-weight: 600;
}

.mk-article-content blockquote {
  border-left: 4px solid var(--mk-green);
  padding: var(--space-lg) var(--space-xl);
  background: var(--mk-bg-cloud);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-xl) 0;
  font-style: italic;
  font-size: 1.0625rem;
}

.mk-article-content blockquote p {
  color: var(--mk-text-secondary);
  margin-bottom: 0;
}

.mk-article-content blockquote p + p {
  margin-top: var(--space-sm);
}

.mk-article-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  max-width: 100%;
  height: auto;
}

.mk-article-content pre {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  background: var(--mk-midnight);
  color: #e2e8f0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.mk-article-content code {
  font-size: 0.875em;
  background: var(--mk-bg-snow);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--mk-green-deep);
}

.mk-article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.mk-article-content hr {
  border: none;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: var(--space-3xl) 0;
}

.mk-article-content strong {
  font-weight: 700;
  color: var(--mk-text-primary);
}

.mk-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
  font-size: 0.9375rem;
}

.mk-article-content table th {
  background: var(--mk-bg-snow);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mk-text-secondary);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.mk-article-content table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--mk-text-primary);
}

.mk-article-content table tr:hover td {
  background: rgba(0, 214, 143, 0.02);
}

/* === UTILITY CLASSES === */
.mk-text-center { text-align: center; }
.mk-text-left { text-align: left; }
.mk-text-right { text-align: right; }
.mk-text-green { color: var(--mk-green-deep); }
.mk-text-green-bright { color: var(--mk-green); }
.mk-text-secondary { color: var(--mk-text-secondary); }
.mk-mt-0 { margin-top: 0; }
.mk-mb-0 { margin-bottom: 0; }
.mk-mb-md { margin-bottom: var(--space-md); }
.mk-mb-lg { margin-bottom: var(--space-lg); }
.mk-mb-xl { margin-bottom: var(--space-xl); }
.mk-mb-2xl { margin-bottom: var(--space-2xl); }
.mk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === RESPONSIVE VISIBILITY === */
@media (max-width: 1024px) {
  .mk-hide-tablet { display: none !important; }
}

@media (max-width: 640px) {
  .mk-hide-mobile { display: none !important; }
}

@media (min-width: 641px) {
  .mk-show-mobile-only { display: none !important; }
}

@media (min-width: 1025px) {
  .mk-show-tablet-only { display: none !important; }
}

/* === DEMO POPUP MODAL === */
.mk-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.mk-modal.active {
  display: flex;
}

.mk-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mk-modal__content {
  position: relative;
  background: var(--mk-bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: mkModalIn 0.25s ease-out;
}

@keyframes mkModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mk-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--mk-bg-snow);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--mk-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 1;
}

.mk-modal__close:hover {
  background: var(--mk-bg-cloud);
  color: var(--mk-text-primary);
}

.mk-modal__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.125rem;
  padding: var(--space-lg) var(--space-xl) 0;
  color: var(--mk-text-primary);
}

.mk-modal__body {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
}

.mk-modal__body iframe {
  width: 100%;
  min-height: 550px;
  border: none;
}

@media (max-width: 640px) {
  .mk-modal {
    padding: var(--space-sm);
  }
  .mk-modal__content {
    max-height: 95vh;
  }
  .mk-modal__body iframe {
    min-height: 480px;
  }
}

/* === CONTACT PAGE === */
.mk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.mk-contact-grid iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
}

.mk-contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--mk-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
}

.mk-contact-card:hover {
  box-shadow: var(--shadow-md);
}

.mk-contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--mk-green-glow);
  color: var(--mk-green-deep);
}

.mk-contact-card__body h4 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.mk-contact-card__body p {
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .mk-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* === HERO GRID (Two-column with mockup) === */
.mk-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mk-hero__microcopy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--space-md);
  font-family: var(--font-ui);
}

.mk-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mk-hero__mockup {
  position: relative;
  perspective: 1000px;
}

.mk-hero__mockup img {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: rotateY(-5deg);
  transition: transform var(--transition-slow);
  max-width: 100%;
}

.mk-hero__mockup:hover img {
  transform: rotateY(0);
}

.mk-hero__mockup-fallback {
  display: none;
  background: var(--mk-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
  align-items: center;
  justify-content: center;
}

.mk-hero__mockup--placeholder img {
  display: none;
}

.mk-hero__mockup--placeholder .mk-hero__mockup-fallback {
  display: flex;
}

@media (max-width: 1024px) {
  .mk-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mk-hero__content {
    max-width: 650px;
    margin: 0 auto;
  }
  .mk-hero__actions {
    justify-content: center;
  }
  .mk-hero__mockup img {
    transform: none;
    max-width: 90%;
    margin: 0 auto;
  }
  .mk-hero__mockup:hover img {
    transform: none;
  }
}

/* === FEATURE CARD BADGES & HIGHLIGHTS === */
.mk-card--highlighted {
  border: 1px solid rgba(0, 214, 143, 0.3);
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.03), transparent);
}

.mk-card--highlighted:hover {
  border-color: var(--mk-green);
}

.mk-feature-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 214, 143, 0.15);
  color: var(--mk-green);
  margin-bottom: 8px;
}

.mk-card--feature {
  cursor: pointer;
  transition: all var(--transition-base);
}

.mk-card--feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-green-glow);
}

/* === TESTIMONIAL AVATAR INITIALS === */
.mk-testimonial__avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00D68F, #00A670);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* === IA PROOF TEXT === */
.mk-ia-proof {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: rgba(0, 214, 143, 0.8);
  font-weight: 500;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

/* === CTA URGENCY === */
.mk-cta-urgency {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #F59E0B;
  font-weight: 600;
  font-family: var(--font-ui);
}

/* === CHECKBOX CALCULATOR === */
.mk-calc {
  max-width: 900px;
  margin: 0 auto;
}

.mk-calc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 var(--space-2xl);
  text-align: left;
}

.mk-calc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  font-size: 0.9rem;
  font-family: var(--font-ui);
}

.mk-calc__item:hover {
  border-color: var(--mk-green);
  background: rgba(0, 214, 143, 0.03);
}

.mk-calc__item:has(input:checked),
.mk-calc__item--checked {
  border-color: var(--mk-green);
  background: rgba(0, 214, 143, 0.06);
  box-shadow: 0 0 0 1px var(--mk-green);
}

.mk-calc__item input:checked + .mk-calc__item-icon ~ .mk-calc__item-name {
  font-weight: 600;
}

.mk-calc__item input[type="checkbox"] {
  accent-color: var(--mk-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mk-calc__item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mk-calc__item-name {
  flex: 1;
  min-width: 0;
}

.mk-calc__item-cost {
  margin-left: auto;
  color: var(--mk-text-secondary);
  font-size: 0.8rem;
  white-space: nowrap;
}

.mk-calc__result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 0 var(--space-2xl);
  padding: 2rem;
  background: #f8fafc;
  border-radius: var(--radius-xl);
}

.mk-calc__label {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  display: block;
}

.mk-calc__value {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: var(--mk-text-primary);
}

.mk-calc__sublabel {
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
}

.mk-calc__versus {
  font-weight: 800;
  color: #94a3b8;
  font-size: 1.2rem;
}

.mk-calc__savings {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  color: var(--mk-green);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-family: var(--font-ui);
}

.mk-calc__savings-annual {
  display: block;
  font-size: 0.9rem;
  color: var(--mk-text-secondary);
  margin-top: 4px;
}

/* === GHL FORM WRAPPER === */
.mk-ghl-form-wrapper {
  display: flex;
  justify-content: center;
  padding: var(--space-md) 0;
  width: 100%;
  overflow: hidden;
}

.mk-ghl-form-wrapper iframe {
  width: 100% !important;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border: none;
}

@media (max-width: 640px) {
  .mk-ghl-form-wrapper {
    padding: var(--space-sm) 0;
    flex-direction: column;
    align-items: center;
  }
  .mk-ghl-form-wrapper iframe {
    max-width: 100%;
    min-height: 500px;
  }
}

/* === SKELETON LOADER === */
.mk-ghl-form-skeleton {
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.mk-skeleton-line {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: mk-skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
}

@keyframes mk-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === RECURSOS / LEAD MAGNETS === */
.mk-recursos-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: var(--space-xl);
}

.mk-recursos-filter {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--mk-border);
  background: transparent;
  color: var(--mk-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.mk-recursos-filter:hover {
  border-color: rgba(0, 214, 143, 0.3);
  color: var(--mk-text-primary);
}

.mk-recursos-filter.active {
  background: var(--mk-green);
  color: var(--mk-midnight);
  border-color: var(--mk-green);
}

.mk-recurso-card {
  background: var(--mk-surface);
  border: 1px solid var(--mk-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.mk-recurso-card:hover {
  border-color: rgba(0, 214, 143, 0.3);
  transform: translateY(-2px);
}

.mk-recurso-card--featured {
  border: 1px solid rgba(0, 214, 143, 0.2);
}

.mk-recurso-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mk-recurso-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mk-recurso-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mk-recurso-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(0, 214, 143, 0.12);
  color: var(--mk-green);
  margin-bottom: 10px;
  width: fit-content;
}

.mk-recurso-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mk-text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mk-recurso-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--mk-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.mk-recurso-card__link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mk-green);
  text-decoration: none;
  transition: color 0.2s;
}

.mk-recurso-card__link:hover {
  color: var(--mk-green-deep);
  text-decoration: underline;
}

/* === TEXT UTILITIES === */
.mk-text-danger { color: #ef4444; }
