/* =============================================================
 *  marketing.css — Styles for /marketing/ hub & sub-pages
 *  Prefix: mch-mkt-  |  Loaded conditionally
 * ============================================================= */

/* ─── CSS VARIABLES ─── */
:root {
    --mkt-primary: #0a1628;
    --mkt-accent: var(--ast-global-color-0, #0170B9);
    --mkt-accent-light: #3b82f6;
    --mkt-accent-bg: #eff6ff;
    --mkt-green: #059669;
    --mkt-green-bg: #ecfdf5;
    --mkt-red: #dc2626;
    --mkt-red-bg: #fef2f2;
    --mkt-gray-50: #f9fafb;
    --mkt-gray-100: #f3f4f6;
    --mkt-gray-200: #e5e7eb;
    --mkt-gray-500: #6b7280;
    --mkt-gray-700: #374151;
    --mkt-gray-900: #1f2937;
    --mkt-radius: 12px;
    --mkt-radius-lg: 16px;
    --mkt-shadow: 0 1px 3px rgba(0,0,0,.08);
    --mkt-shadow-md: 0 4px 6px rgba(0,0,0,.07);
    --mkt-shadow-lg: 0 10px 15px rgba(0,0,0,.1);
    --mkt-shadow-xl: 0 20px 25px rgba(0,0,0,.12);
    --mkt-max-w: 1200px;
}

/* ─── MARKETING HEADER ─── */
.mch-mkt-header {
    background: #fff;
    border-bottom: 1px solid var(--mkt-gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.mch-mkt-header__inner {
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 12px;
}
/* Logo + Marketing badge */
.mch-mkt-header__logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mch-mkt-header__logo img { height: 28px; width: auto; display: block; }
.mch-mkt-header__logo > span:not(.mch-mkt-header__badge) { color: var(--mkt-gray-900); font-weight: 700; font-size: 16px; }
.mch-mkt-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--mkt-accent);
    background: var(--mkt-accent-bg);
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
}
.mch-mkt-header__badge i { font-size: 8px; }
/* Link al directorio */
.mch-mkt-header__dir {
    font-size: 11px;
    color: var(--mkt-gray-500);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.mch-mkt-header__dir:hover { color: var(--mkt-accent); }
.mch-mkt-header__dir i { font-size: 9px; }
/* Nav (centered) */
.mch-mkt-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.mch-mkt-header__link {
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mkt-gray-600, #4b5563);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    line-height: 1;
}
.mch-mkt-header__link:hover { color: var(--mkt-gray-900); background: var(--mkt-gray-50); }
.mch-mkt-header__link--active { color: var(--mkt-accent); }
.mch-mkt-header__link--dropdown i { font-size: 9px; opacity: 0.5; transition: transform 0.2s; }
.mch-mkt-header__link--dropdown:hover i,
.mch-mkt-header__dropdown-wrap:hover .mch-mkt-header__link--dropdown i { transform: rotate(180deg); opacity: 1; }
/* CTA button */
.mch-mkt-header__cta {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background: var(--mkt-gray-900);
    border: none;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    letter-spacing: 0.01em;
}
.mch-mkt-header__cta:hover { background: var(--mkt-accent); color: #fff; }
.mch-mkt-header__cta i { font-size: 10px; }
.mch-mkt-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.mch-mkt-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mkt-gray-700);
    transition: transform 0.3s, opacity 0.3s;
}

/* ── Mega dropdown ── */
.mch-mkt-header__dropdown-wrap { position: relative; }
.mch-mkt-header__mega {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    padding-top: 8px;
    z-index: 1000;
}
.mch-mkt-header__dropdown-wrap:hover .mch-mkt-header__mega { display: block; }
.mch-mkt-header__mega-inner {
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 12px;
    min-width: 680px;
}
.mch-mkt-header__mega-single {
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 280px;
}
.mch-mkt-header__mega-col { padding: 8px; }
.mch-mkt-header__mega-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mkt-gray-500);
    padding: 4px 12px 8px;
}
.mch-mkt-header__mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--mkt-gray-700);
    transition: background 0.15s;
}
.mch-mkt-header__mega-item:hover { background: var(--mkt-gray-50); }
.mch-mkt-header__mega-item.is-active { background: var(--mkt-accent-bg); }
.mch-mkt-header__mega-item i {
    font-size: 16px;
    color: var(--mkt-accent);
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.mch-mkt-header__mega-item div { display: flex; flex-direction: column; }
.mch-mkt-header__mega-item strong { font-size: 14px; font-weight: 600; color: var(--mkt-gray-900); }
.mch-mkt-header__mega-item span { font-size: 12px; color: var(--mkt-gray-500); line-height: 1.4; margin-top: 1px; }

/* ── Mobile menu ── */
.mch-mkt-header__mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--mkt-gray-200);
    padding: 12px 24px 16px;
    max-height: 80vh;
    overflow-y: auto;
}
.mch-mkt-header__mobile.is-open { display: flex; }
.mch-mkt-header__mobile-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mkt-gray-500);
    padding: 14px 0 6px;
}
.mch-mkt-header__mobile-label:first-child { padding-top: 4px; }
.mch-mkt-header__mobile-link {
    padding: 10px 0;
    font-size: 14px;
    color: var(--mkt-gray-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--mkt-gray-100);
}
.mch-mkt-header__mobile-link i { width: 20px; text-align: center; color: var(--mkt-gray-500); font-size: 14px; }
.mch-mkt-header__mobile-link--active { color: var(--mkt-accent); font-weight: 600; }
.mch-mkt-header__mobile-link--active i { color: var(--mkt-accent); }
.mch-mkt-header__mobile-link--cta { border-bottom: none; padding-top: 14px; }

@media (max-width: 1024px) {
    .mch-mkt-header__nav { display: none; }
    .mch-mkt-header__cta { display: none; }
    .mch-mkt-header__hamburger { display: flex; }
}

/* ─── MARKETING FOOTER ─── */
.mch-mkt-footer {
    position: relative;
    background: #0b1120;
    color: #e2e8f0;
    padding: 64px 24px 0;
    overflow: hidden;
    isolation: isolate;
}
.mch-mkt-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px circle at 10% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
        radial-gradient(420px circle at 90% 100%, rgba(139, 92, 246, 0.14), transparent 55%);
    z-index: -1;
}
.mch-mkt-footer__inner {
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr) minmax(0, 0.9fr);
    gap: 56px;
    padding-bottom: 48px;
}

/* Brand column */
.mch-mkt-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
}
.mch-mkt-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: var(--mkt-primary);
    font-weight: 800;
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    align-self: flex-start;
}
.mch-mkt-footer__logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(15, 23, 42, 0.55);
}
.mch-mkt-footer__logo img {
    height: 34px;
    width: auto;
    display: block;
}
.mch-mkt-footer__brand p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}
.mch-mkt-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 11px 20px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 12px 28px -10px rgba(59, 130, 246, 0.5);
    transition: transform 0.25s ease, filter 0.25s ease;
}
.mch-mkt-footer__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    color: #fff;
}
.mch-mkt-footer__cta i { font-size: 0.82rem; }

/* Services (2 sub-columns) */
.mch-mkt-footer__services > strong,
.mch-mkt-footer__company > strong {
    display: block;
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.mch-mkt-footer__services-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
}
.mch-mkt-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mch-mkt-footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.mch-mkt-footer__links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.mch-mkt-footer__bottom {
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 18px 0;
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.mch-mkt-footer__bottom-sep { opacity: 0.5; }

@media (max-width: 1024px) {
    .mch-mkt-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .mch-mkt-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }
    .mch-mkt-footer__brand p { flex: 1; min-width: 200px; }
}
@media (max-width: 640px) {
    .mch-mkt-footer {
        padding: 48px 20px 0;
    }
    .mch-mkt-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mch-mkt-footer__brand { flex-direction: column; align-items: flex-start; }
    .mch-mkt-footer__services-cols { grid-template-columns: 1fr 1fr; gap: 6px 16px; }
}

/* ─── FULL-WIDTH SECTIONS (break out of Astra #page max-width) ─── */
.mch-mkt-hero,
.mch-mkt-cta,
.mch-mkt-cta-final,
.mch-mkt-section--gray,
.mch-mkt-section--dark,
.mch-mkt-ai-section,
.mch-mkt-stats,
.mch-mkt-tools,
.mch-mkt-breadcrumbs {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.mch-mkt-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── 1. CUSTOM MARKETING HEADER (styles in main block above) ─── */
.mch-mkt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}
.mch-mkt-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
}
.mch-mkt-logo img {
    height: 36px;
    width: auto;
}
.mch-mkt-logo__text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mkt-primary);
}

/* Desktop menu */
.mch-mkt-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mch-mkt-menu__item {
    position: relative;
}
.mch-mkt-menu__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mkt-gray-700);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.mch-mkt-menu__link:hover,
.mch-mkt-menu__link--active {
    color: var(--mkt-accent);
}
.mch-mkt-menu__link--active {
    font-weight: 600;
}
.mch-mkt-menu__link .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.2s;
}
.mch-mkt-menu__item:hover .mch-mkt-menu__link .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.mch-mkt-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: 580px;
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-lg);
    padding: 24px;
    display: none;
    z-index: 100;
}
.mch-mkt-menu__item:hover .mch-mkt-dropdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mch-mkt-dropdown__col-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--mkt-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
    grid-column: span 3;
    display: none; /* titles handled by grouping */
}
.mch-mkt-dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}
.mch-mkt-dropdown__link:hover {
    background: var(--mkt-accent-bg);
}
.mch-mkt-dropdown__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mkt-accent-bg);
    color: var(--mkt-accent);
    border-radius: 8px;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.mch-mkt-dropdown__text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mkt-gray-900);
}
.mch-mkt-dropdown__link:hover .mch-mkt-dropdown__text {
    color: var(--mkt-accent);
}

/* Header CTA */
.mch-mkt-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.mch-mkt-header__cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #fff;
}

/* Hamburger */
.mch-mkt-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mch-mkt-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mkt-gray-900);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.mch-mkt-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mch-mkt-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.mch-mkt-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mch-mkt-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9998;
    overflow-y: auto;
    padding: 24px;
}
.mch-mkt-mobile-menu.is-open {
    display: block;
}
.mch-mkt-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--mkt-gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--mkt-gray-100);
}
.mch-mkt-mobile-menu__link:hover,
.mch-mkt-mobile-menu__link--active {
    color: var(--mkt-accent);
}
.mch-mkt-mobile-menu__link i {
    width: 24px;
    text-align: center;
    color: var(--mkt-accent);
}
.mch-mkt-mobile-menu__cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 14px 24px;
    background: var(--mkt-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

/* ─── 2. BREADCRUMBS ─── */
.mch-mkt-breadcrumbs {
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 0.85rem;
    color: var(--mkt-gray-500);
}
.mch-mkt-breadcrumbs a {
    color: var(--mkt-accent);
    text-decoration: none;
}
.mch-mkt-breadcrumbs a:hover {
    text-decoration: underline;
}
.mch-mkt-breadcrumbs__sep {
    margin: 0 8px;
    color: var(--mkt-gray-200);
}

/* ─── 3. HERO SECTION (modern dark with orbs) ─── */
.mch-mkt-hero {
    position: relative;
    background: #070b17;
    color: #e2e8f0;
    overflow: hidden;
    isolation: isolate;
}
.mch-mkt-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(720px circle at 12% 22%, rgba(139, 92, 246, 0.3), transparent 55%),
        radial-gradient(680px circle at 88% 78%, rgba(59, 130, 246, 0.28), transparent 55%),
        radial-gradient(520px circle at 50% 50%, rgba(236, 72, 153, 0.12), transparent 60%);
    animation: mch-mkt-orbs 18s ease-in-out infinite alternate;
}
.mch-mkt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.mch-mkt-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    padding: 96px 24px;
}

/* Sub-page hero — tighter padding to leave room for breadcrumbs */
.mch-mkt-hero--sub .mch-mkt-hero__inner {
    padding-top: 32px;
    padding-bottom: 80px;
    row-gap: 28px;
}

/* Breadcrumbs inside hero — spans both columns */
.mch-mkt-hero__crumbs {
    grid-column: 1 / -1;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    align-self: start;
    justify-self: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    font-size: 0.82rem;
    color: #94a3b8;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mch-mkt-hero__crumbs a {
    color: #cbd5e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.mch-mkt-hero__crumbs a:hover { color: #fff; }
.mch-mkt-hero__crumbs a i { font-size: 0.76rem; color: #a78bfa; }
.mch-mkt-hero__crumbs-sep {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.58rem;
    display: inline-flex;
    align-items: center;
}
.mch-mkt-hero__crumbs-current {
    color: #fff;
    font-weight: 600;
}
.mch-mkt-hero__content {
    max-width: 580px;
}
.mch-mkt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #c4b5fd;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mch-mkt-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.8);
    animation: mch-mkt-pulse-dot 1.8s ease-in-out infinite;
}
.mch-mkt-hero__title {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 15%, #c4b5fd 55%, #93c5fd);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mch-mkt-hero__subtitle {
    color: #cbd5e1;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 540px;
}
.mch-mkt-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.mch-mkt-hero__cta--primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 20px 44px -16px rgba(139, 92, 246, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mch-mkt-hero__cta--primary::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    transition: opacity 0.3s ease;
}
.mch-mkt-hero__cta--primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    color: #fff;
}
.mch-mkt-hero__cta--primary:hover::after { opacity: 0.75; }
.mch-mkt-hero__cta--primary i { transition: transform 0.25s ease; }
.mch-mkt-hero__cta--primary:hover i { transform: translateX(4px); }

/* Trust row */
.mch-mkt-hero__trust {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    color: #cbd5e1;
    font-size: 0.88rem;
}
.mch-mkt-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mch-mkt-hero__trust strong { color: #fff; font-weight: 700; }
.mch-mkt-hero__trust > li > i { color: #a78bfa; }
.mch-mkt-hero__stars {
    display: inline-flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.8rem;
}

/* Visual */
.mch-mkt-hero__visual {
    position: relative;
}
.mch-mkt-hero__visual-glow {
    position: absolute;
    inset: -10% -14% -10% -10%;
    background: conic-gradient(from 160deg, #8b5cf6, #3b82f6, #06b6d4, #ec4899, #8b5cf6);
    filter: blur(60px);
    opacity: 0.42;
    border-radius: 24px;
    z-index: 0;
    animation: mch-mkt-glow 14s linear infinite;
}
.mch-mkt-hero__visual-frame {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.mch-mkt-hero__image {
    width: 100%;
    height: auto;
    display: block;
}
.mch-mkt-hero__visual-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.5);
}
.mch-mkt-hero__visual-badge strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}
.mch-mkt-hero__visual-badge span:not(.mch-mkt-hero__visual-dot) {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 0.75rem;
}
.mch-mkt-hero__visual-badge i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: #fff;
    font-size: 1rem;
}
.mch-mkt-hero__visual-badge--tl {
    top: 20px;
    left: -16px;
    animation: mch-mkt-float 5s ease-in-out infinite;
}
.mch-mkt-hero__visual-badge--br {
    bottom: 24px;
    right: -16px;
    animation: mch-mkt-float 5s ease-in-out infinite 2.5s;
}
.mch-mkt-hero__visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
    animation: mch-mkt-pulse-dot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

/* Scroll indicator */
.mch-mkt-hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 34px;
    border: 2px solid rgba(148, 163, 184, 0.5);
    border-radius: 14px;
    z-index: 2;
    transition: border-color 0.3s ease;
}
.mch-mkt-hero__scroll span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: rgba(148, 163, 184, 0.75);
    transform: translateX(-50%);
    animation: mch-mkt-scroll 1.8s ease-in-out infinite;
}
.mch-mkt-hero__scroll:hover { border-color: rgba(167, 139, 250, 0.8); }
.mch-mkt-hero__scroll:hover span { background: #a78bfa; }
@keyframes mch-mkt-scroll {
    0% { opacity: 0; transform: translate(-50%, -6px); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* ─── 4. SECTION WRAPPER ─── */
.mch-mkt-section {
    padding: 80px 24px;
}
.mch-mkt-section--gray {
    background: var(--mkt-gray-50);
}
.mch-mkt-section--dark {
    background: var(--mkt-primary);
    color: #fff;
}
.mch-mkt-container {
    max-width: var(--mkt-max-w);
    margin: 0 auto;
}
.mch-mkt-section__title {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--mkt-gray-900);
    margin: 0 0 16px;
    line-height: 1.2;
}
.mch-mkt-section__subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--mkt-gray-500);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ─── 5. PROBLEMS — Without / With COMPARISON ─── */
/* ─── TOGGLE SWITCH ─── */
.mch-mkt-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 36px;
    background: #fff;
    border-radius: 100px;
    padding: 4px;
    max-width: 400px;
    box-shadow: var(--mkt-shadow-md);
}
.mch-mkt-toggle__btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    color: var(--mkt-gray-500);
}
.mch-mkt-toggle__btn--without.is-active {
    background: var(--mkt-red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}
.mch-mkt-toggle__btn--with.is-active {
    background: var(--mkt-green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

/* ─── VERSUS CARDS ─── */
.mch-mkt-versus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.mch-mkt-versus__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--mkt-radius);
    background: #fff;
    box-shadow: var(--mkt-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mch-mkt-versus__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--mkt-shadow-md);
}
.mch-mkt-versus__card--bad {
    border-left: 3px solid var(--mkt-red);
}
.mch-mkt-versus__card--good {
    border-left: 3px solid var(--mkt-green);
}
.mch-mkt-versus__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.mch-mkt-versus__card--bad .mch-mkt-versus__icon {
    background: var(--mkt-red-bg);
    color: var(--mkt-red);
}
.mch-mkt-versus__card--good .mch-mkt-versus__icon {
    background: var(--mkt-green-bg);
    color: var(--mkt-green);
}
.mch-mkt-versus__card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--mkt-gray-700);
}
.mch-mkt-versus__cta {
    text-align: center;
    margin-top: 32px;
}

/* ─── 5b. SIN vs CON — Dual comparison v2 ─── */
.mch-mkt-vs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 1100px;
    margin: 40px auto 0;
}
.mch-mkt-vs__col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 22px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.mch-mkt-vs__col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}
.mch-mkt-vs__col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--vs-glow), transparent 55%);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}
.mch-mkt-vs__col > * { position: relative; z-index: 1; }

.mch-mkt-vs__col--bad {
    --vs-color: #ef4444;
    --vs-color-soft: #fee2e2;
    --vs-glow: rgba(239, 68, 68, 0.25);
}
.mch-mkt-vs__col--good {
    --vs-color: #10b981;
    --vs-color-soft: #d1fae5;
    --vs-glow: rgba(16, 185, 129, 0.25);
}
.mch-mkt-vs__col--bad::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.mch-mkt-vs__col--good::before { background: linear-gradient(90deg, #10b981, #34d399); }

.mch-mkt-vs__col--good {
    box-shadow: 0 24px 48px -20px rgba(16, 185, 129, 0.35), 0 2px 6px rgba(15, 23, 42, 0.04);
    border-color: color-mix(in srgb, var(--vs-color) 25%, transparent);
}
.mch-mkt-vs__col:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 56px -22px color-mix(in srgb, var(--vs-color) 35%, transparent);
}

.mch-mkt-vs__head {
    margin-bottom: 20px;
}
.mch-mkt-vs__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--vs-color-soft);
    color: var(--vs-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 12px;
}
.mch-mkt-vs__badge i { font-size: 0.8rem; }
.mch-mkt-vs__title {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mkt-gray-900);
    line-height: 1.25;
}
.mch-mkt-vs__meta {
    margin: 0;
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.5;
}

.mch-mkt-vs__chart {
    width: 100%;
    height: 70px;
    margin: 16px 0 18px;
    display: block;
}
.mch-mkt-vs__chart path[stroke] {
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: mch-mkt-vs-draw 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes mch-mkt-vs-draw {
    to { stroke-dashoffset: 0; }
}

.mch-mkt-vs__list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mch-mkt-vs__list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--mkt-gray-700);
}
.mch-mkt-vs__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--vs-color-soft);
    color: var(--vs-color);
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 1px;
}
.mch-mkt-vs__col--good .mch-mkt-vs__icon {
    background: var(--vs-color);
    color: #fff;
}

.mch-mkt-vs__foot {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--vs-color-soft);
    color: var(--vs-color);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: stretch;
}
.mch-mkt-vs__foot--good {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(16, 185, 129, 0.5);
}

/* VS divider */
.mch-mkt-vs__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.mch-mkt-vs__divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.45);
    border: 3px solid #fff;
    position: relative;
}
.mch-mkt-vs__divider span::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ef4444, #f59e0b, #10b981, #ef4444);
    z-index: -1;
    animation: mch-mkt-vs-spin 6s linear infinite;
    filter: blur(6px);
    opacity: 0.5;
}
@keyframes mch-mkt-vs-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* CTA wrapper */
.mch-mkt-vs__ctawrap {
    text-align: center;
    margin-top: 40px;
}
.mch-mkt-vs__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px -14px rgba(16, 185, 129, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.mch-mkt-vs__cta::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #10b981, #34d399, #14b8a6);
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    transition: opacity 0.3s ease;
}
.mch-mkt-vs__cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    color: #fff;
}
.mch-mkt-vs__cta:hover::after { opacity: 0.75; }
.mch-mkt-vs__cta i:last-child { transition: transform 0.25s ease; }
.mch-mkt-vs__cta:hover i:last-child { transform: translateX(4px); }

/* ─── 6. STATS WITH COUNTERS — dark infographic style ─── */
.mch-mkt-stats {
    background-color: #0a1628;
    background-image: linear-gradient(135deg, #0a1628 0%, #0d3b66 60%, #1a4971 100%);
    background-size: cover;
    background-position: center;
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
}
.mch-mkt-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.mch-mkt-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--mkt-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mch-mkt-stats__item {
    text-align: center;
    padding: 32px 16px;
}
.mch-mkt-stats__number {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.mch-mkt-stats__number::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--mkt-accent-light);
    border-radius: 2px;
    margin: 14px auto 0;
}
.mch-mkt-stats__prefix,
.mch-mkt-stats__suffix {
    color: var(--mkt-accent-light);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
}
.mch-mkt-stats__label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-top: 10px;
}

/* ─── TOOL LOGOS STRIP ─── */
.mch-mkt-tools {
    background: var(--mkt-primary);
    padding: 36px 0;
    overflow: hidden;
}
.mch-mkt-tools__title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin: 0 0 22px;
    padding: 0 24px;
}
/* Infinite scrolling carousel */
.mch-mkt-tools__track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: mch-scroll-logos 45s linear infinite;
    width: max-content;
}
.mch-mkt-tools__track:hover { animation-play-state: paused; }
/* Favicon + name items */
.mch-mkt-tools__item {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.mch-mkt-tools__item:hover { opacity: 1; }
.mch-mkt-tools__item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 5px;
}
.mch-mkt-tools__item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}
@keyframes mch-scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── 7. SERVICES — Bento grid (hub page) ─── */
.mch-mkt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mch-mkt-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    padding: 28px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.mch-mkt-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mkt-shadow-xl);
}
.mch-mkt-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--mkt-accent);
    background: var(--mkt-accent-bg);
    border-radius: var(--mkt-radius);
}
.mch-mkt-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 10px;
}
.mch-mkt-card__desc {
    font-size: 0.9rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}
.mch-mkt-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mkt-accent);
}

/* ━━━ Bento services grid ━━━ */
.mch-mkt-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
    margin-top: 8px;
}
.mch-mkt-scard {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    isolation: isolate;
}
.mch-mkt-scard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--scolor), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}
.mch-mkt-scard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.22);
    border-color: transparent;
}
.mch-mkt-scard:hover::before { opacity: 1; }

/* Decorative number */
.mch-mkt-scard__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--scolor);
    opacity: 0.08;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 1;
    pointer-events: none;
}
.mch-mkt-scard:hover .mch-mkt-scard__num {
    opacity: 0.18;
    transform: scale(1.08);
}

/* Radial glow — follows cursor via CSS var */
.mch-mkt-scard__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--scolor) 14%, transparent), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}
.mch-mkt-scard:hover .mch-mkt-scard__glow { opacity: 1; }

/* Badge — centered on top of hero card */
.mch-mkt-scard__badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: color-mix(in srgb, var(--scolor) 14%, #fff);
    color: var(--scolor);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 3;
    animation: mch-mkt-bpulse 2.4s ease-in-out infinite;
}
.mch-mkt-scard__badge i { font-size: 0.72rem; }
@keyframes mch-mkt-bpulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--scolor) 40%, transparent); }
    50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--scolor) 0%, transparent); }
}

/* Inner layout */
.mch-mkt-scard__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mch-mkt-scard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: var(--scolor);
    background: color-mix(in srgb, var(--scolor) 12%, #fff);
    border-radius: 14px;
    font-size: 1.3rem;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-scard:hover .mch-mkt-scard__icon {
    transform: scale(1.1) rotate(-5deg);
}
.mch-mkt-scard__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    line-height: 1.3;
}
.mch-mkt-scard__desc {
    margin: 0 0 14px;
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.55;
    flex: 1;
}
.mch-mkt-scard__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--scolor);
    margin-top: auto;
}
.mch-mkt-scard__cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--scolor) 14%, #fff);
    font-size: 0.72rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.mch-mkt-scard:hover .mch-mkt-scard__cta-arrow {
    background: var(--scolor);
    color: #fff;
    transform: translateX(4px);
}

/* Size variants */
.mch-mkt-scard--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--scolor) 6%, #fff), #fff);
}
.mch-mkt-scard--hero .mch-mkt-scard__num {
    font-size: 6rem;
    top: 20px;
    right: 28px;
}
.mch-mkt-scard--hero .mch-mkt-scard__icon {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
    border-radius: 18px;
}
.mch-mkt-scard--hero .mch-mkt-scard__title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.mch-mkt-scard--hero .mch-mkt-scard__desc {
    font-size: 1rem;
}
.mch-mkt-scard--hero .mch-mkt-scard__cta {
    font-size: 0.98rem;
}
.mch-mkt-scard--hero .mch-mkt-scard__cta-arrow {
    width: 28px;
    height: 28px;
}

.mch-mkt-scard--wide {
    grid-column: span 2;
}
.mch-mkt-scard--wide .mch-mkt-scard__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
    row-gap: 0;
    align-items: start;
}
.mch-mkt-scard--wide .mch-mkt-scard__icon {
    grid-row: span 3;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0;
}
.mch-mkt-scard--wide .mch-mkt-scard__title {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.mch-mkt-scard--wide .mch-mkt-scard__desc {
    margin-bottom: 10px;
}

/* Color tokens */
.mch-mkt-scard[data-color="blue"]   { --scolor: #3b82f6; }
.mch-mkt-scard[data-color="teal"]   { --scolor: #14b8a6; }
.mch-mkt-scard[data-color="orange"] { --scolor: #f97316; }
.mch-mkt-scard[data-color="yellow"] { --scolor: #eab308; }
.mch-mkt-scard[data-color="pink"]   { --scolor: #ec4899; }
.mch-mkt-scard[data-color="green"]  { --scolor: #10b981; }
.mch-mkt-scard[data-color="cyan"]   { --scolor: #06b6d4; }
.mch-mkt-scard[data-color="violet"] { --scolor: #8b5cf6; }
.mch-mkt-scard[data-color="coral"]  { --scolor: #fb7185; }
.mch-mkt-scard[data-color="indigo"] { --scolor: #6366f1; }
.mch-mkt-scard[data-color="rose"]   { --scolor: #f43f5e; }

/* ─── 8. WHY CHOOSE US ─── */
.mch-mkt-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mch-mkt-why__item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mch-mkt-why__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-why__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(1,112,185,0.25);
}
.mch-mkt-why__item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 8px;
}
.mch-mkt-why__item p {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── 9. PROCESS — Interactive stepper ─── */
.mch-mkt-stepper {
    margin-top: 32px;
    position: relative;
}
.mch-mkt-stepper__track {
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: var(--mkt-gray-200);
    border-radius: 4px;
    z-index: 0;
}
.mch-mkt-stepper__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--mkt-accent);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.mch-mkt-stepper__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}
.mch-mkt-stepper__btn,
.mch-mkt-stepper__btn:hover,
.mch-mkt-stepper__btn:focus,
.mch-mkt-stepper__btn:active {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}
.mch-mkt-stepper__btn {
    cursor: pointer;
    font: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}
.mch-mkt-stepper__btn:hover {
    transform: translateY(-2px);
}
.mch-mkt-stepper__btn:focus-visible .mch-mkt-stepper__dot {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--pcolor, #3b82f6) 30%, transparent);
}
.mch-mkt-stepper__dot {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--mkt-gray-200);
    color: var(--mkt-gray-500);
    font-size: 1.3rem;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mch-mkt-stepper__num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mkt-gray-900);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    border: 2px solid #fff;
    transition: background 0.3s ease;
}
.mch-mkt-stepper__label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--mkt-gray-500);
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 160px;
}

/* Color tokens */
.mch-mkt-stepper__btn[data-color="blue"]   { --pcolor: #3b82f6; }
.mch-mkt-stepper__btn[data-color="violet"] { --pcolor: #8b5cf6; }
.mch-mkt-stepper__btn[data-color="orange"] { --pcolor: #f97316; }
.mch-mkt-stepper__btn[data-color="green"]  { --pcolor: #10b981; }

/* Active + done states */
.mch-mkt-stepper__btn.is-done .mch-mkt-stepper__dot {
    background: var(--pcolor);
    border-color: var(--pcolor);
    color: #fff;
}
.mch-mkt-stepper__btn.is-done .mch-mkt-stepper__num {
    background: #fff;
    color: var(--pcolor);
}
.mch-mkt-stepper__btn.is-active .mch-mkt-stepper__dot {
    background: #fff;
    border-color: var(--pcolor);
    color: var(--pcolor);
    transform: scale(1.12);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--pcolor) 16%, transparent);
}
.mch-mkt-stepper__btn.is-active .mch-mkt-stepper__num {
    background: var(--pcolor);
}
.mch-mkt-stepper__btn.is-active .mch-mkt-stepper__label {
    color: var(--mkt-gray-900);
}

/* Panels */
.mch-mkt-stepper__panels {
    position: relative;
    min-height: 320px;
}
.mch-mkt-stepper__panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-stepper__panel[data-color="blue"]   { --pcolor: #3b82f6; }
.mch-mkt-stepper__panel[data-color="violet"] { --pcolor: #8b5cf6; }
.mch-mkt-stepper__panel[data-color="orange"] { --pcolor: #f97316; }
.mch-mkt-stepper__panel[data-color="green"]  { --pcolor: #10b981; }
.mch-mkt-stepper__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    inset: auto;
}

.mch-mkt-stepper__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(140deg, color-mix(in srgb, var(--pcolor) 8%, #fff), color-mix(in srgb, var(--pcolor) 20%, #fff));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    isolation: isolate;
}
.mch-mkt-stepper__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--pcolor) 24%, transparent), transparent 48%),
        radial-gradient(circle at 84% 78%, color-mix(in srgb, var(--pcolor) 18%, transparent), transparent 52%);
    pointer-events: none;
}
.mch-mkt-stepper__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--pcolor) 14%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--pcolor) 14%, transparent) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
    opacity: 0.35;
    pointer-events: none;
}
.mch-mkt-stepper__bignum {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 5.6rem;
    font-weight: 900;
    color: var(--pcolor);
    opacity: 0.12;
    letter-spacing: -0.05em;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Simple icon for sub-page stepper (no SVG mockups) */
.mch-mkt-stepper__simple-icon {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    color: var(--pcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.25);
    animation: mch-mkt-pulse 2.6s ease-in-out infinite;
}
@keyframes mch-mkt-pulse {
    0%, 100% { box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.25), 0 0 0 0 color-mix(in srgb, var(--pcolor) 40%, transparent); }
    50%      { box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.25), 0 0 0 20px color-mix(in srgb, var(--pcolor) 0%, transparent); }
}

/* ─── Step visual mockups ─── */
.mch-mkt-mock {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 340px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--pcolor) 22%, #e2e8f0);
    border-radius: 16px;
    padding: 16px;
    box-shadow:
        0 20px 40px -16px rgba(15, 23, 42, 0.22),
        0 2px 6px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    font-size: 0.82rem;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    animation: mch-mkt-mock-float 6s ease-in-out infinite;
}
.mch-mkt-stepper__panel:hover .mch-mkt-mock {
    transform: translateY(-4px) rotate(-0.5deg);
}
@keyframes mch-mkt-mock-float {
    0%, 100% { transform: translateY(0) rotate(-0.8deg); }
    50%      { transform: translateY(-4px) rotate(0.4deg); }
}
.mch-mkt-mock__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
    font-size: 0.82rem;
    color: #0f172a;
}
.mch-mkt-mock__header > i:first-child {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--pcolor) 14%, #fff);
    color: var(--pcolor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
}
.mch-mkt-mock__header > span:not(.mch-mkt-mock__pill) { flex: 1; }
.mch-mkt-mock__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    background: color-mix(in srgb, var(--pcolor) 12%, #fff);
    color: var(--pcolor);
    border-radius: 999px;
    letter-spacing: 0.01em;
}
.mch-mkt-mock__pill--live {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}
.mch-mkt-mock__pill--live > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: mch-mkt-pulse-dot 1.5s ease-in-out infinite;
}
.mch-mkt-mock__foot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pcolor);
    background: color-mix(in srgb, var(--pcolor) 10%, #fff);
    border-radius: 8px;
}

/* AUDIT — rows with progress bars */
.mch-mkt-mock__rows { display: flex; flex-direction: column; gap: 10px; }
.mch-mkt-mock__row {
    display: grid;
    grid-template-columns: 90px 1fr 28px;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #475569;
}
.mch-mkt-mock__row b { text-align: right; color: #0f172a; font-size: 0.82rem; }
.mch-mkt-mock__bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}
.mch-mkt-mock__bar > span {
    display: block;
    height: 100%;
    width: var(--w);
    background: linear-gradient(90deg, color-mix(in srgb, var(--pcolor) 70%, #fff), var(--pcolor));
    border-radius: 999px;
    animation: mch-mkt-bar-fill 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes mch-mkt-bar-fill {
    from { width: 0; }
    to   { width: var(--w); }
}

/* STRATEGY — roadmap + chips */
.mch-mkt-mock__roadmap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 14px 4px 6px;
    align-items: center;
    justify-items: center;
}
.mch-mkt-mock__line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--pcolor) 0%, var(--pcolor) 60%, #e2e8f0 60%, #e2e8f0 100%);
    transform: translateY(-10px);
    z-index: 0;
}
.mch-mkt-mock__node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 700;
}
.mch-mkt-mock__node span { order: 2; }
.mch-mkt-mock__node i,
.mch-mkt-mock__node::before {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.62rem;
    order: 1;
}
.mch-mkt-mock__node:not(:has(i))::before {
    content: "";
}
.mch-mkt-mock__node.is-done {
    color: var(--pcolor);
}
.mch-mkt-mock__node.is-done i {
    background: var(--pcolor);
    border-color: var(--pcolor);
    color: #fff;
}
.mch-mkt-mock__node.is-active {
    color: var(--pcolor);
}
.mch-mkt-mock__node.is-active i {
    background: #fff;
    border-color: var(--pcolor);
    color: var(--pcolor);
    animation: mch-mkt-pulse-ring 1.8s ease-in-out infinite;
}
@keyframes mch-mkt-pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--pcolor) 40%, transparent); }
    50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--pcolor) 0%, transparent); }
}
.mch-mkt-mock__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.mch-mkt-mock__chip {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
}

/* EXECUTION — KPIs + bars */
.mch-mkt-mock__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.mch-mkt-mock__kpi {
    padding: 10px 8px;
    background: #f8fafc;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #f1f5f9;
}
.mch-mkt-mock__kpi-label {
    display: block;
    font-size: 0.66rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2px;
}
.mch-mkt-mock__kpi-num {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}
.mch-mkt-mock__kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
    font-size: 0.66rem;
    font-weight: 700;
    color: #059669;
}
.mch-mkt-mock__bars {
    display: flex;
    gap: 5px;
    height: 48px;
    align-items: flex-end;
    padding: 0 2px;
}
.mch-mkt-mock__bars > span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--pcolor), color-mix(in srgb, var(--pcolor) 55%, #fff));
    border-radius: 3px 3px 1px 1px;
    animation: mch-mkt-bar-grow 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes mch-mkt-bar-grow {
    from { height: 0; }
    to   { height: var(--h); }
}

/* REPORTS — stats + svg chart */
.mch-mkt-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.mch-mkt-mock__stats > div {
    text-align: center;
    padding: 10px 4px;
    background: #f8fafc;
    border-radius: 10px;
}
.mch-mkt-mock__stats span {
    display: block;
    font-size: 0.66rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 3px;
}
.mch-mkt-mock__stats b {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pcolor);
}
.mch-mkt-mock__chart {
    width: 100%;
    height: 60px;
    color: var(--pcolor);
    display: block;
}
.mch-mkt-mock__chart path[stroke] {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: mch-mkt-draw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes mch-mkt-draw {
    to { stroke-dashoffset: 0; }
}

.mch-mkt-stepper__content {
    min-width: 0;
}
.mch-mkt-stepper__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.mch-mkt-stepper__phase {
    display: inline-block;
    padding: 4px 10px;
    background: color-mix(in srgb, var(--pcolor) 12%, #fff);
    color: var(--pcolor);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
}
.mch-mkt-stepper__duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mkt-gray-500);
    font-size: 0.82rem;
    font-weight: 600;
}
.mch-mkt-stepper__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mkt-gray-900);
    margin: 0 0 10px;
    line-height: 1.2;
}
.mch-mkt-stepper__desc {
    font-size: 0.96rem;
    color: var(--mkt-gray-700);
    line-height: 1.6;
    margin: 0 0 18px;
}
.mch-mkt-stepper__list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.mch-mkt-stepper__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--mkt-gray-900);
}
.mch-mkt-stepper__list i {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pcolor);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 2px;
}
.mch-mkt-stepper__next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--pcolor);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.mch-mkt-stepper__next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--pcolor) 50%, transparent);
    filter: brightness(1.05);
}
.mch-mkt-stepper__next i { transition: transform 0.25s ease; }
.mch-mkt-stepper__next:hover i { transform: translateX(3px); }

/* Legacy process styles (unused now but kept to avoid broken references) */
.mch-mkt-process__steps {
    display: flex;
    gap: 24px;
    position: relative;
}
.mch-mkt-process__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 3px;
    background: linear-gradient(90deg, var(--mkt-accent), var(--mkt-accent-light));
    border-radius: 2px;
    z-index: 0;
}
.mch-mkt-process__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mch-mkt-process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(1,112,185,0.3);
    border: 4px solid #fff;
}
.mch-mkt-process__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 8px;
}
.mch-mkt-process__body p {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0;
    padding: 0 8px;
}

/* ─── 10. PROBLEM/PAIN POINT CARDS ─── */
.mch-mkt-problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mch-mkt-problems--7 {
    /* For 7-item grids: last row center */
}
.mch-mkt-problem {
    background: #fff;
    border-radius: var(--mkt-radius);
    padding: 28px;
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    border-left: 4px solid var(--mkt-red);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mch-mkt-problem:hover {
    transform: translateY(-3px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-problem__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mch-mkt-problem__title i {
    color: var(--mkt-red);
    font-size: 0.85rem;
}
.mch-mkt-problem__desc {
    font-size: 0.9rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── 11. DELIVERABLES (numbered) ─── */
.mch-mkt-deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.mch-mkt-deliverable {
    background: #fff;
    border-radius: var(--mkt-radius);
    padding: 28px;
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mch-mkt-deliverable:hover {
    transform: translateY(-3px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-deliverable__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(1,112,185,0.25);
}
.mch-mkt-deliverable__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 6px;
}
.mch-mkt-deliverable__desc {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── 12. RESULTS CARDS ─── */
.mch-mkt-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mch-mkt-result {
    background: #fff;
    border-radius: var(--mkt-radius);
    padding: 28px;
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    text-align: center;
    transition: transform 0.2s ease;
}
.mch-mkt-result:hover {
    transform: translateY(-4px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-result__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mkt-accent);
    margin: 0 0 10px;
}
.mch-mkt-result__desc {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── 12b. RESULTS — Case study cards (v2) ─── */
.mch-mkt-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.mch-mkt-rcard {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    isolation: isolate;
}
.mch-mkt-rcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rcolor);
    z-index: 1;
}
.mch-mkt-rcard::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--rcolor) 18%, transparent), transparent 70%);
    z-index: 0;
    transition: transform 0.5s ease;
}
.mch-mkt-rcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px color-mix(in srgb, var(--rcolor) 30%, transparent);
    border-color: color-mix(in srgb, var(--rcolor) 35%, transparent);
}
.mch-mkt-rcard:hover::after {
    transform: scale(1.12);
}

.mch-mkt-rcard__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}
.mch-mkt-rcard__sector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: color-mix(in srgb, var(--rcolor) 12%, #fff);
    color: var(--rcolor);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 6px;
    line-height: 1.2;
}
.mch-mkt-rcard__sector i { font-size: 0.7rem; }
.mch-mkt-rcard__icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--rcolor) 14%, #fff);
    color: var(--rcolor);
    font-size: 1rem;
}

.mch-mkt-rcard__metric {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
}
.mch-mkt-rcard__number {
    display: block;
    font-size: clamp(2.2rem, 3.4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--rcolor);
}
.mch-mkt-rcard__label {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
}
.mch-mkt-rcard__desc {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--mkt-gray-500);
    flex: 1;
}
.mch-mkt-rcard__trend {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--rcolor) 10%, #fff);
    color: var(--rcolor);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 6px;
    align-self: flex-start;
}

.mch-mkt-rcard[data-color="green"]  { --rcolor: #10b981; }
.mch-mkt-rcard[data-color="blue"]   { --rcolor: #3b82f6; }
.mch-mkt-rcard[data-color="yellow"] { --rcolor: #eab308; }
.mch-mkt-rcard[data-color="violet"] { --rcolor: #8b5cf6; }

/* ─── 13. RELATED SERVICES ─── */
.mch-mkt-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mch-mkt-related__card {
    display: block;
    background: #fff;
    border-radius: var(--mkt-radius);
    padding: 32px;
    box-shadow: var(--mkt-shadow);
    border: 1px solid var(--mkt-gray-100);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mch-mkt-related__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-related__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--mkt-accent-bg);
    color: var(--mkt-accent);
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.mch-mkt-related__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 8px;
}
.mch-mkt-related__desc {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    line-height: 1.6;
    margin: 0 0 14px;
}
.mch-mkt-related__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mkt-accent);
}

/* ─── 14. FAQ ACCORDION ─── */
.mch-mkt-faq {
    max-width: 800px;
    margin: 0 auto;
}
.mch-mkt-faq__item {
    border: 1px solid var(--mkt-gray-200);
    border-radius: var(--mkt-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.mch-mkt-faq__item:hover {
    box-shadow: var(--mkt-shadow-md);
}
.mch-mkt-faq__item.is-open {
    box-shadow: var(--mkt-shadow-md);
    border-color: var(--mkt-accent);
}
.mch-mkt-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-gray-900);
    line-height: 1.4;
}
.mch-mkt-faq__question i {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--mkt-gray-500);
    transition: transform 0.3s ease;
}
.mch-mkt-faq__item.is-open .mch-mkt-faq__question i {
    transform: rotate(180deg);
    color: var(--mkt-accent);
}
.mch-mkt-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-faq__item.is-open .mch-mkt-faq__answer {
    max-height: 600px;
}
.mch-mkt-faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--mkt-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ─── 14b. FAQ — 2-column sidebar + accordion v2 ─── */
.mch-mkt-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.mch-mkt-faq-side {
    position: sticky;
    top: 96px;
}
.mch-mkt-faq-side__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--mkt-accent-bg);
    color: var(--mkt-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
}
.mch-mkt-faq-side__title {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--mkt-gray-900);
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.mch-mkt-faq-side__text {
    font-size: 0.95rem;
    color: var(--mkt-gray-500);
    line-height: 1.65;
    margin: 0 0 22px;
}
.mch-mkt-faq-side__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 10px 22px -10px rgba(1, 112, 185, 0.5);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.mch-mkt-faq-side__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px -10px rgba(1, 112, 185, 0.6);
}

.mch-mkt-faq-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mch-mkt-faq-v2__item {
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.mch-mkt-faq-v2__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.14);
}
.mch-mkt-faq-v2__item.is-open {
    border-color: var(--mkt-accent);
    box-shadow: 0 14px 32px -14px rgba(1, 112, 185, 0.25);
}
.mch-mkt-faq-v2__q,
.mch-mkt-faq-v2__q:hover,
.mch-mkt-faq-v2__q:focus,
.mch-mkt-faq-v2__q:active {
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.mch-mkt-faq-v2__q {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}
.mch-mkt-faq-v2__num {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--mkt-accent);
    letter-spacing: 0.03em;
}
.mch-mkt-faq-v2__text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    line-height: 1.4;
}
.mch-mkt-faq-v2__plus {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mkt-gray-100);
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.mch-mkt-faq-v2__plus::before,
.mch-mkt-faq-v2__plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--mkt-gray-900);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}
.mch-mkt-faq-v2__plus::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.mch-mkt-faq-v2__plus::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}
.mch-mkt-faq-v2__item.is-open .mch-mkt-faq-v2__plus {
    background: var(--mkt-accent);
    transform: rotate(180deg);
}
.mch-mkt-faq-v2__item.is-open .mch-mkt-faq-v2__plus::before,
.mch-mkt-faq-v2__item.is-open .mch-mkt-faq-v2__plus::after {
    background: #fff;
}
.mch-mkt-faq-v2__item.is-open .mch-mkt-faq-v2__plus::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.mch-mkt-faq-v2__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-faq-v2__a-inner {
    overflow: hidden;
    min-height: 0;
}
.mch-mkt-faq-v2__item.is-open .mch-mkt-faq-v2__a {
    grid-template-rows: 1fr;
}
.mch-mkt-faq-v2__a-inner p {
    margin: 0;
    padding: 0 24px 22px 64px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--mkt-gray-500);
}

/* ─── 15. CTA SECTION ─── */
.mch-mkt-cta {
    position: relative;
    background: #070b17;
    color: #fff;
    text-align: center;
    padding: 96px 24px;
    overflow: hidden;
    isolation: isolate;
}
.mch-mkt-cta__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(600px circle at 15% 25%, rgba(139, 92, 246, 0.35), transparent 55%),
        radial-gradient(620px circle at 85% 75%, rgba(59, 130, 246, 0.32), transparent 55%),
        radial-gradient(520px circle at 50% 50%, rgba(236, 72, 153, 0.15), transparent 60%);
    animation: mch-mkt-orbs 16s ease-in-out infinite alternate;
}
@keyframes mch-mkt-orbs {
    from { transform: translate3d(-2%, -2%, 0) scale(1); }
    to   { transform: translate3d(2%, 3%, 0) scale(1.08); }
}
.mch-mkt-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
    pointer-events: none;
}
.mch-mkt-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.mch-mkt-cta__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c4b5fd;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mch-mkt-cta__tag i { color: #fbbf24; }
.mch-mkt-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.015em;
    background: linear-gradient(135deg, #fff 15%, #c4b5fd 55%, #93c5fd);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mch-mkt-cta__text {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 auto 32px;
    max-width: 600px;
}
.mch-mkt-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.mch-mkt-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.mch-mkt-cta__btn--primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 20px 40px -14px rgba(139, 92, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}
.mch-mkt-cta__btn--primary::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #ec4899);
    opacity: 0;
    z-index: -1;
    filter: blur(16px);
    transition: opacity 0.3s ease;
}
.mch-mkt-cta__btn--primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    color: #fff;
    box-shadow: 0 26px 48px -14px rgba(139, 92, 246, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.mch-mkt-cta__btn--primary:hover::after { opacity: 0.7; }
.mch-mkt-cta__btn--primary i { transition: transform 0.25s ease; }
.mch-mkt-cta__btn--primary:hover i { transform: translateX(4px); }
.mch-mkt-cta__btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #e2e8f0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mch-mkt-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(148, 163, 184, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.mch-mkt-cta__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px 28px;
    flex-wrap: wrap;
}
.mch-mkt-cta__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.4;
}
.mch-mkt-cta__trust strong { color: #fff; font-weight: 700; }
.mch-mkt-cta__trust > li > i {
    color: #a78bfa;
    font-size: 0.95rem;
}
.mch-mkt-cta__stars {
    display: inline-flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.82rem;
}

/* ─── 16. CONTENT / INTRO TEXT ─── */
.mch-mkt-content {
    max-width: 800px;
    margin: 0 auto;
}
.mch-mkt-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--mkt-gray-700);
    margin: 0 0 20px;
}
.mch-mkt-content strong {
    color: var(--mkt-gray-900);
    font-weight: 700;
}

/* ─── 17. CONTACT FORM ─── */
.mch-mkt-contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}
.mch-mkt-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ─── NEW 2-STEP CONTACT FORM ─── */
.mch-mkt-hero--contact .mch-mkt-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 820px;
}
.mch-mkt-hero__content--centered {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.mch-mkt-hero__content--centered .mch-mkt-hero__trust {
    justify-content: center;
}

.mch-mkt-contact2 { padding-top: 56px; }
.mch-mkt-contact2__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: start;
}
@media (max-width: 1024px) {
    .mch-mkt-contact2__layout { grid-template-columns: 1fr; gap: 24px; }
}

/* Form wrapper (white card) */
.mch-mkt-contact2__form-wrap {
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 28px 60px -28px rgba(15, 23, 42, 0.22), 0 2px 6px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}
.mch-mkt-contact2__form-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #10b981);
}
@media (max-width: 640px) {
    .mch-mkt-contact2__form-wrap { padding: 24px 20px; }
}
.mch-mkt-contact2__honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Stepper progress */
.mch-mkt-contact2__stepper {
    margin-bottom: 32px;
    position: relative;
}
.mch-mkt-contact2__stepper-track {
    position: absolute;
    top: 15px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--mkt-gray-200);
    border-radius: 3px;
    z-index: 0;
}
.mch-mkt-contact2__stepper-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-contact2__stepper[data-step="2"] .mch-mkt-contact2__stepper-fill { width: 100%; }
.mch-mkt-contact2__stepper-dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}
.mch-mkt-contact2__stepper-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mch-mkt-contact2__stepper-dot span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--mkt-gray-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
    transition: all 0.3s ease;
}
.mch-mkt-contact2__stepper-dot.is-active span,
.mch-mkt-contact2__stepper-dot.is-done span {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
.mch-mkt-contact2__stepper-dot small {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--mkt-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mch-mkt-contact2__stepper-dot.is-active small {
    color: var(--mkt-gray-900);
}

/* Steps (slides) */
.mch-mkt-contact2__step {
    display: none;
    animation: mch-contact-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-contact2__step.is-active { display: block; }
@keyframes mch-contact-in {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.mch-mkt-contact2__step-head {
    margin-bottom: 24px;
}
.mch-mkt-contact2__step-head h2 {
    margin: 0 0 6px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--mkt-gray-900);
    letter-spacing: -0.01em;
}
.mch-mkt-contact2__step-head p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--mkt-gray-500);
    line-height: 1.55;
}

/* Fields grid */
.mch-mkt-contact2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mch-mkt-contact2__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.mch-mkt-contact2__field--full { grid-column: 1 / -1; }
.mch-mkt-contact2__field > span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.mch-mkt-contact2__field > span em {
    color: #ef4444;
    font-style: normal;
}
.mch-mkt-contact2__field > span small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mkt-gray-500);
}
.mch-mkt-contact2__field input[type="text"],
.mch-mkt-contact2__field input[type="email"],
.mch-mkt-contact2__field input[type="tel"],
.mch-mkt-contact2__field input[type="url"],
.mch-mkt-contact2__field select,
.mch-mkt-contact2__field textarea {
    padding: 12px 14px;
    border: 1px solid var(--mkt-gray-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: var(--mkt-gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.mch-mkt-contact2__field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}
.mch-mkt-contact2__field input:focus,
.mch-mkt-contact2__field select:focus,
.mch-mkt-contact2__field textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}
.mch-mkt-contact2__field.is-error input,
.mch-mkt-contact2__field.is-error select,
.mch-mkt-contact2__field.is-error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

/* Service chips (multi-select) */
.mch-mkt-contact2__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mch-mkt-contact2__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--mkt-gray-50);
    border: 1.5px solid var(--mkt-gray-200);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mkt-gray-700);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}
.mch-mkt-contact2__chip input { display: none; }
.mch-mkt-contact2__chip i {
    font-size: 0.82rem;
    color: var(--mkt-gray-500);
    transition: color 0.2s ease;
}
.mch-mkt-contact2__chip:hover {
    border-color: color-mix(in srgb, var(--chip-color, #8b5cf6) 40%, transparent);
    background: color-mix(in srgb, var(--chip-color, #8b5cf6) 5%, #fff);
}
.mch-mkt-contact2__chip:has(input:checked),
.mch-mkt-contact2__chip.is-checked {
    background: color-mix(in srgb, var(--chip-color, #8b5cf6) 12%, #fff);
    border-color: var(--chip-color, #8b5cf6);
    color: var(--chip-color, #8b5cf6);
}
.mch-mkt-contact2__chip:has(input:checked) i,
.mch-mkt-contact2__chip.is-checked i { color: var(--chip-color, #8b5cf6); }
.mch-mkt-contact2__chip[data-color="blue"]   { --chip-color: #3b82f6; }
.mch-mkt-contact2__chip[data-color="teal"]   { --chip-color: #14b8a6; }
.mch-mkt-contact2__chip[data-color="orange"] { --chip-color: #f97316; }
.mch-mkt-contact2__chip[data-color="yellow"] { --chip-color: #eab308; }
.mch-mkt-contact2__chip[data-color="pink"]   { --chip-color: #ec4899; }
.mch-mkt-contact2__chip[data-color="green"]  { --chip-color: #10b981; }
.mch-mkt-contact2__chip[data-color="cyan"]   { --chip-color: #06b6d4; }
.mch-mkt-contact2__chip[data-color="violet"] { --chip-color: #8b5cf6; }
.mch-mkt-contact2__chip[data-color="indigo"] { --chip-color: #6366f1; }
.mch-mkt-contact2__chip[data-color="rose"]   { --chip-color: #f43f5e; }
.mch-mkt-contact2__chip[data-color="slate"]  { --chip-color: #64748b; }

/* Radio cards */
.mch-mkt-contact2__radios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
}
.mch-mkt-contact2__radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid var(--mkt-gray-200);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mkt-gray-700);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}
.mch-mkt-contact2__radio input { display: none; }
.mch-mkt-contact2__radio--icon i {
    color: #8b5cf6;
    font-size: 1rem;
}
.mch-mkt-contact2__radio:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.04);
}
.mch-mkt-contact2__radio:has(input:checked),
.mch-mkt-contact2__radio.is-checked {
    background: rgba(139, 92, 246, 0.08);
    border-color: #8b5cf6;
    color: #6d28d9;
}

/* Actions */
.mch-mkt-contact2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    align-items: center;
}
.mch-mkt-contact2__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
    color: inherit;
}
.mch-mkt-contact2__btn--primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(139, 92, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.mch-mkt-contact2__btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 18px 36px -12px rgba(139, 92, 246, 0.65);
}
.mch-mkt-contact2__btn--primary i { transition: transform 0.25s ease; }
.mch-mkt-contact2__btn--primary:hover i { transform: translateX(3px); }
.mch-mkt-contact2__btn--ghost {
    color: var(--mkt-gray-700);
    text-decoration: underline;
    padding-left: 8px;
    padding-right: 8px;
}
.mch-mkt-contact2__btn--ghost:hover { color: var(--mkt-gray-900); }
.mch-mkt-contact2__btn--back {
    background: var(--mkt-gray-50);
    color: var(--mkt-gray-700);
    padding-left: 18px;
}
.mch-mkt-contact2__btn--back:hover {
    background: var(--mkt-gray-100);
    color: var(--mkt-gray-900);
}
.mch-mkt-contact2__btn--submit { margin-left: auto; }
.mch-mkt-contact2__btn:disabled { opacity: 0.55; cursor: wait; transform: none !important; }

.mch-mkt-contact2__legal {
    margin: 22px 0 0;
    font-size: 0.78rem;
    color: var(--mkt-gray-500);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.mch-mkt-contact2__legal i {
    color: var(--mkt-gray-500);
    font-size: 0.72rem;
    margin-top: 3px;
}
.mch-mkt-contact2__legal a { color: var(--mkt-accent); text-decoration: underline; }

/* Error message */
.mch-mkt-contact2__error {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.88rem;
}

/* Success state */
.mch-mkt-contact2__success { text-align: center; padding: 24px 0; }
.mch-mkt-contact2__success-check {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    color: #10b981;
}
.mch-mkt-contact2__success-check svg {
    width: 100%;
    height: 100%;
}
.mch-mkt-contact2__success-check svg circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: mch-contact-circle 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mch-mkt-contact2__success-check svg path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: mch-contact-check 0.5s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes mch-contact-circle { to { stroke-dashoffset: 0; } }
@keyframes mch-contact-check  { to { stroke-dashoffset: 0; } }
.mch-mkt-contact2__success h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mkt-gray-900);
    margin: 0 0 10px;
}
.mch-mkt-contact2__success p {
    font-size: 1rem;
    color: var(--mkt-gray-700);
    line-height: 1.6;
    margin: 0 0 10px;
}
.mch-mkt-contact2__success-note {
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
}
.mch-mkt-contact2__success-note a {
    color: var(--mkt-accent);
    font-weight: 700;
    text-decoration: none;
}
.mch-mkt-contact2__success-note a:hover { text-decoration: underline; }

/* Aside (right column) */
.mch-mkt-contact2__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}
@media (max-width: 1024px) {
    .mch-mkt-contact2__aside { position: static; }
}
.mch-mkt-contact2__aside-card {
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.mch-mkt-contact2__aside-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.12);
    color: #6d28d9;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 14px;
}
.mch-mkt-contact2__aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mch-mkt-contact2__aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--mkt-gray-700);
}
.mch-mkt-contact2__aside-list li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    margin-top: 1px;
}

.mch-mkt-contact2__aside-card--dark {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-color: transparent;
    color: #e2e8f0;
}
.mch-mkt-contact2__aside-quote {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}
.mch-mkt-contact2__aside-quote > i {
    color: #8b5cf6;
    font-size: 1.6rem;
    opacity: 0.7;
}
.mch-mkt-contact2__aside-quote p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-style: italic;
}
.mch-mkt-contact2__aside-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.82rem;
}
.mch-mkt-contact2__aside-author strong { color: #fff; display: block; }
.mch-mkt-contact2__aside-author span:not(.mch-mkt-contact2__aside-stars) {
    color: #94a3b8;
    font-size: 0.75rem;
}
.mch-mkt-contact2__aside-stars {
    display: inline-flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.78rem;
}

.mch-mkt-contact2__aside-direct {
    text-align: center;
    padding: 16px;
    font-size: 0.88rem;
    color: var(--mkt-gray-500);
}
.mch-mkt-contact2__aside-direct strong {
    display: block;
    color: var(--mkt-gray-900);
    margin-bottom: 4px;
}
.mch-mkt-contact2__aside-direct a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mkt-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}
.mch-mkt-contact2__aside-direct a:hover { text-decoration: underline; }

/* Responsive adjustments */
@media (max-width: 640px) {
    .mch-mkt-contact2__grid { grid-template-columns: 1fr; }
    .mch-mkt-contact2__step-head h2 { font-size: 1.1rem; }
    .mch-mkt-contact2__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .mch-mkt-contact2__btn { justify-content: center; width: 100%; }
    .mch-mkt-contact2__btn--submit { margin-left: 0; }
    .mch-mkt-contact2__btn--back { order: -1; }
    .mch-mkt-contact2__radios { grid-template-columns: 1fr 1fr; }
}
.mch-mkt-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mch-mkt-contact__field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mkt-gray-700);
    margin-bottom: 6px;
}
.mch-mkt-contact__field input,
.mch-mkt-contact__field textarea,
.mch-mkt-contact__field select {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--mkt-gray-900);
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.mch-mkt-contact__field input:focus,
.mch-mkt-contact__field textarea:focus,
.mch-mkt-contact__field select:focus {
    outline: none;
    border-color: var(--mkt-accent);
    box-shadow: 0 0 0 3px rgba(1,112,185,0.12);
}
.mch-mkt-contact__field textarea {
    resize: vertical;
    min-height: 120px;
}
.mch-mkt-contact__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.mch-mkt-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 32px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}
.mch-mkt-contact__submit:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.mch-mkt-contact__success {
    display: none;
    text-align: center;
    padding: 16px 20px;
    background: var(--mkt-green-bg);
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.95rem;
    font-weight: 600;
}
.mch-mkt-contact__success.is-visible {
    display: block;
}

/* Contact sidebar */
.mch-mkt-contact__sidebar {
    padding: 32px;
    background: var(--mkt-gray-50);
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-gray-200);
}
.mch-mkt-contact__sidebar h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 20px;
}
.mch-mkt-contact__benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--mkt-gray-700);
    line-height: 1.5;
}
.mch-mkt-contact__benefit i {
    color: var(--mkt-green);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ─── HERO DUAL BUTTONS ─── */
.mch-mkt-hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.mch-mkt-hero__cta--outline {
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mch-mkt-hero__cta--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(148, 163, 184, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── ANALYTICS DASHBOARD MOCKUP (replaced by hero-dashboard.jpg) ─── */
/* .mch-mkt-dashboard {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 420px;
    width: 100%;
}
.mch-mkt-dashboard__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #1e293b;
}
.mch-mkt-dashboard__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mch-mkt-dashboard__dot--red { background: #ef4444; }
.mch-mkt-dashboard__dot--yellow { background: #f59e0b; }
.mch-mkt-dashboard__dot--green { background: #22c55e; }
.mch-mkt-dashboard__dot-label {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
.mch-mkt-dashboard__body {
    padding: 16px;
}
.mch-mkt-dashboard__metric {
    margin-bottom: 14px;
}
.mch-mkt-dashboard__metric-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: block;
}
.mch-mkt-dashboard__metric-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    display: block;
}
.mch-mkt-dashboard__bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.mch-mkt-dashboard__bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--bar-width);
    background: var(--bar-color);
    border-radius: 3px;
    animation: mch-bar-fill 1.5s ease-out forwards;
}
@keyframes mch-bar-fill {
    from { width: 0; }
}
.mch-mkt-dashboard__chart {
    margin-top: 16px;
}
.mch-mkt-dashboard__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}
.mch-mkt-dashboard__chart-bars > div {
    flex: 1;
    background: var(--mkt-accent);
    border-radius: 3px 3px 0 0;
    height: var(--h);
    opacity: 0.7;
    animation: mch-bar-grow 1s ease-out forwards;
}
.mch-mkt-dashboard__chart-bars > div:last-child {
    opacity: 1;
}
@keyframes mch-bar-grow {
    from { height: 0; }
} */

/* ─── STATS BAR TRACK (infographic style) ─── */
.mch-mkt-stats__bar-track {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
}
.mch-mkt-stats__bar-fill {
    height: 100%;
    width: var(--bar-w, 50%);
    background: var(--mkt-accent-light);
    border-radius: 2px;
    animation: mch-bar-fill 1.5s ease-out forwards;
}
@keyframes mch-bar-fill {
    from { width: 0; }
}

/* ─── WHY CHOOSE US — bento with images + reason cards ─── */
.mch-mkt-why-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 18px;
    margin-top: 24px;
}
.mch-mkt-why-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px -16px rgba(15, 23, 42, 0.24), 0 1px 2px rgba(15, 23, 42, 0.06);
    background: var(--mkt-gray-100);
}
.mch-mkt-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mch-mkt-why-img:hover img { transform: scale(1.04); }
.mch-mkt-why-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.55));
    pointer-events: none;
}
.mch-mkt-why-img__tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--mkt-gray-900);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 6px 16px -6px rgba(15, 23, 42, 0.3);
}
.mch-mkt-why-img__tag i { font-size: 0.8rem; color: var(--mkt-accent); }

.mch-mkt-why-card {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--mkt-gray-100);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.mch-mkt-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wcolor);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.mch-mkt-why-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--wcolor) 30%, transparent);
    box-shadow: 0 20px 40px -16px color-mix(in srgb, var(--wcolor) 25%, transparent);
}
.mch-mkt-why-card:hover::before { transform: scaleX(1); }
.mch-mkt-why-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.mch-mkt-why-card__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--wcolor);
    background: color-mix(in srgb, var(--wcolor) 12%, #fff);
    font-size: 1.05rem;
}
.mch-mkt-why-card__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    line-height: 1.25;
}
.mch-mkt-why-card__desc {
    margin: 0 0 12px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--mkt-gray-500);
}
.mch-mkt-why-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mch-mkt-why-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--mkt-gray-700);
    line-height: 1.45;
}
.mch-mkt-why-card__list i {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--wcolor) 18%, #fff);
    color: var(--wcolor);
    font-size: 0.62rem;
    margin-top: 2px;
}
.mch-mkt-why-card[data-color="blue"]   { --wcolor: #3b82f6; }
.mch-mkt-why-card[data-color="green"]  { --wcolor: #10b981; }
.mch-mkt-why-card[data-color="coral"]  { --wcolor: #fb7185; }
.mch-mkt-why-card[data-color="violet"] { --wcolor: #8b5cf6; }

/* ─── ALTERNATING FEATURE SECTIONS (text + visual) ─── */
.mch-mkt-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
}
.mch-mkt-feature + .mch-mkt-feature {
    border-top: 1px solid var(--mkt-gray-200);
}
.mch-mkt-feature--reverse {
    direction: rtl;
}
.mch-mkt-feature--reverse > * {
    direction: ltr;
}
.mch-mkt-feature__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mkt-gray-900);
    margin: 0 0 12px;
}
.mch-mkt-feature__text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mkt-gray-700);
    margin: 0 0 8px;
}
.mch-mkt-feature__text strong {
    color: var(--mkt-gray-900);
}
.mch-mkt-feature__visual {
    display: flex;
    justify-content: center;
}

/* ─── HERO IMAGE ─── */
.mch-mkt-hero__image {
    width: 100%;
    height: auto;
    border-radius: var(--mkt-radius-lg);
    box-shadow: var(--mkt-shadow-xl);
    display: block;
}

/* ─── FEATURE IMAGES ─── */
.mch-mkt-feature__image {
    width: 100%;
    height: auto;
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-lg);
    display: block;
}

/* ─── STATS V2 — image with overlapping cards ─── */
.mch-mkt-stats-v2 {
    position: relative;
}
.mch-mkt-stats-v2__visual {
    border-radius: var(--mkt-radius-lg);
    overflow: hidden;
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-stats-v2__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}
.mch-mkt-stats-v2__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.mch-mkt-stats-v2__grid--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: -72px;
}

/* Compact rcard variant (used in stats overlap) */
.mch-mkt-rcard--compact {
    padding: 18px 16px 16px;
    border-radius: 14px;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__head {
    margin-bottom: 12px;
    gap: 8px;
    flex-wrap: wrap;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__sector {
    font-size: 0.62rem;
    padding: 3px 8px;
    letter-spacing: 0.02em;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__icon {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
    border-radius: 8px;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__metric {
    margin-bottom: 10px;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__number {
    font-size: clamp(1.7rem, 2.3vw, 2.1rem);
}
.mch-mkt-rcard--compact .mch-mkt-rcard__label {
    font-size: 0.78rem;
    margin-top: 4px;
}
.mch-mkt-rcard--compact .mch-mkt-rcard__trend {
    padding: 4px 9px;
    font-size: 0.7rem;
}
.mch-mkt-rcard--compact::after {
    width: 180px;
    height: 180px;
    bottom: -90px;
    right: -90px;
}

.mch-mkt-rcard[data-color="coral"]  { --rcolor: #fb7185; }
.mch-mkt-stat-card {
    background: #fff;
    border: 1px solid var(--mkt-gray-200);
    border-radius: var(--mkt-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--mkt-shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mch-mkt-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mkt-shadow-lg);
}
.mch-mkt-stat-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}
.mch-mkt-stat-card__number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.mch-mkt-stat-card__label {
    font-size: 13px;
    color: var(--mkt-gray-500);
    line-height: 1.4;
}
@media (max-width: 1200px) {
    .mch-mkt-stats-v2__grid--5 {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -40px;
    }
}
@media (max-width: 1024px) {
    .mch-mkt-stats-v2__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -32px;
    }
    .mch-mkt-stats-v2__grid--5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .mch-mkt-stats-v2__grid--5 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -24px;
    }
}
@media (max-width: 480px) {
    .mch-mkt-stats-v2__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 12px;
        margin-top: -24px;
    }
    .mch-mkt-stats-v2__grid--5 {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
        margin-top: -16px;
    }
    .mch-mkt-stat-card { padding: 16px 12px; }
    .mch-mkt-stat-card__number { font-size: 1.6rem; }
    .mch-mkt-stat-card__icon { width: 36px; height: 36px; font-size: 16px; margin-bottom: 10px; }
}

/* ─── AI & AUTOMATION SECTION ─── */
.mch-mkt-ai-section {
    position: relative;
    overflow: hidden;
    background: #0b1120;
    color: #e2e8f0;
    isolation: isolate;
}
.mch-mkt-ai-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px circle at 10% 20%, rgba(139, 92, 246, 0.22), transparent 55%),
        radial-gradient(720px circle at 90% 80%, rgba(59, 130, 246, 0.22), transparent 55%),
        radial-gradient(520px circle at 50% 50%, rgba(236, 72, 153, 0.12), transparent 60%);
    z-index: -1;
}
.mch-mkt-ai-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}

/* Header (centered above the layout) */
.mch-mkt-ai-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
    position: relative;
}

.mch-mkt-ai-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    position: relative;
}

/* Visual */
.mch-mkt-ai-visual {
    position: relative;
    width: 100%;
}
.mch-mkt-ai-visual__glow {
    position: absolute;
    inset: -12% -18% -12% -12%;
    background: conic-gradient(from 160deg, #8b5cf6, #3b82f6, #06b6d4, #ec4899, #8b5cf6);
    filter: blur(60px);
    opacity: 0.4;
    border-radius: 24px;
    z-index: 0;
    animation: mch-mkt-glow 12s linear infinite;
}
@keyframes mch-mkt-glow {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}
.mch-mkt-ai-visual__frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
    z-index: 1;
    border: 1px solid rgba(148, 163, 184, 0.18);
}
.mch-mkt-ai-visual__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating badges on image */
.mch-mkt-ai-visual__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.mch-mkt-ai-visual__badge strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
}
.mch-mkt-ai-visual__badge span {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    margin-top: 2px;
}
.mch-mkt-ai-visual__badge--tl {
    top: 18px;
    left: -14px;
    animation: mch-mkt-float 5s ease-in-out infinite;
}
.mch-mkt-ai-visual__badge--br {
    bottom: 22px;
    right: -14px;
    animation: mch-mkt-float 5s ease-in-out infinite 2.5s;
}
.mch-mkt-ai-visual__badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: mch-mkt-pulse-dot 1.6s ease-in-out infinite;
}
@keyframes mch-mkt-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.mch-mkt-ai-visual__badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* Content side */
.mch-mkt-ai-content {
    color: #e2e8f0;
}
.mch-mkt-ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c4b5fd;
    margin-bottom: 18px;
}
.mch-mkt-ai-tag i { color: #a78bfa; }

.mch-mkt-ai-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff 20%, #a5b4fc 60%, #c4b5fd);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mch-mkt-ai-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}
.mch-mkt-ai-intro strong { color: #fff; font-weight: 700; }

/* Feature grid (single column for narrow right side; image carries the width) */
.mch-mkt-ai-feats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
}
.mch-mkt-ai-feat {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.mch-mkt-ai-feat:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--fcolor) 45%, transparent);
    background: rgba(15, 23, 42, 0.75);
}
.mch-mkt-ai-feat[data-color="violet"] { --fcolor: #a78bfa; }
.mch-mkt-ai-feat[data-color="cyan"]   { --fcolor: #22d3ee; }
.mch-mkt-ai-feat[data-color="orange"] { --fcolor: #fb923c; }
.mch-mkt-ai-feat[data-color="pink"]   { --fcolor: #f472b6; }

.mch-mkt-ai-feat__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--fcolor) 16%, transparent);
    color: var(--fcolor);
    font-size: 1.15rem;
}
.mch-mkt-ai-feat__body { min-width: 0; }
.mch-mkt-ai-feat__title {
    margin: 0 0 4px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.mch-mkt-ai-feat__desc {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #94a3b8;
}

/* CTA */
.mch-mkt-ai-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 14px 30px -10px rgba(139, 92, 246, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.mch-mkt-ai-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 18px 40px -10px rgba(139, 92, 246, 0.65);
}
.mch-mkt-ai-cta i { transition: transform 0.25s ease; }
.mch-mkt-ai-cta:hover i { transform: translateX(4px); }

/* ─── RESPONSIVE: 1024px ─── */
@media (max-width: 1024px) {
    .mch-mkt-hero__inner {
        grid-template-columns: 1fr;
        padding: 72px 24px 80px;
        gap: 48px;
    }
    .mch-mkt-hero--sub .mch-mkt-hero__inner {
        padding-top: 28px;
        gap: 32px;
    }
    .mch-mkt-hero__content { max-width: none; }
    .mch-mkt-hero__visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
    .mch-mkt-hero__scroll { display: none; }
    .mch-mkt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .mch-mkt-scard--hero { grid-column: span 2; grid-row: span 2; }
    .mch-mkt-scard--wide { grid-column: span 2; }
    .mch-mkt-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-results {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-problems {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-vs {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .mch-mkt-vs__divider {
        position: relative;
        margin: -24px auto;
    }
    .mch-mkt-vs__divider span { width: 54px; height: 54px; font-size: 0.82rem; }
    .mch-mkt-menu {
        display: none;
    }
    .mch-mkt-hamburger {
        display: flex;
    }
    .mch-mkt-header__cta {
        display: none;
    }
    .mch-mkt-process__steps::before {
        left: calc(25% + 14px);
        right: calc(25% + 14px);
    }
    .mch-mkt-stepper__panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
        text-align: center;
    }
    .mch-mkt-ai-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mch-mkt-ai-visual {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .mch-mkt-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mch-mkt-faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mch-mkt-faq-side {
        position: static;
        text-align: center;
    }
    .mch-mkt-stepper__visual {
        max-width: 280px;
        margin: 0 auto;
    }
    .mch-mkt-stepper__list {
        text-align: left;
    }
    .mch-mkt-stepper__meta,
    .mch-mkt-stepper__next {
        justify-content: center;
    }
    .mch-mkt-stepper__meta {
        display: inline-flex;
    }
    .mch-mkt-contact-layout {
        grid-template-columns: 1fr;
    }
    .mch-mkt-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mch-mkt-feature--reverse {
        direction: ltr;
    }
    .mch-mkt-why-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
        gap: 14px;
    }
}

/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 768px) {
    .mch-mkt-section {
        padding: 48px 16px;
    }
    .mch-mkt-grid {
        grid-template-columns: 1fr;
    }
    .mch-mkt-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }
    .mch-mkt-scard,
    .mch-mkt-scard--hero,
    .mch-mkt-scard--wide {
        grid-column: span 1;
        grid-row: span 1;
        padding: 22px;
        min-height: 180px;
    }
    .mch-mkt-scard--wide .mch-mkt-scard__inner {
        grid-template-columns: 1fr;
    }
    .mch-mkt-scard--wide .mch-mkt-scard__icon {
        grid-row: span 1;
    }
    .mch-mkt-scard--hero .mch-mkt-scard__num { font-size: 4rem; }
    .mch-mkt-scard--hero .mch-mkt-scard__title { font-size: 1.25rem; }
    .mch-mkt-scard--hero .mch-mkt-scard__desc { font-size: 0.92rem; }
    .mch-mkt-comparison {
        grid-template-columns: 1fr;
    }
    .mch-mkt-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .mch-mkt-why__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .mch-mkt-why-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }
    .mch-mkt-why-img {
        aspect-ratio: 16 / 10;
        height: auto;
    }
    .mch-mkt-vs__col { padding: 22px; }
    .mch-mkt-vs__title { font-size: 1.1rem; }
    .mch-mkt-vs__chart { height: 56px; }
    .mch-mkt-problems {
        grid-template-columns: 1fr;
    }
    .mch-mkt-deliverables {
        grid-template-columns: 1fr;
    }
    .mch-mkt-results {
        grid-template-columns: 1fr;
    }
    .mch-mkt-related {
        grid-template-columns: 1fr;
    }
    .mch-mkt-process__steps {
        flex-direction: column;
        gap: 28px;
    }
    .mch-mkt-process__steps::before {
        top: 28px;
        bottom: 28px;
        left: 27px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .mch-mkt-stepper__nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        margin-bottom: 24px;
    }
    .mch-mkt-stepper__dot {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    .mch-mkt-stepper__label {
        font-size: 0.72rem;
        max-width: 90px;
    }
    .mch-mkt-stepper__track {
        left: 12.5%;
        right: 12.5%;
        top: 22px;
    }
    .mch-mkt-stepper__panel {
        padding: 24px 18px;
    }
    .mch-mkt-stepper__visual {
        max-width: 220px;
    }
    .mch-mkt-stepper__bigicon {
        width: 90px;
        height: 90px;
        font-size: 2.3rem;
    }
    .mch-mkt-stepper__bignum {
        font-size: 4rem;
    }
    .mch-mkt-stepper__title {
        font-size: 1.3rem;
    }
    .mch-mkt-ai-feats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .mch-mkt-results-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .mch-mkt-faq-v2__q {
        padding: 16px 18px;
        gap: 12px;
    }
    .mch-mkt-faq-v2__a-inner p { padding: 0 18px 18px 50px; }
    .mch-mkt-ai-visual__badge {
        padding: 10px 12px;
        gap: 10px;
    }
    .mch-mkt-ai-visual__badge strong { font-size: 0.85rem; }
    .mch-mkt-ai-visual__badge span { font-size: 0.7rem; }
    .mch-mkt-ai-visual__badge--tl { top: 12px; left: 10px; }
    .mch-mkt-ai-visual__badge--br { bottom: 14px; right: 10px; }
    .mch-mkt-process__step {
        display: flex;
        text-align: left;
        gap: 18px;
        align-items: flex-start;
    }
    .mch-mkt-process__number {
        margin: 0;
        flex-shrink: 0;
    }
    .mch-mkt-process__body p {
        padding: 0;
    }
    .mch-mkt-hero {
        padding: 0;
    }
    .mch-mkt-hero__inner {
        padding: 56px 18px 72px;
        gap: 36px;
    }
    .mch-mkt-hero--sub .mch-mkt-hero__inner {
        padding-top: 20px;
        gap: 24px;
    }
    .mch-mkt-hero__crumbs {
        font-size: 0.74rem;
        padding: 6px 10px;
        gap: 6px;
    }
    .mch-mkt-hero__crumbs a i { font-size: 0.7rem; }
    .mch-mkt-hero__visual-badge {
        padding: 10px 12px;
        gap: 10px;
    }
    .mch-mkt-hero__visual-badge i {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .mch-mkt-hero__visual-badge strong { font-size: 0.88rem; }
    .mch-mkt-hero__visual-badge span:not(.mch-mkt-hero__visual-dot) { font-size: 0.7rem; }
    .mch-mkt-hero__visual-badge--tl { top: 12px; left: 10px; }
    .mch-mkt-hero__visual-badge--br { bottom: 14px; right: 10px; }
    .mch-mkt-hero__trust {
        gap: 10px 18px;
        font-size: 0.82rem;
    }
    .mch-mkt-cta {
        padding: 48px 16px;
    }
    .mch-mkt-faq__question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    .mch-mkt-faq__answer p {
        padding: 0 18px 16px;
    }
    .mch-mkt-contact__row {
        grid-template-columns: 1fr;
    }
}

/* ─── RESPONSIVE: 480px ─── */
@media (max-width: 480px) {
    .mch-mkt-hero__title {
        font-size: 1.6rem;
    }
    .mch-mkt-hero__buttons {
        flex-direction: column;
    }
    .mch-mkt-hero__cta {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    .mch-mkt-stats__grid {
        grid-template-columns: 1fr 1fr;
    }
    .mch-mkt-stats__item {
        padding: 20px 12px;
    }
    .mch-mkt-stats__number {
        font-size: 1.8rem;
    }
    .mch-mkt-process__number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .mch-mkt-process__steps::before {
        left: 21px;
    }
    .mch-mkt-cta__btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    .mch-mkt-comparison__col {
        padding: 20px;
    }
    .mch-mkt-problem {
        padding: 20px;
    }
    .mch-mkt-deliverable {
        padding: 20px;
    }
    /* VS comparison tighter on phones */
    .mch-mkt-vs__col { padding: 20px; border-radius: 16px; }
    .mch-mkt-vs__title { font-size: 1.05rem; }
    .mch-mkt-vs__meta { font-size: 0.82rem; }
    .mch-mkt-vs__list li { font-size: 0.86rem; }
    .mch-mkt-vs__cta { padding: 13px 22px; font-size: 0.92rem; width: 100%; justify-content: center; }
    /* Hero badges smaller on phones */
    .mch-mkt-hero__visual-badge--tl,
    .mch-mkt-hero__visual-badge--br { position: absolute; }
    .mch-mkt-hero__visual-badge strong { font-size: 0.82rem; }
    .mch-mkt-hero__visual-badge i { width: 28px; height: 28px; font-size: 0.8rem; }
    /* Stepper tighter on phones — labels fit on 2 lines */
    .mch-mkt-stepper__label { font-size: 0.68rem; max-width: 72px; }
    .mch-mkt-stepper__dot { width: 42px; height: 42px; font-size: 0.9rem; }
    .mch-mkt-stepper__num { width: 18px; height: 18px; font-size: 0.6rem; top: -5px; right: -5px; }
    .mch-mkt-stepper__track { top: 20px; }
    /* Results v2 compact cards fit single column */
    .mch-mkt-rcard--compact { padding: 16px 14px; }
    .mch-mkt-rcard--compact .mch-mkt-rcard__number { font-size: 1.6rem; }
    /* Bento hero card: reduce num on phone */
    .mch-mkt-scard--hero .mch-mkt-scard__num { font-size: 3.2rem; }
    /* Services footer: keep 2 sub-cols readable */
    .mch-mkt-footer__services-cols { gap: 6px 10px; }
    .mch-mkt-footer__links a { font-size: 0.82rem; }
    /* AI section: title smaller */
    .mch-mkt-ai-title { font-size: 1.5rem; }
    /* CTA final trust row stacks more tight */
    .mch-mkt-cta__trust { flex-direction: column; gap: 10px; }
    .mch-mkt-cta__actions .mch-mkt-cta__btn { width: 100%; justify-content: center; }
    /* FAQ v2 number badge smaller */
    .mch-mkt-faq-v2__num { font-size: 0.74rem; }
    .mch-mkt-faq-v2__text { font-size: 0.94rem; }
}
