:root {
    --mkt-gradient-start: #ff5f6d;
    --mkt-gradient-end: #6a4cff;
    --mkt-accent: #ffd166;
    --mkt-dark: #14122b;
    --mkt-light: #fff7f0;
}

.mkt-navbar {
    background: var(--mkt-dark);
}

.mkt-navbar .nav-link {
    color: rgba(255, 255, 255, .85);
}

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

.mkt-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mkt-gradient-start), var(--mkt-gradient-end));
    background-size: 200% 200%;
    color: #fff;
    padding: 6rem 0 8rem;
    animation: mkt-hero-gradient 12s ease infinite;
}

.mkt-hero-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 102, .35), transparent 70%);
    filter: blur(10px);
    animation: mkt-blob-float 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mkt-hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes mkt-blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-3%, 4%) scale(1.08); }
}

/* Reveal on scroll: JS toggles .is-visible via IntersectionObserver */
[data-mkt-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-mkt-animate].is-visible,
[data-mkt-animate="hero"] {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .mkt-hero,
    .mkt-hero-blob {
        animation: none;
    }

    [data-mkt-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mkt-card:hover {
        transform: none;
    }
}

.mkt-hero h1 {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
}

.mkt-hero .lead {
    font-size: 1.25rem;
    opacity: .95;
}

.mkt-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: .35rem .9rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.mkt-cta-primary {
    background: var(--mkt-accent);
    border-color: var(--mkt-accent);
    color: var(--mkt-dark);
    font-weight: 700;
    padding: .85rem 2rem;
    border-radius: 999px;
}

.mkt-cta-primary:hover,
.mkt-cta-primary:focus {
    filter: brightness(0.95);
    color: var(--mkt-dark);
}

.mkt-section {
    padding: 5rem 0;
}

.mkt-section-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.mkt-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(20, 18, 43, .08);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.mkt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(20, 18, 43, .14);
}

.mkt-icon-circle {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mkt-gradient-start), var(--mkt-gradient-end));
    color: #fff;
    font-size: 1.3rem;
}

.mkt-price-card {
    border-radius: 1.25rem;
    background: linear-gradient(160deg, var(--mkt-dark), #2a2560);
    color: #fff;
    padding: 3rem 2rem;
}

.mkt-price-value {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 800;
}

.mkt-faq .accordion-button:not(.collapsed) {
    background: rgba(106, 76, 255, .08);
    color: var(--mkt-dark);
}

.mkt-counter {
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--mkt-dark);
}

.mkt-bg-light {
    background: var(--mkt-light);
}

/* Products slider — mobile-first: one card per view, scroll-snap, no JS-required layout */
.mkt-slider {
    position: relative;
    padding: 0 2.75rem;
}

.mkt-slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .5rem;
}

.mkt-slider-track::-webkit-scrollbar {
    display: none;
}

.mkt-slider-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
}

.mkt-slider-slide img {
    height: 8rem;
    object-fit: contain;
    padding: 1rem;
    background: #fff;
}

.mkt-slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 6px 16px rgba(20, 18, 43, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-dark);
    z-index: 2;
}

.mkt-slider-prev { left: 0; }
.mkt-slider-next { right: 0; }

.mkt-slider-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.mkt-slider-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    border: none;
    background: rgba(20, 18, 43, .2);
    padding: 0;
}

.mkt-slider-dot.is-active {
    background: var(--mkt-gradient-end);
}

@media (min-width: 576px) {
    .mkt-slider-slide {
        flex: 0 0 45%;
    }
}

@media (min-width: 992px) {
    .mkt-slider-slide {
        flex: 0 0 30%;
    }
}
