/**
 * MiroSeo v4.1 — professional marketplace theme
 */

:root {
    --mx-bg: #020617;
    --mx-surface: #0f172a;
    --mx-card: #111827;
    --mx-text: #f8fafc;
    --mx-muted: #94a3b8;
    --mx-gold: #fbbf24;
    --mx-gold-dark: #d97706;
    --mx-gold-glow: rgba(251, 191, 36, 0.25);
    --mx-border: rgba(148, 163, 184, 0.12);
    --mx-radius: 16px;
    --mx-radius-sm: 10px;
    --mx-font: 'Segoe UI', SegoeUI, 'Segoe UI Variable', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --mx-mono: 'Segoe UI', SegoeUI, system-ui, sans-serif;
    --mx-max: 1180px;
    --mx-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

body.miroseo-ui,
body.miroseo-ui button,
body.miroseo-ui input,
body.miroseo-ui textarea,
body.miroseo-ui select {
    font-family: var(--mx-font);
    -webkit-font-smoothing: antialiased;
    background: #f8fafc;
    margin: 0;
    min-height: 100vh;
    color: #0f172a;
}

/* ─── Header ─── */
.mx-site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.25s;
}

.mx-site-header.is-scrolled { box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06); }

.mx-container {
    width: min(var(--mx-max), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.mx-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 68px;
    height: 68px;
}

.mx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
    order: 1;
}

.mx-logo img,
.mx-logo .mx-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
    border-radius: 8px;
}

.mx-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.mx-logo:hover .mx-logo-text { color: var(--mx-gold-dark); }

.mx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    order: 2;
    min-width: 0;
}

.mx-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
}

.mx-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.mx-menu a:hover,
.mx-menu .current-menu-item > a {
    background: rgba(251, 191, 36, 0.12);
    color: var(--mx-gold-dark);
}

.mx-menu .sub-menu {
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0 4px 12px;
}

.mx-menu .sub-menu a {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

body.mx-nav-open {
    overflow: hidden;
}

/* Ghost Blocksy overlays (stale child-theme DB link) */
#offcanvas,
.ct-header,
.ct-panel,
.ct-panel-actions,
.ct-drawer-canvas {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.mx-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.mx-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
}

.mx-main { min-height: 50vh; }

/* ─── Buttons ─── */
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 24px;
    border-radius: var(--mx-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mx-btn:hover { transform: translateY(-2px); }

.mx-btn-gold {
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}

.mx-btn-gold:hover { box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45); }

.mx-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.35);
}

.mx-btn-outline {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}

.mx-btn-dark {
    background: #0f172a;
    color: #fde68a;
    margin-top: 16px;
}

.mx-btn-lg {
    padding: 15px 28px;
    font-size: 0.95rem;
}

.mx-btn-white {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mx-btn-white:hover {
    background: #f8fafc;
}

.miroseo-home .mx-btn-outline {
    background: #fff;
    color: #0f172a;
    border-color: #cbd5e1;
}

.miroseo-home .mx-btn-outline:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.mx-header-cta { padding: 10px 20px !important; font-size: 0.82rem !important; }

/* ─── Hero ─── */
.miroseo .mx-hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: var(--mx-text);
}

.mx-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
    pointer-events: none;
}

.mx-hero-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse, var(--mx-gold-glow), transparent 65%);
    pointer-events: none;
}

.mx-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mx-hero-centered {
    padding: 72px 0 80px;
    text-align: center;
}

.mx-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.mx-hero-lead-wide {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.mx-hero-actions-center,
.mx-hero-checks-center {
    justify-content: center;
}

.mx-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.mx-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.04em;
    color: #fff;
}

.mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mx-hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mx-muted);
    margin: 0 0 28px;
    max-width: 480px;
}

.mx-hero-lead strong { color: #e2e8f0; }

.mx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.mx-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.mx-hero-checks li {
    position: relative;
    padding-left: 22px;
}

.mx-hero-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mx-gold);
    font-weight: 700;
}

/* Hero plugin previews (not charts) */
.mx-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mx-preview {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--mx-border);
    border-radius: var(--mx-radius);
    overflow: hidden;
    box-shadow: var(--mx-shadow);
    backdrop-filter: blur(8px);
}

.mx-preview-woo { margin-left: 32px; }

.mx-preview-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--mx-border);
}

.mx-preview-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.mx-preview-bar span:nth-child(1) { background: #ef4444; }
.mx-preview-bar span:nth-child(2) { background: #eab308; }
.mx-preview-bar span:nth-child(3) { background: #22c55e; }

.mx-preview-body { padding: 18px 20px; }

.mx-preview-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mx-gold);
    margin-bottom: 14px;
}

.mx-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--mx-border);
    font-size: 0.88rem;
    color: #cbd5e1;
}

.mx-preview-row:last-child { border-bottom: none; }

.mx-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

.mx-badge.gold {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.mx-stat {
    font-family: var(--mx-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: #4ade80;
}

/* ─── Highlights (below hero) ─── */
.mx-highlights {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 36px 0 40px;
    margin-top: -1px;
}

.mx-highlights-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.mx-highlight-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mx-highlight-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 120%;
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.25s;
}

.mx-highlight-card-seo .mx-highlight-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.45), transparent 70%);
}

.mx-highlight-card-woo .mx-highlight-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 70%);
}

.mx-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mx-highlight-card-seo:hover {
    border-color: rgba(251, 191, 36, 0.45);
}

.mx-highlight-card-woo:hover {
    border-color: rgba(34, 197, 94, 0.45);
}

.mx-highlight-card:hover .mx-highlight-glow {
    opacity: 0.65;
}

.mx-highlight-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-highlight-card-seo .mx-highlight-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.08));
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.15);
}

.mx-highlight-card-woo .mx-highlight-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.08));
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
}

.mx-highlight-text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mx-highlight-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.mx-highlight-desc {
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.45;
}

.mx-highlight-arrow {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.mx-highlight-card:hover .mx-highlight-arrow {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateX(2px);
}

.mx-highlight-card-woo:hover .mx-highlight-arrow {
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
}

.mx-highlights-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.mx-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.8rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
}

.mx-highlight-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mx-gold);
    box-shadow: 0 0 8px var(--mx-gold);
}

.mx-highlight-badge-dot-green {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-highlight-badge strong {
    color: #f8fafc;
    font-weight: 700;
}

/* ─── Plugin spotlights ─── */
.mx-spotlight {
    padding: 80px 0;
    background: #fff;
}

.mx-spotlight-alt {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mx-spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.mx-spotlight-grid-reverse .mx-spotlight-copy { order: 2; }
.mx-spotlight-grid-reverse .mx-spotlight-panel { order: 1; }

.mx-spotlight-copy .mx-eyebrow {
    margin-bottom: 12px;
}

.mx-spotlight-copy h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 16px;
}

.mx-spotlight-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 24px;
    max-width: 560px;
}

.mx-spotlight-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.mx-spotlight-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.mx-spotlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mx-gold);
}

.mx-spotlight-list strong {
    color: #0f172a;
}

.mx-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mx-spotlight-panel {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--mx-radius);
    padding: 32px 28px;
    box-shadow: var(--mx-shadow);
}

.mx-spotlight-panel-seo {
    border-top: 4px solid var(--mx-gold);
}

.mx-spotlight-panel-woo {
    border-top: 4px solid #22c55e;
}

.mx-spotlight-panel h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    margin: 0 0 10px;
}

.mx-spotlight-panel h3:not(:first-child) {
    margin-top: 24px;
}

.mx-spotlight-panel p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #94a3b8;
}

.mx-spotlight-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mx-spotlight-panel ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.mx-spotlight-panel ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* ─── Sections shared ─── */
.mx-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mx-gold-dark);
    margin-bottom: 10px;
}

.mx-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.mx-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-section-head p {
    margin: 0 auto;
    max-width: 520px;
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
}

.mx-section-head-light h2,
.mx-why .mx-section-head h2 {
    color: #ffffff;
}

.mx-section-head-light .mx-eyebrow {
    color: #fde68a;
}

.mx-section-head-light p,
.mx-why .mx-section-head p {
    color: #94a3b8;
}

/* ─── Marketplace cards ─── */
.mx-market {
    padding: 96px 0 100px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.mx-market-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
    pointer-events: none;
}

.mx-market::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.mx-market::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 400px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.08), transparent 70%);
    pointer-events: none;
}

.mx-market .mx-container {
    position: relative;
    z-index: 1;
}

.mx-section-head-market {
    margin-bottom: 56px;
}

.mx-section-head-market .mx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.mx-market .mx-section-head h2 {
    color: #f8fafc;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.mx-market .mx-section-head p {
    color: #94a3b8;
    max-width: 560px;
    font-size: 1.08rem;
}

.mx-grid-plugins {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.mx-card {
    position: relative;
    display: flex;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mx-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mx-card--mirolabs .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(251, 191, 36, 0.2), transparent 60%);
}

.mx-card--whatscart-recovery .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(34, 197, 94, 0.16), transparent 60%);
}

.mx-card-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 1) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mx-card:hover {
    transform: translateY(-5px);
}

.mx-card:hover .mx-card-glow {
    opacity: 1;
}

.mx-card:hover .mx-card-inner {
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.mx-card.is-featured .mx-card-inner {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.15);
}

.mx-card-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.mx-card-heading {
    flex: 1;
    min-width: 0;
}

.mx-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mx-card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mx-card-flag {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #111827;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mx-card-icon-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-card--mirolabs .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.08));
    box-shadow: 0 0 28px rgba(251, 191, 36, 0.12);
}

.mx-card--whatscart-recovery .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.08));
    box-shadow: 0 0 28px rgba(34, 197, 94, 0.1);
}

.mx-card-icon {
    font-size: 1.85rem;
    line-height: 1;
}

.mx-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.03em;
    color: #f8fafc;
    line-height: 1.2;
}

.mx-card-tagline {
    font-size: 0.84rem;
    font-weight: 600;
    color: #fde68a;
    margin: 0;
    line-height: 1.4;
}

.mx-card--whatscart-recovery .mx-card-tagline {
    color: #86efac;
}

.mx-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 0 16px;
}

.mx-card-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex: 1;
    display: grid;
    gap: 8px;
}

.mx-card-features li {
    position: relative;
    padding: 10px 12px 10px 34px;
    font-size: 0.84rem;
    color: #cbd5e1;
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 10px;
}

.mx-card-features li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--mx-gold);
}

.mx-card--whatscart-recovery .mx-card-features li::before {
    color: #4ade80;
}

.mx-card-foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mx-card-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 16px;
}

.mx-card-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.04em;
    line-height: 1;
}

.mx-card-price-note {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

.mx-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mx-btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.92rem;
}

.mx-card-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.mx-card-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.mx-card-links a:hover {
    color: #fde68a;
}

.mx-card--whatscart-recovery .mx-card-links a:hover {
    color: #86efac;
}

/* ─── Steps ─── */
.mx-steps {
    padding: 80px 0;
    background: #fff;
}

.mx-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mx-step {
    padding: 28px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.mx-step-num {
    display: block;
    font-family: var(--mx-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mx-gold-dark);
    margin-bottom: 12px;
}

.mx-step h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.mx-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ─── Why ─── */
.mx-why {
    padding: 80px 0;
    background: linear-gradient(165deg, #020617, #0f172a);
    color: #fff;
}

.mx-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mx-why-card {
    padding: 28px;
    border-radius: var(--mx-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--mx-border);
    text-align: center;
}

.mx-why-icon { font-size: 2rem; margin-bottom: 12px; }

.mx-why-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #f8fafc;
}

.mx-why-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* ─── Trust ─── */
.mx-trust {
    padding: 80px 0;
    background: #f8fafc;
}

.mx-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.mx-trust-item {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
}

.mx-trust-ico { font-size: 1.75rem; display: block; margin-bottom: 8px; }

.mx-trust-item h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
}

.mx-trust-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.mx-guarantee {
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.25);
}

.mx-guarantee h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.mx-guarantee p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ─── CTA ─── */
.mx-cta {
    padding: 80px 24px;
    background: var(--mx-bg);
}

.mx-cta-box {
    text-align: center;
    padding: 56px 32px;
    border-radius: 24px;
    border: 1px solid var(--mx-border);
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(251, 191, 36, 0.12), transparent),
        linear-gradient(165deg, #0f172a, #020617);
}

.mx-cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

.mx-cta-box p {
    color: var(--mx-muted);
    margin: 0 0 28px;
    font-size: 1.05rem;
}

.mx-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ─── Footer ─── */
.mx-site-footer {
    background: #020617;
    color: #94a3b8;
    padding: 64px 0 32px;
}

.mx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.mx-footer-brand .mx-logo-text {
    color: #fde68a;
    font-size: 1.35rem;
}

.mx-footer-brand p {
    margin: 12px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.mx-footer-col h4 {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e2e8f0;
}

.mx-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-footer-col li { margin-bottom: 10px; }

.mx-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.mx-footer-col a:hover { color: var(--mx-gold); }

.mx-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mx-copyright {
    margin: 0;
    font-size: 0.85rem;
}

.mx-copyright a { color: #fde68a; text-decoration: none; }

/* ─── Inner pages ─── */
.miroseo .miro-container {
    width: min(var(--mx-max), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.mx-page-hero,
.miroseo .miro-pricing-hero,
.miroseo .miro-contact-hero,
.miroseo .miro-about-hero,
.miroseo .miro-docs-header,
.miroseo .miro-hero-section {
    background: linear-gradient(165deg, #020617, #0f172a);
    padding: 56px 24px 48px;
    text-align: center;
    color: #f1f5f9;
}

.mx-page-hero-sm { padding: 40px 24px 32px; }

.mx-page-hero h1,
.miroseo .miro-pricing-hero h1,
.miroseo .miro-contact-hero h1,
.miroseo .miro-about-hero h1,
.miroseo .miro-docs-header h1,
.miroseo .miro-hero-section h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
}

.mx-page-meta { color: var(--mx-muted); margin-top: 10px; }

.mx-page-content,
.miroseo .miro-content-section {
    padding: 56px 24px 72px;
    color: #334155;
    line-height: 1.7;
}

.miroseo .miro-content-section { background: #f8fafc; color: #0f172a; }
.miroseo .miro-content-section.alternate { background: #fff; }

.miroseo .miro-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.miroseo .miro-section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 32px;
}

.miroseo .miro-btn,
.miroseo .miro-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: var(--mx-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #111827;
}

.miroseo .miro-btn-demo,
.miroseo .miro-btn-outline {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.miroseo .miro-cta-section {
    padding: 72px 24px;
    text-align: center;
    background: #0f172a;
    color: #f1f5f9;
}

.miroseo .miro-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 0 24px 56px;
}

.miroseo .miro-contact-form-wrap {
    background: #fff;
    padding: 28px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--mx-shadow);
}

.miroseo .miro-form-group { margin-bottom: 18px; }
.miroseo .miro-form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.miroseo .miro-form-group input,
.miroseo .miro-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font: inherit;
}

.miroseo .miro-form-group input:focus,
.miroseo .miro-form-group textarea:focus {
    outline: none;
    border-color: var(--mx-gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.miroseo .miro-docs-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 40px 24px 72px;
}

.miroseo .miro-docs-content {
    background: #fff;
    padding: 32px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
}

.miroseo .miro-features-grid,
.miroseo .miro-expertise-grid,
.miroseo .miro-commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.miroseo .miro-feature-card,
.miroseo .miro-expertise-item,
.miroseo .miro-commitment-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
}

.miroseo .miro-compare-wrap { overflow-x: auto; border-radius: var(--mx-radius); border: 1px solid #e2e8f0; }
.miroseo .miro-compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.miroseo .miro-compare-table th { background: #0f172a; color: #fff; padding: 12px 16px; }
.miroseo .miro-compare-table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }

.miroseo .miro-price-and-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 0 24px;
}

.miroseo .miro-price-card {
    background: #fff;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--mx-shadow);
}

/* ─── WooCommerce ─── */
body.miroseo-ui.woocommerce .mx-main,
body.miroseo-ui.woocommerce-page .mx-main { background: #f8fafc; }

body.miroseo-ui.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

body.miroseo-ui.woocommerce ul.products li.product {
    background: #fff;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s;
}

body.miroseo-ui.woocommerce ul.products li.product:hover { transform: translateY(-4px); }

body.miroseo-ui.woocommerce a.button,
body.miroseo-ui.woocommerce button.button {
    background: linear-gradient(135deg, #fde047, #f59e0b) !important;
    color: #111827 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .mx-hero-centered { padding: 56px 0 64px; }
    .mx-spotlight-grid { grid-template-columns: 1fr; }
    .mx-spotlight-grid-reverse .mx-spotlight-copy,
    .mx-spotlight-grid-reverse .mx-spotlight-panel { order: unset; }
    .mx-hero-grid { grid-template-columns: 1fr; }
    .mx-hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .mx-preview-woo { margin-left: 0; }
    .mx-grid-plugins { grid-template-columns: 1fr; }
    .mx-highlights-row { grid-template-columns: 1fr; }
    .mx-steps-grid,
    .mx-why-grid { grid-template-columns: 1fr; }
    .mx-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .mx-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .mx-nav-toggle {
        display: none !important;
    }

    .mx-header-cta {
        display: inline-flex !important;
    }

    .mx-nav {
        display: flex !important;
        position: static !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }
}

@media (max-width: 991px) {
    .mx-header-inner {
        position: relative;
    }

    .mx-nav-toggle {
        display: flex !important;
    }

    .mx-header-cta {
        display: none !important;
    }

    .mx-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        order: 99;
        flex: none;
        margin: 0;
        padding: calc(var(--wp-admin--admin-bar--height, 0px) + 72px) 20px 20px;
        background: rgba(15, 23, 42, 0.55);
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
    }

    .mx-nav.is-open {
        display: flex !important;
    }

    .mx-nav .mx-menu {
        flex-direction: column;
        width: min(100%, 360px);
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    }

    .miroseo .miro-contact-wrapper,
    .miroseo .miro-docs-container,
    .miroseo .miro-price-and-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mx-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .mx-trust-grid,
    .mx-highlights-badges { flex-direction: column; align-items: center; }
}

/* ═══ Rank Math–style homepage ═══ */
.miroseo-home .mx-rm-hero {
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 45%, #fff 100%);
    padding: 80px 0 72px;
    text-align: center;
}

.miroseo-home .mx-rm-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.miroseo-home .mx-rm-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #4f46e5;
    margin-bottom: 18px;
}

.miroseo-home .mx-rm-hero h1 {
    font-size: clamp(2.15rem, 4.8vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin: 0 0 22px;
}

.miroseo-home .mx-rm-hero h1 span {
    color: #4338ca;
}

.miroseo-home .mx-rm-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 32px;
}

.miroseo-home .mx-rm-lead strong {
    color: #0f172a;
}

.miroseo-home .mx-rm-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.miroseo-home .mx-rm-hero-note {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.miroseo-home .mx-rm-hero-note strong {
    color: #0f172a;
}

.miroseo-home .mx-rm-logos {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.miroseo-home .mx-rm-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 32px;
}

.miroseo-home .mx-rm-logos-row span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.miroseo-home .mx-rm-intro {
    padding: 72px 0;
    background: #fff;
    text-align: center;
}

.miroseo-home .mx-rm-intro-inner {
    max-width: 720px;
    margin: 0 auto;
}

.miroseo-home .mx-rm-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-intro p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

.miroseo-home .mx-rm-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.miroseo-home .mx-rm-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-section-head p {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.65;
}

.miroseo-home .mx-rm-features {
    padding: 80px 0;
    background: #f8fafc;
}

.miroseo-home .mx-rm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.miroseo-home .mx-rm-feature {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.miroseo-home .mx-rm-feature:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.miroseo-home .mx-rm-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: #eef2ff;
    border-radius: 12px;
    margin-bottom: 16px;
}

.miroseo-home .mx-rm-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.miroseo-home .mx-rm-feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.miroseo-home .mx-rm-features-link {
    text-align: center;
    margin: 36px 0 0;
}

.miroseo-home .mx-rm-features-link a {
    font-weight: 700;
    color: #4338ca;
    text-decoration: none;
}

.miroseo-home .mx-rm-features-link a:hover {
    text-decoration: underline;
}

.miroseo-home .mx-rm-split {
    padding: 88px 0;
    background: #fff;
}

.miroseo-home .mx-rm-split-alt {
    background: #f8fafc;
}

.miroseo-home .mx-rm-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-copy { order: 2; }
.miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-visual { order: 1; }

.miroseo-home .mx-rm-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4338ca;
    margin-bottom: 12px;
}

.miroseo-home .mx-rm-label-green {
    color: #16a34a;
}

.miroseo-home .mx-rm-split-copy h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-split-copy > p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 24px;
}

.miroseo-home .mx-rm-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.miroseo-home .mx-rm-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.miroseo-home .mx-rm-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: #22c55e;
    border-radius: 50%;
}

.miroseo-home .mx-rm-split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.miroseo-home .mx-rm-module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.miroseo-home .mx-rm-module-card-green .mx-rm-module-head {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    color: #166534;
}

.miroseo-home .mx-rm-module-head {
    padding: 16px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    color: #4338ca;
    border-bottom: 1px solid #e2e8f0;
}

.miroseo-home .mx-rm-module-list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.miroseo-home .mx-rm-module-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.miroseo-home .mx-rm-module-list li:last-child {
    border-bottom: none;
}

.miroseo-home .mx-rm-module-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
}

.miroseo-home .mx-rm-module-dot.on {
    background: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.miroseo-home .mx-rm-module-dot.on.green {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.miroseo-home .mx-rm-solution {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.miroseo-home .mx-rm-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.miroseo-home .mx-rm-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.miroseo-home .mx-rm-solution-item span {
    font-size: 1.35rem;
    line-height: 1;
}

.miroseo-home .mx-rm-solution-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
}

.miroseo-home .mx-market-light {
    padding: 88px 0;
    background: #f8fafc;
}

.miroseo-home .mx-market-light::before,
.miroseo-home .mx-market-light::after {
    display: none;
}

.miroseo-home .mx-market-light .mx-section-head h2 {
    color: #0f172a;
}

.miroseo-home .mx-market-light .mx-section-head p {
    color: #64748b;
}

.miroseo-home .mx-market-light .mx-eyebrow {
    color: #4338ca;
}

.miroseo-home .mx-market-light .mx-card-glow {
    display: none;
}

.miroseo-home .mx-market-light .mx-card-inner {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.miroseo-home .mx-market-light .mx-card:hover .mx-card-inner {
    border-color: #cbd5e1;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.miroseo-home .mx-market-light .mx-card.is-featured .mx-card-inner {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.12);
}

.miroseo-home .mx-market-light .mx-card h3 {
    color: #0f172a;
}

.miroseo-home .mx-market-light .mx-card-tagline {
    color: #b45309;
}

.miroseo-home .mx-market-light .mx-card--whatscart-recovery .mx-card-tagline {
    color: #16a34a;
}

.miroseo-home .mx-market-light .mx-card-desc {
    color: #64748b;
}

.miroseo-home .mx-market-light .mx-card-features li {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
}

.miroseo-home .mx-market-light .mx-card-price {
    color: #0f172a;
}

.miroseo-home .mx-market-light .mx-card-foot {
    border-color: #e2e8f0;
}

.miroseo-home .mx-market-light .mx-card-links a {
    color: #64748b;
}

.miroseo-home .mx-market-light .mx-card-links a:hover {
    color: #4338ca;
}

.miroseo-home .mx-rm-setup {
    padding: 80px 0;
    background: #fff;
}

.miroseo-home .mx-rm-setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.miroseo-home .mx-rm-setup-grid article {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.miroseo-home .mx-rm-setup-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    border-radius: 50%;
    margin-bottom: 16px;
}

.miroseo-home .mx-rm-setup-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.miroseo-home .mx-rm-setup-grid p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.miroseo-home .mx-trust-light {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.miroseo-home .mx-trust-light .mx-trust-item {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.miroseo-home .mx-guarantee-light {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.miroseo-home .mx-guarantee-light h3 {
    color: #0f172a;
}

.miroseo-home .mx-guarantee-light p {
    color: #64748b;
}

.miroseo-home .mx-rm-final-cta {
    padding: 88px 0;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #4f46e5 100%);
    text-align: center;
}

.miroseo-home .mx-rm-final-inner {
    max-width: 640px;
    margin: 0 auto;
}

.miroseo-home .mx-rm-final-cta h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-final-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px;
    line-height: 1.65;
}

@media (max-width: 960px) {
    .miroseo-home .mx-rm-features-grid,
    .miroseo-home .mx-rm-solution-grid,
    .miroseo-home .mx-rm-setup-grid {
        grid-template-columns: 1fr;
    }

    .miroseo-home .mx-rm-split-grid,
    .miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-copy,
    .miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-visual {
        grid-template-columns: 1fr;
        order: unset;
    }
}

/* Stuck WooCommerce / plugin overlays that block the whole page */
.blockUI.blockOverlay,
.blockUI.blockElement.blockOverlay {
    display: none !important;
    pointer-events: none !important;
}
