/* Mekteva — Premium SaaS landing (2026) */
:root {
    --mkt-primary: #2563eb;
    --mkt-primary-dark: #1d4ed8;
    --mkt-dark: #0f172a;
    --mkt-light: #f8fafc;
    --mkt-success: #22c55e;
    --mkt-cta: #f97316;
    --mkt-cta-hover: #ea580c;
    --mkt-muted: #64748b;
    --mkt-border: #e2e8f0;
    --mkt-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --mkt-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --mkt-radius: 16px;
    --mkt-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.mkt-landing-body {
    font-family: var(--mkt-font);
    color: var(--mkt-dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
.mkt-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.25s, border-color 0.25s;
}
.mkt-nav-scrolled {
    border-color: var(--mkt-border);
    box-shadow: var(--mkt-shadow);
}
.mkt-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--mkt-dark);
    text-decoration: none;
}
/* Logo — login ile aynı (brand-logo partial) */
.mkt-landing-body .brand-logo-sm {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
/* ---- İletişim sayfası ---- */
.mkt-contact-page {
    background: linear-gradient(180deg, var(--mkt-light) 0%, #fff 28%, #fff 100%);
}
.mkt-contact-hero {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--mkt-border);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(124, 58, 237, 0.04) 50%, #fff 100%);
}
.mkt-contact-hero-inner {
    max-width: 640px;
}
.mkt-contact-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--mkt-dark);
}
.mkt-contact-hero-lead {
    font-size: 1.0625rem;
    color: var(--mkt-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.mkt-contact-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.35rem;
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    box-shadow: var(--mkt-shadow);
}
.mkt-contact-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mkt-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.mkt-contact-tab:hover {
    color: var(--mkt-dark);
    background: var(--mkt-light);
}
.mkt-contact-tab.active {
    background: var(--mkt-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.mkt-contact-body {
    padding: 2.5rem 0 4rem;
}
.mkt-contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 1.75rem;
    align-items: start;
}
.mkt-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.mkt-contact-aside-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.5rem;
    box-shadow: var(--mkt-shadow);
}
.mkt-contact-aside-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.mkt-contact-aside-sub {
    font-size: 0.875rem;
    color: var(--mkt-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.mkt-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.mkt-contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-light);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
a.mkt-contact-channel:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}
.mkt-contact-channel--static {
    background: #fff;
    cursor: default;
}
.mkt-contact-channel-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}
.mkt-contact-channel-icon--mail { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.mkt-contact-channel-icon--phone { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.mkt-contact-channel-icon--wa { background: linear-gradient(135deg, #22c55e, #16a34a); }
.mkt-contact-channel-icon--time { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.mkt-contact-channel-icon--pin { background: linear-gradient(135deg, #f97316, #fb923c); }
.mkt-contact-channel-text {
    flex: 1;
    min-width: 0;
}
.mkt-contact-channel-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mkt-muted);
    margin-bottom: 0.15rem;
}
.mkt-contact-channel-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mkt-dark);
    line-height: 1.45;
    word-break: break-word;
}
.mkt-contact-channel-arrow {
    flex-shrink: 0;
    color: var(--mkt-muted);
    font-size: 0.85rem;
    margin-top: 0.35rem;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}
a.mkt-contact-channel:hover .mkt-contact-channel-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}
.mkt-contact-map-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    overflow: hidden;
    box-shadow: var(--mkt-shadow);
}
.mkt-contact-map-card-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mkt-muted);
    border-bottom: 1px solid var(--mkt-border);
    background: var(--mkt-light);
}
.mkt-contact-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}
.mkt-contact-map iframe,
.mkt-contact-map-preview iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border: 0;
}
.mkt-contact-form-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: calc(var(--mkt-radius) + 4px);
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: var(--mkt-shadow-lg);
}
.mkt-contact-form-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--mkt-border);
}
.mkt-contact-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.mkt-contact-form-sub {
    font-size: 0.9rem;
    color: var(--mkt-muted);
    margin: 0;
    max-width: 420px;
}
.mkt-contact-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mkt-success);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.mkt-contact-alert {
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.mkt-form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mkt-dark);
    margin-bottom: 0.4rem;
}
.mkt-form-label span {
    color: var(--mkt-cta);
}
.mkt-form-control {
    border-radius: 10px;
    border: 1.5px solid var(--mkt-border);
    padding: 0.65rem 0.9rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mkt-form-control:focus {
    border-color: var(--mkt-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.mkt-contact-submit {
    margin-top: 0.25rem;
}
.mkt-contact-form-foot {
    margin-top: 1rem;
    color: var(--mkt-muted);
}
.mkt-contact-form-foot a {
    color: var(--mkt-primary);
    font-weight: 600;
    text-decoration: none;
}
.mkt-contact-form-foot a:hover {
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .mkt-contact-layout {
        grid-template-columns: 1fr;
    }
    .mkt-contact-aside {
        order: 2;
    }
    .mkt-contact-main {
        order: 1;
    }
    .mkt-contact-map {
        max-height: 220px;
    }
}
@media (max-width: 575.98px) {
    .mkt-contact-hero { padding: 1.75rem 0 1.5rem; }
    .mkt-contact-body { padding: 1.5rem 0 3rem; }
    .mkt-contact-tabs { width: 100%; }
    .mkt-contact-tab { flex: 1; justify-content: center; font-size: 0.8125rem; padding: 0.5rem 0.65rem; }
    .mkt-contact-form-card { padding: 1.25rem; }
    .mkt-contact-form-head { flex-direction: column; }
}
.mkt-nav .nav-link {
    color: var(--mkt-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem !important;
}
.mkt-nav .nav-link:hover { color: var(--mkt-dark); }

.mkt-btn-cta {
    background: var(--mkt-cta);
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.mkt-btn-cta:hover {
    background: var(--mkt-cta-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}
.mkt-btn-outline {
    border: 1.5px solid var(--mkt-border);
    color: var(--mkt-dark);
    font-weight: 600;
    border-radius: 10px;
    background: #fff;
}
.mkt-btn-outline:hover {
    border-color: var(--mkt-primary);
    color: var(--mkt-primary);
    background: #fff;
}
.mkt-btn-ghost { color: var(--mkt-muted); font-weight: 500; }

/* Hero */
.mkt-hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--mkt-light) 0%, #fff 70%);
    overflow: hidden;
}
.mkt-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mkt-primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.mkt-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.15rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.mkt-hero-lead {
    font-size: 1.125rem;
    color: var(--mkt-muted);
    line-height: 1.65;
    max-width: 32rem;
}
.mkt-hero-note {
    font-size: 0.875rem;
    color: var(--mkt-muted);
}
.mkt-hero-visual {
    position: relative;
}
.mkt-hero-visual::before {
    content: '';
    position: absolute;
    inset: -20% -10% -10% -10%;
    background: radial-gradient(circle at 60% 40%, rgba(37, 99, 235, 0.15), transparent 55%);
    pointer-events: none;
}

/* Dashboard mock */
.mkt-dash-mock {
    background: #fff;
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-lg);
    border: 1px solid var(--mkt-border);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.mkt-dash-mock:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.mkt-dash-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--mkt-light);
    border-bottom: 1px solid var(--mkt-border);
}
.mkt-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.mkt-dash-dot:nth-child(1) { background: #f87171; }
.mkt-dash-dot:nth-child(2) { background: #fbbf24; }
.mkt-dash-dot:nth-child(3) { background: #4ade80; }
.mkt-dash-url {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--mkt-muted);
}
.mkt-dash-body { display: flex; min-height: 280px; }
.mkt-dash-sidebar {
    width: 52px;
    background: var(--mkt-dark);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mkt-dash-nav-item {
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}
.mkt-dash-nav-item.active { background: var(--mkt-primary); }
.mkt-dash-main { flex: 1; padding: 16px; background: #fafbfc; }
.mkt-dash-kpi {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    padding: 12px;
    height: 100%;
}
.mkt-dash-kpi-label { font-size: 0.65rem; color: var(--mkt-muted); display: block; }
.mkt-dash-kpi strong { font-size: 1.25rem; display: block; }
.mkt-dash-kpi-trend { font-size: 0.65rem; color: var(--mkt-muted); }
.mkt-dash-panel {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    padding: 12px;
}
.mkt-dash-panel-head {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.mkt-dash-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--mkt-light);
    font-size: 0.75rem;
}
.mkt-dash-row:last-child { border-bottom: 0; }
.mkt-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #93c5fd, var(--mkt-primary));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mkt-avatar.sm { width: 36px; height: 36px; }
.mkt-badge-soft {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 6px;
    background: var(--mkt-light);
    color: var(--mkt-muted);
}
.mkt-badge-soft.primary { background: rgba(37, 99, 235, 0.1); color: var(--mkt-primary); }
.mkt-badge-soft.success { background: rgba(34, 197, 94, 0.12); color: var(--mkt-success); }

/* Sections */
.mkt-section { padding: 5rem 0; }
.mkt-section-light { background: var(--mkt-light); }
.mkt-section-title {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.mkt-section-sub { color: var(--mkt-muted); max-width: 36rem; margin: 0.75rem auto 0; }
.mkt-muted { color: var(--mkt-muted); }

/* Stats */
.mkt-stat-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--mkt-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.mkt-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mkt-shadow-lg);
}
.mkt-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--mkt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.mkt-stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--mkt-dark);
}
.mkt-stat-label { font-weight: 700; margin: 0.35rem 0; }

/* Problem / Solution cards */
.mkt-problem-card,
.mkt-solution-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--mkt-shadow);
    transition: transform 0.25s, border-color 0.25s;
}
.mkt-problem-card:hover,
.mkt-solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.25);
}
.mkt-problem-icon {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 0.75rem;
    display: block;
}
.mkt-solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mkt-primary), #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Tabs */
.mkt-tabs .nav-link {
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    color: var(--mkt-muted);
    border: none;
}
.mkt-tabs .nav-link.active {
    background: var(--mkt-primary);
    color: #fff;
}
.mkt-tab-content {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.5rem;
    box-shadow: var(--mkt-shadow-lg);
}
.mkt-tab-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}
.mkt-tab-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--mkt-light);
    color: var(--mkt-muted);
}

/* Kanban mock */
.mkt-kanban { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.mkt-kanban-col { min-width: 120px; flex: 1; }
.mkt-kanban-title { font-size: 0.65rem; font-weight: 700; color: var(--mkt-muted); margin-bottom: 8px; }
.mkt-kanban-card {
    height: 48px;
    background: var(--mkt-light);
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid var(--mkt-border);
}
.mkt-kanban-card.accent { border-color: var(--mkt-primary); background: rgba(37, 99, 235, 0.06); }
.mkt-kanban-card.success { border-color: var(--mkt-success); background: rgba(34, 197, 94, 0.08); }

/* Inbox mock */
.mkt-inbox-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--mkt-border);
    font-size: 0.8rem;
}
.mkt-inbox-item.active { background: rgba(37, 99, 235, 0.06); border-color: rgba(37, 99, 235, 0.2); }
.mkt-inbox-item p { margin: 0; color: var(--mkt-muted); font-size: 0.75rem; }
.mkt-inbox-time { font-size: 0.65rem; color: var(--mkt-muted); white-space: nowrap; }

/* Chart mock */
.mkt-chart-box {
    background: var(--mkt-light);
    border-radius: 12px;
    padding: 14px;
    height: 100%;
}
.mkt-chart-label { font-size: 0.7rem; font-weight: 700; margin-bottom: 12px; }
.mkt-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}
.mkt-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--mkt-primary), #93c5fd);
    border-radius: 6px 6px 0 0;
    position: relative;
    min-height: 20%;
}
.mkt-bar span {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.6rem;
    color: var(--mkt-muted);
}
.mkt-funnel-step {
    background: var(--mkt-primary);
    color: #fff;
    font-size: 0.65rem;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
    opacity: 0.85;
}
.mkt-funnel-step:nth-child(2) { opacity: 0.7; }
.mkt-funnel-step:nth-child(3) { opacity: 0.55; }
.mkt-funnel-step:nth-child(4) { opacity: 0.4; }

/* Timeline */
.mkt-timeline { max-width: 640px; margin: 0 auto; }
.mkt-timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}
.mkt-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--mkt-primary), var(--mkt-border));
}
.mkt-timeline-marker {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--mkt-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* AI section */
.mkt-ai-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--mkt-dark) 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mkt-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 60%);
    pointer-events: none;
}
.mkt-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}
.mkt-ai-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.mkt-ai-lead { color: rgba(255, 255, 255, 0.75); }
.mkt-ai-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--mkt-radius);
    padding: 1.25rem;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: background 0.25s;
}
.mkt-ai-card:hover { background: rgba(255, 255, 255, 0.1); }
.mkt-ai-card i {
    font-size: 1.5rem;
    color: #38bdf8;
    margin-bottom: 0.75rem;
    display: block;
}

/* Audience */
.mkt-audience-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 1.25rem 1rem;
    box-shadow: var(--mkt-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.mkt-audience-card i { font-size: 1.5rem; color: var(--mkt-primary); }

/* Pricing */
.mkt-price-card {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--mkt-shadow);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.mkt-price-card:hover { transform: translateY(-4px); box-shadow: var(--mkt-shadow-lg); }
.mkt-price-featured {
    border-color: var(--mkt-primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.03);
}
.mkt-price-featured:hover { transform: scale(1.03) translateY(-4px); }
.mkt-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mkt-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.mkt-price-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    flex: 1;
}
.mkt-price-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.mkt-price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mkt-success);
    font-weight: 700;
}

/* Trust band */
.mkt-trust-band { background: var(--mkt-light); }
.mkt-trust-inner {
    padding: 2rem;
    border: 1px dashed var(--mkt-border);
    border-radius: var(--mkt-radius);
    background: #fff;
}
.mkt-trust-inner i { font-size: 2.5rem; color: var(--mkt-primary); margin-bottom: 1rem; display: block; }

/* Final CTA */
.mkt-final-cta { padding: 4rem 0 5rem; }
.mkt-final-cta-box {
    background: linear-gradient(135deg, var(--mkt-primary) 0%, #1d4ed8 50%, var(--mkt-dark) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--mkt-shadow-lg);
}
.mkt-final-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Footer */
.mkt-site-footer {
    background: var(--mkt-dark);
    color: #fff;
}
.mkt-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
}
.mkt-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.2rem 0;
}
.mkt-footer-links a:hover { color: #fff; }
.mkt-footer-muted { color: rgba(255, 255, 255, 0.55); }
.mkt-footer-link { color: #93c5fd; text-decoration: none; }
.mkt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
}
.mkt-social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
}
.mkt-social:hover { background: var(--mkt-primary); color: #fff; }

.mkt-page-hero {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, transparent 100%);
}
.mkt-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--mkt-muted, #64748b); }
.mkt-faq .accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.08);
    color: var(--mkt-primary, #2563eb);
    box-shadow: none;
}
.mkt-faq .accordion-button:focus { box-shadow: none; border-color: rgba(37, 99, 235, 0.25); }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { --reveal-delay: 0.12s; }
.reveal-delay-2 { --reveal-delay: 0.24s; }

@media (max-width: 991.98px) {
    .mkt-dash-mock { transform: none; }
    .mkt-price-featured { transform: none; }
    .mkt-hero { padding-top: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .mkt-dash-mock { transform: none; transition: none; }
}
