/* Marketing site — Cloud Kitchen landlord landing */
:root {
    --mk-bg: #f4f6fb;
    --mk-surface: #ffffff;
    --mk-text: #0c1222;
    --mk-muted: #5c6b8a;
    --mk-accent: #ea6a1f;
    --mk-accent-bright: #ff8a2d;
    --mk-accent-dark: #c94910;
    --mk-violet: #0d8a63;
    --mk-teal: #0a6e52;
    --mk-leaf: #5fbf3a;
    --mk-border: rgba(12, 18, 34, 0.08);
    --mk-radius: 1.125rem;
    --mk-radius-sm: 0.75rem;
    --mk-shadow: 0 20px 50px rgba(12, 18, 34, 0.08);
    --mk-shadow-lg: 0 28px 80px rgba(12, 18, 34, 0.12);
    --mk-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --mk-display: "Outfit", var(--mk-font);
}

.marketing-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--mk-font);
    color: var(--mk-text);
    background: var(--mk-bg);
    -webkit-font-smoothing: antialiased;
}

.marketing-body.mk-scroll-lock {
    overflow: hidden;
}

.mk-container {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* --- Header --- */
.mk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 249, 242, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--mk-border);
    overflow: visible;
}

.mk-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.25rem;
}

.mk-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--mk-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.04em;
    color: var(--mk-text);
    text-decoration: none;
    z-index: 110;
}

.mk-brand-logo {
    display: block;
    height: 2.5rem;
    width: auto;
    max-width: min(52vw, 12.5rem);
    object-fit: contain;
    flex-shrink: 0;
}

.mk-brand-text {
    line-height: 1.15;
    background: linear-gradient(120deg, var(--mk-accent-dark) 0%, var(--mk-accent-bright) 48%, var(--mk-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mk-brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--mk-accent-bright) 0%, var(--mk-violet) 100%);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.mk-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: var(--mk-radius-sm);
    background: var(--mk-surface);
    border: 1px solid var(--mk-border);
    cursor: pointer;
    z-index: 110;
}

.mk-burger span {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: var(--mk-text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mk-header.mk-nav-open .mk-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mk-header.mk-nav-open .mk-burger span:nth-child(2) {
    opacity: 0;
}

.mk-header.mk-nav-open .mk-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mk-drawer {
    display: flex;
    align-items: center;
}

.mk-links {
    display: flex;
    align-items: center;
    gap: 0.35rem 1.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mk-links > a:not(.mk-btn-primary) {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--mk-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.mk-links > a:not(.mk-btn-primary):hover {
    color: var(--mk-text);
}

.mk-links > a.mk-nav-active:not(.mk-btn-primary) {
    color: var(--mk-accent);
}

.mk-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--mk-display);
    color: #fff !important;
    background: var(--mk-accent);
    border-radius: 999px;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(201, 73, 16, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.mk-btn-primary:hover {
    background: var(--mk-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(201, 73, 16, 0.34);
    color: #fff !important;
}

.mk-btn-nav {
    padding-inline: 1.35rem !important;
}

.mk-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--mk-display);
    color: var(--mk-text) !important;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--mk-border);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.mk-btn-ghost:hover {
    border-color: rgba(201, 73, 16, 0.35);
    background: #fff;
    color: var(--mk-violet) !important;
}

.mk-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-family: var(--mk-display);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mk-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991.98px) {
    .mk-burger {
        display: flex;
        position: relative;
        z-index: 1501;
    }

    .mk-header.mk-nav-open .mk-burger {
        position: fixed;
        top: 0.6rem;
        right: 0.9rem;
    }

    .mk-drawer {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        bottom: 0;
        width: min(92vw, 22rem);
        max-width: 100vw;
        height: 100dvh;
        padding: 5rem 1.5rem 2rem;
        background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
        border-left: 1px solid var(--mk-border);
        box-shadow: var(--mk-shadow-lg);
        transform: translateX(100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 1400;
        visibility: hidden;
        pointer-events: none;
    }

    .mk-header.mk-nav-open .mk-drawer {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    /* Very small screens: use a full-screen overlay drawer. */
    @media (max-width: 420px) {
        .mk-drawer {
            left: 0;
            right: 0;
            width: 100vw;
            border-left: 0;
            border-radius: 0;
            padding-top: 5.25rem;
        }
    }

    .mk-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .mk-links > a:not(.mk-btn-primary) {
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(12, 18, 34, 0.06);
    }

    .mk-links .mk-btn-primary {
        margin-top: 0.75rem;
        justify-content: center;
    }

    .mk-drawer-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(12, 18, 34, 0.45);
        z-index: 1390;
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }

    .mk-header.mk-nav-open .mk-drawer-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
    .mk-drawer-backdrop {
        display: none !important;
    }
}

/* --- Hero --- */
.mk-hero {
    padding: 2rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .mk-hero {
        padding: 3rem 0 4.5rem;
    }
}

.mk-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mk-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 65% at 75% -25%, rgba(255, 138, 45, 0.26), transparent 58%),
        radial-gradient(ellipse 55% 50% at 0% 45%, rgba(13, 138, 99, 0.16), transparent 52%),
        radial-gradient(ellipse 45% 40% at 90% 85%, rgba(95, 191, 58, 0.14), transparent 45%),
        linear-gradient(180deg, #fff5ea 0%, var(--mk-bg) 52%, #f8fbf7 100%);
}

.mk-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .mk-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
    }
}

.mk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    margin: 0 0 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mk-accent-dark);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 73, 16, 0.22);
    border-radius: 999px;
    box-shadow: 0 6px 22px rgba(201, 73, 16, 0.1);
}

.mk-hero h1 {
    margin: 0 0 1.15rem;
    font-family: var(--mk-display);
    font-size: clamp(2.1rem, 4.6vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.07;
    max-width: 16ch;
    color: var(--mk-text);
}

.mk-lead {
    margin: 0 0 1.85rem;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--mk-muted);
    max-width: 38rem;
}

.mk-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    align-items: center;
}

.mk-hero-art {
    position: relative;
    min-height: 280px;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--mk-shadow);
    overflow: hidden;
}

.mk-hero-art::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 120deg at 50% 50%, rgba(255, 138, 45, 0.2), transparent, rgba(13, 138, 99, 0.18), transparent);
    animation: mk-spin 22s linear infinite;
}

@keyframes mk-spin {
    to {
        transform: rotate(360deg);
    }
}

.mk-hero-art-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.5rem 1.35rem;
}

.mk-art-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mk-art-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--mk-radius-sm);
    border: 1px solid var(--mk-border);
    box-shadow: 0 10px 30px rgba(12, 18, 34, 0.06);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mk-text);
}

.mk-art-card span {
    color: var(--mk-muted);
    font-weight: 500;
    font-size: 0.8125rem;
}

.mk-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mk-teal);
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.2);
    animation: mk-pulse 2s ease-in-out infinite;
}

@keyframes mk-pulse {
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

/* --- Stats --- */
.mk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.25rem;
}

@media (max-width: 640px) {
    .mk-stats {
        grid-template-columns: 1fr;
    }
}

.mk-stat {
    padding: 1.15rem 1.25rem;
    border-radius: var(--mk-radius-sm);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 28px rgba(12, 18, 34, 0.05);
}

.mk-stat strong {
    display: block;
    font-family: var(--mk-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--mk-text);
    margin-bottom: 0.2rem;
}

.mk-stat span {
    font-size: 0.8rem;
    color: var(--mk-muted);
    line-height: 1.35;
}

/* --- Sections --- */
.mk-section {
    padding: 3rem 0;
}

.mk-section-header {
    max-width: 38rem;
    margin-bottom: 2rem;
}

.mk-section-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mk-accent);
    margin-bottom: 0.6rem;
}

.mk-section-title {
    font-family: var(--mk-display);
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.65rem;
    line-height: 1.2;
}

.mk-section-desc {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--mk-muted);
}

.mk-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .mk-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mk-card {
    position: relative;
    background: var(--mk-surface);
    border-radius: var(--mk-radius);
    padding: 1.65rem 1.45rem;
    border: 1px solid var(--mk-border);
    box-shadow: var(--mk-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mk-shadow-lg);
}

.mk-card-icon {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(255, 138, 45, 0.16) 0%, rgba(13, 138, 99, 0.14) 100%);
}

.mk-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--mk-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mk-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.62;
    color: var(--mk-muted);
}

/* --- Product section mobile spacing --- */
@media (max-width: 575.98px) {
    #product.mk-section {
        padding-top: 2.25rem;
        padding-bottom: 1.75rem;
    }

    #product .mk-section-header {
        margin-bottom: 1.25rem;
        padding-inline: 0.15rem;
    }

    #product .mk-section-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    #product .mk-section-desc {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    #product .mk-grid-3 {
        gap: 0.9rem;
    }

    #product .mk-card {
        padding: 1.2rem 1rem;
        border-radius: 1rem;
    }
}

.mk-split {
    display: grid;
    gap: 1.35rem;
}

@media (min-width: 900px) {
    .mk-split {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.mk-prose h2 {
    font-family: var(--mk-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.mk-prose p {
    margin: 0;
    color: var(--mk-muted);
    line-height: 1.65;
}

.mk-cta-banner {
    margin: 2rem 0 3rem;
    padding: 2.5rem 2rem;
    border-radius: 1.35rem;
    background: linear-gradient(125deg, var(--mk-accent-dark) 0%, var(--mk-accent) 42%, var(--mk-violet) 100%);
    color: #fff;
    box-shadow: 0 24px 62px rgba(201, 73, 16, 0.34);
    position: relative;
    overflow: hidden;
}

.mk-cta-banner::after {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 42%);
    pointer-events: none;
}

.mk-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.mk-cta-banner h2 {
    margin: 0 0 0.4rem;
    font-family: var(--mk-display);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mk-cta-banner p {
    margin: 0;
    opacity: 0.92;
    font-size: 1rem;
    max-width: 32rem;
}

/* --- Inner pages --- */
.mk-page-hero {
    padding: 2.75rem 0 1.25rem;
    position: relative;
}

.mk-page-hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(100%, 52rem);
    height: 180px;
    background: radial-gradient(ellipse at center top, rgba(255, 138, 45, 0.16), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.mk-page-hero .mk-container {
    position: relative;
    z-index: 1;
}

.mk-page-hero h1 {
    margin: 0 0 0.75rem;
    font-family: var(--mk-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.mk-page-hero .mk-lead {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.mk-about-block {
    background: var(--mk-surface);
    border-radius: var(--mk-radius);
    padding: 1.65rem 1.5rem;
    margin-bottom: 1.15rem;
    border: 1px solid var(--mk-border);
    box-shadow: 0 12px 36px rgba(12, 18, 34, 0.05);
}

.mk-about-block h2 {
    margin: 0 0 0.65rem;
    font-family: var(--mk-display);
    font-size: 1.12rem;
    font-weight: 700;
}

.mk-about-block .mk-body {
    margin: 0;
    color: var(--mk-muted);
    line-height: 1.72;
    font-size: 0.98rem;
}

/* --- Pricing --- */
.mk-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .mk-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.mk-price-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.6rem;
    border-radius: var(--mk-radius);
    border: 1px solid var(--mk-border);
    background: var(--mk-surface);
    box-shadow: var(--mk-shadow);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--mk-shadow-lg);
}

.mk-price-card--highlight {
    border-color: rgba(201, 73, 16, 0.32);
    box-shadow: 0 20px 55px rgba(201, 73, 16, 0.16);
    background: linear-gradient(180deg, #fff 0%, #fff8f2 58%, #f8fbf7 100%);
}

.mk-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mk-accent) 0%, var(--mk-violet) 100%);
    color: #fff;
}

.mk-price-name {
    margin: 0 0 0.35rem;
    font-family: var(--mk-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mk-price-line {
    margin: 0 0 0.75rem;
}

.mk-price-line strong {
    font-family: var(--mk-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mk-text);
}

.mk-price-line small {
    display: block;
    font-size: 0.8rem;
    color: var(--mk-muted);
    font-weight: 600;
    margin-top: 0.15rem;
}

.mk-price-desc {
    font-size: 0.9rem;
    color: var(--mk-muted);
    line-height: 1.55;
    margin: 0 0 1.2rem;
}

.mk-price-list {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.mk-price-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.55rem;
    font-size: 0.9rem;
    color: var(--mk-muted);
    line-height: 1.45;
}

.mk-price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-accent), var(--mk-teal));
}

.mk-pricing-footnote {
    margin: 2rem 0 0;
    font-size: 0.82rem;
    color: var(--mk-muted);
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* --- Contact --- */
.mk-contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .mk-contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 2rem;
        align-items: start;
    }
}

.mk-contact-card {
    padding: 1.5rem 1.4rem;
    border-radius: var(--mk-radius);
    background: var(--mk-surface);
    border: 1px solid var(--mk-border);
    box-shadow: var(--mk-shadow);
}

.mk-contact-card h2 {
    margin: 0 0 1rem;
    font-family: var(--mk-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.mk-contact-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.mk-contact-row:last-child {
    margin-bottom: 0;
}

.mk-contact-label {
    font-weight: 800;
    color: var(--mk-muted);
    min-width: 4.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 0.15rem;
}

.mk-contact-row a {
    color: var(--mk-accent);
    font-weight: 700;
    text-decoration: none;
}

.mk-contact-row a:hover {
    text-decoration: underline;
}

.mk-contact-form {
    padding: 2rem 1.6rem;
    border-radius: var(--mk-radius);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid var(--mk-border);
    box-shadow: var(--mk-shadow);
    overflow-x: clip;
}

.mk-contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mk-muted);
    margin-bottom: 0.35rem;
}

.mk-contact-form input,
.mk-contact-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    margin-bottom: 1rem;
    font-family: var(--mk-font);
    font-size: 0.95rem;
    border-radius: var(--mk-radius-sm);
    border: 1px solid var(--mk-border);
    background: #fff;
}

.mk-contact-form input:focus,
.mk-contact-form textarea:focus {
    outline: none;
    border-color: rgba(201, 73, 16, 0.38);
    box-shadow: 0 0 0 3px rgba(201, 73, 16, 0.12);
}

.mk-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.mk-form-status {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--mk-radius-sm);
    font-size: 0.9rem;
    line-height: 1.45;
}

.mk-form-status--success {
    background: rgba(13, 138, 99, 0.12);
    color: var(--mk-teal);
}

.mk-form-status--error {
    background: rgba(201, 73, 16, 0.1);
    color: var(--mk-accent-dark);
}

.mk-contact-form .mk-form-actions {
    margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
    .mk-page-hero {
        padding-top: 3.25rem;
        padding-bottom: 1rem;
    }

    .mk-contact-grid {
        gap: 1rem;
    }

    .mk-contact-card {
        padding: 1.1rem 0.95rem;
        border-radius: 0.95rem;
    }

    .mk-contact-form {
        padding: 1.2rem 0.95rem 1rem;
        border-radius: 0.95rem;
    }

    .mk-contact-form label {
        margin-bottom: 0.28rem;
        font-size: 0.78rem;
    }

    .mk-contact-form input,
    .mk-contact-form textarea {
        padding: 0.58rem 0.78rem;
        margin-bottom: 0.78rem;
        font-size: 0.92rem;
        border-radius: 0.7rem;
    }

    .mk-contact-form textarea {
        min-height: 96px;
    }

    .mk-contact-form .mk-form-actions {
        margin-top: 0.4rem;
    }
}

/* --- Footer --- */
.mk-footer {
    margin-top: auto;
    padding: 0;
    border-top: 1px solid var(--mk-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #eef1f8 100%);
}

.mk-footer-brand {
    padding: 2rem 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(12, 18, 34, 0.06);
}

.mk-footer-logo {
    display: block;
    margin: 0 auto 0.75rem;
    height: 2.25rem;
    width: auto;
    max-width: min(70vw, 11rem);
    object-fit: contain;
}

.mk-footer-cta strong {
    display: block;
    font-family: var(--mk-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.mk-footer-cta span {
    font-size: 0.92rem;
    color: var(--mk-muted);
}

.mk-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--mk-muted);
    padding: 1.25rem 1.25rem 2rem;
}

.mk-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem 1.35rem;
}

.mk-footer-links a {
    color: var(--mk-muted);
    font-weight: 600;
    text-decoration: none;
}

.mk-footer-links a:hover {
    color: var(--mk-accent);
}

.mk-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Global responsive polish --- */
@media (max-width: 1024px) {
    .mk-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mk-nav {
        min-height: 4rem;
    }

    .mk-links {
        gap: 0.45rem 1.1rem;
    }

    .mk-hero-grid {
        gap: 1.75rem;
    }

    .mk-section {
        padding: 2.4rem 0;
    }

    .mk-cta-banner {
        padding: 2rem 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .mk-container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .mk-brand {
        gap: 0.45rem;
    }

    .mk-brand-logo {
        height: 2.2rem;
        max-width: min(62vw, 11rem);
    }

    .mk-brand-text {
        font-size: 0.95rem;
        letter-spacing: -0.02em;
    }

    .mk-nav {
        min-height: 3.8rem;
    }

    .mk-hero {
        padding: 1.25rem 0 2.25rem;
    }

    .mk-hero h1 {
        max-width: 100%;
        font-size: clamp(1.65rem, 7.4vw, 2.05rem);
        line-height: 1.15;
    }

    .mk-lead {
        font-size: 0.98rem;
        line-height: 1.58;
        margin-bottom: 1.2rem;
    }

    .mk-hero-cta {
        gap: 0.55rem;
    }

    .mk-hero-cta .mk-btn-primary,
    .mk-hero-cta .mk-btn-ghost {
        width: 100%;
    }

    .mk-hero-art {
        min-height: 220px;
        border-radius: 1rem;
    }

    .mk-hero-art-inner {
        min-height: 220px;
        padding: 1rem 0.95rem 0.95rem;
    }

    .mk-art-card {
        padding: 0.7rem 0.8rem;
        gap: 0.7rem;
        font-size: 0.8rem;
    }

    .mk-art-card span {
        font-size: 0.75rem;
    }

    .mk-stats {
        margin-top: 1.2rem;
        gap: 0.75rem;
    }

    .mk-stat {
        padding: 0.85rem 0.9rem;
    }

    .mk-section {
        padding: 2rem 0;
    }

    .mk-section-header {
        margin-bottom: 1.2rem;
    }

    .mk-section-title {
        font-size: clamp(1.35rem, 6.2vw, 1.75rem);
    }

    .mk-section-desc {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .mk-grid-3 {
        gap: 0.9rem;
    }

    .mk-card {
        padding: 1.1rem 0.95rem;
        border-radius: 0.95rem;
    }

    .mk-card h3 {
        font-size: 1rem;
    }

    .mk-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .mk-split {
        gap: 0.9rem;
    }

    .mk-prose h2 {
        font-size: 1.05rem;
    }

    .mk-prose p {
        font-size: 0.92rem;
    }

    .mk-cta-banner {
        margin: 1.4rem 0 2rem;
        padding: 1.35rem 1rem;
        border-radius: 1rem;
    }

    .mk-cta-inner {
        gap: 0.9rem;
    }

    .mk-cta-banner h2 {
        font-size: 1.18rem;
    }

    .mk-cta-banner p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .mk-btn-outline-light {
        width: 100%;
    }

    .mk-page-hero {
        padding: 2.35rem 0 0.95rem;
    }

    .mk-page-hero h1 {
        font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    }

    .mk-page-hero .mk-lead {
        font-size: 0.95rem;
        line-height: 1.56;
    }

    .mk-about-block {
        padding: 1.1rem 0.95rem;
        margin-bottom: 0.8rem;
    }

    .mk-about-block h2 {
        font-size: 1rem;
    }

    .mk-about-block .mk-body {
        font-size: 0.91rem;
        line-height: 1.56;
    }

    .mk-pricing-grid {
        gap: 0.9rem;
    }

    .mk-price-card {
        padding: 1.2rem 1rem;
        border-radius: 1rem;
    }

    .mk-price-badge {
        top: 0.75rem;
        right: 0.75rem;
    }

    .mk-price-name {
        font-size: 1.12rem;
    }

    .mk-price-line strong {
        font-size: 1.65rem;
    }

    .mk-price-desc,
    .mk-price-list li {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .mk-pricing-footnote {
        margin-top: 1.2rem;
        font-size: 0.78rem;
    }

    .mk-contact-label {
        min-width: 3.75rem;
        font-size: 0.7rem;
    }

    .mk-footer-brand {
        padding: 1.25rem 0.9rem 1rem;
    }

    .mk-footer-cta strong {
        font-size: 1.06rem;
    }

    .mk-footer-cta span {
        font-size: 0.86rem;
    }

    .mk-footer-inner {
        justify-content: center;
        text-align: center;
        padding: 0.95rem 0.9rem 1.4rem;
        gap: 0.8rem;
    }

    .mk-footer-links {
        justify-content: center;
        gap: 0.55rem 0.95rem;
    }
}

@media (max-width: 420px) {
    .mk-brand-text {
        display: none;
    }

    .mk-brand-logo {
        height: 2rem;
        max-width: min(65vw, 9.5rem);
    }

    .mk-btn-primary,
    .mk-btn-ghost,
    .mk-btn-outline-light {
        font-size: 0.88rem;
        padding: 0.58rem 1rem;
    }
}
