/*
 * Alfvita-EPRO Marketing Styles
 * Modern, clean, high-conversion B2B SaaS landing page.
 */

:root {
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.1);
    
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    
    --success: #10b981;
    --amber: #f59e0b;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --surface: #ffffff;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.2);
    
    --max-width: 1240px;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

body.mk-body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.mk-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.mk-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
}

.mk-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mk-btn-secondary {
    background: white;
    color: var(--text-main);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.mk-btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.mk-btn-dark {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.mk-btn-dark:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.mk-btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* Navigation */
.mk-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.mk-nav.scrolled {
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.mk-nav .mk-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mk-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.mk-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mk-logo-mark {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.mk-footer-brand .mk-logo-mark {
    width: 32px;
    height: 32px;
}

.mk-brand:hover .mk-logo {
    transform: rotate(-5deg) scale(1.08);
}

.mk-brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.mk-nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mk-nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
}

.mk-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
    position: relative;
}

.mk-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.mk-link:hover {
    color: var(--text-main);
}

.mk-link:hover::after {
    width: 100%;
}

.mk-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mk-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mk-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mk-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mk-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.mk-hero {
    padding: calc(var(--nav-height) + 60px) 0 100px;
    background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.07) 0%, transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(139, 92, 246, 0.07) 0%, transparent 45%);
}

.mk-hero .mk-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mk-badge-wrapper {
    margin-bottom: 20px;
}

.mk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.mk-badge-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.mk-hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.mk-hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: -8px 0 16px;
    max-width: 600px;
}

.mk-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.65;
}

.mk-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.mk-hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mk-hero-trust p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mk-trust-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mk-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mk-trust-chip svg {
    color: var(--success);
}

/* Interactive Showcase Visual */
.mk-hero-visual {
    position: relative;
}

.mk-showcase-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mk-showcase-header {
    background: #f8fafc;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mk-dots {
    display: flex;
    gap: 6px;
}

.mk-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mk-showcase-tabs {
    display: flex;
    gap: 6px;
    background: #e2e8f0;
    padding: 3px;
    border-radius: var(--radius-sm);
}

.mk-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mk-tab-btn:hover {
    color: var(--text-main);
}

.mk-tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.mk-tab-panel {
    display: none;
}

.mk-tab-panel.active {
    display: block;
}

.mk-panel-inner {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    min-height: 280px;
}

/* Proposal Flow Tab Visual */
.mk-flow-visual-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mk-flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mk-flow-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: #e2e8f0;
    color: var(--text-main);
    text-align: center;
}

.mk-badge-ai {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
}

.mk-badge-pdf {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.mk-flow-mock-note {
    background: #fffbeb;
    border: 1px dashed #f59e0b;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 0.78rem;
    font-family: 'Courier New', Courier, monospace;
    color: #78350f;
    line-height: 1.5;
}

.mk-flow-mock-match {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.mk-match-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

.mk-match-row .dot.green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
}

.mk-match-row .price {
    margin-left: auto;
    color: var(--primary);
    font-weight: 700;
}

.mk-flow-mock-pdf {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mk-pdf-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.mk-pdf-btn {
    background: var(--success);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
}

.mk-flow-arrow {
    color: var(--primary-light);
    display: flex;
    align-items: center;
}

/* Inventory Tab Visual */
.mk-inv-visual-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mk-inv-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.mk-inv-title {
    font-weight: 800;
    color: var(--text-main);
}

.mk-inv-tag {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.72rem;
}

.mk-inv-table-preview {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.mk-table-head, .mk-table-row {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 0.9fr 0.9fr 1fr;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
}

.mk-table-head {
    background: #f1f5f9;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.mk-table-row {
    border-bottom: 1px solid #f1f5f9;
}

.mk-table-row:last-child {
    border-bottom: none;
}

.mk-table-row code {
    font-family: monospace;
    font-size: 0.72rem;
    background: #f1f5f9;
    padding: 2px 4px;
    border-radius: 4px;
    color: var(--text-main);
}

.mk-table-row .pill {
    background: #e0e7ff;
    color: var(--primary-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

.mk-table-row .pill-brand {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

/* Floating Cards */
.mk-floating-card {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.mk-card-1 {
    top: -18px;
    right: -18px;
    animation-delay: 0s;
}

.mk-card-2 {
    bottom: -18px;
    left: -18px;
    animation-delay: -3s;
}

.mk-floating-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mk-floating-icon--amber {
    background: linear-gradient(135deg, var(--amber), #d97706);
}

.mk-floating-text {
    display: flex;
    flex-direction: column;
}

.mk-floating-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.mk-floating-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Sections */
.mk-section {
    padding: 100px 0;
}

.bg-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mk-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.mk-section-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.mk-section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.mk-section-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pillars Section Grid */
.mk-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.mk-pillar-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mk-pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.mk-pillar-card--primary {
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.mk-pillar-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.mk-pillar-card--primary .mk-pillar-badge {
    background: var(--primary-glow);
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.2);
}

.mk-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg-alt);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.mk-pillar-card--primary .mk-pillar-icon {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.mk-pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.mk-pillar-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.mk-pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.mk-pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.mk-pillar-list li svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Feature Cards Grid */
.mk-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.mk-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mk-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.mk-card-icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mk-card:hover .mk-card-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.mk-card-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.mk-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.mk-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Steps Section */
.mk-steps-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.mk-step-item {
    position: relative;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mk-step-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.mk-step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 16px;
}

.mk-step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.mk-step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* FAQ Section */
.mk-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.mk-faq-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.mk-faq-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.mk-faq-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.mk-contact {
    background: var(--bg-alt);
}

.mk-contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.mk-contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mk-contact-btn:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.mk-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mk-contact-btn:hover .mk-contact-icon {
    transform: scale(1.08);
}

/* Phone Specific Style */
.mk-contact-btn-phone .mk-contact-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.mk-contact-btn-phone:hover {
    border-color: rgba(37, 99, 235, 0.4);
}

/* WhatsApp Specific Style */
.mk-contact-btn-whatsapp .mk-contact-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.mk-contact-btn-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

/* Email Specific Style */
.mk-contact-btn-email .mk-contact-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
}

.mk-contact-btn-email:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.mk-contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mk-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.mk-contact-detail {
    font-size: 0.92rem;
    color: var(--text-muted);
    word-break: break-word;
}

/* CTA Section */
.mk-cta {
    padding: 40px 0 100px;
}

.mk-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mk-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.mk-cta-box h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.mk-cta-box p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.mk-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Footer */
.mk-footer {
    padding: 80px 0 32px;
    background: white;
    border-top: 1px solid var(--border);
}

.mk-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.mk-footer-brand .mk-brand {
    margin-bottom: 20px;
}

.mk-footer-brand p {
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 380px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.mk-social-links {
    display: flex;
    gap: 12px;
}

.mk-social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--border);
}

.mk-social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.mk-footer-links {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.mk-footer-col h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.mk-footer-col a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.mk-footer-col a:hover {
    color: var(--primary);
}

.mk-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.88rem;
}

.mk-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mk-back-to-top:hover {
    color: var(--primary);
}

/* Animations */
.mk-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

    .mk-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .mk-hero .mk-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .mk-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mk-lead, .mk-hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .mk-hero-trust {
        align-items: center;
    }

    .mk-trust-chips {
        justify-content: center;
    }
    
    .mk-hero-visual {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }
    
    .mk-footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mk-contact-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .mk-nav-actions {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--border);
    }

    .mk-nav-actions.active {
        display: flex;
    }

    .mk-nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .mk-nav-buttons .mk-btn {
        width: 100%;
    }
    
    .mk-menu-toggle {
        display: flex;
    }

    .mk-hero {
        padding-top: calc(var(--nav-height) + 30px);
    }
    
    .mk-hero h1 {
        font-size: 2.4rem;
    }
    
    .mk-hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .mk-btn-lg {
        width: 100%;
    }

    .mk-pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .mk-footer-links {
        flex-direction: column;
        gap: 28px;
    }
    
    .mk-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .mk-floating-card {
        display: none;
    }

    .mk-table-head, .mk-table-row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.7rem;
    }

    .mk-table-head span:nth-child(3),
    .mk-table-head span:nth-child(4),
    .mk-table-row span:nth-child(3),
    .mk-table-row span:nth-child(4) {
        display: none;
    }

    .mk-flow-visual-box {
        flex-direction: column;
    }

    .mk-flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .mk-wrap {
        padding: 0 16px;
    }

    .mk-cta-box {
        padding: 48px 20px;
    }

    .mk-pillar-card {
        padding: 24px;
    }
}
