/* eSyana Marketing Site — modern B2B SaaS look.
   Navy/indigo base (trust, enterprise, technical) with a warm accent (activity, response). */

:root {
    --mk-navy-900: #0b1220;
    --mk-navy-800: #101a30;
    --mk-navy-700: #16203f;
    --mk-indigo-600: #4f5bd5;
    --mk-indigo-500: #6366f1;
    --mk-accent-500: #ff7a45;
    --mk-accent-400: #ff9466;
    --mk-text-muted: #8892b0;
    --mk-ink: #0b1220;
    --mk-radius: 16px;
    --mk-shadow: 0 20px 50px -20px rgba(16, 26, 48, 0.25);
}

.mk-body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    color: var(--mk-ink);
    background: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

[dir="rtl"] .mk-body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

/* ---------- Navbar ---------- */
.mk-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 26, 48, 0.06);
    padding: 14px 0;
    transition: box-shadow .2s ease;
}

    .mk-navbar.mk-scrolled {
        box-shadow: 0 4px 20px rgba(16, 26, 48, 0.06);
    }

    .mk-navbar .mk-logo {
        font-weight: 800;
        font-size: 22px;
        color: var(--mk-navy-900);
        letter-spacing: -0.02em;
    }

    .mk-navbar .nav-link {
        color: var(--mk-navy-800);
        font-weight: 500;
        font-size: 15px;
        padding: 8px 14px !important;
        border-radius: 8px;
        transition: background .15s ease, color .15s ease;
    }

        .mk-navbar .nav-link:hover {
            background: rgba(99, 102, 241, 0.08);
            color: var(--mk-indigo-600);
        }

.mk-lang-switch a {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--mk-text-muted);
    text-decoration: none;
}

    .mk-lang-switch a.active,
    .mk-lang-switch a:hover {
        background: var(--mk-navy-900);
        color: #fff;
    }

.mk-btn-primary {
    background: linear-gradient(135deg, var(--mk-indigo-600), var(--mk-indigo-500));
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 8px 20px -8px rgba(99, 102, 241, 0.6);
}

    .mk-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px -8px rgba(99, 102, 241, 0.7);
        color: #fff;
    }

.mk-btn-outline {
    background: transparent;
    color: var(--mk-navy-900);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    border: 1.5px solid rgba(16, 26, 48, 0.15);
    transition: border-color .15s ease, background .15s ease;
}

    .mk-btn-outline:hover {
        border-color: var(--mk-indigo-500);
        background: rgba(99, 102, 241, 0.05);
        color: var(--mk-navy-900);
    }

/* ---------- Hero ---------- */
.mk-hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(99,102,241,0.15), transparent 45%), radial-gradient(circle at 80% 0%, rgba(255,122,69,0.12), transparent 40%), linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding: 90px 0 70px;
    overflow: hidden;
}

    .mk-hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.4rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.15;
        color: var(--mk-navy-900);
    }

    .mk-hero .mk-sub {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        color: var(--mk-text-muted);
        max-width: 560px;
        margin-top: 18px;
    }

.mk-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mk-hero-visual {
    border-radius: var(--mk-radius);
    overflow: hidden;
    box-shadow: var(--mk-shadow);
}

.mk-placeholder {
    border: 2px dashed rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, #f4f5ff, #fbfaff);
    border-radius: var(--mk-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7196;
    font-size: 13px;
    padding: 30px;
    min-height: 260px;
}

    .mk-placeholder i {
        font-size: 28px;
        display: block;
        margin-bottom: 10px;
        color: var(--mk-indigo-500);
    }

/* ---------- Trust bar ---------- */
.mk-trustbar {
    background: var(--mk-navy-900);
    padding: 40px 0;
    color: #fff;
}

    .mk-trustbar .mk-stat-value {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #fff, #b9beff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mk-trustbar .mk-stat-label {
        color: #a3aac6;
        font-size: 14px;
    }

/* ---------- Section shell ---------- */
.mk-section {
    padding: 84px 0;
}

.mk-section-alt {
    background: #f7f8fc;
}

.mk-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mk-navy-900);
}

.mk-section-subtitle {
    color: var(--mk-text-muted);
    font-size: 1.05rem;
    max-width: 620px;
}

/* ---------- Problem/Solution ---------- */
.mk-ps-card {
    background: #fff;
    border-radius: var(--mk-radius);
    padding: 26px;
    border: 1px solid rgba(16,26,48,0.06);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

    .mk-ps-card .mk-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,122,69,0.12);
        color: var(--mk-accent-500);
        font-size: 18px;
        margin-bottom: 14px;
    }

.mk-ps-problem {
    color: #9aa0bd;
    font-size: 13px;
    text-decoration: line-through;
    text-decoration-color: rgba(255,122,69,0.5);
}

.mk-ps-arrow {
    color: var(--mk-indigo-500);
    margin: 6px 0;
}

.mk-ps-solution {
    color: var(--mk-navy-900);
    font-weight: 600;
    font-size: 15px;
}

/* ---------- Feature grid ---------- */
.mk-feature-card {
    background: #fff;
    border-radius: var(--mk-radius);
    padding: 30px 26px;
    height: 100%;
    border: 1px solid rgba(16,26,48,0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .mk-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--mk-shadow);
        border-color: rgba(99,102,241,0.25);
    }

    .mk-feature-card .mk-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--mk-indigo-600), var(--mk-indigo-500));
        color: #fff;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .mk-feature-card h5 {
        font-weight: 700;
        color: var(--mk-navy-900);
    }

    .mk-feature-card p {
        color: var(--mk-text-muted);
        font-size: 14px;
        margin-bottom: 0;
    }

/* ---------- Reports showcase ---------- */
.mk-report-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(16,26,48,0.08);
}

    .mk-report-item:last-child {
        border-bottom: none;
    }

    .mk-report-item h6 {
        font-weight: 700;
        color: var(--mk-navy-900);
        margin-bottom: 4px;
    }

    .mk-report-item p {
        color: var(--mk-text-muted);
        font-size: 14px;
        margin-bottom: 0;
    }

/* ---------- Pricing teaser ---------- */
.mk-price-card {
    background: #fff;
    border-radius: var(--mk-radius);
    padding: 32px 26px;
    border: 1px solid rgba(16,26,48,0.08);
    height: 100%;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

    .mk-price-card.mk-popular {
        border: 2px solid var(--mk-indigo-500);
        position: relative;
    }

        .mk-price-card.mk-popular::before {
            content: attr(data-badge);
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--mk-indigo-600), var(--mk-indigo-500));
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 999px;
        }

.mk-price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--mk-navy-900);
}

    .mk-price-value small {
        font-size: 1rem;
        font-weight: 500;
        color: var(--mk-text-muted);
    }

/* ---------- Final CTA ---------- */
.mk-final-cta {
    background: linear-gradient(135deg, var(--mk-navy-900), var(--mk-navy-700));
    border-radius: 28px;
    padding: 64px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .mk-final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 20%, rgba(99,102,241,0.35), transparent 50%);
    }

    .mk-final-cta h2 {
        position: relative;
        font-weight: 800;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        margin-bottom: 26px;
    }

    .mk-final-cta .mk-hero-actions {
        justify-content: center;
        position: relative;
    }

/* ---------- Footer ---------- */
.mk-footer {
    background: var(--mk-navy-900);
    color: #a3aac6;
    padding: 60px 0 30px;
}

    .mk-footer h6 {
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .mk-footer a {
        color: #a3aac6;
        text-decoration: none;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
        transition: color .15s ease;
    }

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

.mk-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 13px;
    color: #6b7196;
}

/* ---------- Scroll-reveal ---------- */
.mk-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .mk-reveal.mk-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ---------- Rich text (About/Legal/FAQ) ---------- */
/* ---------- Rich text (About/Legal/FAQ) ---------- */
.mk-richtext h3 {
    font-weight: 800;
    color: var(--mk-navy-900);
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

    .mk-richtext h3:first-child {
        margin-top: 0;
    }

.mk-richtext p {
    color: #444b6e;
    line-height: 1.75;
    margin-bottom: 14px;
}

.mk-richtext a {
    color: var(--mk-indigo-600);
}

.mk-body .mk-faq {
    border: 1px solid rgba(16,26,48,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #fff;
}

    .mk-body .mk-faq summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--mk-navy-900);
        list-style: none;
    }

        .mk-body .mk-faq summary::-webkit-details-marker {
            display: none;
        }

        .mk-body .mk-faq summary::after {
            content: "+";
            float: inline-end;
            color: var(--mk-indigo-500);
            font-weight: 800;
        }

    .mk-body .mk-faq[open] summary::after {
        content: "−";
    }

    .mk-body .mk-faq p {
        color: var(--mk-text-muted);
        margin: 10px 0 0;
        font-size: 14px;
    }

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .mk-hero {
        padding: 60px 0 40px;
        text-align: center;
    }

    .mk-hero-actions {
        justify-content: center;
    }

    .mk-section {
        padding: 56px 0;
    }

    .mk-final-cta {
        padding: 44px 22px;
        border-radius: 20px;
    }
}
