/* NavTour Marketing — Premium Design System */

/* ========== Design Tokens ========== */
:root {
    /* Brand — NavTour Navy/Coral */
    --nt-primary: #1E3A5F;
    --nt-primary-dark: #152D4A;
    --nt-primary-deeper: #0F2035;
    --nt-primary-light: #E8EFF7;
    --nt-primary-subtle: #F0F4F9;
    --nt-accent: #E8523F;
    --nt-accent-dark: #D4412F;
    --nt-accent-light: #FDE8E5;

    --nt-success: #059669;
    --nt-warning: #D97706;
    --nt-error: #DC2626;

    /* Neutrals — blue-hued, never pure gray */
    --neutral-950: #0B1929;
    --neutral-800: #1E3A5F;
    --neutral-700: #2D4A6F;
    --neutral-600: #475B73;
    --neutral-500: #64748B;
    --neutral-400: #94A3B8;
    --neutral-300: #CBD5E1;
    --neutral-200: #E2E8F0;
    --neutral-100: #F1F5F9;
    --neutral-50: #F8FAFC;

    /* Semantic */
    --success: #2E7D32;
    --error: #C62828;

    /* Surfaces */
    --surface-primary: #FFFFFF;
    --surface-secondary: var(--neutral-50);
    --surface-tertiary: var(--nt-primary-subtle);

    /* Text */
    --text-primary: var(--neutral-950);
    --text-secondary: var(--neutral-600);
    --text-tertiary: var(--neutral-500);
    --text-link: var(--nt-primary);
    --text-link-hover: var(--nt-primary-dark);

    /* Typography */
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Spacing — 4px grid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(11, 25, 41, 0.05);
    --shadow-sm: 0 1px 3px rgba(11, 25, 41, 0.08), 0 1px 2px rgba(11, 25, 41, 0.04);
    --shadow-md: 0 4px 6px rgba(11, 25, 41, 0.06), 0 2px 4px rgba(11, 25, 41, 0.04);
    --shadow-lg: 0 10px 24px rgba(11, 25, 41, 0.08), 0 4px 8px rgba(11, 25, 41, 0.04);
    --shadow-xl: 0 20px 48px rgba(11, 25, 41, 0.10), 0 8px 16px rgba(11, 25, 41, 0.04);
    --shadow-glow: 0 0 0 1px rgba(30, 58, 95, 0.08), 0 4px 16px rgba(30, 58, 95, 0.12);

    /* Radius */
    --radius-sm: 4px;
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Layout */
    --max-width: 1120px;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.1, 0.9, 0.2, 1);
}

/* ========== Reset & Base ========== */
.mkt * { box-sizing: border-box; margin: 0; padding: 0; }
.mkt {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mkt a { color: var(--text-link); text-decoration: none; }
.mkt a:hover { color: var(--text-link-hover); }
.mkt img { max-width: 100%; height: auto; }

/* ========== Typography ========== */
.mkt h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
    color: var(--text-primary);
}
.mkt h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-tight);
    letter-spacing: -0.015em;
    color: var(--text-primary);
}
.mkt h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}
.mkt h4 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}
.mkt p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}
.mkt .text-sm { font-size: var(--text-sm); }
.mkt .text-center { text-align: center; }
.mkt .text-constrain { max-width: 680px; }
.mkt .text-constrain-sm { max-width: 560px; }

/* ========== Layout ========== */
.mkt-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}
.mkt-section {
    padding: var(--space-32) var(--space-6);
}
.mkt-section-alt {
    padding: var(--space-32) var(--space-6);
    background: var(--surface-secondary);
}

/* ========== Grid ========== */
.mkt-grid { display: grid; gap: var(--space-8); }
.mkt-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mkt-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mkt-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========== Buttons ========== */
.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    font-family: var(--font-body);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: background 150ms ease, transform 100ms ease, box-shadow 200ms ease, border-color 150ms ease;
}
.mkt-btn:active { transform: scale(0.98); }
.mkt-btn:focus-visible {
    outline: 2px solid var(--nt-primary);
    outline-offset: 2px;
}
.mkt-btn-primary {
    background: var(--nt-primary);
    color: #fff;
    border-color: var(--nt-primary);
}
.mkt-btn-primary:hover {
    background: var(--nt-primary-dark);
    border-color: var(--nt-primary-dark);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.mkt-btn-secondary {
    background: transparent;
    color: var(--nt-primary);
    border-color: var(--neutral-300);
}
.mkt-btn-secondary:hover {
    background: var(--neutral-50);
    border-color: var(--neutral-400);
    color: var(--nt-primary);
}
.mkt-btn-cta {
    background: var(--nt-accent);
    color: var(--neutral-950);
    border-color: var(--nt-accent);
}
.mkt-btn-cta:hover {
    background: var(--nt-accent-dark);
    border-color: var(--nt-accent-dark);
    color: var(--neutral-950);
}
.mkt-btn-lg { padding: 14px 32px; font-size: var(--text-base); }
.mkt-btn-sm { padding: 6px 16px; font-size: var(--text-xs); }

/* Keep old class names working */
.mkt-btn-outline {
    background: transparent;
    color: var(--nt-primary);
    border-color: var(--neutral-300);
}
.mkt-btn-outline:hover {
    background: var(--neutral-50);
    border-color: var(--neutral-400);
    color: var(--nt-primary);
}

/* ========== Cards ========== */
.mkt-card {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms var(--ease-out-expo), box-shadow 250ms var(--ease-out-expo);
}
.mkt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mkt-card-featured {
    background: var(--surface-primary);
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-glow);
}

/* ========== Hero ========== */
.mkt-hero {
    min-height: 80vh;
    min-height: max(80vh, 600px);
    display: flex;
    align-items: center;
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}
.mkt-hero .mkt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.mkt-hero-content { max-width: 540px; }
.mkt-hero-sub {
    font-size: var(--text-xl);
    color: var(--text-tertiary);
    margin-top: var(--space-5);
    line-height: var(--leading-snug);
    font-weight: var(--weight-regular);
}
.mkt-hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-10);
    flex-wrap: wrap;
}

/* ========== Feature Card ========== */
.mkt-feature-card {
    text-align: left;
}
.mkt-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-primary);
    margin-bottom: var(--space-5);
    font-size: 1.5rem;
}
.mkt-feature-card h3 {
    margin-bottom: var(--space-3);
}
.mkt-feature-card p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

/* ========== Pricing Card ========== */
.mkt-pricing-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: var(--space-10);
}
.mkt-pricing-card h3 {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-4);
}
.mkt-pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}
.mkt-pricing-amount {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.mkt-pricing-period {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    font-weight: var(--weight-regular);
}
.mkt-pricing-desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--neutral-200);
}
.mkt-pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    flex: 1;
}
.mkt-pricing-features li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding-left: var(--space-6);
    position: relative;
}
.mkt-pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--nt-primary-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M5.5 9.5L3 7l-.7.7L5.5 11l7-7-.7-.7L5.5 9.5z' fill='%231E3A5F'/%3E%3C/svg%3E");
}
.mkt-pricing-highlighted {
    border-color: var(--nt-accent);
    border-top: 4px solid var(--nt-accent);
    box-shadow: var(--shadow-glow);
    position: relative;
}
.mkt-pricing-highlighted::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--nt-accent-light);
    color: var(--nt-accent-dark);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}
.mkt-pricing-highlighted:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========== CTA Section ========== */
.mkt-cta-section {
    background: var(--nt-primary-light);
}
.mkt-cta-section h2 {
    margin-bottom: var(--space-3);
}
.mkt-cta-section p {
    max-width: 480px;
    margin: 0 auto;
}

/* ========== Image Placeholders ========== */
.mkt-placeholder {
    background: linear-gradient(135deg, var(--nt-primary-light) 0%, var(--neutral-100) 100%);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    box-shadow: var(--shadow-lg);
}
.mkt-placeholder-hero { width: 100%; height: 420px; }
.mkt-placeholder-feature { width: 100%; height: 320px; }
.mkt-placeholder-logo {
    width: 120px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    box-shadow: none;
}

/* ========== Comparison Table ========== */
.mkt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}
.mkt-table thead tr {
    border-bottom: 2px solid var(--neutral-200);
}
.mkt-table th {
    padding: var(--space-4) var(--space-5);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    color: var(--text-primary);
}
.mkt-table th:first-child { text-align: left; width: 40%; }
.mkt-table th:not(:first-child) { text-align: center; }
.mkt-table th.highlighted {
    background: var(--nt-primary-subtle);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.mkt-table td {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--neutral-100);
}
.mkt-table td:first-child {
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}
.mkt-table td:not(:first-child) { text-align: center; }
.mkt-table td.highlighted { background: var(--nt-primary-subtle); }
.mkt-table tbody tr:hover { background: var(--neutral-50); }
.mkt-table tbody tr:hover td.highlighted { background: var(--nt-primary-light); }
.mkt-check { color: var(--nt-primary); font-weight: var(--weight-bold); }
.mkt-dash { color: var(--neutral-300); }
.mkt-table-category td {
    background: var(--neutral-50);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    font-size: var(--text-sm);
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--neutral-200);
}
.mkt-table-category td.highlighted { background: color-mix(in srgb, var(--nt-primary-subtle), var(--neutral-50) 50%); }
.mkt-pricing-annual-note { font-size: var(--text-sm); color: var(--nt-primary); font-weight: var(--weight-medium); margin-top: var(--space-1); }

/* ========== FAQ Accordion ========== */
.mkt-faq {
    border-bottom: 1px solid var(--neutral-200);
}
.mkt-faq summary {
    cursor: pointer;
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    color: var(--text-primary);
    padding: var(--space-5) 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after {
    content: '+';
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--neutral-400);
    transition: transform 200ms ease;
    flex-shrink: 0;
    margin-left: var(--space-4);
}
.mkt-faq[open] summary::after {
    content: '\2212';
}
.mkt-faq p {
    font-size: var(--text-base);
    padding-bottom: var(--space-5);
}

/* ========== Form Inputs ========== */
.mkt-input {
    width: 100%;
    padding: 10px 14px;
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-primary);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}
.mkt-input:hover { border-color: var(--neutral-400); }
.mkt-input:focus {
    border-color: var(--nt-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
    outline: none;
}
.mkt-input::placeholder { color: var(--neutral-400); }
.mkt-label {
    display: block;
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

/* ========== Section Heading ========== */
.mkt-section-heading {
    text-align: center;
    margin-bottom: var(--space-16);
}
.mkt-section-heading h2 {
    margin-bottom: var(--space-4);
}
.mkt-section-heading p {
    max-width: 560px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* ========== Eyebrow Label ========== */
.mkt-eyebrow {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--nt-primary);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-3);
}

/* ========== Benefit List ========== */
.mkt-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-6);
}
.mkt-benefits li {
    font-size: var(--text-base);
    color: var(--text-secondary);
    padding-left: var(--space-6);
    position: relative;
}
.mkt-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--nt-primary-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M5.5 9.5L3 7l-.7.7L5.5 11l7-7-.7-.7L5.5 9.5z' fill='%231E3A5F'/%3E%3C/svg%3E");
}

/* ========== Metrics Row ========== */
.mkt-metrics {
    display: flex;
    gap: var(--space-16);
    justify-content: center;
    flex-wrap: wrap;
}
.mkt-metric-value {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--nt-primary);
    letter-spacing: -0.02em;
}
.mkt-metric-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-1);
}

/* ========== Step Indicator ========== */
.mkt-step-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--nt-primary);
    color: var(--nt-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-5);
}

/* ========== Social Proof Bar ========== */
.mkt-social-proof {
    padding: var(--space-10) var(--space-6);
    background: var(--surface-secondary);
    border-top: 1px solid var(--neutral-100);
    border-bottom: 1px solid var(--neutral-100);
}
.mkt-social-proof p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-6);
}
.mkt-logo-row {
    display: flex;
    gap: var(--space-10);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.5;
}

/* ========== Success Alert ========== */
.mkt-alert-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-8);
    text-align: center;
}
.mkt-alert-success h3 { color: var(--success); }
.mkt-alert-success p { color: var(--success); font-size: var(--text-base); margin-top: var(--space-2); }

/* ========== Link Underline Reveal ========== */
.mkt-link-reveal {
    text-decoration: none;
    background-image: linear-gradient(var(--nt-primary), var(--nt-primary));
    background-size: 0% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 300ms ease;
    padding-bottom: 2px;
}
.mkt-link-reveal:hover { background-size: 100% 2px; }

/* ========== Scroll Reveal Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease-out-expo),
                transform 600ms var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 400ms var(--ease-out-expo),
                transform 400ms var(--ease-out-expo);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========== Testimonial ========== */
.mkt-testimonial {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}
.mkt-testimonial blockquote {
    font-size: var(--text-lg);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    font-style: italic;
    margin-bottom: var(--space-6);
    position: relative;
    padding-left: var(--space-6);
    border-left: 3px solid var(--nt-primary);
}
.mkt-testimonial-attribution {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.mkt-testimonial-name {
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    color: var(--text-primary);
}
.mkt-testimonial-role {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}
.mkt-testimonial-metric {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--neutral-100);
}
.mkt-testimonial-metric-value {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--nt-primary);
}
.mkt-testimonial-metric-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}
.mkt-testimonial-featured {
    background: var(--surface-primary);
    border: 1px solid rgba(30, 58, 95, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-12) var(--space-10);
    box-shadow: var(--shadow-glow);
    text-align: center;
}
.mkt-testimonial-featured blockquote {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    line-height: var(--leading-snug);
    font-style: italic;
    margin-bottom: var(--space-8);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    padding-left: 0;
}

/* ========== Metric Card ========== */
.mkt-metric-card {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 250ms var(--ease-out-expo), box-shadow 250ms var(--ease-out-expo);
}
.mkt-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mkt-metric-card-value {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--nt-primary);
    letter-spacing: -0.02em;
    line-height: var(--leading-tight);
}
.mkt-metric-card-label {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-top: var(--space-2);
}
.mkt-metric-card-source {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-3);
}

/* ========== Logo Grid ========== */
.mkt-logo-grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
    justify-items: center;
}
.mkt-logo-grid-4 { grid-template-columns: repeat(4, 1fr); }
.mkt-logo-grid-6 { grid-template-columns: repeat(6, 1fr); }
.mkt-logo-grid-8 { grid-template-columns: repeat(8, 1fr); }
.mkt-logo-grid-item {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--neutral-500);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 200ms ease;
}
.mkt-logo-grid-item:hover { opacity: 1; }

/* ========== Buyer Journey Card ========== */
.mkt-buyer-journey-card {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms var(--ease-out-expo), box-shadow 250ms var(--ease-out-expo);
}
.mkt-buyer-journey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mkt-buyer-journey-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-primary);
    margin-bottom: var(--space-4);
}
.mkt-buyer-journey-card h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}
.mkt-buyer-journey-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

/* ========== Comparison Mini Table ========== */
.mkt-comparison-mini {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}
.mkt-comparison-mini th {
    padding: var(--space-3) var(--space-4);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    border-bottom: 2px solid var(--neutral-200);
    text-align: left;
}
.mkt-comparison-mini th:not(:first-child) { text-align: center; }
.mkt-comparison-mini td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--neutral-100);
    color: var(--text-secondary);
}
.mkt-comparison-mini td:first-child {
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}
.mkt-comparison-mini td:not(:first-child) { text-align: center; }
.mkt-comparison-mini .mkt-highlight {
    color: var(--nt-primary);
    font-weight: var(--weight-semibold);
}

/* ========== Trust Badges ========== */
.mkt-trust-badges {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.mkt-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
}
.mkt-trust-badge svg {
    color: var(--nt-primary);
    flex-shrink: 0;
}

/* ========== Nav Dropdown ========== */
.mkt-nav-group {
    position: relative;
}
.mkt-nav-group-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    transition: color 150ms ease;
}
.mkt-nav-group-label:hover { color: var(--nt-primary); }
.mkt-nav-group-label svg {
    transition: transform 200ms ease;
}
.mkt-nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2) 0;
    min-width: 200px;
    z-index: 110;
}
.mkt-nav-group:hover .mkt-nav-dropdown,
.mkt-nav-group:focus-within .mkt-nav-dropdown {
    display: block;
}
.mkt-nav-group:hover .mkt-nav-group-label svg {
    transform: rotate(180deg);
}
.mkt-nav-dropdown a {
    display: block;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}
.mkt-nav-dropdown a:hover {
    background: var(--neutral-50);
    color: var(--nt-primary);
}

/* ========== Integration Card ========== */
.mkt-integration-card {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms var(--ease-out-expo), box-shadow 250ms var(--ease-out-expo);
}
.mkt-integration-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.mkt-integration-icon {
    width: 48px;
    height: 48px;
    background: var(--nt-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-primary);
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
}
.mkt-integration-card h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}
.mkt-integration-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ========== Timeline ========== */
.mkt-timeline {
    position: relative;
    padding-left: var(--space-8);
}
.mkt-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neutral-200);
}
.mkt-timeline-item {
    position: relative;
    padding-bottom: var(--space-10);
}
.mkt-timeline-item:last-child { padding-bottom: 0; }
.mkt-timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-8) - 4px);
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nt-primary);
    border: 2px solid var(--surface-primary);
}
.mkt-timeline-year {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--nt-primary);
    margin-bottom: var(--space-1);
}
.mkt-timeline-item h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}
.mkt-timeline-item p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ========== Values Grid ========== */
.mkt-value-card {
    padding: var(--space-6);
}
.mkt-value-card h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}
.mkt-value-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ========== Alternating Step/Feature Rows ========== */
.mkt-step-row {
    display: flex;
    align-items: center;
    gap: var(--space-16);
}
.mkt-step-row:nth-child(even) {
    flex-direction: row-reverse;
}
.mkt-step-row-content {
    flex: 1;
}
.mkt-step-row-visual {
    flex: 1;
}
.mkt-step-row-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}
.mkt-step-row-content p {
    font-size: var(--text-lg);
    max-width: 480px;
}
.mkt-step-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--nt-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
    .mkt-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .mkt-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .mkt-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
    .mkt h1 { font-size: var(--text-4xl); }
    .mkt h2 { font-size: var(--text-2xl); }
    .mkt-section { padding: var(--space-20) var(--space-6); }
    .mkt-section-alt { padding: var(--space-20) var(--space-6); }
    .mkt-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mkt-hero .mkt-container { grid-template-columns: 1fr; }
    .mkt-hero { min-height: auto; padding-top: var(--space-20); padding-bottom: var(--space-16); }
    .mkt-hero-content { max-width: 100%; }
    .mkt-placeholder-hero { height: 300px; }
    .mkt-metrics { gap: var(--space-10); }
    .mkt-logo-grid-8 { grid-template-columns: repeat(4, 1fr); }
    .mkt-nav-dropdown { position: static; box-shadow: none; border: none; padding-left: var(--space-4); min-width: auto; }
    .mkt-nav-group:hover .mkt-nav-dropdown, .mkt-nav-group:focus-within .mkt-nav-dropdown { display: block; }
    .mkt-step-row { flex-direction: column; gap: var(--space-8); }
    .mkt-step-row:nth-child(even) { flex-direction: column; }
}

@media (max-width: 767px) {
    .mkt h1 { font-size: var(--text-3xl); }
    .mkt h2 { font-size: var(--text-2xl); }
    .mkt-section { padding: var(--space-16) var(--space-5); }
    .mkt-section-alt { padding: var(--space-16) var(--space-5); }
    .mkt-grid-2, .mkt-grid-3, .mkt-grid-4 { grid-template-columns: 1fr; }
    .mkt-hero-actions { flex-direction: column; }
    .mkt-hero-actions .mkt-btn { width: 100%; }
    .mkt-pricing-card { padding: var(--space-8); }
    .mkt-metrics { gap: var(--space-8); }
    .mkt-social-proof { padding: var(--space-8) var(--space-5); }
    .mkt-logo-grid-4, .mkt-logo-grid-6, .mkt-logo-grid-8 { grid-template-columns: repeat(2, 1fr); }
    .mkt-testimonial-featured blockquote { font-size: var(--text-lg); }
    .mkt-testimonial-featured { padding: var(--space-8) var(--space-6); }
    .mkt-comparison-mini { font-size: var(--text-xs); }
    .mkt-comparison-mini th, .mkt-comparison-mini td { padding: var(--space-2) var(--space-3); }
    .mkt-trust-badges { gap: var(--space-4); }
    .mkt-timeline { padding-left: var(--space-6); }
}

/* ========== Blog Card ========== */
.mkt-blog-card {
    background: var(--surface-primary);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 250ms var(--ease-out-expo), box-shadow 250ms var(--ease-out-expo);
}
.mkt-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.mkt-blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--nt-primary-light) 0%, var(--neutral-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
}
.mkt-blog-card-body { padding: var(--space-6); }
.mkt-blog-card-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--nt-primary);
    background: var(--nt-primary-light);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: var(--space-3);
}
.mkt-blog-card-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-snug);
}
.mkt-blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mkt-blog-card-meta {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}
.mkt-blog-categories {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}
.mkt-blog-categories a {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    border: 1px solid var(--neutral-200);
    text-decoration: none;
    transition: background 150ms, border-color 150ms, color 150ms;
}
.mkt-blog-categories a:hover,
.mkt-blog-categories a.active {
    background: var(--nt-primary-light);
    border-color: var(--nt-primary);
    color: var(--nt-primary);
}

/* ========== Skip Link ========== */
.mkt-skip-link {
    position: absolute;
    left: -9999px;
    top: var(--space-4);
    z-index: 200;
    background: var(--nt-primary);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
}
.mkt-skip-link:focus {
    left: var(--space-4);
    color: white;
}

/* ========== Focus Visible ========== */
.mkt a:focus-visible,
.mkt button:focus-visible,
.mkt input:focus-visible,
.mkt select:focus-visible,
.mkt textarea:focus-visible {
    outline: 2px solid var(--nt-primary);
    outline-offset: 2px;
}

@media (max-width: 639px) {
    .mkt h1 { font-size: 1.875rem; }
}
