/* =============================================================================
   MAAK Landing — authoritative styles (loads after style.css)
   Palette: --mc #374151 · --mcl #ff6688
   ============================================================================= */

:root {
    --mc: #374151;
    --mcl: #ff6688;
    --mc-deep: #1f2937;
    --mc-mid: #2d3748;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #4b5563;
    --surface: #f5f6f8;
    --line: rgba(55, 65, 81, 0.1);
    --radius: 18px;
    --header-h: 72px;
    --font: "Sora", system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------------
   Global reset vs legacy style.css
   --------------------------------------------------------------------------- */
.mk-landing {
    font-family: var(--font) !important;
    background: #fff;
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.mk-landing *,
.mk-landing *::before,
.mk-landing *::after {
    box-sizing: border-box;
}

.mk-landing h1,
.mk-landing h2,
.mk-landing h3,
.mk-landing h4,
.mk-landing h5,
.mk-landing h6 {
    font-family: var(--font) !important;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--mc);
}

.mk-landing a {
    text-decoration: none;
}

.mk-landing .container-lg {
    border: 0 !important;
    max-width: 1140px;
}

.mk-landing .btn {
    box-shadow: none !important;
    border-radius: 999px !important;
    line-height: 1.3 !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    font-family: var(--font);
    font-weight: 600;
}

.mk-landing .btn-grad {
    background-image: linear-gradient(120deg, var(--mcl) 0%, #ff4d73 45%, var(--mc) 100%);
    background-size: 200% auto;
    border: 0;
}

.mk-landing .btn-grad:hover {
    background-position: right center;
}

.mk-landing .loading {
    z-index: 9999;
    background: #fff;
}

/* Kill legacy decorative circles / borders on landing */
.mk-landing .sm-circle,
.mk-landing .sm-circle-2,
.mk-landing .sm-circle-3,
.mk-landing .sm-circle-4,
.mk-landing .sm-circle-f0,
.mk-landing .sm-circle-f1,
.mk-landing .sm-circle-f2,
.mk-landing .sm-circle-f3 {
    display: none !important;
}

/* ---------------------------------------------------------------------------
   Header / Nav — fully independent of legacy .nav-link rules
   --------------------------------------------------------------------------- */
.mk-landing .mk-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    height: var(--header-h);
}

.mk-landing .mk-nav-bar {
    height: var(--header-h);
    background: rgba(31, 41, 55, 0.94);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-landing .mk-nav-shell {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 0;
}

.mk-landing .mk-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.mk-landing .mk-logo {
    width: 5.25rem;
    height: auto;
    display: block;
}

.mk-landing .mk-nav-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    flex: 1;
    min-width: 0;
}

.mk-landing .mk-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    padding: 0.4rem 0.55rem !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mk-landing .mk-link::after {
    content: "" !important;
    position: absolute;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 2px;
    background: var(--mcl);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 1 !important;
    transition: transform 0.25s var(--ease);
    width: auto !important;
}

.mk-landing .mk-link:hover,
.mk-landing .mk-link:focus-visible {
    color: #fff !important;
}

.mk-landing .mk-link:hover::after,
.mk-landing .mk-link:focus-visible::after {
    transform: scaleX(1);
}

.mk-landing .mk-link--action {
    padding-inline: 0.55rem !important;
}

.mk-landing .mk-link--action::after {
    display: none !important;
}

.mk-landing .mk-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.mk-landing .mk-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mk-landing .mk-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mk-landing .mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 2.25rem;
    padding: 0 1rem !important;
    border-radius: 999px !important;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1 !important;
    border: 1px solid transparent;
    box-shadow: none !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mk-landing .mk-btn--solid {
    background: #fff !important;
    color: var(--mc) !important;
}

.mk-landing .mk-btn--solid:hover {
    transform: translateY(-1px);
    background: #f3f4f6 !important;
}

.mk-landing .mk-btn--ghost {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.mk-landing .mk-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}

.mk-landing .mk-btn--block {
    width: 100%;
    height: 2.75rem;
}

.mk-landing .mk-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.mk-landing .mk-burger span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin-inline: auto;
    background: #fff;
    border-radius: 2px;
}

/* Mobile drawer */
.mk-landing .mk-drawer {
    background: var(--mc-deep) !important;
    color: #fff;
    border: 0;
    width: min(86vw, 360px);
}

.mk-landing .mk-drawer-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.25rem;
}

.mk-landing .mk-drawer-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff !important;
}

.mk-landing .mk-drawer-close {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.mk-landing .mk-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
}

.mk-landing .mk-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mk-landing .mk-drawer-nav a {
    display: block;
    padding: 0.9rem 0.85rem;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mk-landing .mk-drawer-nav a:hover {
    background: rgba(255, 102, 136, 0.12);
    color: #fff !important;
}

.mk-landing .mk-drawer-cta {
    display: grid;
    gap: 0.65rem;
    margin-top: auto;
}

.mk-landing .progress-wrap {
    z-index: 1060;
}

@media (min-width: 1200px) {
    .mk-landing .mk-nav-desktop {
        display: flex;
    }

    .mk-landing .mk-burger {
        display: none;
    }

    .mk-landing .mk-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.65rem !important;
    }
}

/* ---------------------------------------------------------------------------
   Hero (keep loved look, tighten polish)
   --------------------------------------------------------------------------- */
.mk-landing .mk-hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--mc-deep);
}

.mk-landing .mk-hero::before {
    display: none !important;
}

.mk-landing .mk-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 18% 18%, rgba(255, 102, 136, 0.34), transparent 58%),
        radial-gradient(ellipse 60% 45% at 88% 78%, rgba(255, 102, 136, 0.16), transparent 52%),
        linear-gradient(165deg, #1f2937 0%, #374151 48%, #273040 100%);
}

.mk-landing .mk-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 15%, transparent 75%);
    opacity: 0.75;
    pointer-events: none;
}

.mk-landing .mk-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: mk-float 12s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
}

.mk-landing .mk-hero-orb--a {
    width: min(42vw, 380px);
    height: min(42vw, 380px);
    background: rgba(255, 102, 136, 0.42);
    top: 6%;
    right: 10%;
}

.mk-landing .mk-hero-orb--b {
    width: min(32vw, 280px);
    height: min(32vw, 280px);
    background: rgba(55, 65, 81, 0.85);
    bottom: 10%;
    left: 6%;
    animation-delay: -5s;
}

@keyframes mk-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, -22px, 0) scale(1.05); }
}

.mk-landing .mk-hero-inner {
    position: relative;
    z-index: 2;
    padding: 5.5rem 1rem 5rem;
    max-width: 860px;
    margin-inline: 0;
}

.mk-landing .mk-hero-brand {
    font-size: clamp(2.75rem, 7.5vw, 5.25rem);
    font-weight: 800;
    line-height: 0.92;
    margin: 0 0 1.15rem;
    background: linear-gradient(115deg, #fff 18%, #ffc0ce 52%, #ff6688 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mk-landing .mk-hero-title {
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 1rem;
    max-width: 20ch;
    color: #fff !important;
}

.mk-landing .mk-hero-typed {
    color: var(--mcl);
}

.mk-landing .mk-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
    max-width: 36rem;
    margin: 0 0 1.85rem;
    font-weight: 400;
}

.mk-landing .mk-hero-lead p {
    margin: 0;
    color: inherit;
}

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

.mk-landing .mk-cta-primary,
.mk-landing .mk-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 3rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.94rem;
    text-decoration: none !important;
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.mk-landing .mk-cta-primary {
    background: linear-gradient(120deg, var(--mcl), #ff4d73);
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(255, 102, 136, 0.34);
}

.mk-landing .mk-cta-primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(255, 102, 136, 0.42);
}

.mk-landing .mk-cta-secondary {
    color: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
}

.mk-landing .mk-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

.mk-landing .mk-cta-dark {
    color: var(--mc) !important;
    border-color: var(--line);
}

.mk-landing .mk-cta-dark:hover {
    background: rgba(55, 65, 81, 0.05);
    color: var(--mc) !important;
}

.mk-landing .mk-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    z-index: 2;
}

.mk-landing .mk-scroll-hint span {
    display: block;
    width: 3px;
    height: 7px;
    margin: 8px auto 0;
    background: var(--mcl);
    border-radius: 999px;
    animation: mk-scroll 1.6s ease-in-out infinite;
}

@keyframes mk-scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.mk-landing .reveal-up {
    animation: mk-reveal 0.85s var(--ease) both;
}

.mk-landing .reveal-delay-1 { animation-delay: 0.1s; }
.mk-landing .reveal-delay-2 { animation-delay: 0.2s; }
.mk-landing .reveal-delay-3 { animation-delay: 0.3s; }

@keyframes mk-reveal {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------------
   Shared sections
   --------------------------------------------------------------------------- */
.mk-landing .mk-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    position: relative;
}

.mk-landing .mk-section-head {
    margin-bottom: 2.5rem;
    max-width: 38rem;
}

.mk-landing .mk-section-head.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mk-landing .mk-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mcl);
    margin: 0 0 0.75rem;
}

.mk-landing .mk-section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--mc) !important;
    margin: 0 0 0.8rem;
}

.mk-landing .mk-section-desc {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
    max-width: 34rem;
}

.mk-landing .mk-section-head.text-center .mk-section-desc {
    margin-inline: auto;
}

/* ---------------------------------------------------------------------------
   Services
   --------------------------------------------------------------------------- */
.mk-landing .mk-services {
    background: #fff;
    border-top: 1px solid var(--line);
}

.mk-landing .mk-service-list {
    border-top: 1px solid var(--line);
}

.mk-landing .mk-service-row {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto auto;
    gap: 1.1rem;
    align-items: center;
    padding: 1.45rem 0.35rem;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none !important;
    transition: background 0.25s ease, padding 0.25s var(--ease);
}

.mk-landing .mk-service-row:hover {
    background: linear-gradient(90deg, rgba(255, 102, 136, 0.07), transparent 65%);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.mk-landing .mk-service-index {
    font-size: 0.8rem;
    font-weight: 650;
    color: var(--mcl);
}

.mk-landing .mk-service-copy h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.3rem;
    color: var(--mc) !important;
}

.mk-landing .mk-service-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.mk-landing .mk-service-icon,
.mk-landing .mk-service-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.mk-landing .mk-service-icon {
    background: rgba(55, 65, 81, 0.06);
    color: var(--mc);
}

.mk-landing .mk-service-arrow {
    color: var(--muted);
}

.mk-landing .mk-service-row:hover .mk-service-icon {
    background: var(--mcl);
    color: #fff;
}

.mk-landing .mk-service-row:hover .mk-service-arrow {
    color: var(--mcl);
    transform: translate(3px, -3px);
}

/* ---------------------------------------------------------------------------
   About
   --------------------------------------------------------------------------- */
.mk-landing .mk-about {
    background:
        radial-gradient(ellipse 55% 60% at 100% 0%, rgba(255, 102, 136, 0.09), transparent 55%),
        var(--surface);
}

.mk-landing .mk-about-text {
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--soft);
    margin: 0 0 1.75rem;
}

.mk-landing .mk-about-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem 2.25rem;
}

.mk-landing .mk-about-stat {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--mc);
    letter-spacing: -0.03em;
}

.mk-landing .mk-about-label {
    font-size: 0.84rem;
    color: var(--muted);
}

/* ---------------------------------------------------------------------------
   Portfolio / webdev
   --------------------------------------------------------------------------- */
.mk-landing .mk-webdev {
    background: #fff;
}

.mk-landing .mk-filter {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.35rem;
    background: var(--surface);
    border-radius: 999px;
}

.mk-landing .mk-filter > span::before {
    border-radius: 999px;
}

.mk-landing .mk-filter span,
.mk-landing .f-b-g span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.35rem 0.95rem !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--soft) !important;
    font-size: 0.84rem !important;
    font-weight: 550;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

.mk-landing .mk-filter span.active,
.mk-landing .mk-filter span:hover,
.mk-landing .f-b-g span.active,
.mk-landing .f-b-g span:hover {
    background: var(--mc) !important;
    color: #fff !important;
}

.mk-landing .portfolios .grid-item-inner {
    border-radius: 16px;
    overflow: hidden;
}

.mk-landing .portfolios .item--holder {
    border-radius: 0 0 16px 16px;
}

/* ---------------------------------------------------------------------------
   Hosting
   --------------------------------------------------------------------------- */
.mk-landing .mk-hosting {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.mk-landing .mk-hosting-sub {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mc) !important;
    margin: 0 0 0.7rem;
}

.mk-landing .mk-hosting-copy p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 1.15rem;
}

/* .mk-landing .price-table {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.06) !important;
}

.mk-landing .price-table .price-head {
    background: linear-gradient(145deg, var(--mc-deep), var(--mc));
} */

.mk-landing .price-footer .btn {
    border-radius: 0 0 16px 16px !important;
}

/* ---------------------------------------------------------------------------
   OTP / Webmail
   --------------------------------------------------------------------------- */
.mk-landing .mk-otp {
    background: #fff;
}

.mk-landing .mk-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.mk-landing .mk-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    color: var(--soft);
    font-size: 0.97rem;
}

.mk-landing .mk-feature-list i {
    color: #fff;
    background: var(--mcl);
    border-radius: 50%;
    width: 1.3rem;
    height: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.mk-landing .mk-otp .mk-cta-primary,
.mk-landing .mk-webmail .mk-cta-primary,
.mk-landing .mk-webdev .mk-cta-secondary {
    margin-top: 1.35rem;
}

.mk-landing .mk-otp-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 102, 136, 0.18), transparent 58%),
        linear-gradient(145deg, #1f2937, #374151);
    border-radius: 28px;
    overflow: hidden;
}

.mk-landing .mk-otp-phone {
    position: relative;
    z-index: 1;
    width: min(100%, 320px);
    padding: 1.25rem;
}

.mk-landing .mk-otp-bubble {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    animation: mk-bubble 3.2s ease-in-out infinite;
}

.mk-landing .mk-otp-bubble i {
    color: #25d366;
    font-size: 1.55rem;
}

.mk-landing .mk-otp-bubble strong {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.mk-landing .mk-otp-code {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--mc);
}

.mk-landing .mk-otp-pulse {
    position: absolute;
    inset: -18% -8%;
    border: 1px solid rgba(255, 102, 136, 0.32);
    border-radius: 50%;
    animation: mk-pulse 3s ease-out infinite;
    pointer-events: none;
}

@keyframes mk-bubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes mk-pulse {
    0% { transform: scale(0.72); opacity: 0.65; }
    100% { transform: scale(1.12); opacity: 0; }
}

.mk-landing .mk-webmail {
    background: var(--surface);
}

.mk-landing .mk-webmail-visual {
    display: flex;
    justify-content: center;
}

.mk-landing .mk-webmail-window {
    width: min(100%, 420px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(31, 41, 55, 0.08);
}

.mk-landing .mk-webmail-bar {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    background: var(--mc);
}

.mk-landing .mk-webmail-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

.mk-landing .mk-webmail-bar span:first-child {
    background: var(--mcl);
}

.mk-landing .mk-webmail-row {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 1.05rem 1.15rem;
    border-bottom: 1px solid var(--line);
}

.mk-landing .mk-webmail-row:last-child {
    border-bottom: 0;
}

.mk-landing .mk-webmail-row i {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 136, 0.12);
    color: var(--mcl);
    font-size: 1.15rem;
}

.mk-landing .mk-webmail-row strong {
    display: block;
    font-size: 0.94rem;
    color: var(--mc);
}

.mk-landing .mk-webmail-row small {
    color: var(--muted);
    font-size: 0.78rem;
}

.mk-landing .mk-webmail-row.is-muted {
    background: rgba(245, 246, 248, 0.9);
}

/* ---------------------------------------------------------------------------
   Clients / FAQ / Footer
   --------------------------------------------------------------------------- */
.mk-landing .mk-clients-track {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff !important;
}

.mk-landing .mk-faq {
    background: #fff;
}

.mk-landing .mk-accordion .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 0.7rem;
    background: var(--surface);
}

.mk-landing .mk-accordion .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--mc) !important;
    font-family: var(--font);
    font-size: 0.98rem;
}

.mk-landing .mk-accordion .accordion-button:not(.collapsed) {
    color: var(--mcl) !important;
}

.mk-landing .mk-accordion .accordion-body {
    color: var(--soft);
}

.mk-landing .mk-footer {
    background: linear-gradient(180deg, var(--mc) 0%, var(--mc-deep) 100%) !important;
    border-top: 0;
}

.mk-landing .mk-footer .footer-title span {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.mk-landing .mk-footer .bg-semi-dark {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-landing .mk-footer .quick-links a {
    color: rgba(255, 255, 255, 0.78);
}

.mk-landing .mk-footer .quick-links a:hover {
    color: #fff;
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .mk-landing .mk-nav-actions .mk-link--action {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .mk-landing .mk-service-row {
        grid-template-columns: 2rem minmax(0, 1fr) auto;
        gap: 0.8rem;
    }

    .mk-landing .mk-service-arrow {
        display: none;
    }

    .mk-landing .mk-hero-inner {
        padding-top: 4.5rem;
        padding-bottom: 4.25rem;
    }
}

@media (max-width: 575.98px) {
    .mk-landing .mk-service-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding-block: 1.2rem;
    }

    .mk-landing .mk-service-icon {
        display: none;
    }

    .mk-landing .mk-hero-brand {
        font-size: 2.45rem;
    }

    .mk-landing .mk-otp-visual {
        min-height: 250px;
    }

    .mk-landing .mk-nav-actions .mk-btn--solid {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mk-landing .mk-hero-orb,
    .mk-landing .mk-otp-bubble,
    .mk-landing .mk-otp-pulse,
    .mk-landing .mk-scroll-hint span,
    .mk-landing .reveal-up {
        animation: none !important;
    }
}
