/* ============================================================
   Media Kit — Sponsorship Talent Agency Page
   Single-column layout, mobile-first (375px base), talent agency feel.
   ============================================================ */

/* --- BASE & RESET --- */
.mk-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1e1b4b;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Blurred banner background: fills the viewport, sits behind everything */
.mk-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: blur(40px) saturate(1.3) brightness(0.4);
    transform: scale(1.15);
}
.mk-page-bg--default {
    background-image: linear-gradient(160deg, #1e1b4b 0%, #312e81 25%, #3b327a 50%, #4c3f6e 75%, #6b4f5e 100%);
    filter: none;
    transform: none;
}

/* Everything else sits above the background */
.mk-platform-banner,
.mk-owner-bar,
.mk-breadcrumb,
.mk-layout,
.mk-discover,
.mk-powered-by-fixed,
.mk-sticky-cta,
.mk-modal-overlay {
    position: relative;
    z-index: 1;
}

.mk-hidden-content { display: none; }

/* --- PLATFORM BANNER (brand-facing, non-logged-in) --- */
.mk-platform-banner {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mk-platform-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.mk-platform-banner__text {
    opacity: 0.95;
}
.mk-platform-banner__cta {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.mk-platform-banner__cta:hover {
    text-decoration: underline;
}

/* --- OWNER BAR --- */
.mk-owner-bar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.mk-owner-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}
.mk-commission-highlight {
    background: #ecfdf5;
    color: #059669;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.mk-commission-highlight--pending {
    background: #fef3c7;
    color: #d97706;
}
.mk-commission-details {
    font-size: 13px;
    color: #64748b;
}
.mk-commission-details--small { font-size: 12px; }
.mk-earnings-link {
    color: #4F46E5;
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
}
.mk-earnings-link:hover { text-decoration: underline; }
.mk-action-btn {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    color: #475569;
    background: #fff;
    transition: all 150ms ease;
}
.mk-action-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}
.mk-action-btn--setup,
.mk-action-btn--activate {
    background: #4F46E5;
    color: #fff;
    border-color: #4F46E5;
}
.mk-action-btn--setup:hover,
.mk-action-btn--activate:hover {
    background: #4338CA;
}

/* --- BREADCRUMB --- */
.mk-breadcrumb {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.mk-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.mk-breadcrumb a:hover { color: #fff; }
.mk-breadcrumb__sep { margin: 0 6px; }
.mk-breadcrumb__current { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.mk-layout {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* --- LEFT SIDEBAR (sticky profile card) --- */
.mk-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}
.mk-profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.mk-profile-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    object-fit: cover;
    margin-bottom: 14px;
}
.mk-profile-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #0f172a;
    line-height: 1.2;
}
.mk-profile-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #7c3aed, #4F46E5);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 4px;
    box-shadow: 0 2px 6px rgba(124,58,237,0.25);
}
.mk-profile-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}
.mk-profile-card__positioning {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px;
}

/* Platform stats row */
.mk-profile-card__stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.mk-profile-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #475569;
}
.mk-profile-stat i { color: #94a3b8; font-size: 14px; }
.mk-profile-stat .fa-youtube { color: #dc2626; }
.mk-profile-stat strong { font-weight: 700; color: #0f172a; }

/* Sidebar tags */
.mk-profile-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}
.mk-tag--sm {
    font-size: 11px;
    padding: 3px 10px;
}

/* Sidebar bio */
.mk-profile-card__bio {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: left;
}

/* YouTube link */
.mk-profile-card__yt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 18px;
}
.mk-profile-card__yt-link:hover { text-decoration: underline; }
.mk-profile-card__yt-link .fa-external-link-alt { font-size: 10px; color: #94a3b8; }

/* Sidebar CTA */
.mk-profile-card__cta {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 200ms ease;
    box-shadow: 0 4px 12px rgba(5,150,105,0.25);
    box-sizing: border-box;
    margin-bottom: 16px;
}
.mk-profile-card__cta:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(5,150,105,0.3);
}
.mk-profile-card__cta--share {
    background: #fff;
    color: #4F46E5;
    border: 2px solid #e0e7ff;
    box-shadow: none;
}
.mk-profile-card__cta--share:hover {
    background: #f0f0ff;
    border-color: #c7d2fe;
    box-shadow: 0 4px 12px rgba(79,70,229,0.1);
}

/* Powered by */
.mk-profile-card__powered {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.mk-profile-card__logo {
    height: 16px;
    opacity: 0.6;
}

/* --- RIGHT CONTENT COLUMN --- */
.mk-content {
    flex: 1;
    min-width: 0;
}

/* Content banner (YouTube banner at top of content column) */
.mk-content-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* --- DATA GRID (Insights & Data section) --- */
.mk-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.mk-data-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    transition: all 150ms ease;
}
.mk-data-card:hover {
    background: #f0f0ff;
    border-color: #e0e7ff;
}
.mk-data-card__icon {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 6px;
}
.mk-data-card__label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-bottom: 4px;
}
.mk-data-card__value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

/* Audience row */
.mk-audience-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.mk-audience-item {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 12px 16px;
}
.mk-audience-item__label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 500;
}
.mk-audience-item__label i {
    margin-right: 4px;
    color: #94a3b8;
}
.mk-audience-item__value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* Content formats */
.mk-content-formats {
    margin-top: 4px;
}
.mk-content-formats__label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Section shared styles */
.mk-section {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    margin-top: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}
/* Alternate section background for visual rhythm */
.mk-main .mk-section:nth-child(even) {
    background: #fcfcfe;
}
.mk-section--cta {
    border: 2px solid #e0e7ff;
    background: linear-gradient(180deg, #fafbff 0%, #f5f3ff 100%);
    box-shadow: 0 4px 20px rgba(79,70,229,0.06);
}
.mk-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}
.mk-section__title i {
    color: #4F46E5;
    font-size: 17px;
    width: 32px;
    height: 32px;
    background: #ede9fe;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mk-section__subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* --- ABOUT --- */
.mk-about {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
}
.mk-read-more {
    background: none;
    border: none;
    color: #4F46E5;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.mk-read-more:hover { text-decoration: underline; }
.mk-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 16px;
}
.mk-youtube-link:hover { text-decoration: underline; }
.mk-youtube-link .fa-external-link-alt { font-size: 11px; color: #94a3b8; }
.mk-verified-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
}

/* --- RATE CARDS --- */
.mk-rate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    max-width: 100%;
    padding-top: 12px;
}
.mk-rate-card {
    background: linear-gradient(180deg, #fafbff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 12px 16px;
    text-align: center;
    position: relative;
    transition: all 200ms ease;
    min-width: 0;
}
.mk-rate-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.1);
}
.mk-rate-card--featured {
    border-color: #4F46E5;
    background: linear-gradient(180deg, #f0f0ff 0%, #fafbff 100%);
    box-shadow: 0 4px 16px rgba(79,70,229,0.12);
}
.mk-rate-card__popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F46E5, #7c3aed);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(79,70,229,0.3);
}
.mk-rate-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4F46E5;
}
.mk-rate-card--featured .mk-rate-card__icon {
    background: linear-gradient(135deg, #4F46E5, #7c3aed);
    color: #fff;
}
.mk-rate-card__type {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.mk-rate-card__range {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.mk-rate-card--featured .mk-rate-card__range {
    color: #4F46E5;
}
.mk-rate-note {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}
.mk-rate-note i { margin-top: 2px; color: #4F46E5; }

/* --- FEATURED VIDEO --- */
.mk-hero-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 16/9;
}
.mk-video-poster {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
}
.mk-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mk-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
}
.mk-play-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 3px;
}
.mk-video-poster:hover .mk-play-icon {
    background: rgba(79,70,229,0.9);
    transform: translate(-50%, -50%) scale(1.08);
}
.mk-video-edit-overlay {
    position: absolute;
    top: 0; right: 0;
    z-index: 2;
    padding: 12px;
}
.mk-video-edit-btn-center {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.mk-video-edit-btn-center:hover { background: rgba(0,0,0,0.8); }

.mk-thumb-fallback {
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- VIDEOS GRID --- */
.mk-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mk-video-thumb {
    position: relative;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: all 200ms ease;
}
.mk-video-thumb__img-wrap {
    border-radius: 12px 12px 0 0;
}
.mk-video-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #e2e8f0;
}
.mk-video-thumb__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #1e293b;
    overflow: hidden;
}
.mk-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}
.mk-video-thumb:hover img { transform: scale(1.05); }
.mk-video-thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 200ms ease;
    backdrop-filter: blur(4px);
}
.mk-video-thumb__play i { color: #fff; font-size: 13px; margin-left: 2px; }
.mk-video-thumb:hover .mk-video-thumb__play {
    opacity: 1;
    background: rgba(79,70,229,0.85);
}
.mk-video-thumb__views {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
/* Title wrapper: handles padding only, no overflow clipping */
.mk-video-thumb__title-wrap {
    padding: 10px 12px 12px;
}
/* Title text: clamped to exactly 2 lines with hard pixel cap.
   36px = 2 lines at 13px/1.4 (18.2px * 2 = 36.4, rounded down).
   The pixel height is the ultimate fallback if line-clamp fails. */
.mk-video-thumb__title {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
    max-height: 37px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* --- AUDIENCE INSIGHTS --- */
.mk-insights { margin-top: 8px; }
.mk-insight-row {
    margin-bottom: 16px;
}
.mk-insight-row__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.mk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mk-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    transition: all 150ms ease;
}
.mk-tag:hover {
    background: #e2e8f0;
}
.mk-tag--format {
    background: #f5f3ff;
    color: #6d28d9;
    border-color: #ddd6fe;
}
.mk-tag--format:hover {
    background: #ede9fe;
}
.mk-tag--more {
    background: #e0e7ff;
    color: #4F46E5;
    font-weight: 600;
    border-color: #c7d2fe;
    cursor: default;
}
.mk-insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mk-insight-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #f1f5f9;
    transition: all 150ms ease;
}
.mk-insight-item:hover {
    background: #f0f0ff;
    border-color: #e0e7ff;
}
.mk-insight-item__label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.mk-insight-item__value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* --- BOOKING HEADER --- */
.mk-booking-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.mk-booking-header__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #4F46E5, #7c3aed);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(79,70,229,0.25);
}

/* Trust signals */
.mk-trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e7ff;
}
.mk-trust-signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}
.mk-trust-signal i {
    color: #4F46E5;
    font-size: 12px;
}

/* --- INQUIRY FORM --- */
.mk-inquiry-form {
    margin-top: 0;
}
.mk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.mk-form-group {
    margin-bottom: 12px;
}
.mk-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.mk-required { color: #dc2626; }
.mk-form-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
    transition: border-color 150ms ease;
    box-sizing: border-box;
}
.mk-form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.mk-form-textarea { resize: vertical; min-height: 100px; }
.mk-inquiry-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #4F46E5, #4338CA);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 200ms ease;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(79,70,229,0.25);
    letter-spacing: 0.01em;
}
.mk-inquiry-submit:hover {
    background: linear-gradient(135deg, #4338CA, #3730a3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.35);
}
.mk-inquiry-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.mk-inquiry-note {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mk-inquiry-feedback {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.mk-inquiry-feedback--success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}
.mk-inquiry-feedback--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* --- QUALITY GATE CHECKLIST --- */
.mk-quality-gate {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.mk-quality-gate h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0f172a;
}
.mk-quality-gate p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 12px;
}
.mk-quality-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mk-quality-checklist li {
    padding: 8px 0;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}
.mk-quality-checklist li:last-child { border-bottom: none; }
.mk-quality-checklist li .fa-circle { font-size: 10px; color: #d1d5db; }
.mk-quality-checklist li .fa-check-circle { color: #059669; }
.mk-check--done { color: #059669 !important; font-weight: 500; }
.mk-quality-gate__note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 12px;
    font-style: italic;
}
.mk-quality-gate__owner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 12px;
}
.mk-quality-gate__owner-badge i {
    color: #94a3b8;
}

/* --- FAQ ACCORDION --- */
.mk-faq-accordion { margin-top: 8px; }
.mk-faq-item {
    border-bottom: 1px solid #f1f5f9;
}
.mk-faq-item:last-child { border-bottom: none; }
.mk-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.mk-faq-question i {
    transition: transform 200ms ease;
    color: #94a3b8;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 12px;
}
.mk-faq-item.active .mk-faq-question i { transform: rotate(180deg); }
.mk-faq-answer {
    display: none;
    padding: 0 0 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}
.mk-faq-item.active .mk-faq-answer { display: block; }
.mk-faq-answer p { margin: 0 0 8px; }
.mk-faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   BRAND CAPTURE — "Not the right fit?" two-path section
   ============================================================ */
.mk-brand-capture {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 32px;
}
.mk-brand-capture__card {
    background: rgba(15,10,40,0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}
.mk-brand-capture__header { margin-bottom: 28px; }
.mk-brand-capture__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.mk-brand-capture__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Two-path layout */
.mk-brand-capture__paths {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}
.mk-brand-capture__path {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    border-radius: 12px;
    transition: background 150ms ease;
}
.mk-brand-capture__path:hover {
    background: rgba(255,255,255,0.04);
}
.mk-brand-capture__path-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #a5b4fc;
    font-size: 17px;
}
.mk-brand-capture__path-icon--featured {
    background: rgba(79,70,229,0.3);
    color: #c4b5fd;
}
.mk-brand-capture__path-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.mk-brand-capture__path-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0 0 18px;
    flex-grow: 1;
}
.mk-brand-capture__path-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 150ms ease;
    white-space: nowrap;
}
.mk-brand-capture__path-cta:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}
.mk-brand-capture__path-cta--featured {
    background: #4F46E5;
    border-color: #4F46E5;
}
.mk-brand-capture__path-cta--featured:hover {
    background: #4338CA;
    border-color: #4338CA;
    box-shadow: 0 4px 16px rgba(79,70,229,0.35);
}
.mk-brand-capture__note {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* "or" divider — vertical line on desktop */
.mk-brand-capture__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}
.mk-brand-capture__divider::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}
.mk-brand-capture__divider span {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(15,10,40,0.55);
    padding: 6px 4px;
    border-radius: 4px;
}

/* Mobile: stack paths vertically */
@media (max-width: 600px) {
    .mk-brand-capture { padding: 0 16px 24px; }
    .mk-brand-capture__card { padding: 28px 20px; }
    .mk-brand-capture__title { font-size: 20px; }
    .mk-brand-capture__paths {
        grid-template-columns: 1fr;
    }
    .mk-brand-capture__path { padding: 20px 8px; }
    .mk-brand-capture__divider {
        padding: 4px 0;
    }
    .mk-brand-capture__divider::before {
        top: 50%;
        bottom: auto;
        left: 10%;
        width: 80%;
        height: 1px;
    }
    .mk-brand-capture__path-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   DISCOVER MORE CREATORS
   ============================================================ */
.mk-discover {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 32px;
}
.mk-discover .mk-section {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.mk-creators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.mk-creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 200ms ease;
    background: #fff;
}
.mk-creator-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.08);
}
.mk-creator-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.mk-creator-card:hover .mk-creator-card__avatar {
    border-color: #e0e7ff;
}
.mk-creator-card__name {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.mk-creator-card__stats {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}
.mk-creator-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
    padding: 6px 16px;
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    transition: all 150ms ease;
    background: #fafbff;
}
.mk-creator-card:hover .mk-creator-card__cta {
    background: #4F46E5;
    color: #fff;
    border-color: #4F46E5;
}

/* Browse all */
.mk-browse-all {
    text-align: center;
    margin-top: 24px;
    padding: 0 20px 80px;
}
.mk-browse-all__text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.mk-browse-all__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4F46E5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 150ms ease;
}
.mk-browse-all__btn:hover {
    background: #4338CA;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}
.mk-browse-all__link { /* retained for backward compat */
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
}
.mk-browse-all__link:hover { text-decoration: underline; color: #fff; }

/* ============================================================
   FIXED ELEMENTS
   ============================================================ */

/* Powered by (hidden on desktop, shown on mobile as fixed) */
.mk-powered-by-fixed {
    position: fixed;
    bottom: 16px;
    left: 16px;
    display: none;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    font-size: 12px;
    color: #94a3b8;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.mk-powered-logo { height: 18px; }

/* Sticky mobile CTA */
.mk-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    display: none;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
.mk-sticky-cta--visible { display: block; }
.mk-sticky-cta__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}
.mk-sticky-cta__text {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
}
.mk-sticky-cta__btn {
    background: #4F46E5;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ============================================================
   MODALS
   ============================================================ */
.mk-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 16px;
    backdrop-filter: blur(4px);
}
.mk-modal-overlay.active { display: flex; }
.mk-share-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}
.mk-share-card--edit { max-width: 480px; text-align: left; }
.mk-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}
.mk-modal-close:hover { color: #475569; }
.mk-modal-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.mk-share-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.mk-share-title--edit { text-align: center; }
.mk-copy-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.mk-share-url {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background: #f8fafc;
}
.mk-copy-btn {
    background: #4F46E5;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 150ms ease;
}
.mk-copy-btn:hover { background: #4338CA; }
.mk-qr-wrapper { text-align: center; }
.mk-qr-code {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

/* Edit modal form fields */
.mk-input-group { margin-bottom: 8px; }
.mk-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.mk-label-hint { font-weight: 400; color: #94a3b8; font-size: 12px; }
.mk-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    box-sizing: border-box;
}
.mk-input:focus { outline: none; border-color: #4F46E5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.mk-feedback { font-size: 13px; margin-top: 4px; }
.mk-form-actions { margin-top: 16px; }
.mk-btn-block {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease;
}
.mk-btn-primary {
    background: #4F46E5;
    color: #fff;
}
.mk-btn-primary:hover { background: #4338CA; }

/* ============================================================
   MOBILE RESPONSIVE (375px+)
   ============================================================ */
@media (max-width: 767px) {
    .mk-platform-banner { font-size: 13px; padding: 8px 12px; }
    .mk-platform-banner__inner { flex-direction: column; gap: 4px; }

    /* Collapse to single column */
    .mk-layout {
        flex-direction: column;
        padding: 0 12px 40px;
        gap: 12px;
    }
    .mk-sidebar {
        width: 100%;
        position: static;
    }
    .mk-profile-card {
        border-radius: 0 0 16px 16px;
    }
    .mk-content-banner {
        height: 160px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .mk-section { padding: 22px 16px; margin-top: 12px; }
    .mk-section__title { font-size: 18px; }
    .mk-section__title i { width: 28px; height: 28px; font-size: 14px; }

    .mk-data-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .mk-data-card__value { font-size: 18px; }
    .mk-audience-row { flex-direction: column; gap: 8px; }

    .mk-rate-cards { grid-template-columns: 1fr 1fr; }

    .mk-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .mk-form-row { grid-template-columns: 1fr; }

    .mk-booking-header { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

    .mk-trust-signals { gap: 12px; }
    .mk-trust-signal { font-size: 12px; }

    .mk-creators-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mk-creator-card { padding: 16px 10px; }
    .mk-creator-card__avatar { width: 56px; height: 56px; }

    .mk-powered-by-fixed { bottom: 60px; }

    .mk-owner-bar { padding: 10px 12px; }
    .mk-breadcrumb { padding: 8px 12px; font-size: 12px; }

    .mk-share-card { padding: 24px 16px; }
    .mk-qr-code { width: 120px; height: 120px; }
}

@media (max-width: 400px) {
    .mk-rate-cards { grid-template-columns: 1fr; }
    .mk-data-grid { grid-template-columns: 1fr 1fr; }
    .mk-trust-signals { flex-direction: column; align-items: center; gap: 8px; }
}

/* ============================================================
   PAL EMBED MODE
   ============================================================ */
/* Push language switcher widget above the sticky CTA bar */
.mk-body .lang-switcher,
.mk-body #google_translate_element {
    bottom: 70px !important;
}

.pal-embed-mode .mk-platform-banner,
.pal-embed-mode .mk-breadcrumb,
.pal-embed-mode .mk-powered-by-fixed,
.pal-embed-mode .mk-sticky-cta,
.pal-embed-mode .mk-brand-capture,
.pal-embed-mode .mk-discover {
    display: none !important;
}
