/* khub marketing/product site — intentionally separate from style.css
   (the internal app's utilitarian palette). Not tenant-branded: this page
   represents the platform itself, not any one customer's business. */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --mkt-primary: #4f46e5;
    --mkt-primary-dark: #3730a3;
    --mkt-primary-rgb: 79, 70, 229;
    --mkt-accent: #22d3ee;
    --mkt-accent-rgb: 34, 211, 238;
    --mkt-ink: #0f172a;
    --mkt-ink-soft: #475569;
    --mkt-bg: #f8fafc;
    --mkt-card: #ffffff;
    --mkt-border: #e2e8f0;
    --mkt-radius: 1rem;
    --mkt-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body.mkt {
    font-family: 'Outfit', sans-serif;
    color: var(--mkt-ink);
    background: var(--mkt-bg);
    overflow-x: hidden;
}

.mkt h1,
.mkt h2,
.mkt h3,
.mkt h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mkt-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Navbar — transparent over the hero, solid once scrolled ── */
.mkt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1.15rem 0;
    background: transparent;
    transition: background-color 260ms var(--mkt-ease), box-shadow 260ms var(--mkt-ease), padding 260ms var(--mkt-ease);
}

.mkt-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px -12px rgba(15, 23, 42, 0.12);
    padding: 0.7rem 0;
}

.mkt-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
    transition: color 200ms var(--mkt-ease);
}

.mkt-navbar.is-scrolled .mkt-brand {
    color: var(--mkt-ink);
}

.mkt-brand .bi {
    color: var(--mkt-accent);
    font-size: 1.5rem;
}

.mkt-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 200ms var(--mkt-ease);
}

.mkt-navbar.is-scrolled .nav-link {
    color: var(--mkt-ink-soft);
}

.mkt-navbar .nav-link:hover {
    color: #fff;
}

.mkt-navbar.is-scrolled .nav-link:hover {
    color: var(--mkt-primary);
}

.mkt-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.mkt-navbar .navbar-toggler-icon {
    filter: none;
}

.mkt-navbar:not(.is-scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mkt-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 991.98px) {
    .mkt-navbar .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1.25rem;
        border-radius: 1rem;
        box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.25);
    }

    .mkt-navbar .navbar-collapse .nav-link,
    .mkt-navbar .navbar-collapse .mkt-btn-ghost-light {
        color: var(--mkt-ink-soft) !important;
        border-color: var(--mkt-border) !important;
        background: transparent !important;
    }

    .mkt-navbar-actions {
        margin-top: 1rem;
        flex-wrap: wrap;
    }
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 180ms var(--mkt-ease), box-shadow 180ms var(--mkt-ease), background-color 180ms var(--mkt-ease), color 180ms var(--mkt-ease), border-color 180ms var(--mkt-ease);
    white-space: nowrap;
}

.mkt-btn:hover {
    transform: translateY(-2px);
}

.mkt-btn-primary {
    background: var(--mkt-primary);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(var(--mkt-primary-rgb), 0.55);
}

.mkt-btn-primary:hover {
    background: var(--mkt-primary-dark);
    box-shadow: 0 12px 28px -8px rgba(var(--mkt-primary-rgb), 0.65);
    color: #fff;
}

.mkt-btn-lg {
    padding: 0.9rem 1.9rem;
    font-size: 1.05rem;
}

.mkt-btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.mkt-btn-ghost-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mkt-navbar.is-scrolled .mkt-btn-ghost-light {
    border-color: var(--mkt-border);
    color: var(--mkt-ink);
}

.mkt-btn-ghost-dark {
    border-color: var(--mkt-border);
    color: var(--mkt-ink);
}

.mkt-btn-ghost-dark:hover {
    background: var(--mkt-bg);
    border-color: var(--mkt-ink-soft);
    color: var(--mkt-ink);
}

.mkt-navbar.is-scrolled .mkt-btn-ghost-light:hover {
    background: var(--mkt-bg);
    border-color: var(--mkt-ink-soft);
}

/* ── Hero ── */
.mkt-hero {
    position: relative;
    padding: 9.5rem 0 7rem;
    overflow: hidden;
    background: linear-gradient(160deg, #1e1b4b 0%, var(--mkt-primary-dark) 45%, var(--mkt-primary) 100%);
    color: #fff;
}

.mkt-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.55;
    pointer-events: none;
}

.mkt-hero-shape.one {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--mkt-accent-rgb), 0.55), transparent 70%);
    top: -180px;
    right: -140px;
    animation: mktFloat 9s ease-in-out infinite;
}

.mkt-hero-shape.two {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 70%);
    bottom: -160px;
    left: -100px;
    animation: mktFloat 11s ease-in-out infinite reverse;
}

.mkt-hero-content {
    position: relative;
    z-index: 2;
}

.mkt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0;
    animation: mktFadeUp 700ms var(--mkt-ease) 100ms forwards;
}

.mkt-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    margin: 1.25rem 0 1.25rem;
    opacity: 0;
    animation: mktFadeUp 750ms var(--mkt-ease) 220ms forwards;
}

.mkt-hero .mkt-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: mktFadeUp 750ms var(--mkt-ease) 340ms forwards;
}

.mkt-hero .mkt-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: mktFadeUp 750ms var(--mkt-ease) 460ms forwards;
}

.mkt-hero-visual {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: mktFadeUp 900ms var(--mkt-ease) 560ms forwards;
}

.mkt-hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(6px);
}

@keyframes mktFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mktFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-24px) translateX(12px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .mkt-hero-badge,
    .mkt-hero h1,
    .mkt-hero .mkt-hero-sub,
    .mkt-hero .mkt-hero-cta,
    .mkt-hero-visual {
        animation: none;
        opacity: 1;
    }

    .mkt-hero-shape.one,
    .mkt-hero-shape.two {
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .mkt-hero {
        padding: 7.5rem 0 4.5rem;
        text-align: center;
    }

    .mkt-hero .mkt-hero-cta {
        justify-content: center;
    }

    .mkt-hero .mkt-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Shared section chrome (reused by Features, How It Works, Pricing, FAQ, ...) ── */
.mkt-section {
    padding: 6rem 0;
}

.mkt-section-header {
    max-width: 620px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.mkt-eyebrow {
    display: inline-block;
    color: var(--mkt-primary);
    background: rgba(var(--mkt-primary-rgb), 0.1);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mkt-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.mkt-section-sub {
    color: var(--mkt-ink-soft);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ── Feature grid ── */
.mkt-feature-card {
    background: var(--mkt-card);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 240ms var(--mkt-ease), box-shadow 240ms var(--mkt-ease), border-color 240ms var(--mkt-ease);
}

.mkt-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.18);
    border-color: rgba(var(--mkt-primary-rgb), 0.25);
}

.mkt-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(var(--mkt-primary-rgb), 0.14), rgba(var(--mkt-accent-rgb), 0.14));
    color: var(--mkt-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mkt-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.mkt-feature-card p {
    color: var(--mkt-ink-soft);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ── How It Works ── */
.mkt-section-alt {
    background: linear-gradient(180deg, #fff 0%, #eef2ff 100%);
}

.mkt-steps {
    position: relative;
}

.mkt-steps::before {
    content: '';
    position: absolute;
    top: 1.9rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--mkt-border) 0 10px, transparent 10px 18px);
    z-index: 0;
}

.mkt-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.75rem;
}

.mkt-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(var(--mkt-primary-rgb), 0.2);
    color: var(--mkt-primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 24px -12px rgba(var(--mkt-primary-rgb), 0.35);
}

.mkt-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mkt-step p {
    color: var(--mkt-ink-soft);
    font-size: 0.92rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .mkt-steps::before {
        display: none;
    }
}

/* ── Product Showcase (Swiper) ── */
.mkt-showcase-swiper {
    padding: 0.5rem 0.5rem 3.5rem;
    overflow: hidden;
}

.mkt-showcase-swiper .swiper-slide {
    height: auto;
}

.mkt-showcase-card {
    background: var(--mkt-card);
    border: 1px solid var(--mkt-border);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.2);
}

.mkt-showcase-mock {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--mkt-primary-dark), var(--mkt-primary) 60%, var(--mkt-accent));
    display: flex;
    flex-direction: column;
    color: #fff;
}

/* fake browser/app chrome bar — reads as "this is a screen", not a marketing tile */
.mkt-mock-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.9rem;
    background: rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

.mkt-mock-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.mkt-mock-dot.red {
    background: #fb7185;
}

.mkt-mock-dot.yellow {
    background: #fbbf24;
}

.mkt-mock-dot.green {
    background: #34d399;
}

.mkt-mock-url {
    margin-left: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.2rem 0.85rem;
    font-size: 0.72rem;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.85);
}

.mkt-mock-body {
    flex: 1;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

/* Admin: stat row + bar chart */
.mkt-mock-stats {
    display: flex;
    gap: 0.6rem;
}

.mkt-mock-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.6rem;
    padding: 0.55rem;
    text-align: center;
}

.mkt-mock-stat b {
    display: block;
    font-size: 1.1rem;
}

.mkt-mock-stat span {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mkt-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    padding: 0.5rem;
}

.mkt-mock-chart span {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.5));
    border-radius: 0.2rem;
}

/* Front Desk: queue rows */
.mkt-mock-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    padding: 0.45rem 0.65rem;
}

.mkt-mock-avatar {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.mkt-mock-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.mkt-mock-line {
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.mkt-mock-line.short {
    width: 50%;
}

.mkt-mock-pill {
    font-size: 0.6rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    white-space: nowrap;
}

/* Patient: stepper + calendar + slot pills */
.mkt-mock-stepper {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mkt-mock-step {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--mkt-primary);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt-mock-step.pending {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.mkt-mock-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.mkt-mock-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.28rem;
}

.mkt-mock-day {
    aspect-ratio: 1;
    border-radius: 0.3rem;
    background: rgba(255, 255, 255, 0.12);
}

.mkt-mock-day.active {
    background: #fff;
}

.mkt-mock-slots {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.mkt-mock-slot {
    font-size: 0.64rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.mkt-mock-slot.active {
    background: #fff;
    color: var(--mkt-primary);
    font-weight: 700;
}

/* Display Unit: big "now serving" number */
.mkt-mock-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.mkt-mock-display-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.mkt-mock-display-num {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.mkt-mock-display-next {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.mkt-mock-display-next span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.mkt-showcase-caption {
    padding: 1.25rem 1.5rem;
}

.mkt-showcase-caption h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.mkt-showcase-caption p {
    color: var(--mkt-ink-soft);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.mkt-showcase-swiper .swiper-pagination-bullet {
    background: var(--mkt-primary);
    opacity: 0.25;
}

.mkt-showcase-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.mkt-carousel-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--mkt-border);
    color: var(--mkt-ink);
    box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.25);
    transition: background-color 180ms var(--mkt-ease), color 180ms var(--mkt-ease);
}

.mkt-carousel-nav:hover {
    background: var(--mkt-primary);
    color: #fff;
}

.mkt-carousel-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Testimonials ── */
.mkt-testimonial-swiper {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.mkt-testimonial-card {
    background: var(--mkt-card);
    border: 1px solid var(--mkt-border);
    border-radius: 1.5rem;
    padding: 2.75rem;
    text-align: center;
}

.mkt-quote-icon {
    font-size: 2rem;
    color: rgba(var(--mkt-primary-rgb), 0.35);
    margin-bottom: 1rem;
}

.mkt-testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--mkt-ink);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.mkt-testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mkt-primary), var(--mkt-accent));
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mkt-testimonial-name {
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.mkt-placeholder-tag {
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--mkt-warning, #b45309);
    background: #fef3c7;
    border: 1px solid #fde68a;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    vertical-align: middle;
}

.mkt-testimonial-swiper .swiper-pagination-bullet {
    background: var(--mkt-primary);
    opacity: 0.25;
}

.mkt-testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .mkt-testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* ── Pricing ── */
.mkt-pricing-card {
    background: var(--mkt-card);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: transform 240ms var(--mkt-ease), box-shadow 240ms var(--mkt-ease);
}

.mkt-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -22px rgba(15, 23, 42, 0.2);
}

.mkt-pricing-card.featured {
    border-color: var(--mkt-primary);
    box-shadow: 0 20px 48px -20px rgba(var(--mkt-primary-rgb), 0.35);
}

.mkt-pricing-badge {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mkt-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.mkt-pricing-tier {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.mkt-pricing-tagline {
    color: var(--mkt-ink-soft);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.mkt-pricing-price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

.mkt-pricing-price small {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mkt-ink-soft);
}

.mkt-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.mkt-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--mkt-ink-soft);
    margin-bottom: 0.85rem;
}

.mkt-pricing-features li .bi {
    color: var(--mkt-primary);
    margin-top: 0.15rem;
}

.mkt-pricing-card .mkt-btn {
    width: 100%;
    justify-content: center;
}

/* ── Contact / Demo Request ── */
.mkt-contact-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.mkt-contact-point .bi {
    font-size: 1.3rem;
    color: var(--mkt-primary);
    margin-top: 0.1rem;
}

.mkt-contact-point strong {
    display: block;
    margin-bottom: 0.15rem;
}

.mkt-contact-point span {
    color: var(--mkt-ink-soft);
    font-size: 0.92rem;
}

.mkt-contact-card {
    background: var(--mkt-card);
    border: 1px solid var(--mkt-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 24px 48px -30px rgba(15, 23, 42, 0.25);
    position: relative;
}

.mkt-contact-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.mkt-contact-card .form-control,
.mkt-contact-card .form-select {
    border-radius: 0.75rem;
    border-color: var(--mkt-border);
    padding: 0.65rem 0.9rem;
}

.mkt-contact-card .form-control:focus,
.mkt-contact-card .form-select:focus {
    border-color: var(--mkt-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--mkt-primary-rgb), 0.15);
}

.mkt-form-error-text {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.mkt-form-alert {
    display: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.mkt-form-alert.mkt-form-alert-danger {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.mkt-form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    animation: mktFadeUp 500ms var(--mkt-ease) forwards;
}

.mkt-form-success .bi {
    font-size: 3.25rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.mkt-form-success h3 {
    margin-bottom: 0.5rem;
}

.mkt-form-success p {
    color: var(--mkt-ink-soft);
    margin-bottom: 0;
}

/* ── FAQ ── */
.mkt-faq {
    max-width: 780px;
    margin: 0 auto;
}

.mkt-faq .accordion-item {
    border: 1px solid var(--mkt-border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mkt-faq .accordion-button {
    font-weight: 600;
    color: var(--mkt-ink);
    padding: 1.25rem 1.5rem;
}

.mkt-faq .accordion-button:not(.collapsed) {
    color: var(--mkt-primary);
    background: rgba(var(--mkt-primary-rgb), 0.06);
    box-shadow: none;
}

.mkt-faq .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--mkt-primary-rgb), 0.15);
}

.mkt-faq .accordion-button::after {
    background-size: 1rem;
}

.mkt-faq .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--mkt-ink-soft);
    font-size: 0.95rem;
}

/* ── Footer ── */
.mkt-footer {
    background: var(--mkt-ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 1.5rem;
}

.mkt-footer .mkt-brand {
    color: #fff;
    margin-bottom: 0.9rem;
}

.mkt-footer-tagline {
    max-width: 320px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.mkt-footer-heading {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.mkt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkt-footer-links li {
    margin-bottom: 0.75rem;
}

.mkt-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 180ms var(--mkt-ease);
}

.mkt-footer-links a:hover {
    color: #fff;
}

.mkt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}