/* ============================================
   2MFBY — Premium Effects
   Loader · Cursor · Grain · Top Bar · Mega-menu
   Activity Grid · Avatars · Floating Help
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GRAIN TEXTURE — Corps de page
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    opacity: 0.028;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE LOADER — Splash screen 2M
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C8896E 0%, #A96D54 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    animation: loader-pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(200, 137, 110, .4);
}

@keyframes loader-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(200, 137, 110, .4);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 60px rgba(200, 137, 110, .65);
    }
}

.loader__bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, .08);
    border-radius: 2px;
    overflow: hidden;
}

.loader__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C8896E, #D9A48C);
    border-radius: 2px;
    animation: loader-fill 1s ease forwards;
}

@keyframes loader-fill {
    0% {
        width: 0%;
    }

    70% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

.loader__text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOM CURSOR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    #cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background: #C8896E;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, opacity 0.2s;
    }

    #cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(200, 137, 110, .5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99996;
        transform: translate(-50%, -50%);
        transition: width 0.25s ease, height 0.25s ease, border-color 0.2s, opacity 0.2s;
    }

    body.cursor-hover #cursor-dot {
        width: 6px;
        height: 6px;
        background: #fff;
    }

    body.cursor-hover #cursor-ring {
        width: 52px;
        height: 52px;
        border-color: rgba(200, 137, 110, .8);
        background: rgba(200, 137, 110, .06);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOP REASSURANCE BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 34px;
    z-index: 999;
    background: linear-gradient(90deg, #0D0D0D 0%, #1A1207 50%, #0D0D0D 100%);
    border-bottom: 1px solid rgba(200, 137, 110, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
}

#top-bar-close {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .3);
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    transition: color .15s;
}

#top-bar-close:hover {
    color: rgba(255, 255, 255, .7);
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}

.top-bar__item span.accent {
    color: #C8896E;
    font-weight: 600;
}

.top-bar__sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .12);
}

/* Décale la navbar quand la top bar est visible */
body.has-top-bar .navbar {
    top: 34px;
}

body.has-top-bar .hero {
    padding-top: 34px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MEGA-MENU
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar__item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 20px;
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .7), 0 0 0 1px rgba(200, 137, 110, .06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #1A1A1A;
    border-left: 1px solid rgba(255, 255, 255, .09);
    border-top: 1px solid rgba(255, 255, 255, .09);
    transform: translateX(-50%) rotate(45deg);
}

.navbar__item:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s;
    color: rgba(255, 255, 255, .8);
}

.mega-item:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.mega-item__img {
    width: 52px;
    height: 40px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.85);
    transition: filter 0.2s;
}

.mega-item:hover .mega-item__img {
    filter: brightness(1);
}

.mega-item__info {
    flex: 1;
    min-width: 0;
}

.mega-item__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2px;
}

.mega-item__price {
    font-size: 0.75rem;
    color: #C8896E;
    font-weight: 500;
}

.mega-menu__header {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, .25);
    font-weight: 600;
    padding: 0 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACTIVITY CARDS GRID — 5 produits Malte
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.activities-section {
    padding-block: var(--space-16);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: var(--space-8);
}

.activity-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #1C1C1C;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(200, 137, 110, .2);
    border-color: rgba(200, 137, 110, .2);
}

.activity-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.85);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.activity-card:hover .activity-card__img {
    transform: scale(1.06);
    filter: brightness(0.6) saturate(1.1);
}

.activity-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.80) 100%);
}

.activity-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.activity-card__tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-400);
    margin-bottom: 4px;
}

.activity-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.activity-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.activity-card__price {
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D9A48C 0%, #C8896E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-card__price-from {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, .4);
}

.activity-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13, 13, 13, .75);
    border: 1px solid rgba(200, 137, 110, .3);
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #C8896E;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.activity-card__cta {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #C8896E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 3;
}

.activity-card:hover .activity-card__cta {
    opacity: 1;
    transform: scale(1);
}

/* Mobile — horizontal scroll */
@media (max-width: 900px) {
    .activities-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .activities-grid::-webkit-scrollbar {
        display: none;
    }

    .activity-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 480px) {
    .activity-card {
        flex: 0 0 82vw;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS WITH AVATARS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200, 137, 110, .25);
    background: #242424;
    flex-shrink: 0;
}

.testimonial-card__meta {
    flex: 1;
}

.testimonial-card__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2px;
}

.testimonial-card__date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .35);
}

.testimonial-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: rgba(100, 220, 150, .7);
    font-weight: 600;
    background: rgba(45, 154, 95, .1);
    border: 1px solid rgba(45, 154, 95, .2);
    border-radius: 20px;
    padding: 2px 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCARCITY BADGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #fca5a5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.scarcity-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOATING HELP BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#help-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    background: #1C1C1C;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

#help-btn:hover {
    background: #242424;
    border-color: rgba(200, 137, 110, .3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

#help-btn .help-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Help modal */
#help-modal {
    position: fixed;
    bottom: 76px;
    right: 24px;
    z-index: 9001;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .7);
    display: none;
}

#help-modal.is-open {
    display: block;
}

#help-modal h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 4px;
}

#help-modal p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .03);
    transition: background 0.15s;
    color: rgba(255, 255, 255, .75);
    font-size: 0.82rem;
    font-weight: 500;
}

.help-option:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.help-option-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS — Timeline premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process--premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.process--premium .process__step {
    background: transparent;
    border: none;
    padding: var(--space-6) var(--space-5);
}

.process__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 137, 110, .1);
    border: 1px solid rgba(200, 137, 110, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 1.5rem;
}

/* Animated connector */
.process--premium .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -4px;
    width: calc(100% - 52px);
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 137, 110, .5), rgba(200, 137, 110, .1));
    transform: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process--premium.is-visible .process__step:not(:last-child)::after {
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — Animated gradient border text
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero__title .highlight {
    background: linear-gradient(120deg, #D9A48C 0%, #C8896E 40%, #C9A96E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION DARK DIVIDER — animated gradient line
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 137, 110, .35) 30%,
            rgba(201, 169, 110, .5) 50%,
            rgba(200, 137, 110, .35) 70%,
            transparent 100%);
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COUNTER — Live increment animation
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stat-card__suffix {
    font-size: 1.5rem;
    color: var(--color-brand-500);
    font-family: var(--font-display);
    vertical-align: super;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL INDICATOR — bottom of hero
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .3);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scroll-bounce 2s ease infinite;
    text-decoration: none;
    transition: color 0.2s;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, .6);
}

.scroll-indicator__mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.scroll-indicator__wheel {
    width: 3px;
    height: 5px;
    background: rgba(255, 255, 255, .4);
    border-radius: 2px;
    animation: scroll-wheel 2s ease infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    70% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

@keyframes scroll-bounce {

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEY NUMBERS — rating header dark
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-rating-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 137, 110, .08);
    border: 1px solid rgba(200, 137, 110, .2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 8px;
}

.rating-pill__score {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D9A48C 0%, #C8896E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.rating-pill__stars {
    color: #C9A96E;
    font-size: 0.85rem;
}

.rating-pill__count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .45);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — top bar hide on mobile
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
    #top-bar {
        gap: 12px;
        padding: 0 36px 0 12px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    #top-bar::-webkit-scrollbar {
        display: none;
    }

    .mega-menu {
        display: none;
    }

    .process--premium {
        grid-template-columns: 1fr;
    }

    #cursor-dot,
    #cursor-ring {
        display: none;
    }
}