
/* ==========================================================================
   SUPPRESS REDUNDANT DEFAULT THEME TITLE & WRAPPERS
   ========================================================================== */
.page-header,
.page-header .entry-title,
h1.entry-title,
.site-main > header.page-header {
    display: none !important;
}

/* Ensure brand palette buttons override any hardcoded legacy green styles */
.mkw-btn-primary,
.mkw-whatsapp-cta-btn,
a[style*="background: #10b981"],
a[style*="background: #00a86b"],
a[style*="background: #059669"],
a[style*="background:#10b981"],
a[style*="background:#00a86b"],
a[style*="background:#059669"],
button[style*="background: #10b981"],
button[style*="background: #00a86b"] {
    background: #EA932A !important;
    color: #17242B !important;
    font-weight: 700 !important;
    border-color: #EA932A !important;
}

a[style*="background: #10b981"]:hover,
a[style*="background: #00a86b"]:hover,
a[style*="background: #059669"]:hover,
.mkw-btn-primary:hover,
.mkw-whatsapp-cta-btn:hover {
    background: #d8811e !important;
    color: #17242B !important;
}


/* ==========================================================================
   UNIFIED 1200PX FULL-WIDTH ARCHITECTURE
   ========================================================================== */
.mkw-container,
.site-main,
.page-content,
.entry-content,
.site-main .page-content,
article.page,
article.post {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Ensure inner wrappers stretch to full 1200px */
.mkw-home-hero,
.mkw-funnel-wrapper,
#mkwFunnelApp,
.mkw-diagnostic-banner,
.mkw-prefooter-card,
.mkw-author-box {
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Override any inline legacy max-width on sections across all pages */
div[style*="max-width: 900px"],
div[style*="max-width: 950px"],
div[style*="max-width: 960px"],
div[style*="max-width: 850px"],
div[style*="max-width: 800px"],
div[style*="max-width: 780px"] {
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/**
 * Mokawala.ma — Global Design System V2
 * Clean, Modern, Premium UI/UX Architecture
 * Palette: Modern Orange (#ea580c) + Deep Slate Navy (#0f172a) + Emerald (#059669)
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    /* Brand Palette extracted directly from official Mokawala Logo */
    --primary: #EA932A;
    --primary-hover: #D4801E;
    --primary-light: #FFF8F0;
    --primary-border: #F7CB99;

    --secondary: #BECDD4;
    --secondary-light: #EEF3F5;
    --secondary-dark: #8FA4AE;

    --dark: #17242B;
    --dark-surface: #1E2E37;
    --dark-deep: #0F1B21;

    --text: #17242B;
    --text-muted: #4B5C64;

    --background: #FFFFFF;
    --background-soft: #F7F8F8;
    --border: #E3E9EC;

    /* Semantic Compatibility Aliases */
    --mkw-primary: var(--primary);
    --mkw-primary-hover: var(--primary-hover);
    --mkw-primary-light: var(--primary-light);
    --mkw-primary-border: var(--primary-border);

    --mkw-navy: var(--dark);
    --mkw-navy-surface: var(--dark-surface);
    --mkw-navy-deep: var(--dark-deep);

    --mkw-secondary: var(--secondary);
    --mkw-secondary-light: var(--secondary-light);

    --mkw-slate-50: var(--background-soft);
    --mkw-slate-100: var(--secondary-light);
    --mkw-slate-200: var(--border);
    --mkw-slate-300: var(--secondary);
    --mkw-slate-400: #8FA4AE;
    --mkw-slate-500: #647782;
    --mkw-slate-600: #556872;
    --mkw-slate-700: var(--text-muted);
    --mkw-slate-800: var(--text);
    --mkw-slate-900: var(--dark);

    --mkw-success: #059669;
    --mkw-success-hover: #047857;
    --mkw-success-light: #ecfdf5;

    --mkw-font-ar: 'Tajawal', 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --mkw-font-latin: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --mkw-radius-sm: 8px;
    --mkw-radius: 12px;
    --mkw-radius-lg: 16px;
    --mkw-radius-xl: 20px;

    --mkw-shadow-sm: 0 1px 3px rgba(23, 36, 43, 0.05);
    --mkw-shadow: 0 4px 20px -2px rgba(23, 36, 43, 0.07);
    --mkw-shadow-lg: 0 12px 32px -4px rgba(23, 36, 43, 0.12);
}

/* Global Typography & Resets */
body {
    font-family: var(--mkw-font-ar);
    color: var(--mkw-slate-800);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

html[lang^="fr"] body,
html[lang^="en"] body {
    font-family: var(--mkw-font-latin);
}

.mkw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.mkw-topbar {
    background-color: var(--mkw-navy);
    color: var(--mkw-slate-400);
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mkw-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.mkw-topbar-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mkw-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mkw-slate-200);
    font-weight: 500;
}
.mkw-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: mkw-pulse 2s infinite;
}
@keyframes mkw-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.mkw-topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mkw-topbar-link {
    color: var(--mkw-slate-300);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.mkw-topbar-link:hover {
    color: var(--mkw-primary);
}
.mkw-topbar-sep {
    color: rgba(255, 255, 255, 0.2);
}
.mkw-lang-picker {
    display: flex;
    gap: 4px;
}
.mkw-lang-btn {
    color: var(--mkw-slate-400);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
.mkw-lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}
.mkw-lang-btn.active {
    color: #ffffff;
    background-color: var(--mkw-primary);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.mkw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--mkw-slate-100);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}
.mkw-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}
.mkw-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.mkw-logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.mkw-nav-desktop {
    display: flex;
    align-items: center;
}
.mkw-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}
.mkw-nav-item {
    position: relative;
}
.mkw-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--mkw-slate-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.mkw-nav-link:hover,
.mkw-nav-item:hover > .mkw-nav-link {
    color: var(--mkw-primary);
    background-color: var(--mkw-primary-light);
}
.mkw-chevron {
    font-size: 10px;
    transition: transform 0.2s ease;
}
.mkw-nav-item:hover .mkw-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.mkw-dropdown-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    background: #ffffff;
    border: 1px solid var(--mkw-slate-200);
    border-radius: var(--mkw-radius-lg);
    box-shadow: var(--mkw-shadow-lg);
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    pointer-events: none;
}
.mkw-nav-item:hover > .mkw-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mkw-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 580px;
}
.mkw-dropdown-single {
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mkw-dropdown-heading {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mkw-primary);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--mkw-slate-100);
}
.mkw-dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.mkw-dropdown-item:hover {
    background-color: var(--mkw-primary-light);
}
.mkw-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mkw-slate-800);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mkw-dropdown-item:hover .mkw-item-title {
    color: var(--mkw-primary);
}
.mkw-item-desc {
    font-size: 12px;
    color: var(--mkw-slate-500);
    margin-top: 2px;
    line-height: 1.4;
}
.mkw-dropdown-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--mkw-slate-100);
    text-align: center;
}
.mkw-dropdown-footer a {
    color: var(--mkw-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* Header Buttons & Actions */
.mkw-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mkw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--mkw-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    box-sizing: border-box;
}
.mkw-btn-cta {
    background: #EA932A !important;
    color: #17242B !important;
    font-weight: 800 !important;
    padding: 10px 20px;
    font-size: 14.5px;
    border-radius: var(--mkw-radius);
    box-shadow: 0 4px 14px rgba(234, 147, 42, 0.35);
    border: none;
    transition: all 0.2s ease;
}
.mkw-btn-cta:hover {
    background: #D4801E !important;
    color: #0F1B21 !important;
    box-shadow: 0 6px 20px rgba(234, 147, 42, 0.45);
    transform: translateY(-1px);
}
.mkw-btn-cta:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    transform: translateY(-1px);
}
.mkw-btn-wa {
    background-color: var(--mkw-success);
    color: #ffffff !important;
    padding: 10px 18px;
    font-size: 14.5px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.mkw-btn-wa:hover {
    background-color: var(--mkw-success-hover);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
    transform: translateY(-1px);
}
.mkw-btn-lg {
    padding: 14px 26px;
    font-size: 16px;
}
.mkw-btn-block {
    width: 100%;
}
.mkw-badge-hot {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

/* Mobile Toggle */
.mkw-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 38px;
    height: 38px;
    background: var(--mkw-slate-100);
    border: 1px solid var(--mkw-slate-200);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}
.mkw-burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--mkw-navy);
    border-radius: 2px;
    transition: 0.3s;
}


/* Global Overflow Guard */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
}

/* ==========================================================================
   MOBILE DRAWER (Transform-based, Zero RTL horizontal overflow)
   ========================================================================== */
.mkw-mobile-drawer {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: var(--mkw-shadow-lg);
    z-index: 99999;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    display: flex;
    flex-direction: column;
}
html[dir="rtl"] .mkw-mobile-drawer,
body.rtl .mkw-mobile-drawer {
    transform: translateX(-100%);
}
.mkw-mobile-drawer.open {
    visibility: visible !important;
    transform: translateX(0) !important;
}

.mkw-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--mkw-slate-100);
}
.mkw-drawer-close {
    background: var(--mkw-slate-100);
    border: none;
    font-size: 24px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--mkw-slate-700);
    cursor: pointer;
}
.mkw-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.mkw-drawer-cta-top {
    margin-bottom: 20px;
}
.mkw-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mkw-mob-group-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mkw-primary);
    margin: 18px 0 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--mkw-slate-100);
}
.mkw-mobile-nav li a {
    display: block;
    padding: 9px 8px;
    color: var(--mkw-slate-700);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 6px;
}
.mkw-mobile-nav li a:hover {
    background-color: var(--mkw-primary-light);
    color: var(--mkw-primary);
}
.mkw-drawer-footer {
    padding: 15px 0 0;
    border-top: 1px solid var(--mkw-slate-100);
    margin-top: 20px;
}
.mkw-drawer-langs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
}
.mkw-drawer-langs a {
    color: var(--mkw-slate-500);
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 4px;
}
.mkw-drawer-langs a.active {
    background: var(--mkw-primary);
    color: #ffffff;
}
.mkw-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mkw-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}


/* ==========================================================================
   PRE-FOOTER CONVERSION BANNER
   ========================================================================== */
.mkw-prefooter {
    padding: 60px 0 0;
    background: transparent;
}
.mkw-prefooter-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--mkw-radius-xl);
    padding: 46px 44px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mkw-prefooter-pill {
    display: inline-block;
    background: rgba(234, 88, 12, 0.2);
    color: #fb923c;
    border: 1px solid rgba(234, 88, 12, 0.4);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.mkw-prefooter-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.mkw-prefooter-desc {
    font-size: 15px;
    color: var(--mkw-slate-300);
    margin: 0;
    line-height: 1.6;
    max-width: 580px;
}
.mkw-prefooter-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 260px;
}

/* ==========================================================================
   GLOBAL SITE FOOTER
   ========================================================================== */
.mkw-footer {
    background-color: var(--mkw-navy-deep);
    color: var(--mkw-slate-400);
    padding: 60px 0 25px;
    margin-top: 50px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mkw-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 36px;
}
.mkw-footer-col {
    display: flex;
    flex-direction: column;
}
.mkw-footer-logo {
    height: 42px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.mkw-footer-bio {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mkw-slate-400);
    margin: 0 0 18px;
}
.mkw-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.mkw-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mkw-c-link {
    color: var(--mkw-slate-300);
    text-decoration: none;
    transition: color 0.2s;
}
.mkw-c-link:hover {
    color: var(--mkw-primary);
}
.mkw-support-lines {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--mkw-radius);
    padding: 14px;
    margin-top: 18px;
}
.mkw-support-lines-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.mkw-support-lines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
}
.mkw-support-lines-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mkw-support-lines-list a {
    color: var(--mkw-slate-300);
    text-decoration: none;
    font-weight: 600;
}
.mkw-support-lines-list a:hover {
    color: var(--mkw-primary);
}
.mkw-line-badge {
    font-size: 10px;
    background: rgba(234, 88, 12, 0.15);
    color: #fb923c;
    border: 1px solid rgba(234, 88, 12, 0.3);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.mkw-footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 8px;
}
.mkw-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 32px;
    height: 2px;
    background-color: var(--mkw-primary);
    border-radius: 2px;
}
.mkw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mkw-footer-links li a {
    color: var(--mkw-slate-400);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mkw-footer-links li a:hover {
    color: #ffffff;
    transform: translateX(-3px);
}
html[dir="ltr"] .mkw-footer-links li a:hover {
    transform: translateX(3px);
}
.mkw-footer-highlight a {
    color: #fb923c !important;
    font-weight: 700;
}
.mkw-footer-badge {
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 700;
}
.mkw-badge-active {
    background: rgba(5, 150, 105, 0.2);
    color: #34d399;
    border: 1px solid rgba(5, 150, 105, 0.4);
}
.mkw-footer-langs {
    margin-bottom: 18px;
}
.mkw-footer-langs-label {
    display: block;
    font-size: 12px;
    color: var(--mkw-slate-400);
    margin-bottom: 6px;
}
.mkw-footer-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mkw-footer-lang-btn {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--mkw-slate-300);
    text-decoration: none;
    transition: all 0.2s;
}
.mkw-footer-lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
.mkw-footer-lang-btn.active {
    background: var(--mkw-primary);
    border-color: var(--mkw-primary);
    color: #ffffff;
    font-weight: 700;
}
.mkw-footer-security-badges {
    margin-top: 18px;
}
.mkw-sec-badge {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px;
    border-radius: 8px;
    color: var(--mkw-slate-400);
}

/* Sub-Footer */
.mkw-subfooter {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mkw-disclaimer-box {
    background: rgba(255, 255, 255, 0.02);
    border-inline-start: 3px solid var(--mkw-primary);
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.mkw-disclaimer-text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--mkw-slate-400);
    margin: 0;
}
.mkw-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--mkw-slate-400);
}
.mkw-copyright {
    margin: 0;
}
.mkw-subfooter-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.mkw-subfooter-links a {
    color: var(--mkw-slate-400);
    text-decoration: none;
}
.mkw-subfooter-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   GLOBAL DESIGN SYSTEM ATOMS (Cards, Badges, Tables, Author Boxes)
   ========================================================================== */
.mkw-card {
    background: #ffffff;
    border-radius: var(--mkw-radius-lg);
    border: 1px solid var(--mkw-slate-200);
    box-shadow: var(--mkw-shadow-sm);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkw-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--mkw-shadow);
}
.mkw-program-card {
    background: #ffffff;
    border-radius: var(--mkw-radius-lg);
    border: 1px solid var(--mkw-slate-200);
    box-shadow: var(--mkw-shadow-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}
.mkw-program-card:hover {
    border-color: var(--mkw-primary-border);
    box-shadow: var(--mkw-shadow);
}
.mkw-program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.mkw-program-status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}
.mkw-status-active {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}
.mkw-status-ongoing {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}
.mkw-status-review {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}
.mkw-program-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--mkw-navy);
    margin: 0 0 8px;
}
.mkw-program-desc {
    font-size: 14px;
    color: var(--mkw-slate-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.mkw-program-perks {
    background: var(--mkw-slate-50);
    border-radius: var(--mkw-radius-sm);
    padding: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mkw-perk-row {
    display: flex;
    justify-content: space-between;
    color: var(--mkw-slate-700);
}
.mkw-perk-val {
    font-weight: 700;
    color: var(--mkw-primary);
}

/* E-E-A-T Author Box */
.mkw-author-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--mkw-slate-200);
    border-radius: var(--mkw-radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 32px 0;
    box-shadow: var(--mkw-shadow-sm);
}
.mkw-author-avatar-wrap {
    flex-shrink: 0;
    position: relative;
}
.mkw-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mkw-primary);
}
.mkw-author-verified-badge {
    position: absolute;
    bottom: -2px;
    inset-inline-end: -2px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.mkw-author-info {
    flex: 1;
}
.mkw-author-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--mkw-navy);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mkw-author-role {
    font-size: 13px;
    color: var(--mkw-primary);
    font-weight: 600;
    margin-bottom: 6px;
}
.mkw-author-bio {
    font-size: 13.5px;
    color: var(--mkw-slate-600);
    margin: 0 0 10px;
    line-height: 1.5;
}
.mkw-author-links {
    display: flex;
    gap: 12px;
    font-size: 13px;
}
.mkw-author-links a {
    color: var(--mkw-primary);
    text-decoration: none;
    font-weight: 700;
}

/* Modern Tables */
.mkw-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--mkw-slate-200);
    border-radius: var(--mkw-radius);
    margin: 24px 0;
}
.mkw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: start;
}
.mkw-table th {
    background-color: var(--mkw-slate-100);
    color: var(--mkw-navy);
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 1px solid var(--mkw-slate-200);
}
.mkw-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mkw-slate-200);
    color: var(--mkw-slate-700);
}
.mkw-table tr:nth-child(even) td {
    background-color: var(--mkw-slate-50);
}
.mkw-table tr:last-child td {
    border-bottom: none;
}

/* Floating WhatsApp Button for Mobile/Desktop */
.mkw-floating-wa {
    position: fixed;
    bottom: 24px;
    inset-inline-start: 24px;
    z-index: 999;
    background: #25d366;
    color: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-size: 28px;
    transition: transform 0.2s ease;
}
.mkw-floating-wa:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .mkw-nav-desktop {
        display: none;
    }
    .mkw-mobile-toggle {
        display: flex;
    }
    .mkw-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .mkw-col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mkw-topbar {
        display: none;
    }
    .mkw-prefooter-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .mkw-prefooter-actions {
        width: 100%;
    }
    .mkw-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mkw-col-brand {
        grid-column: span 1;
    }
    .mkw-author-box {
        flex-direction: column;
        text-align: center;
    }
    .mkw-author-name {
        justify-content: center;
    }
    .mkw-author-links {
        justify-content: center;
    }
    .mkw-copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .mkw-header-inner {
        height: 62px !important;
    }
    .mkw-logo-img {
        max-height: 36px !important;
        width: auto !important;
    }
    .mkw-header-actions .mkw-btn-cta {
    background: #EA932A !important;
    color: #17242B !important;
    font-weight: 800 !important;
    padding: 10px 20px;
    font-size: 14.5px;
    border-radius: var(--mkw-radius);
    box-shadow: 0 4px 14px rgba(234, 147, 42, 0.35);
    border: none;
    transition: all 0.2s ease;
}
.mkw-btn-cta:hover {
    background: #D4801E !important;
    color: #0F1B21 !important;
    box-shadow: 0 6px 20px rgba(234, 147, 42, 0.45);
    transform: translateY(-1px);
}
    .mkw-mobile-toggle {
        display: flex !important;
    }
    .mkw-container {
        padding: 0 14px !important;
    }
    .mkw-home-hero {
        padding: 36px 18px !important;
        border-radius: 16px !important;
    }
    .mkw-home-hero h1 {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }
    .mkw-home-hero p {
        font-size: 16px !important;
    }
    .mkw-card, .mkw-funnel-wrapper .mkw-card {
        padding: 20px 14px !important;
    }
}

.mkw-chevron-icon {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
    margin-inline-start: 4px;
}
.mkw-nav-item:hover .mkw-chevron-icon {
    transform: rotate(180deg);
}


/* Topbar & Navbar Alignment */
.mkw-topbar {
    background-color: #0F1B21 !important;
    border-bottom: 1px solid rgba(190, 205, 212, 0.15) !important;
}
.mkw-topbar-link:hover {
    color: #EA932A !important;
}
.mkw-lang-btn.active {
    background-color: #EA932A !important;
    color: #17242B !important;
    font-weight: 800 !important;
}
.mkw-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E3E9EC !important;
}
.mkw-nav-link {
    color: #17242B !important;
}
.mkw-nav-link:hover,
.mkw-nav-item:hover > .mkw-nav-link {
    color: #EA932A !important;
    background-color: #FFF8F0 !important;
}
.mkw-dropdown-menu {
    border: 1px solid #E3E9EC !important;
}
.mkw-dropdown-heading {
    color: #EA932A !important;
    border-bottom: 1px solid #E3E9EC !important;
}
.mkw-dropdown-item:hover {
    background-color: #FFF8F0 !important;
}
.mkw-dropdown-item:hover .mkw-item-title {
    color: #EA932A !important;
}
.mkw-dropdown-footer a {
    color: #EA932A !important;
}

/* Pre-Footer Banner */
.mkw-prefooter-card {
    background: linear-gradient(135deg, #17242B 0%, #1E2E37 100%) !important;
    border: 1px solid rgba(190, 205, 212, 0.2) !important;
}
.mkw-prefooter-pill {
    background: rgba(234, 147, 42, 0.15) !important;
    color: #EA932A !important;
    border: 1px solid #EA932A !important;
}
.mkw-prefooter-desc {
    color: #BECDD4 !important;
}

/* Site Footer */
.mkw-footer {
    background-color: #0F1B21 !important;
    border-top: 1px solid rgba(190, 205, 212, 0.15) !important;
    color: #BECDD4 !important;
}
.mkw-footer-bio {
    color: #BECDD4 !important;
}
.mkw-footer-heading {
    color: #FFFFFF !important;
}
.mkw-footer-heading::after {
    background-color: #EA932A !important;
}
.mkw-footer-links li a {
    color: #BECDD4 !important;
}
.mkw-footer-links li a:hover {
    color: #EA932A !important;
}
.mkw-footer-highlight a {
    color: #EA932A !important;
}
.mkw-support-lines {
    background: rgba(190, 205, 212, 0.05) !important;
    border: 1px solid rgba(190, 205, 212, 0.15) !important;
}
.mkw-line-badge {
    background: rgba(234, 147, 42, 0.2) !important;
    color: #EA932A !important;
    border: 1px solid rgba(234, 147, 42, 0.4) !important;
}
.mkw-footer-lang-btn.active {
    background: #EA932A !important;
    border-color: #EA932A !important;
    color: #17242B !important;
    font-weight: 800 !important;
}
.mkw-subfooter {
    border-top: 1px solid rgba(190, 205, 212, 0.12) !important;
}
.mkw-disclaimer-box {
    background: rgba(190, 205, 212, 0.04) !important;
    border-inline-start: 3px solid #EA932A !important;
}
.mkw-disclaimer-text {
    color: #8FA4AE !important;
}
.mkw-copyright {
    color: #8FA4AE !important;
}
.mkw-subfooter-links a {
    color: #8FA4AE !important;
}
.mkw-subfooter-links a:hover {
    color: #FFFFFF !important;
}

/* Cards, Headings & Text */
h1, h2, h3, h4, h5, h6 {
    color: #17242B;
}
p {
    color: #4B5C64;
}
.mkw-card, .mkw-program-card {
    background: #FFFFFF !important;
    border: 1.5px solid #BECDD4 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(23, 36, 43, 0.04) !important;
    transition: all 0.25s ease !important;
}
.mkw-card:hover, .mkw-program-card:hover {
    border-color: #EA932A !important;
    box-shadow: 0 10px 25px rgba(234, 147, 42, 0.15) !important;
    transform: translateY(-2px);
}
.mkw-author-box {
    border: 1px solid #E3E9EC !important;
    border-inline-start: 4px solid #EA932A !important;
    background: #FFFFFF !important;
}
.mkw-author-avatar {
    border: 2px solid #EA932A !important;
}
.mkw-author-name {
    color: #17242B !important;
}
.mkw-author-role {
    color: #EA932A !important;
    font-weight: 700 !important;
}
.mkw-author-bio {
    color: #4B5C64 !important;
}

/* 5 Intent Paths Grid: 5 columns on desktop, 3 on tablet, 1 on mobile */
.mkw-intents-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
}
@media (max-width: 1024px) {
    .mkw-intents-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 640px) {
    .mkw-intents-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Third-party widget cleanup & Mobile conflict prevention */
#ht-ctc-chat,
.ht-ctc-chat,
.ctc_wp_desktop,
.ctc_wp_mobile {
    display: none !important;
}

@media (max-width: 768px) {
    /* On mobile, sticky bottom bar handles WhatsApp & Diagnostic cleanly */
    .mkw-floating-wa {
        display: none !important;
    }
    /* Mobile header: keep clean Logo + Toggle, no awkward 2-line wrapped buttons */
    .mkw-header-actions .mkw-btn-cta {
        display: none !important;
    }
    .mkw-header-inner {
        height: 60px !important;
    }
    .mkw-logo-img {
        max-height: 38px !important;
        width: auto !important;
    }
}
