/* ============================================================
   marketing.css — Buzstrike Global Marketing Styles (Hybrid Theme)
   v2.0 — Pro US SaaS Edition with Animations
   ============================================================ */

/* --- CSS Variables (Light Theme Base) --- */
:root {
    --mkt-bg:           #FFFFFF;
    --mkt-bg-alt:       #F9FAFB;
    --mkt-text-main:    #111827;
    --mkt-text-muted:   #4B5563;
    --mkt-border:       #E5E7EB;
    --mkt-navy:         #0F172A;

    /* Brand Accents */
    --mkt-blue:         #2563EB;
    --mkt-blue-light:   #EFF6FF;
    --mkt-cyan:         #06B6D4;
    --mkt-gradient:     linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --mkt-gradient-subtle: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(6,182,212,0.05) 100%);

    /* Shadows */
    --mkt-shadow-sm:    0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --mkt-shadow-md:    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --mkt-shadow-lg:    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --mkt-shadow-xl:    0 25px 50px -12px rgba(0, 0, 0, 0.1);

    /* Radius */
    --mkt-radius-sm:    8px;
    --mkt-radius:       12px;
    --mkt-radius-lg:    24px;
    --mkt-radius-pill:  9999px;

    /* Typography */
    --mkt-font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Global Reset for Marketing Pages --- */
body, html {
    margin: 0;
    padding: 0;
    font-family: var(--mkt-font);
    background-color: var(--mkt-bg);
    color: var(--mkt-text-main);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    color-scheme: light;
}

.mkt-main {
    min-height: 100vh;
    display: block;
}

/* --- Utility Classes --- */
.mkt-gradient-text {
    background: var(--mkt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mkt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mkt-blue-light);
    color: var(--mkt-blue);
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 6px 14px;
    border-radius: var(--mkt-radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Light Section Overrides */
.mkt-light-section {
    background-color: var(--mkt-bg-alt);
    color: var(--mkt-text-main);
    border-top: 1px solid var(--mkt-border);
    border-bottom: 1px solid var(--mkt-border);
}
.mkt-light-section .mkt-section-title { color: var(--mkt-text-main); }
.mkt-light-section .mkt-section-subtitle,
.mkt-light-section .mkt-text-muted { color: var(--mkt-text-muted); }
.mkt-light-section .mkt-badge {
    background: var(--mkt-blue-light);
    color: var(--mkt-blue);
    border-color: rgba(37, 99, 235, 0.1);
}

/* --- Buttons --- */
.mkt-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--mkt-text-main);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--mkt-radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    box-shadow: var(--mkt-shadow-md);
}
.mkt-btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(0,0,0,0.2);
}

.mkt-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--mkt-text-main);
    padding: 12px 24px;
    border-radius: var(--mkt-radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--mkt-border);
    box-shadow: var(--mkt-shadow-sm);
}
.mkt-btn-secondary:hover {
    background: var(--mkt-bg-alt);
    color: var(--mkt-text-main);
    transform: translateY(-1px);
}

.mkt-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--mkt-blue);
    border: 1px solid var(--mkt-border);
    padding: 12px 24px;
    border-radius: var(--mkt-radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--mkt-shadow-sm);
}
.mkt-btn-white:hover {
    box-shadow: var(--mkt-shadow-md);
    transform: translateY(-1px);
}

/* --- Section Spacing --- */
.mkt-section       { padding: 100px 0; }
.mkt-section-sm    { padding: 60px 0; }
.mkt-section-alt   { padding: 100px 0; background-color: var(--mkt-bg-alt); }

.mkt-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--mkt-text-main);
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.mkt-section-subtitle {
    font-size: 1.15rem;
    color: var(--mkt-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Cards --- */
.mkt-card {
    background: white;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
    padding: 36px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--mkt-shadow-sm);
    position: relative;
    overflow: hidden;
}
.mkt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--mkt-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
    pointer-events: none;
}
.mkt-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: 0 20px 40px -8px rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.3);
}

.mkt-card > * { position: relative; z-index: 1; }

.mkt-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--mkt-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--mkt-blue);
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.mkt-card:hover .mkt-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* --- NAVBAR (Light Glassmorphism) --- */
.mkt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}
.mkt-navbar.mkt-scrolled {
    border-bottom: 1px solid var(--mkt-border);
    box-shadow: var(--mkt-shadow-sm);
}

.mkt-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mkt-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--mkt-text-main);
}
.mkt-brand-logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkt-navbar-brand:hover .mkt-brand-logo-mark {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 18px rgba(37,99,235,0.45);
}
.mkt-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* On desktop the mobile panel is transparent to layout: its two children
   (.mkt-nav-links and .mkt-nav-actions) behave as if they were direct flex
   items of .mkt-navbar .container, same as before this wrapper existed. */
.mkt-mobile-panel { display: contents; }

.mkt-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.mkt-nav-links a {
    color: var(--mkt-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}
.mkt-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mkt-gradient);
    border-radius: 2px;
    transition: width 0.25s ease;
}
.mkt-nav-links a:hover::after,
.mkt-nav-links a.active::after { width: 100%; }
.mkt-nav-links a:hover, .mkt-nav-links a.active { color: var(--mkt-text-main); }

.mkt-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mkt-nav-login {
    color: var(--mkt-text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.mkt-nav-login:hover { color: var(--mkt-blue); }
.mkt-nav-cta {
    background: var(--mkt-gradient);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--mkt-radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.mkt-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
    color: #fff;
}

.mkt-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--mkt-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Responsive Navbar ---
   .mkt-nav-links and .mkt-nav-actions are wrapped in a single
   .mkt-mobile-panel so they flow together in one dropdown — no more
   guessing/hardcoding one block's height to position the other. */
@media (max-width: 991px) {
    .mkt-mobile-panel {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        border-bottom: 1px solid var(--mkt-border);
        box-shadow: var(--mkt-shadow-md);
        z-index: 1000;
    }
    .mkt-mobile-panel.mkt-open { display: flex; }

    .mkt-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .mkt-nav-links li a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid var(--mkt-border);
        font-size: 1.05rem;
    }

    .mkt-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 20px 24px;
    }
    .mkt-nav-actions .mkt-nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .mkt-nav-toggle { display: block; }
}

/* Backdrop behind the open mobile menu — click it to close */
.mkt-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 999;
    animation: mktBackdropFadeIn 0.2s ease;
}
@keyframes mktBackdropFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@media (min-width: 992px) {
    .mkt-nav-backdrop { display: none; }
}

/* Skip-to-content link — hidden until keyboard-focused */
.mkt-skip-link {
    position: absolute;
    top: -48px;
    left: 8px;
    z-index: 2000;
    background: #111827;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.2s ease;
}
.mkt-skip-link:focus {
    top: 8px;
}

/* --- FOOTER (Dark Theme Anchor) --- */
.mkt-footer {
    background-color: #0A0F1E;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 0 40px;
    color: #FFFFFF;
}
.mkt-footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}
.mkt-footer .mkt-brand-logo-mark {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    color: #FFFFFF;
}
.mkt-footer-tagline {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}
.mkt-footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mkt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mkt-footer-links li { margin-bottom: 12px; }
.mkt-footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.mkt-footer-links a:hover { color: #FFFFFF; }
.mkt-footer-social { display: flex; gap: 12px; }
.mkt-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.2s ease;
}
.mkt-social-btn:hover {
    background: rgba(37,99,235,0.2);
    color: #60A5FA;
    border-color: rgba(37,99,235,0.3);
    transform: translateY(-2px);
}
.mkt-footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 24px;
}
.mkt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 0.85rem;
}
.mkt-footer-bottom a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mkt-footer-bottom a:hover { color: #FFFFFF; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Fade Up (Intersection Observer driven) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mkt-animate-fade-up { opacity: 0; transform: translateY(28px); }
.mkt-animate-fade-up.mkt-animate-active {
    animation: fadeInUp 0.75s cubic-bezier(0.4,0,0.2,1) forwards;
}
.mkt-animate-delay-1 { animation-delay: 0.15s; }
.mkt-animate-delay-2 { animation-delay: 0.3s; }
.mkt-animate-delay-3 { animation-delay: 0.45s; }
.mkt-animate-delay-4 { animation-delay: 0.6s; }

/* Float (used on images) */
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Gradient orb slow drift */
@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.05); }
    66%  { transform: translate(-20px, 20px) scale(0.97); }
    100% { transform: translate(0, 0) scale(1); }
}

.mkt-animate-float { animation: float 5s ease-in-out infinite; }

/* Pulse ring */
@keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.mkt-pulse { animation: pulseRing 2.5s ease-out infinite; }

/* Gradient orb slow drift */
@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.05); }
    66%  { transform: translate(-20px, 20px) scale(0.97); }
    100% { transform: translate(0, 0) scale(1); }
}
.mkt-orb { animation: orbDrift 12s ease-in-out infinite; }
.mkt-orb-2 { animation: orbDrift 16s ease-in-out infinite reverse; }

/* Bar fill */
@keyframes barFill {
    from { width: 0%; }
}

/* Slide right (marquee) */
@keyframes marqueeSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Counter number pop */
@keyframes counterPop {
    0%   { transform: scale(0.8); opacity: 0; }
    60%  { transform: scale(1.05); }
    100% { transform: scale(1);   opacity: 1; }
}
.mkt-counter-active { animation: counterPop 0.5s ease-out forwards; }

/* Shimmer on stat cards */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Draw line (process connector) */
@keyframes drawLine {
    from { width: 0; }
    to   { width: 100%; }
}

/* ============================================================
   MARQUEE (Infinite Tech Logo Scroll)
   ============================================================ */
.mkt-marquee-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.mkt-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeSlide 28s linear infinite;
    gap: 0;
}
.mkt-marquee-track:hover { animation-play-state: paused; }
.mkt-marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: #9CA3AF;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: color 0.2s ease;
    user-select: none;
}
.mkt-marquee-item i { font-size: 1.3rem; }
.mkt-marquee-item:hover { color: #374151; }

/* ============================================================
   STATS BAR
   ============================================================ */
.mkt-stats-bar {
    background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.mkt-stats-bar::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.mkt-stat-item { text-align: center; padding: 20px 16px; min-height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mkt-stat-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.3;
    padding: 4px 0;
    background: linear-gradient(to right, #60A5FA, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
    width: 100%;
}
/* Counter spans inside mkt-stat-number also need gradient applied */
.mkt-stat-number .mkt-stat-counter {
    background: linear-gradient(to right, #60A5FA, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mkt-stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.mkt-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    align-self: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.mkt-testimonial-card {
    background: white;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--mkt-shadow-sm);
}
.mkt-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--mkt-blue-light);
    line-height: 1;
}
.mkt-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.2);
}
.mkt-testimonial-text {
    font-size: 1rem;
    color: var(--mkt-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.mkt-testimonial-stars { color: #F59E0B; margin-bottom: 16px; font-size: 0.9rem; }
.mkt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mkt-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; color: white;
    flex-shrink: 0;
}
.mkt-testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--mkt-text-main); }
.mkt-testimonial-role { font-size: 0.8rem; color: var(--mkt-text-muted); }

/* ============================================================
   HOW IT WORKS (Process Steps)
   ============================================================ */
.mkt-process-section { padding: 100px 0; background: var(--mkt-bg-alt); position: relative; overflow: hidden; }
.mkt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
/* Animated connector line */
.mkt-process-grid::before {
    content: '';
    position: absolute;
    top: 28px; left: calc(12.5%);
    width: 75%; height: 2px;
    background: linear-gradient(to right, var(--mkt-blue), var(--mkt-cyan));
    z-index: 0;
    transform-origin: left;
    animation: drawLine 1.5s ease-out 0.5s forwards;
    animation-play-state: paused;
}
.mkt-process-grid.mkt-animate-active::before {
    animation-play-state: running;
}
.mkt-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.mkt-process-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--mkt-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mkt-blue);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: var(--mkt-shadow-md);
}
.mkt-process-step.step-active .mkt-process-number {
    background: var(--mkt-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}
.mkt-process-icon {
    width: 48px; height: 48px;
    background: var(--mkt-blue-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--mkt-blue);
    margin-bottom: 16px;
    transition: transform 0.4s ease, background 0.4s ease;
}
.mkt-process-step:hover .mkt-process-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.15));
}
.mkt-process-step h5 { font-weight: 700; margin-bottom: 8px; color: var(--mkt-text-main); }
.mkt-process-step p  { font-size: 0.9rem; color: var(--mkt-text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 767px) {
    .mkt-process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .mkt-process-grid::before { display: none; }
}
@media (max-width: 480px) {
    .mkt-process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.mkt-pricing-card {
    background: white;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--mkt-shadow-sm);
    position: relative;
    overflow: hidden;
}
.mkt-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -8px rgba(0,0,0,0.1);
}
.mkt-pricing-featured {
    border: 2px solid var(--mkt-blue);
    transform: scale(1.04);
    box-shadow: 0 16px 40px -8px rgba(37,99,235,0.2);
}
.mkt-pricing-featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 28px 56px -8px rgba(37,99,235,0.3);
}
.mkt-pricing-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--mkt-gradient);
    color: white;
    padding: 5px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mkt-pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--mkt-text-main);
    margin: 20px 0;
}
.mkt-pricing-price span {
    font-size: 1.2rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
}
.mkt-pricing-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}
.mkt-pricing-list li {
    margin-bottom: 12px;
    color: var(--mkt-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mkt-pricing-list li i { color: var(--mkt-blue); }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.mkt-team-card {
    background: white;
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.mkt-team-card:hover {
    box-shadow: var(--mkt-shadow-lg);
    border-color: var(--mkt-blue-light);
}
.mkt-team-img {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--mkt-blue-light);
}

/* ============================================================
   DOT GRID PATTERN (Hero bg)
   ============================================================ */
.mkt-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   GRADIENT ORBS (Hero bg)
   ============================================================ */
.mkt-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}
.mkt-hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    animation: orbDrift 14s ease-in-out infinite;
}
.mkt-hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    animation: orbDrift 18s ease-in-out infinite reverse;
}

/* ============================================================
   FLOATING GLASSMORPHISM CARDS (Hero)
   ============================================================ */
.mkt-glass-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ============================================================
   LIVE METRICS TICKER (Hero floating badge)
   ============================================================ */
@keyframes tickerIn {
    0%   { opacity: 0; transform: translateY(10px); }
    20%  { opacity: 1; transform: translateY(0); }
    80%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
.mkt-ticker { animation: tickerIn 4s ease-in-out infinite; }
.mkt-ticker-2 { animation: tickerIn 4s ease-in-out 2s infinite; }

/* ============================================================
   GLOW SECTION DIVIDER
   ============================================================ */
.mkt-glow-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(37,99,235,0.5), rgba(6,182,212,0.5), transparent);
    border: none;
    margin: 0;
}
