:root {
    --mkt-primary: #5b4cdb;
    --mkt-primary-dark: #4538b8;
    --mkt-indigo: #1e1b4b;
    --mkt-accent: #22c55e;
    --mkt-gradient: linear-gradient(135deg, #1e1b4b 0%, #5b4cdb 55%, #7c3aed 100%);
}

body.mkt-body { background: #fff; color: #1f2937; }
.mkt-main { width: 100%; }

.mkt-nav {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(91,76,219,.1);
    padding-top: .4rem;
    padding-bottom: .4rem;
}
.mkt-nav .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(91,76,219,.2); }
.mkt-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: .1rem 0;
    flex-shrink: 0;
    max-width: min(360px, 78vw);
}
.mkt-brand-logo {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.mkt-footer-logo-wrap {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: .5rem .75rem;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    margin-bottom: .25rem;
}
.mkt-footer-logo {
    height: 56px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}
@media (min-width: 992px) {
    .mkt-nav { padding-top: .4rem; padding-bottom: .4rem; }
    .mkt-brand { max-width: 380px; }
    .mkt-brand-logo { height: 56px; }
    .mkt-footer-logo { height: 64px; max-width: 340px; }
}
@media (max-width: 991px) {
    .mkt-brand-logo { height: 44px; }
    .mkt-footer-logo { height: 52px; max-width: 280px; }
}
@media (max-width: 575px) {
    .mkt-brand { max-width: min(260px, 70vw); }
    .mkt-brand-logo { height: 40px; }
    .mkt-footer-logo { height: 48px; max-width: 250px; }
}
.mkt-nav .nav-link { color: #4b5563; font-weight: 500; }
.mkt-nav .nav-link:hover, .mkt-nav .nav-link.active { color: var(--mkt-primary); }

.mkt-hero {
    background: var(--mkt-gradient);
    color: #fff;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
    position: relative;
}
.mkt-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 50%);
    pointer-events: none;
}
.mkt-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
.mkt-hero .lead { opacity: .92; font-size: 1.15rem; max-width: 540px; }
.mkt-hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px; padding: .35rem 1rem; font-size: .85rem; margin-bottom: 1rem;
}

.mkt-device-stage { position: relative; min-height: 340px; }
.mkt-laptop {
    background: #1f2937; border-radius: 12px 12px 0 0; padding: 8px 8px 0;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    max-width: 520px; margin-left: auto;
}
.mkt-laptop-screen {
    background: #f3f4f8; border-radius: 6px 6px 0 0;
    overflow: hidden; aspect-ratio: 16/10;
}
.mkt-laptop-base {
    height: 14px; background: linear-gradient(#374151,#1f2937);
    border-radius: 0 0 8px 8px; margin: 0 -20px;
}
.mkt-phone {
    position: absolute; left: 0; bottom: -10px; width: 150px;
    background: #111; border-radius: 24px; padding: 10px 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
    border: 3px solid #374151;
}
.mkt-phone-screen {
    background: #fff; border-radius: 16px; overflow: hidden;
    aspect-ratio: 9/16; font-size: 7px;
}

.mkt-section { padding: 4.5rem 0; }
.mkt-section-compact { padding: 2.5rem 0; }
.mkt-section-alt { background: #f8f9fc; }
.mkt-section-title { font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: .5rem; }
.mkt-section-sub { color: #6b7280; max-width: 640px; margin: 0 auto 2.5rem; }

.mkt-card {
    border: none; border-radius: 16px;
    box-shadow: 0 4px 24px rgba(91,76,219,.08);
    height: 100%; transition: transform .2s, box-shadow .2s;
}
.mkt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91,76,219,.14); }
.mkt-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #ede9fe; color: var(--mkt-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.mkt-workflow-step {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem; background: #fff; border-radius: 14px;
    border: 1px solid #e5e7eb; height: 100%;
}
.mkt-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--mkt-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}

.mkt-screenshot {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(30,27,75,.12);
    border: 1px solid #e5e7eb; background: #f3f4f8;
}
.mkt-screenshot-caption {
    padding: .75rem 1rem; background: #fff;
    border-top: 1px solid #e5e7eb; font-size: .875rem;
}
.mkt-screenshot-caption strong { color: var(--mkt-indigo); }

/* In-page UI mockups (mirror real app) */
.mock-ui { font-size: 11px; line-height: 1.3; text-align: left; }
.mock-ui-bar { background: var(--mkt-indigo); color: #fff; padding: 6px 10px; font-weight: 600; font-size: 10px; }
.mock-ui-body { padding: 10px; }
.mock-stat { background: #fff; border-radius: 8px; padding: 8px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.mock-stat .val { font-size: 16px; font-weight: 800; color: var(--mkt-primary); }
.mock-stat .lbl { font-size: 8px; color: #6b7280; text-transform: uppercase; }
.mock-btn { background: var(--mkt-primary); color: #fff; border-radius: 8px; padding: 8px; text-align: center; font-weight: 600; margin-top: 6px; }
.mock-btn-green { background: var(--mkt-accent); }
.mock-face-ring {
    width: 64px; height: 64px; border-radius: 50%;
    border: 3px solid var(--mkt-accent); margin: 8px auto;
    background: linear-gradient(135deg,#ddd,#bbb);
    position: relative;
}
.mock-face-ring::after {
    content: '✓'; position: absolute; bottom: -4px; right: -4px;
    background: var(--mkt-accent); color: #fff; width: 20px; height: 20px;
    border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.mock-kiosk { background: #1e1b4b; color: #fff; padding: 12px; min-height: 180px; }
.mock-kiosk .code-input {
    background: rgba(255,255,255,.1); border-radius: 8px;
    padding: 10px; text-align: center; font-size: 18px; letter-spacing: 6px; margin: 10px 0;
}
.mock-table { width: 100%; font-size: 8px; }
.mock-table th { background: #ede9fe; padding: 4px; }
.mock-table td { padding: 4px; border-bottom: 1px solid #e5e7eb; background: #fff; }

.mkt-cta {
    background: var(--mkt-gradient); color: #fff;
    border-radius: 20px; padding: 3rem 2rem; text-align: center;
}
.mkt-footer {
    background: var(--mkt-indigo);
    color: rgba(255,255,255,.85);
    padding: 3.5rem 0 1.25rem;
    margin-top: auto;
}
.mkt-footer a { color: rgba(255,255,255,.92); text-decoration: none; }
.mkt-footer a:hover { color: #fff; }
.mkt-footer-heading { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; }
.mkt-footer-text { color: rgba(255,255,255,.75); }
.mkt-footer-links li,
.mkt-footer-contact li { margin-bottom: .55rem; }
.mkt-footer-links a,
.mkt-footer-contact a { transition: color .15s; }
.mkt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    padding-bottom: .5rem;
}
.mkt-footer-social .mkt-social-btn {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: background .2s, transform .2s;
}
.mkt-footer-social .mkt-social-btn:hover {
    background: rgba(255,255,255,.2); color: #fff; transform: translateY(-2px);
}

.mkt-contact-card {
    background: #fff; border-radius: 16px; padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(91,76,219,.08);
    border: 1px solid rgba(91,76,219,.06);
}
.mkt-contact-card-accent {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: rgba(91,76,219,.12);
}
.mkt-contact-card-head {
    display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem;
}
.mkt-contact-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: #ede9fe; color: var(--mkt-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.mkt-contact-link {
    color: var(--mkt-indigo); font-weight: 600; text-decoration: none;
}
.mkt-contact-link:hover { color: var(--mkt-primary); }
.mkt-contact-pill {
    display: flex; align-items: flex-start; gap: .85rem; text-align: left;
    background: #fff; border-radius: 14px; padding: 1.25rem 1.35rem;
    border: 1px solid #e5e7eb; height: 100%;
    box-shadow: 0 2px 12px rgba(91,76,219,.05);
}
.mkt-contact-pill i {
    font-size: 1.35rem; color: var(--mkt-primary); margin-top: .15rem;
}
.mkt-contact-pill strong { display: block; color: var(--mkt-indigo); margin-bottom: .15rem; }
.mkt-contact-pill span { color: #6b7280; font-size: .9rem; }
.mkt-contact-pill a { color: var(--mkt-primary); font-weight: 600; text-decoration: none; }
.mkt-contact-pill a:hover { text-decoration: underline; }

.mkt-map-card {
    border-radius: 18px; overflow: hidden;
    background: #fff; border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(91,76,219,.08);
}
.mkt-map-embed {
    width: 100%; min-height: 320px; height: 100%; border: 0; display: block;
}
.mkt-map-meta li {
    display: flex; align-items: flex-start; gap: .65rem;
    margin-bottom: .85rem; color: #4b5563; font-size: .95rem;
}
.mkt-map-meta i { margin-top: .15rem; }
.mkt-about-value {
    text-align: center; padding: 2rem 1.5rem;
    background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; height: 100%;
}
.mkt-about-value i { font-size: 2rem; color: var(--mkt-primary); margin-bottom: 1rem; }

.mkt-module-row { align-items: center; }
.mkt-module-row:nth-child(even) { flex-direction: row-reverse; }
.mkt-module-row:nth-child(even) > div:first-child { text-align: right; }
@media (max-width: 991px) {
    .mkt-module-row, .mkt-module-row:nth-child(even) { flex-direction: column; }
    .mkt-module-row:nth-child(even) > div:first-child { text-align: left; }
    .mkt-phone { width: 120px; left: 10px; }
}

.mkt-pricing-card { border: 2px solid transparent; transition: border-color .2s; }
.mkt-pricing-card.featured { border-color: var(--mkt-primary); position: relative; }
.mkt-pricing-card.featured::before {
    content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--mkt-primary); color: #fff; font-size: .75rem; font-weight: 600;
    padding: .2rem .75rem; border-radius: 999px;
}
.mkt-pricing-features { min-height: 180px; }

.mkt-trust-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.75rem 0;
}
.mkt-trust-stat { padding: .5rem; }
.mkt-trust-num {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--mkt-primary);
    line-height: 1.2;
}
.mkt-trust-label {
    display: block;
    font-size: .85rem;
    color: #6b7280;
    margin-top: .15rem;
}

.mkt-feature-tabs .nav-link {
    color: #4b5563;
    font-weight: 600;
    border-radius: 999px;
    padding: .55rem 1.25rem;
    margin: .15rem;
    border: 1px solid #e5e7eb;
    background: #fff;
}
.mkt-feature-tabs .nav-link.active {
    background: var(--mkt-primary);
    border-color: var(--mkt-primary);
    color: #fff;
}
.mkt-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mkt-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .85rem;
    color: #374151;
    font-size: .95rem;
}
.mkt-feature-list i {
    color: var(--mkt-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.mkt-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.mkt-benefit-card:hover {
    box-shadow: 0 8px 28px rgba(91,76,219,.1);
    transform: translateY(-2px);
}
.mkt-benefit-card i {
    font-size: 2rem;
    color: var(--mkt-primary);
    margin-bottom: 1rem;
    display: block;
}

.mkt-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    height: 100%;
}
.mkt-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ede9fe;
    color: var(--mkt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mkt-testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(91,76,219,.05);
}
.mkt-testimonial-text {
    font-size: .9rem;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.mkt-testimonial-author strong {
    display: block;
    color: var(--mkt-indigo);
    font-size: .9rem;
}
.mkt-testimonial-author span {
    font-size: .8rem;
    color: #9ca3af;
}

.mkt-step-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    height: 100%;
}
.mkt-step-card .mkt-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mkt-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mkt-faq .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.mkt-faq .accordion-button {
    font-weight: 600;
    color: var(--mkt-indigo);
    box-shadow: none;
}
.mkt-faq .accordion-button:not(.collapsed) {
    background: #f5f3ff;
    color: var(--mkt-primary);
}

.mkt-offer-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    font-weight: 700;
    font-size: .9rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1px solid #fcd34d;
}
.mkt-pricing-toggle .btn { font-size: .875rem; padding: .4rem .9rem; }
.mkt-pricing-toggle .btn.active {
    background: var(--mkt-primary);
    border-color: var(--mkt-primary);
    color: #fff;
}
.mkt-price-original { min-height: 1.25rem; }
.mkt-location-grid {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
}
.mkt-location-tag {
    display: inline-block;
    background: #f5f3ff;
    color: var(--mkt-indigo);
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .8rem;
    font-weight: 500;
}

/* Corporate hero — 360° digital attendance flow */
.mkt-hero-corporate { padding: 3.5rem 0 4.5rem; }
.mkt-hero-tags span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: .3rem .75rem;
}

.mkt-hero-showcase {
    position: relative;
    min-height: 460px;
    padding: .5rem 0 0;
}

/* Flow strip: Passcode → Face → Photo → GPS → IN/OUT */
.mkt-hero-flow-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .15rem;
    margin-bottom: 1.25rem;
    padding: .5rem .75rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    max-width: 100%;
}
.mkt-flow-step {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    white-space: nowrap;
}
.mkt-flow-step.active { color: #fff; }
.mkt-flow-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
}
.mkt-flow-step.active .mkt-flow-num {
    background: #22c55e;
    color: #fff;
}
.mkt-flow-connector {
    width: 12px;
    height: 2px;
    background: rgba(255,255,255,.35);
    flex-shrink: 0;
}

.mkt-hero-stage {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt-hero-device {
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin: 0 auto;
    padding-top: .5rem;
    text-align: center;
}
.mkt-hero-device--kiosk { max-width: 300px; }
.mkt-kiosk-glow {
    position: absolute;
    inset: -20px -30px;
    background: radial-gradient(ellipse at center, rgba(34,197,94,.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.mkt-hero-device-label {
    display: block;
    margin-top: .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.mkt-device-frame {
    background: linear-gradient(145deg, #374151, #1f2937);
    border-radius: 16px 16px 8px 8px;
    padding: 10px 10px 0;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    position: relative;
    z-index: 1;
}
.mkt-device-frame--kiosk {
    border-radius: 20px 20px 10px 10px;
    padding: 12px 12px 0;
    box-shadow: 0 28px 72px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
}
.mkt-device-screen {
    background: #0f172a;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    min-height: 280px;
}
.mkt-device-frame--kiosk .mkt-device-screen {
    border-radius: 12px 12px 0 0;
    min-height: 320px;
}
.mkt-device-header {
    background: var(--mkt-indigo);
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mkt-device-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
}
.mkt-device-body { padding: 1.25rem 1rem; }
.mkt-device-scanner {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 3px solid var(--mkt-primary);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--mkt-primary);
    background: #ede9fe;
}
.mkt-device-status { font-size: 12px; font-weight: 600; }
.mkt-device-time { font-size: 1.5rem; font-weight: 800; color: var(--mkt-indigo); }
.mkt-device-base {
    height: 14px;
    background: #111827;
    border-radius: 0 0 8px 8px;
    margin: 0 -10px;
}

.mkt-hero-float {
    position: absolute;
    z-index: 3;
}
.mkt-float-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.4);
    max-width: 170px;
}
.mkt-float-card--phone {
    max-width: 140px;
    border-radius: 22px;
    border: 3px solid #374151;
}
.mkt-float-card--capture { max-width: 155px; }
.mkt-float-label {
    display: block;
    text-align: center;
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    margin-top: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.mkt-hero-float--face { top: 2%; right: 0; }
.mkt-hero-float--mobile { bottom: 6%; left: -2%; }
.mkt-hero-float--capture { bottom: 10%; right: -2%; top: auto; }
.mkt-hero-float--kiosk { display: none; }

/* Capture meta chips below stage */
.mkt-hero-capture-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}
.mkt-capture-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: .35rem .85rem;
}
.mkt-capture-chip--in {
    background: rgba(34,197,94,.35);
    border-color: rgba(34,197,94,.5);
}

/* Mockup enhancements — kiosk face, mobile, capture receipt */
.mock-mobile-punch {
    background: #f8fafc;
    padding: 10px 8px;
    min-height: 210px;
    text-align: center;
}
.mock-mobile-top { margin-bottom: 6px; }
.mock-mobile-time { font-size: 16px; font-weight: 800; color: var(--mkt-indigo); }
.mock-mobile-date { font-size: 8px; color: #6b7280; }
.mock-mobile-photo-wrap {
    position: relative;
    width: 64px; height: 64px;
    margin: 0 auto 8px;
}
.mock-mobile-photo {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    border: 3px solid #22c55e;
    position: relative;
}
.mock-photo-badge {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.mock-face-scan-line {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 2px;
    background: #22c55e;
    animation: mkt-scan 2s ease-in-out infinite;
    opacity: .8;
}
@keyframes mkt-scan {
    0%, 100% { top: 20%; }
    50% { top: 75%; }
}
.mock-mobile-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 7px;
    color: #6b7280;
    margin-bottom: 8px;
}
.mock-punch-in { font-size: 9px; margin-bottom: 4px; }
.mock-punch-out {
    background: #e5e7eb !important;
    color: #374151 !important;
    font-size: 8px;
}

.mock-kiosk-face { padding: 12px 10px 14px; min-height: 300px; }
.mock-kiosk-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 9px;
    opacity: .85;
    margin-bottom: 4px;
}
.mock-kiosk-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
}
.mock-kiosk-clock {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}
.mock-kiosk-sub {
    text-align: center;
    font-size: 8px;
    opacity: .75;
    margin-bottom: 10px;
}
.mock-kiosk-face-ring {
    position: relative;
    width: 88px; height: 88px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 3px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.mock-kiosk-avatar {
    font-size: 2.5rem;
    color: rgba(255,255,255,.9);
}
.mock-kiosk-scan {
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: mkt-scan 2.2s ease-in-out infinite;
}
.mock-kiosk-emp {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}
.mock-kiosk-code {
    text-align: center;
    font-size: 8px;
    opacity: .8;
    margin-bottom: 8px;
}
.mock-kiosk-capture-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 8px;
    opacity: .85;
    margin-bottom: 10px;
}
.mock-kiosk-punch { font-size: 10px !important; }

.mock-capture-receipt {
    padding: 10px;
    text-align: center;
    background: #fff;
}
.mock-receipt-head {
    font-size: 9px;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.mock-receipt-photo {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border: 2px solid #22c55e;
}
.mock-receipt-name { font-size: 10px; font-weight: 700; color: var(--mkt-indigo); }
.mock-receipt-badge {
    display: inline-block;
    font-size: 7px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    margin: 4px 0 8px;
}
.mock-receipt-badge--in { background: #dcfce7; color: #15803d; }
.mock-receipt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 7px;
    color: #4b5563;
}
.mock-receipt-list li {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
}
.mock-receipt-list i { color: var(--mkt-primary); }

.mock-face-ring--live {
    width: 72px !important;
    height: 72px !important;
    margin: 8px auto;
    border-color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mock-face-icon { font-size: 2rem; color: #9ca3af; }
.mock-face-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 7px;
    color: #6b7280;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .mkt-hero-showcase { min-height: auto; }
    .mkt-hero-stage { min-height: 340px; }
    .mkt-hero-float--face { top: 0; right: -2%; }
    .mkt-hero-float--mobile { left: -4%; bottom: 4%; }
    .mkt-hero-float--capture { right: -4%; bottom: 6%; }
    .mkt-float-card { max-width: 130px; }
    .mkt-float-card--phone { max-width: 115px; }
    .mkt-float-card--capture { max-width: 125px; }
    .mkt-hero-device--kiosk { max-width: 240px; }
    .mkt-device-frame--kiosk .mkt-device-screen { min-height: 260px; }
    .mkt-flow-step .mkt-flow-txt { display: none; }
    .mkt-flow-connector { width: 8px; }
}
@media (max-width: 575px) {
    .mkt-hero-corporate { padding: 2.5rem 0 3rem; }
    .mkt-hero-flow-strip { border-radius: 14px; }
    .mkt-hero-stage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: .75rem;
        min-height: auto;
        padding-bottom: .5rem;
    }
    .mkt-hero-device--kiosk {
        grid-column: 1 / -1;
        max-width: 260px;
        justify-self: center;
    }
    .mkt-hero-float {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }
    .mkt-float-card { max-width: 100%; }
    .mkt-float-card--phone { max-width: 100%; border-radius: 16px; }
    .mkt-float-label { color: rgba(255,255,255,.85); font-size: .62rem; }
    .mkt-hero-capture-meta { margin-top: .75rem; }
    .mkt-capture-chip { font-size: .65rem; padding: .3rem .65rem; }
}

.mkt-industry-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: .45rem .9rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--mkt-indigo);
    transition: border-color .2s, box-shadow .2s;
    white-space: nowrap;
}
.mkt-industry-pill:hover {
    border-color: var(--mkt-primary);
    box-shadow: 0 4px 12px rgba(91,76,219,.12);
    color: var(--mkt-primary);
}
.mkt-industry-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: box-shadow .2s, transform .2s;
}
.mkt-industry-card:hover {
    box-shadow: 0 8px 28px rgba(91,76,219,.1);
    transform: translateY(-2px);
}
.mkt-industry-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #ede9fe;
    color: var(--mkt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.mkt-module-tile {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
    transition: box-shadow .2s, border-color .2s;
}
.mkt-module-tile:hover {
    border-color: var(--mkt-primary);
    box-shadow: 0 6px 20px rgba(91,76,219,.1);
}

.mkt-page-banner {
    background: var(--mkt-gradient);
    color: #fff;
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.mkt-page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,.1) 0%, transparent 45%);
    pointer-events: none;
}

.mkt-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.mkt-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
@media (max-width: 767px) {
    .mkt-footer { padding-bottom: 5.5rem; }
    .mkt-whatsapp-float { right: 16px; bottom: 16px; }
    .mkt-section { padding: 3rem 0; }
    .mkt-map-embed { min-height: 260px; }
}

.btn-primary {
    --bs-btn-bg: var(--mkt-primary);
    --bs-btn-border-color: var(--mkt-primary);
    --bs-btn-hover-bg: var(--mkt-primary-dark);
    --bs-btn-hover-border-color: var(--mkt-primary-dark);
    --bs-btn-active-bg: var(--mkt-primary-dark);
    --bs-btn-active-border-color: var(--mkt-primary-dark);
}
.btn-outline-primary {
    --bs-btn-color: var(--mkt-primary);
    --bs-btn-border-color: var(--mkt-primary);
    --bs-btn-hover-bg: var(--mkt-primary);
    --bs-btn-hover-border-color: var(--mkt-primary);
    --bs-btn-active-bg: var(--mkt-primary-dark);
    --bs-btn-active-border-color: var(--mkt-primary-dark);
}
