/* ──────────────────────────────────────────────────────────────────
   marketing.css — shared styles for public marketing pages
   (Features index, feature detail pages, Pricing).
   Mirrors the design tokens/components defined inline in
   Views/Home/Marketing.cshtml so all public pages stay consistent.
   ────────────────────────────────────────────────────────────────── */

.marketing-page {
    --mk-bg-top:       #eff5f7;
    --mk-bg-bottom:    #f8fbfc;
    --mk-brand:        var(--lt-primary, #1e7d99);
    --mk-brand-dark:   var(--lt-primary-hover, #186d87);
    --mk-brand-soft:   var(--lt-primary-soft, #d4eef6);
    --mk-teal:         var(--lt-primary, #1e7d99);
    --mk-teal-dark:    var(--lt-primary-hover, #186d87);
    --mk-accent:       #e5902f;
    --mk-text:         #122737;
    --mk-muted:        #4b6678;
    --mk-border:       #d4e3eb;
    color: var(--mk-text);
    background:
        radial-gradient(1200px 520px at 85% 8%, #dcecf2 0%, transparent 60%),
        linear-gradient(180deg, var(--mk-bg-top) 0%, var(--mk-bg-bottom) 75%);
    min-height: 100vh;
}

/* Marketing pages use _AuthLayout but render their own full-bleed layout -
   neutralize the auth-shell wrapper so content spans the page width.
   (.auth-root is the parent of .marketing-page; the footer is its sibling
   and already renders full-width under the auth-root.) */
body:has(.marketing-page) .auth-root {
    display: block !important;
    padding: 0 !important;
    min-height: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
}

body:has(.marketing-page) {
    background:
        radial-gradient(1200px 520px at 85% 8%, #dcecf2 0%, transparent 60%),
        linear-gradient(180deg, #eff5f7 0%, #f8fbfc 75%) !important;
}

/* ── Top bar ── */
.mk-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 0;
    background: rgba(248, 251, 252, 0.85);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(13, 91, 120, 0.08);
}
.mk-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 1320px;
    margin: 0 auto;
}
.mk-topbar-brand { display: inline-flex; align-items: center; text-decoration: none; }
.mk-topbar-brand img { height: 44px; width: auto; display: block; }
.mk-topbar-nav { display: inline-flex; align-items: center; gap: 1.1rem; }
.mk-topbar-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--mk-text);
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.mk-topbar-link:hover { color: var(--mk-brand); border-bottom-color: var(--mk-brand-soft); }
.mk-topbar-link.mk-topbar-active { color: var(--mk-brand); border-bottom-color: var(--mk-brand); }
.mk-topbar-signin {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--mk-text);
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 0.55rem;
}
.mk-topbar-signin:hover { color: var(--mk-brand-dark); background: rgba(13, 91, 120, 0.06); text-decoration: none; }
.mk-topbar-cta {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: var(--mk-brand);
    text-decoration: none;
    padding: 0.6rem 1.15rem;
    border-radius: 0.6rem;
    transition: background 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}
.mk-topbar-cta:hover { background: var(--mk-brand-dark); color: #fff; transform: translateY(-1px); text-decoration: none; }
.mk-topbar-lang { display: inline-flex; align-items: center; }
.mk-topbar-lang .lt-lang-toggle { min-height: 40px; }

/* Hamburger button - hidden on desktop, shown below 992px */
.mk-topbar-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1px solid #d4e3eb;
    border-radius: 0.6rem;
    background: #fff;
    color: var(--mk-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.mk-topbar-burger:hover { background: #f0f5f8; border-color: #b8dcea; }
.mk-topbar-burger i { transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }
.mk-topbar-burger[aria-expanded="true"] i { transform: rotate(90deg); }

/* ── Page hero ── */
.mk-page-hero {
    padding: 4rem 0 2.5rem;
    text-align: center;
    position: relative;
}
.mk-hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.mk-hero-mesh::before,
.mk-hero-mesh::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}
.mk-hero-mesh::before {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, #b8e0ee 0%, rgba(184, 224, 238, 0) 70%);
    top: -180px;
    left: 8%;
}
.mk-hero-mesh::after {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #f5d9b0 0%, rgba(245, 217, 176, 0) 70%);
    top: -120px;
    right: 4%;
}
.mk-page-hero > .container,
.mk-feature-hero-grid { position: relative; z-index: 1; }

/* ── Hero chips (floating plan/stat chips) ── */
.mk-hero-chips {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}
.mk-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1px solid #d8e6ee;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f4e63;
    box-shadow: 0 4px 14px rgba(16, 47, 65, 0.08);
}
.mk-hero-chip i { color: var(--mk-teal); font-size: 0.9rem; }

/* ── Stats band ── */
.mk-stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    text-align: center;
}
.mk-stat {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #d8e6ee;
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    box-shadow: 0 6px 18px rgba(16, 47, 65, 0.06);
    backdrop-filter: blur(6px);
}
.mk-stat-num {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #0d2a3a;
    line-height: 1.1;
}
.mk-stat-num span { color: var(--mk-teal); }
.mk-stat-lbl {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 0.35rem;
}

/* ── Plan badges on feature cards ── */
.mk-feat-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1f607b;
    background: #d9ebf3;
    border: 1px solid #b8dcea;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}
.mk-feat-card { position: relative; }
.mk-feat-badge--free { color: #186d87; background: #d4eef6; border-color: #a8d8e8; }
.mk-feat-badge--growth { color: #9a5a12; background: #fdeed6; border-color: #f0d3a3; }
.mk-feat-badge--scale { color: #4a3bb5; background: #e7e5fc; border-color: #cfc9f5; }
.mk-feat-badge--all { color: #0a5569; background: #d8f1f5; border-color: #b5e2ea; }

/* ── Testimonials ── */
.mk-quote {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.3rem;
    height: 100%;
    box-shadow: 0 10px 24px rgba(16, 47, 65, 0.07);
    display: flex;
    flex-direction: column;
}
.mk-quote-stars { color: #e5902f; font-size: 0.85rem; margin-bottom: 0.7rem; letter-spacing: 0.1em; }
.mk-quote-text {
    color: #2c4a5c;
    font-size: 0.94rem;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}
.mk-quote-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef4f8;
}
.mk-quote-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e7d99, #0d5b78);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mk-quote-name { font-size: 0.85rem; font-weight: 800; color: #0f3143; }
.mk-quote-role { font-size: 0.74rem; color: #64748b; }

/* ── FAQ accordion ── */
.mk-acc {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(16, 47, 65, 0.04);
}
.mk-acc summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f3143;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.15s;
}
.mk-acc summary::-webkit-details-marker { display: none; }
.mk-acc summary:hover { background: #f7fafc; }
.mk-acc summary i { color: var(--mk-teal); transition: transform 0.2s; }
.mk-acc[open] summary i { transform: rotate(45deg); }
.mk-acc .mk-acc-body {
    padding: 0 1.3rem 1.2rem;
    color: #476576;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Headline accent (solid brand teal - no gradient) ── */
.mk-grad-text { color: var(--mk-brand); }

/* ── CTA banner upgrade ── */
.mk-banner-panel {
    border-radius: 1.25rem;
    border: 1px solid #cde5ef;
    background:
        radial-gradient(700px 300px at 90% 0%, rgba(229, 144, 47, 0.08), transparent 60%),
        radial-gradient(600px 260px at 5% 100%, rgba(30, 125, 153, 0.1), transparent 60%),
        #fff;
    padding: 2.2rem 2rem;
    box-shadow: 0 18px 40px rgba(16, 47, 65, 0.1);
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

/* ── Section eyebrow ── */
.mk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f607b;
    background: #d9ebf3;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.9rem;
}

/* ── Kicker ── */
.mk-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #1f607b;
    background: #d9ebf3;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1rem;
}
.mk-page-hero h1 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800;
    color: #0d2a3a;
    line-height: 1.15;
    max-width: 22ch;
    margin: 0 auto 0.9rem;
}
.mk-page-hero .mk-hero-sub {
    color: var(--mk-muted);
    font-size: 1.05rem;
    max-width: 60ch;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}
.mk-hero-actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-hero-primary {
    background: linear-gradient(140deg, var(--mk-teal) 0%, var(--mk-teal-dark) 100%);
    border: none;
    color: #fff !important;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.65rem 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.btn-hero-primary:hover { background: linear-gradient(140deg, #186d87 0%, #125e75 100%); color: #fff !important; text-decoration: none; }
.btn-hero-outline {
    border: 1.5px solid #91c7d8;
    background: #fff;
    color: var(--mk-teal-dark);
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.65rem 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.btn-hero-outline:hover { background: #eef7fb; color: var(--mk-teal-dark); text-decoration: none; }

.btn-hero-link {
    border: 1px dashed #9fcfdd;
    color: #186d87;
    background: transparent;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.65rem 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.btn-hero-link:hover { background: #eef7fb; color: #186d87; text-decoration: none; }


/* ── Section head ── */
.mk-section-head { text-align: center; }
.mk-section-head h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #0d2a3a;
    margin-bottom: 0.45rem;
}
.mk-section-head p {
    color: var(--mk-muted);
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 52ch;
    margin-inline: auto;
}

/* ── Feature cards ── */
.mk-feat-card {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(16, 47, 65, 0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.mk-feat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(16, 47, 65, 0.1);
    text-decoration: none;
    color: inherit;
}
.mk-feat-icon-wrap {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #e3f3f9 0%, #cce8f2 100%);
    border: 1px solid #b8dcea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--mk-brand);
    margin-bottom: 0.9rem;
}
.mk-feat-card h3, .mk-feat-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f3143;
    margin-bottom: 0.35rem;
}
.mk-feat-card p {
    color: #476576;
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.55;
}
.mk-feat-card .mk-feat-more {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mk-brand);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Benefit rows (feature detail pages) ── */
.mk-benefit {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(16, 47, 65, 0.06);
}
.mk-benefit .mk-benefit-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #e3f3f9 0%, #cce8f2 100%);
    border: 1px solid #b8dcea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--mk-brand);
    margin-bottom: 0.9rem;
}
.mk-benefit h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f3143;
    margin-bottom: 0.4rem;
}
.mk-benefit p {
    color: #476576;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── How it works steps ── */
.mk-step {
    text-align: left;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    padding: 1.4rem 1.5rem;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 20px rgba(16, 47, 65, 0.05);
}
.mk-step-num {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #1f607b;
    background: #d9ebf3;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    display: inline-block;
    margin-bottom: 0.7rem;
}
.mk-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f3143;
    margin-bottom: 0.35rem;
}
.mk-step p {
    color: #476576;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ── FAQ ── */
.mk-faq-item {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 0.85rem;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 4px 12px rgba(16, 47, 65, 0.04);
}
.mk-faq-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f3143;
    margin-bottom: 0.4rem;
}
.mk-faq-item p {
    color: #476576;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Plan cards (pricing) ── */
.mk-plan-card {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1.1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    box-shadow: 0 12px 26px rgba(16, 47, 65, 0.07);
    display: flex;
    flex-direction: column;
}
.mk-plan-card.mk-plan-featured {
    border-color: #7ab0c8;
    box-shadow: 0 16px 34px rgba(13, 91, 120, 0.14);
}
.mk-plan-badge {
    position: absolute;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: var(--mk-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.mk-plan-top { padding-top: 0.35rem; }
.mk-plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f3143;
    margin-bottom: 0.25rem;
}
.mk-plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0a4f68;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.mk-plan-price-mo { font-size: 1rem; font-weight: 600; color: #7590a0; vertical-align: baseline; }
.mk-plan-price-mo-note { font-size: 0.82rem; color: #8fa8b8; font-weight: 600; margin-top: 0.35rem; }
.mk-plan-desc {
    color: #506e7f;
    font-size: 0.88rem;
    min-height: 2.5rem;
    margin-bottom: 0;
}
.mk-plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    flex: 1;
}
.mk-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.32rem 0;
    font-size: 0.86rem;
    color: #385565;
}
.mk-plan-features li i { color: var(--mk-teal); margin-top: 0.15rem; }
.mk-plan-btn {
    border-radius: 0.75rem;
    background: linear-gradient(140deg, var(--mk-teal) 0%, var(--mk-teal-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.65rem;
}
.mk-plan-btn:hover { background: linear-gradient(140deg, #186d87 0%, #125e75 100%); color: #fff; }
.mk-plan-annual-note {
    font-size: 0.78rem;
    color: #7d96a6;
    text-align: center;
    margin: 0.6rem 0 0;
    font-weight: 600;
}

/* Billing toggle (shared with Marketing.cshtml) */
.billing-toggle-wrap {
    display: inline-flex;
    background: #f0f4f7;
    border: 1px solid #d4dde4;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}
.billing-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5f7688;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    user-select: none;
    white-space: nowrap;
}
.billing-option.active { background: #fff; color: #1a3549; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12); }
.billing-save-pill {
    background: #d4eef6;
    color: #186d87;
    border: 1px solid #a8d8e8;
    border-radius: 999px;
    padding: 0.05rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ── Plan comparison table ── */
.mk-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(16, 47, 65, 0.06);
}
.mk-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.mk-table th {
    text-align: left;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5f7688;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid #e8f0f5;
    background: #fafcfd;
}
.mk-table td {
    padding: 0.8rem 1.1rem;
    font-size: 0.88rem;
    color: #385565;
    border-bottom: 1px solid #f1f6f9;
}
.mk-table tr:last-child td { border-bottom: none; }
.mk-table td:first-child { font-weight: 600; color: #0f3143; }
.mk-cell-yes { color: var(--mk-teal); white-space: nowrap; }
.mk-cell-yes i { margin-right: 0.25rem; }
.mk-cell-no  { color: #97adba; }

/* ── CTA banner ── */
.mk-banner-panel {
    border-radius: 1rem;
    border: 1px solid #cde5ef;
    background: #fff;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 22px rgba(16, 47, 65, 0.07);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.mk-banner-icon { font-size: 2rem; color: var(--mk-brand); flex-shrink: 0; }
.mk-banner-panel h2 {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d2a3a;
    margin-bottom: 0.25rem;
}
.mk-banner-panel p { color: var(--mk-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ── Breadcrumb ── */
.mk-crumbs {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #7d96a6;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.mk-crumbs a { color: var(--mk-brand); text-decoration: none; font-weight: 600; }
.mk-crumbs a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .mk-topbar-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
    .mk-topbar-brand img { height: 38px; }
    /* Nav collapses into a hamburger dropdown panel below 992px.
       Animated via max-height/opacity/translateY (display toggling cannot
       transition); children stagger in with per-item delays. */
    .mk-topbar-burger { display: inline-flex; }
    .mk-topbar-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0 1.25rem;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-10px);
        background: rgba(248, 251, 252, 0.97);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        border-bottom: 1px solid rgba(13, 91, 120, 0.1);
        box-shadow: 0 18px 30px rgba(10, 40, 58, 0.12);
        transition:
            max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.28s ease,
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0.35s,
            padding 0.35s ease;
    }
    .mk-topbar-nav.mk-topbar-nav-open {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding-top: 0.6rem;
        padding-bottom: 1rem;
        transition:
            max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease,
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0s,
            padding 0.35s ease;
    }
    .mk-topbar-nav .mk-topbar-link,
    .mk-topbar-nav .mk-topbar-signin,
    .mk-topbar-nav .mk-topbar-cta,
    .mk-topbar-nav .mk-topbar-lang {
        opacity: 0;
        transform: translateY(-8px);
        transition:
            opacity 0.3s ease,
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mk-topbar-nav.mk-topbar-nav-open .mk-topbar-link,
    .mk-topbar-nav.mk-topbar-nav-open .mk-topbar-signin,
    .mk-topbar-nav.mk-topbar-nav-open .mk-topbar-cta,
    .mk-topbar-nav.mk-topbar-nav-open .mk-topbar-lang {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger: each child fades in slightly after the previous one */
    .mk-topbar-nav.mk-topbar-nav-open > *:nth-child(1) { transition-delay: 0.05s; }
    .mk-topbar-nav.mk-topbar-nav-open > *:nth-child(2) { transition-delay: 0.09s; }
    .mk-topbar-nav.mk-topbar-nav-open > *:nth-child(3) { transition-delay: 0.13s; }
    .mk-topbar-nav.mk-topbar-nav-open > *:nth-child(4) { transition-delay: 0.17s; }
    .mk-topbar-nav.mk-topbar-nav-open > *:nth-child(5) { transition-delay: 0.21s; }
    .mk-topbar-nav .mk-topbar-link,
    .mk-topbar-nav .mk-topbar-signin {
        display: block;
        padding: 0.7rem 0.4rem;
        font-size: 0.95rem;
        border-radius: 0.5rem;
        border-bottom: none;
    }
    .mk-topbar-nav .mk-topbar-link:hover,
    .mk-topbar-nav .mk-topbar-signin:hover { background: rgba(13, 91, 120, 0.05); text-decoration: none; }
    .mk-topbar-nav .mk-topbar-cta {
        display: block;
        text-align: center;
        margin-top: 0.55rem;
    }
    .mk-topbar-lang { justify-content: center; margin-top: 0.55rem; }
    .mk-topbar-lang .lt-lang-toggle { min-height: 44px; }
}
@media (max-width: 767.98px) {
    .mk-page-hero { padding: 2.5rem 0 1.5rem; }
    .mk-stats-band { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
    .mk-hero-mesh::before { width: 320px; height: 320px; left: -60px; }
    .mk-hero-mesh::after { width: 340px; height: 340px; right: -80px; }
}
@media (max-width: 575.98px) {
    .mk-topbar { padding: 1.1rem 0 0.85rem; }
    .mk-topbar-brand img { height: 32px; }
    .mk-topbar-nav { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 400px) {
    .mk-topbar { padding: 1.15rem 0 0.85rem; }
    .mk-topbar-brand img { height: 28px; }
    .mk-topbar-inner { padding-left: 0.9rem; padding-right: 0.9rem; }
}

/* ──────────────────────────────────────────────────────────────────
   Homepage-only components (moved from the Marketing.cshtml inline
   <style> block, 2026-08) - hero product preview (mk-preview/mk-pv-*),
   trust strip, how-it-works, use cases, dark CTA panel, footer, tabs.
   ────────────────────────────────────────────────────────────────── */
.mk-subtitle {
margin-top: 1rem;
        max-width: 50ch;
        color: var(--mk-muted);
        font-size: 1.05rem;
        line-height: 1.6;
}
.mk-pill {
display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1;
        color: #1a5068;
        background: rgba(215, 234, 242, 0.7);
        border: 1px solid #c3d9e4;
        border-radius: 999px;
        padding: 0.28rem 0.7rem;
        backdrop-filter: blur(4px);
}
.mk-pill i {
line-height: 1; font-size: 0.9em; vertical-align: middle;
}
.mk-proof {
color: #466576;
        font-size: 0.9rem;
        font-weight: 600;
}
.mk-proof-list {
list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 0.35rem;
}
.mk-proof-list li {
display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.92rem;
        font-weight: 600;
        color: #2a4858;
}
.mk-proof-list i {
color: var(--mk-brand);
        font-size: 1.05rem;
        flex-shrink: 0;
}
.mk-preview-topbar {
display: flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.6rem 1rem;
        background: #f1f5f8;
        border-bottom: 1px solid #dce6ed;
}
.mk-preview-url {
font-size: 0.7rem;
        color: #94a3b8;
        margin-left: 0.5rem;
        font-family: monospace;
}
.mk-preview-body {
padding: 0.85rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        background: #f5f7fb;
}
.mk-pv-pt-icon {
font-size: 1.1rem;
        color: #1f6a8a;
        flex-shrink: 0;
}
.mk-pv-pt-heading {
font-size: 0.82rem;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.2;
}
.mk-pv-pt-sub {
font-size: 0.65rem;
        color: #64748b;
}
.mk-pv-stat {
background: #fff;
        border: 1px solid #dce6ed;
        border-radius: 0.5rem;
        padding: 0.45rem 0.55rem;
}
.mk-pv-stat-lbl {
font-size: 0.55rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 0.15rem;
}
.mk-pv-stat-val {
font-size: 0.9rem;
        font-weight: 800;
        color: #0f4d66;
        line-height: 1.1;
}
.mk-pv-filter-sel {
background: #fff;
        border: 1px solid #d1dce5;
        border-radius: 0.35rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.63rem;
        color: #334155;
        display: flex;
        align-items: center;
        gap: 0.25rem;
}
.mk-pv-filter-apply {
background: #1f6a8a;
        color: #fff;
        border-radius: 0.35rem;
        padding: 0.25rem 0.65rem;
        font-size: 0.63rem;
        font-weight: 600;
        margin-left: auto;
}
.mk-pv-chart-header {
display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.35rem;
}
.mk-pv-chart-title {
font-size: 0.7rem;
        font-weight: 700;
        color: #1e293b;
}
.mk-pv-chart-legend {
display: flex;
        gap: 0.6rem;
}
.mk-leg {
font-size: 0.58rem;
        font-weight: 600;
}
.mk-leg-total {
color: #1f6a8a;
}
.mk-leg-unique {
color: #1e7d99;
}
.mk-leg-bots {
color: #e35d6a;
}
.mk-pv-chart-svg {
display: block;
        width: 100%;
        height: 3.5rem;
}
.mk-pv-geo-card {
background: #fff;
        border: 1px solid #dce6ed;
        border-radius: 0.5rem;
        padding: 0.5rem 0.6rem;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
}
.mk-pv-geo-lbl {
font-size: 0.63rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.1rem;
}
.mk-pv-br-label {
font-size: 0.63rem;
        color: #475569;
        min-width: 5.5rem;
        flex-shrink: 0;
}
.mk-pv-br-track {
flex: 1;
        height: 0.28rem;
        background: #e2e8f0;
        border-radius: 999px;
        overflow: hidden;
}
.mk-pv-br-fill {
height: 100%;
        background: linear-gradient(90deg, #1f6a8a, #3d9bbf);
        border-radius: 999px;
}
.mk-pv-br-val {
font-size: 0.63rem;
        font-weight: 700;
        color: #334155;
        min-width: 2rem;
        text-align: right;
}
.mk-trust-item {
border: 1px solid var(--mk-border);
        background: #fff;
        border-radius: 0.8rem;
        padding: 0.85rem 1rem;
        box-shadow: 0 6px 14px rgba(16,47,65,0.05);
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
}
.mk-trust-icon {
font-size: 1.2rem;
        color: var(--mk-brand);
        margin-bottom: 0.2rem;
}
.mk-trust-val {
font-weight: 800;
        color: #0f4d66;
        font-size: 0.97rem;
}
.mk-trust-lbl {
color: #446577;
        font-size: 0.82rem;
        line-height: 1.35;
}
.mk-how-card {
background: #fff;
        border: 1px solid var(--mk-border);
        border-radius: 1rem;
        padding: 1.5rem;
        height: 100%;
        box-shadow: 0 10px 24px rgba(16,47,65,0.07);
        position: relative;
        overflow: hidden;
}
.mk-how-card::before {
content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0d5b78, #2f7c9f);
        opacity: 0.4;
}
.mk-how-card-mid::before {
opacity: 1;
}
.mk-how-num {
font-size: 2.5rem;
        font-weight: 900;
        color: #d4e8f0;
        line-height: 1;
        margin-bottom: 0.5rem;
        font-family: "Sora", "Segoe UI", sans-serif;
}
.mk-how-icon-wrap {
font-size: 1.6rem;
        color: var(--mk-brand);
        margin-bottom: 0.65rem;
}
.mk-how-card h3 {
font-size: 1.05rem;
        font-weight: 700;
        color: #0f3143;
        margin-bottom: 0.4rem;
}
.mk-how-card p {
color: var(--mk-muted);
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.6;
}
.mk-usecase-icon {
font-size: 1.75rem;
        color: var(--mk-brand);
        margin-bottom: 0.65rem;
}
.mk-usecase-card h3 {
font-size: 1.05rem;
        font-weight: 700;
        color: #113649;
        margin-bottom: 0.4rem;
}
.mk-usecase-card p {
color: #476576;
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.55;
}
.mk-cta-glow {
position: absolute;
        top: -40%;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse at center, rgba(93,200,250,0.12) 0%, transparent 70%);
        pointer-events: none;
}
.mk-cta-content {
position: relative; z-index: 1;
}
.mk-cta-panel h2 {
font-family: "Sora", "Segoe UI", sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.1rem);
        margin-bottom: 0.5rem;
}
.mk-cta-panel p {
color: #c8e6f4; margin-bottom: 0; font-size: 1rem;
}
.mk-cta-note {
font-size: 0.8rem;
        color: rgba(200, 230, 244, 0.65) !important;
}
.mk-cta-btn-primary {
background: #fff;
        color: #0f3f54;
        font-weight: 800;
        border-radius: 0.75rem;
        padding: 0.7rem 1.4rem;
        border: none;
}
.mk-cta-btn-primary:hover {
background: #eaf6fd; color: #0f3f54;
}
.mk-cta-btn-outline {
background: transparent;
        border: 1.5px solid rgba(255,255,255,0.4);
        color: #ecf8ff;
        font-weight: 700;
        border-radius: 0.75rem;
        padding: 0.7rem 1.4rem;
}
.mk-cta-btn-outline:hover {
border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.12);
}
.mk-footer p {
margin: 0; font-size: 0.85rem; color: #8fa3b0;
}
.mk-footer a {
color: #1e7d99; text-decoration: none;
}
.mk-footer a:hover {
text-decoration: underline;
}
.mk-tab-pill:hover:not(.mk-tab-active) {
background: rgba(215,234,242,1);
        border-color: #a8c8d8;
}
.mk-tab-pill.mk-tab-active {
background: var(--mk-brand);
        color: #fff;
        border-color: var(--mk-brand);
        box-shadow: 0 2px 8px rgba(13,91,120,0.25);
}
.mk-tab-pill i {
line-height: 1; font-size: 0.9em; vertical-align: middle;
}

/* Tab panels - only the active one is visible */
.mk-tab-panel {
    display: none;
    flex-direction: column;
    gap: 0.7rem;
}

.mk-tab-panel.mk-tab-active {
display: flex;
        animation: mk-tab-in 0.22s ease;
}
.mk-pv-app-thead {
display: grid;
        align-items: center;
        padding: 0.28rem 0.6rem;
        background: #f5f7fb;
        border-bottom: 1px solid #e0e7ef;
        color: #6b7a8d;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.52rem;
        gap: 0.4rem;
}
.mk-pv-app-row {
display: grid;
        align-items: center;
        padding: 0.38rem 0.6rem;
        border-bottom: 1px solid #f1f4f8;
        gap: 0.4rem;
        color: #1e293b;
}
.mk-pv-app-row:last-child {
border-bottom: none;
}
.mk-pv-landing-cols {
grid-template-columns: 1fr 0.6fr 0.3fr 0.3fr;
}
.mk-pv-team-cols {
grid-template-columns: 1fr 0.5fr 0.4fr;
}
.mk-pv-link-name {
font-size: 0.62rem;
        font-weight: 700;
        color: #1e293b;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.mk-pv-link-slug {
font-size: 0.56rem;
        color: #0d5b78;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.mk-pv-badge-success {
background: #d4eef6; color: #186d87;
}
.mk-pv-badge-warning {
background: #fef9c3; color: #854d0e;
}
.mk-pv-badge-danger {
background: #fee2e2; color: #991b1b;
}
.mk-pv-badge-secondary {
background: #f1f5f9; color: #475569;
}
.mk-pv-icon-btn {
display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.1rem;
        height: 1.1rem;
        border-radius: 0.2rem;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #475569;
        font-size: 0.58rem;
        cursor: default;
}
.mk-pv-invite-input {
flex: 1;
        font-size: 0.58rem;
        color: #94a3b8;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.mk-pv-invite-role {
font-size: 0.58rem;
        color: #334155;
        background: #f1f5f9;
        border: 1px solid #e0e7ef;
        border-radius: 0.25rem;
        padding: 0.15rem 0.35rem;
        white-space: nowrap;
        flex-shrink: 0;
}
.mk-pv-team-email {
font-size: 0.6rem; color: #334155; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mk-pv-team-role {
font-size: 0.6rem; color: #64748b;
}
.mk-pv-qr-card {
display: flex;
        align-items: center;
        gap: 1rem;
        background: #fff;
        border: 1px solid #e0e7ef;
        border-radius: 0.5rem;
        padding: 0.7rem 1rem;
        width: 100%;
}
.mk-pv-qr-svg {
border-radius: 4px; flex-shrink: 0;
}
.mk-pv-qr-info {
display: flex; flex-direction: column; gap: 0.4rem;
}
.mk-pv-qr-slug {
font-size: 0.65rem;
        font-weight: 700;
        color: #0d5b78;
}
.mk-pv-qr-formats {
display: flex; gap: 0.3rem;
}
.mk-pv-fmt-btn {
font-size: 0.55rem;
        font-weight: 700;
        border-radius: 0.25rem;
        padding: 0.15rem 0.45rem;
        border: 1px solid #c3d9e4;
        color: #4b6678;
        cursor: default;
        text-transform: uppercase;
}
.mk-pv-fmt-active {
background: #0d5b78; color: #fff; border-color: #0d5b78;
}
.mk-pv-qr-dl {
margin-top: 0.1rem;
}
.mk-pv-qr-tip {
font-size: 0.57rem;
        color: #64748b;
        background: #fef9c3;
        border: 1px solid #fde68a;
        border-radius: 0.3rem;
        padding: 0.25rem 0.5rem;
        width: 100%;
}

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

@media (max-width: 767.98px) {
        html, body { padding-bottom: 0 !important; }

        /* ── CTA & Footer ── */
        .mk-cta-panel { padding: 1.6rem 1.1rem; }
        .mk-cta-panel h2 { font-size: 1.3rem; }
        .mk-cta-panel p { font-size: 0.9rem; }
        .mk-cta-note { font-size: 0.75rem !important; }
        .mk-footer { padding: 16px 0; }
        .mk-footer p { font-size: 0.8rem; }
    }

/* Tab panel entrance (homepage hero preview) */
@keyframes mk-tab-in {
    from { opacity: 0; transform: translateY(7px); }
    to   { opacity: 1; transform: translateY(0);   }
}

/* ── Homepage feature-teaser "Explore all" card ── */
.mk-feat-card--explore {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    border-style: dashed;
    border-color: #b8dcea;
    background: rgba(255, 255, 255, 0.6);
}
.mk-feat-card--explore:hover { border-color: var(--mk-brand); }
.mk-feat-explore-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #e3f3f9 0%, #cce8f2 100%);
    border: 1px solid #b8dcea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--mk-brand);
    flex-shrink: 0;
}
.mk-feat-explore-copy { flex: 1; min-width: 0; }
.mk-feat-card--explore .mk-feat-more { margin-top: 0; flex-shrink: 0; }
@media (max-width: 575.98px) {
    .mk-feat-card--explore { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

/* ── Homepage hero copy (comment-adjacent rules restored) ── */
.mk-copy h1 {
    margin-top: 0.9rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-weight: 700;
    color: #0d2a3a;
}
.mk-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }

/* ── Product preview card shell ── */
.mk-preview {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #d1dce5;
    box-shadow: 0 20px 48px rgba(10,40,58,0.13), 0 2px 8px rgba(10,40,58,0.06);
    overflow: hidden;
}
.mk-pv-page-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.mk-pv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}
.mk-pv-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.mk-pv-chart-card {
    background: #fff;
    border: 1px solid #dce6ed;
    border-radius: 0.5rem;
    padding: 0.55rem 0.65rem 0.45rem;
}
.mk-pv-geo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}
.mk-pv-br-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

/* ── Trust strip ── */
.mk-trust-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, 1fr);
}

/* ── How it works ── */
.mk-how { background: rgba(255, 255, 255, 0.45); }

/* ── Use cases ── */
.mk-usecase-card {
    background: #fff;
    border: 1px solid var(--mk-border);
    border-radius: 1rem;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 10px 22px rgba(16,47,65,0.07);
}

/* ── Final CTA panel ── */
.mk-cta-panel {
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #0f3f54 0%, #175672 55%, #1f6b8a 100%);
    border: 1px solid #2a6d8a;
    box-shadow: 0 24px 44px rgba(11,38,56,0.26);
    color: #ecf8ff;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ── Footer ── */
.mk-footer {
    border-top: 1px solid #dde9ef;
    padding: 24px 0;
    text-align: center;
}

/* ── Interactive tabs (hero preview) ── */
.mk-tab-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    color: #1a5068;
    background: rgba(215,234,242,0.7);
    border: 1px solid #c3d9e4;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}

/* ── App-style action button ── */
.mk-pv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6rem;
    font-weight: 700;
    background: #0d5b78;
    color: #fff !important;
    border-radius: 0.3rem;
    padding: 0.22rem 0.55rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── App-style table ── */
.mk-pv-app-table {
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 0.4rem;
    overflow: hidden;
    font-size: 0.6rem;
}
.mk-pv-links-cols { grid-template-columns: 1fr 0.55fr 0.4fr 0.55fr; }
.mk-pv-cell-title { display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }

/* ── Shared badge ── */
.mk-pv-app-badge {
    display: inline-block;
    font-size: 0.52rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.14rem 0.42rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ── Number cell / icon group ── */
.mk-pv-num { font-size: 0.62rem; font-weight: 700; color: #334155; }
.mk-pv-icon-group { display: flex; gap: 0.2rem; align-items: center; }

/* ── Teams invite row ── */
.mk-pv-invite-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 0.4rem;
    padding: 0.35rem 0.5rem;
}

/* ── QR panel ── */
.mk-pv-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

/* --------------------------------------------------------------------------
   Public marketing redesign
   A deliberately quiet, content-first layer for the marketing home, feature,
   and pricing routes. These rules live after the legacy page styles so the
   public surface can evolve without affecting the authenticated application.
   -------------------------------------------------------------------------- */
.marketing-page {
    --mk-ink: #0f3143;
    --mk-ink-soft: #64748b;
    --mk-line: #dce6ed;
    --mk-surface: #ffffff;
    --mk-canvas: #f5f7fb;
    --mk-canvas-soft: #eef7fb;
    --mk-brand: var(--lt-primary, #1e7d99);
    --mk-brand-strong: var(--lt-primary-hover, #186d87);
    --mk-brand-soft: var(--lt-primary-soft, #d4eef6);
    color: var(--mk-ink);
    background: var(--mk-canvas);
    min-height: 100vh;
}

body:has(.marketing-page),
body:has(.marketing-page) .auth-root {
    background: var(--mk-canvas) !important;
}

body:has(.marketing-page) .auth-root {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
}

body:has(.marketing-page) .auth-footer {
    margin: 0;
    padding: 2.25rem 1.25rem;
    background: #0f3143;
}

body:has(.marketing-page) .auth-footer-tag { margin-bottom: 0.8rem; }
body:has(.marketing-page) .auth-footer-copy { padding-top: 0.75rem; }

.marketing-page .container { width: min(1180px, calc(100% - 2.5rem)); max-width: none; }

.mk-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    background: rgba(245, 247, 251, 0.95);
    border-bottom: 1px solid var(--mk-line);
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mk-topbar-inner {
    position: relative;
    width: min(1180px, calc(100% - 2.5rem));
    max-width: none;
    min-height: 70px;
    margin: 0 auto;
    padding: 0;
    gap: 1.5rem;
}

.mk-topbar-brand img { width: auto; height: 36px; }
.mk-topbar-nav { gap: 0.15rem; }

.mk-topbar-link,
.mk-topbar-signin {
    color: var(--mk-ink-soft);
    font-size: 0.9rem;
    font-weight: 650;
    padding: 0.55rem 0.75rem;
    border: 0;
    border-radius: 0.4rem;
}

.mk-topbar-link:hover,
.mk-topbar-link.mk-topbar-active,
.mk-topbar-signin:hover {
    color: var(--mk-ink);
    background: transparent;
    border: 0;
    text-decoration: none;
}

.mk-topbar-link.mk-topbar-active { color: var(--mk-brand-strong); }

.mk-topbar-cta,
.mk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    border-radius: 0.45rem;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mk-topbar-cta {
    min-height: 40px;
    padding: 0.65rem 0.9rem;
    color: #fff;
    background: var(--mk-brand);
    border: 1px solid var(--mk-brand);
    border-radius: 0.4rem;
}

.mk-topbar-cta:hover { color: #fff; background: var(--mk-brand-strong); border-color: var(--mk-brand-strong); transform: none; }
.mk-topbar-lang .lt-lang-toggle { min-height: 40px; }

.mk-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.9rem;
    color: var(--mk-brand-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mk-home-hero,
.mk-feature-intro { padding: clamp(4rem, 8vw, 7.25rem) 0 clamp(3.5rem, 6vw, 5.5rem); }

.mk-home-hero-grid,
.mk-feature-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6.5rem);
}

.mk-home-hero-copy h1,
.mk-feature-intro h1,
.mk-page-intro h1 {
    max-width: 13ch;
    margin: 0;
    color: var(--mk-ink);
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(2.45rem, 5.1vw, 4.75rem);
    font-weight: 750;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.mk-feature-intro h1 { max-width: 14ch; }

.mk-lead,
.mk-page-intro > .container > p:not(.mk-overline),
.mk-section-heading > p,
.mk-callout p:not(.mk-overline) {
    color: var(--mk-ink-soft);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.65;
}

.mk-lead { max-width: 58ch; margin: 1.5rem 0 0; }
.mk-action-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.mk-button { padding: 0.8rem 1.05rem; border: 1px solid transparent; }
.mk-button-primary { color: #fff; background: var(--mk-brand); border-color: var(--mk-brand); }
.mk-button-primary:hover { color: #fff; background: var(--mk-brand-strong); border-color: var(--mk-brand-strong); text-decoration: none; transform: translateY(-1px); }
.mk-button-secondary { color: var(--mk-ink); background: transparent; border-color: #b6cccf; }
.mk-button-secondary:hover { color: var(--mk-ink); border-color: var(--mk-ink); background: #fff; text-decoration: none; }
.mk-button-light { color: var(--mk-ink); background: #fff; border-color: #fff; white-space: nowrap; }
.mk-button-light:hover { color: var(--mk-ink); background: #eef7fb; border-color: #eef7fb; text-decoration: none; }

.mk-quiet-note {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 1.1rem 0 0;
    color: var(--mk-ink-soft);
    font-size: 0.87rem;
}

.mk-quiet-note i { color: var(--mk-brand); font-size: 1rem; }

.mk-product-preview {
    overflow: hidden;
    background: var(--mk-surface);
    border: 1px solid #c9dcde;
    border-radius: 0.85rem;
    box-shadow: 0 22px 48px rgba(16, 46, 51, 0.1);
}

.mk-product-preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 1rem;
    border-bottom: 1px solid var(--mk-line);
    color: var(--mk-ink-soft);
    font-size: 0.78rem;
}

.mk-product-brand { font-weight: 800; color: var(--mk-ink); }
.mk-product-status { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--mk-brand-strong); font-weight: 700; }
.mk-product-status i { font-size: 0.5rem; }

.mk-product-preview-body { display: grid; gap: 1.1rem; padding: clamp(1.25rem, 3vw, 2rem); }
.mk-product-link-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mk-product-label { display: block; margin-bottom: 0.3rem; color: var(--mk-ink-soft); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.mk-product-link-row strong { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.04em; }
.mk-product-copy { padding: 0.4rem 0.55rem; border: 1px solid var(--mk-line); border-radius: 0.35rem; color: var(--mk-brand-strong); font-size: 0.75rem; font-weight: 750; white-space: nowrap; }

.mk-product-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.mk-product-metrics > div { padding: 0.85rem; background: #f5f7fb; border-radius: 0.55rem; }
.mk-product-metrics span { display: block; margin-bottom: 0.3rem; color: var(--mk-ink-soft); font-size: 0.73rem; }
.mk-product-metrics strong { font-size: 1.2rem; letter-spacing: -0.04em; }
.mk-product-chart { display: flex; align-items: end; gap: 0.45rem; height: 128px; padding: 1rem 0 0.2rem; border-bottom: 1px solid var(--mk-line); }
.mk-product-chart span { display: block; flex: 1; min-height: 14px; background: var(--mk-brand-soft); border-radius: 0.2rem 0.2rem 0 0; }
.mk-product-chart span:nth-child(4), .mk-product-chart span:nth-child(6) { background: var(--mk-brand); }
.mk-product-summary { display: flex; align-items: center; gap: 0.5rem; color: var(--mk-ink-soft); font-size: 0.78rem; font-weight: 650; }
.mk-product-summary i { color: var(--mk-brand); font-size: 1rem; }

.mk-assurance-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--mk-line);
}

.mk-assurance-row span { display: flex; align-items: center; gap: 0.55rem; color: var(--mk-ink-soft); font-size: 0.9rem; font-weight: 650; }
.mk-assurance-row i { color: var(--mk-brand); font-size: 1.1rem; }

.mk-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.mk-section-soft { background: var(--mk-canvas-soft); }
.mk-section-lined { border-top: 1px solid var(--mk-line); }
.mk-section-heading { max-width: 710px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.mk-section-heading h2,
.mk-callout h2 { margin: 0; color: var(--mk-ink); font-family: "Sora", "Segoe UI", sans-serif; font-size: clamp(1.85rem, 3.4vw, 3rem); font-weight: 720; letter-spacing: -0.045em; line-height: 1.08; }
.mk-section-heading > p:last-child { margin: 1rem 0 0; }
.mk-section-heading-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr); max-width: none; gap: 2rem; align-items: end; }
.mk-section-heading-split > p { margin: 0; }
.mk-section-heading-centered { margin-right: auto; margin-left: auto; text-align: center; }

.mk-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.mk-feature-grid-all { gap: 1rem; }
.mk-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 1.5rem;
    color: var(--mk-ink);
    background: var(--mk-surface);
    border: 1px solid var(--mk-line);
    border-radius: 0.6rem;
    box-shadow: none;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.mk-feature-card:hover { color: var(--mk-ink); background: #f9fdfd; border-color: #8bbcbc; text-decoration: none; transform: translateY(-2px); }
.mk-feature-card h2, .mk-feature-card h3 { max-width: 18ch; margin: 1.25rem 0 0.55rem; color: var(--mk-ink); font-size: 1.1rem; font-weight: 760; letter-spacing: -0.025em; line-height: 1.25; }
.mk-feature-card p { margin: 0; color: var(--mk-ink-soft); font-size: 0.9rem; line-height: 1.6; }
.mk-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 0.42rem; font-size: 1.15rem; }
.mk-feature-tier { position: absolute; top: 1.55rem; right: 1.4rem; color: var(--mk-ink-soft); font-size: 0.69rem; font-weight: 750; letter-spacing: 0.04em; text-transform: uppercase; }
.mk-text-link, .mk-inline-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--mk-brand-strong); font-size: 0.88rem; font-weight: 750; text-decoration: none; }
.mk-feature-card .mk-text-link { margin-top: auto; padding-top: 1.25rem; }
.mk-card-action { display: inline-flex; width: 1.75rem; height: 1.75rem; flex: 0 0 auto; align-items: center; justify-content: center; margin-left: 0.1rem; color: var(--mk-brand-strong); background: var(--mk-brand-soft); border-radius: 0.42rem; font-size: 0.72rem; transition: color 160ms ease, background-color 160ms ease, transform 160ms ease; }
.mk-feature-card:hover .mk-card-action,
.mk-feature-card:focus-visible .mk-card-action,
.mk-inline-link:hover .mk-card-action,
.mk-text-link:hover .mk-card-action { color: #fff; background: var(--mk-brand); transform: translateX(2px); }
.mk-inline-link { margin-top: 1.5rem; }
.mk-inline-link:hover, .mk-text-link:hover { color: var(--mk-ink); text-decoration: none; }


.mk-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 0; margin: 0; list-style: none; counter-reset: none; }
.mk-steps li { display: grid; grid-template-columns: 2.2rem minmax(0, 1fr); gap: 0.85rem; padding-top: 1.1rem; border-top: 2px solid var(--mk-brand); }
.mk-steps li > span { color: var(--mk-brand-strong); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; }
.mk-steps h3 { margin: 0 0 0.35rem; color: var(--mk-ink); font-size: 1rem; font-weight: 760; }
.mk-steps p { margin: 0; color: var(--mk-ink-soft); font-size: 0.9rem; line-height: 1.6; }

.mk-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.mk-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.6rem;
    color: var(--mk-ink);
    background: var(--mk-surface);
    border: 1px solid var(--mk-line);
    border-radius: 0.6rem;
    box-shadow: none;
}

.mk-plan-card-featured { position: relative; border: 2px solid var(--mk-brand); }
.mk-plan-tag { position: absolute; top: -0.75rem; left: 1.45rem; padding: 0.25rem 0.55rem; color: #fff; background: var(--mk-brand); border-radius: 999px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.mk-plan-card h2, .mk-plan-card h3 { margin: 0; color: var(--mk-ink); font-size: 1.1rem; font-weight: 800; }
.mk-plan-price { margin: 1rem 0 0.55rem; color: var(--mk-ink); font-family: "Sora", "Segoe UI", sans-serif; font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 760; letter-spacing: -0.055em; line-height: 1; }
.mk-plan-price span { margin-left: 0.2rem; color: var(--mk-ink-soft); font-family: inherit; font-size: 0.85rem; font-weight: 650; letter-spacing: normal; }
.mk-plan-card > div > p, .mk-plan-description { color: var(--mk-ink-soft); font-size: 0.88rem; line-height: 1.55; }
.mk-plan-description { min-height: 3.1rem; margin: 0; }
.mk-plan-features { display: grid; gap: 0.5rem; padding: 0; margin: 1.5rem 0; list-style: none; flex: 1; }
.mk-plan-features li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0; color: var(--mk-ink-soft); font-size: 0.85rem; line-height: 1.45; }
.mk-plan-features i { margin-top: 0.08rem; color: var(--mk-brand); font-size: 1rem; }
.mk-plan-card .mk-button { width: 100%; }
.mk-plan-grid-compact .mk-plan-card { min-height: 240px; }
.mk-plan-grid-compact .mk-plan-card > p { margin: 0.65rem 0 1.25rem; color: var(--mk-ink-soft); font-size: 0.88rem; line-height: 1.55; }
.mk-plan-grid-compact .mk-plan-card .mk-button { margin-top: auto; }
.mk-centered-action { text-align: center; }

.mk-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mk-audience-grid article { padding: 0 0 0 1rem; border-left: 2px solid var(--mk-brand-soft); }
.mk-audience-grid i { color: var(--mk-brand); font-size: 1.25rem; }
.mk-audience-grid h3 { margin: 0.9rem 0 0.4rem; color: var(--mk-ink); font-size: 1rem; font-weight: 760; }
.mk-audience-grid p { margin: 0; color: var(--mk-ink-soft); font-size: 0.9rem; line-height: 1.6; }

.mk-faq-layout { display: grid; grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.mk-faq-list { border-top: 1px solid var(--mk-line); }
.mk-faq-list details { border-bottom: 1px solid var(--mk-line); }
.mk-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 63px; padding: 1rem 0; color: var(--mk-ink); cursor: pointer; font-size: 0.95rem; font-weight: 740; list-style: none; }
.mk-faq-list summary::-webkit-details-marker { display: none; }
.mk-faq-list summary i { flex: 0 0 auto; display: inline-flex; width: 1.6rem; height: 1.6rem; align-items: center; justify-content: center; color: var(--mk-brand-strong); background: var(--mk-brand-soft); border-radius: 0.42rem; transition: transform 160ms ease, background-color 160ms ease, color 160ms ease; }
.mk-faq-list details[open] summary i { transform: rotate(180deg); }
.mk-faq-list details > p { max-width: 65ch; padding: 0 2rem 1.2rem 0; margin: 0; color: var(--mk-ink-soft); font-size: 0.9rem; line-height: 1.65; }

.mk-callout { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.75rem, 4vw, 3rem); color: #f4f8fb; background: #0f3f54; border-radius: 0.7rem; }
.mk-callout .mk-overline { color: #9fd6e8; }
.mk-callout h2 { max-width: 22ch; color: #fff; }
.mk-callout p:not(.mk-overline) { max-width: 57ch; margin: 0.9rem 0 0; color: #cfe3ee; font-size: 0.98rem; }

.mk-page-intro { padding: clamp(3.75rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem); }
.mk-page-intro .container { max-width: 840px; }
.mk-page-intro-centered { text-align: center; }
.mk-page-intro-centered h1 { max-width: none; }
.mk-page-intro-centered > .container > p:not(.mk-overline) { max-width: 60ch; margin-right: auto; margin-left: auto; }
.mk-breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 2rem; color: #71858a; font-size: 0.78rem; }
.mk-breadcrumbs a { color: var(--mk-ink-soft); text-decoration: none; }
.mk-breadcrumbs a:hover { color: var(--mk-brand-strong); text-decoration: underline; }

.mk-feature-preview { min-width: 0; }
.mk-feature-preview .mk-mock { max-width: 540px; margin-left: auto; }
.mk-feature-preview .mk-mock-float { box-shadow: 0 8px 24px rgba(16, 46, 51, 0.12); }

.mk-benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--mk-line); border-left: 1px solid var(--mk-line); }
.mk-benefit-item { display: grid; grid-template-columns: 2.35rem minmax(0, 1fr); gap: 0.85rem; min-height: 160px; padding: 1.5rem; background: var(--mk-surface); border-right: 1px solid var(--mk-line); border-bottom: 1px solid var(--mk-line); }
.mk-benefit-item > i { color: var(--mk-brand); font-size: 1.2rem; }
.mk-benefit-item h3 { margin: 0 0 0.45rem; color: var(--mk-ink); font-size: 1rem; font-weight: 760; }
.mk-benefit-item p { margin: 0; color: var(--mk-ink-soft); font-size: 0.9rem; line-height: 1.6; }

.mk-pricing-section { padding-top: 0; border-top: 0; }
.mk-billing-toggle { display: inline-flex; gap: 0.2rem; padding: 0.25rem; margin: 0 0 2rem; background: #e7eef6; border-radius: 0.45rem; }
.mk-pricing-section .mk-billing-toggle { position: relative; left: 50%; transform: translateX(-50%); }
.mk-billing-option { display: inline-flex; align-items: center; gap: 0.35rem; min-height: 38px; padding: 0.45rem 0.65rem; color: var(--mk-ink-soft); border-radius: 0.3rem; cursor: pointer; font-size: 0.83rem; font-weight: 720; }
.mk-billing-option input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.mk-billing-option:focus-within { outline: 3px solid var(--mk-brand-strong); outline-offset: 2px; }
.mk-billing-option span { padding: 0.15rem 0.35rem; color: var(--mk-brand-strong); background: var(--mk-brand-soft); border-radius: 999px; font-size: 0.67rem; }
.mk-billing-option.active { color: var(--mk-ink); background: #fff; box-shadow: 0 1px 3px rgba(16, 46, 51, 0.12); }
.mk-price-subtle, .mk-price-note { margin: 0; color: var(--mk-ink-soft); font-size: 0.78rem; line-height: 1.45; }
.mk-price-note { margin-top: 0.65rem; }

.mk-table-wrap { overflow-x: auto; border: 1px solid var(--mk-line); border-radius: 0.6rem; background: var(--mk-surface); -webkit-overflow-scrolling: touch; }
.mk-table { width: 100%; min-width: 650px; margin: 0; border-collapse: collapse; background: transparent; }
.mk-table th, .mk-table td { padding: 1rem; border: 0; border-bottom: 1px solid var(--mk-line); color: var(--mk-ink-soft); font-size: 0.88rem; text-align: center; vertical-align: middle; }
.mk-table th { color: var(--mk-ink); background: #f5f7fb; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.mk-table th:first-child, .mk-table td:first-child { min-width: 230px; color: var(--mk-ink); text-align: left; font-weight: 680; }
.mk-table tr:last-child td { border-bottom: 0; }
.mk-cell-yes { color: var(--mk-brand-strong) !important; font-weight: 740; }
.mk-cell-yes i { font-size: 1.1rem; }
.mk-cell-no { color: #5e7478 !important; }

.marketing-page :is(a, button, summary, input):focus-visible { outline: 3px solid var(--mk-brand-strong); outline-offset: 3px; }

@media (max-width: 991.98px) {
    .mk-home-hero-grid,
    .mk-feature-intro-grid,
    .mk-section-heading-split,
    .mk-faq-layout { grid-template-columns: 1fr; }

    .mk-feature-preview .mk-mock { margin-right: auto; margin-left: 0; }
    .mk-topbar-burger { display: inline-flex; width: 42px; height: 42px; border-color: var(--mk-line); border-radius: 0.4rem; background: #fff; color: var(--mk-ink); }
    .mk-topbar-nav { display: none; position: absolute; top: calc(100% - 0.25rem); right: 0; left: 0; z-index: 2; flex-direction: column; align-items: stretch; gap: 0.15rem; padding: 0.65rem; background: #fff; border: 1px solid var(--mk-line); border-radius: 0.55rem; box-shadow: 0 16px 36px rgba(16, 46, 51, 0.12); }
    .mk-topbar-nav.mk-topbar-nav-open { display: flex; }
    .mk-topbar-nav .mk-topbar-link,
    .mk-topbar-nav .mk-topbar-signin { display: flex; min-height: 44px; align-items: center; padding: 0.65rem 0.75rem; }
    .mk-topbar-nav .mk-topbar-cta { display: flex; min-height: 44px; margin: 0.25rem 0 0; }
    .mk-topbar-lang { display: flex; justify-content: center; padding: 0.2rem 0 0; }
}

@media (max-width: 767.98px) {
    .marketing-page .container,
    .mk-topbar-inner { width: min(100% - 2rem, 1180px); }
    .mk-home-hero,
    .mk-feature-intro { padding-top: 3.5rem; }
    .mk-home-hero-copy h1,
    .mk-feature-intro h1,
    .mk-page-intro h1 { font-size: clamp(2.25rem, 12vw, 3.1rem); }
    .mk-assurance-row,
    .mk-feature-grid,
    .mk-plan-grid,
    .mk-audience-grid,
    .mk-steps,
    .mk-benefit-grid { grid-template-columns: 1fr; }
    .mk-assurance-row { gap: 0.85rem; }
    .mk-assurance-row span { font-size: 0.86rem; }
    .mk-feature-card { min-height: 0; }
    .mk-feature-card h2, .mk-feature-card h3 { margin-top: 1rem; }
    .mk-feature-card .mk-text-link { margin-top: 1.35rem; }
    .mk-plan-card { min-height: 0; }
    .mk-benefit-grid { border-right: 1px solid var(--mk-line); }
    .mk-benefit-item { min-height: 0; border-left: 0; }
    .mk-callout { align-items: flex-start; flex-direction: column; }
    .mk-callout h2 { max-width: 15ch; }
    .mk-callout .mk-button { width: 100%; }
    .mk-section-heading { margin-bottom: 2rem; }
    .mk-product-preview { max-width: 560px; }
    .mk-page-intro-centered { text-align: left; }
    .mk-page-intro-centered > .container > p:not(.mk-overline) { margin-right: 0; margin-left: 0; }
    .mk-pricing-section .mk-billing-toggle { left: 0; transform: none; }
}

@media (max-width: 479.98px) {
    .mk-topbar-brand img { height: 30px; }
    .mk-product-preview-body { padding: 1rem; }
    .mk-product-chart { height: 105px; }
    .mk-product-link-row { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
    .mk-product-copy { align-self: flex-end; margin-top: -2.5rem; }
    .mk-billing-toggle { width: 100%; }
    .mk-billing-option { flex: 1; justify-content: center; padding-right: 0.45rem; padding-left: 0.45rem; }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-page *, .marketing-page *::before, .marketing-page *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
