/* Rider Connect — Public Marketing Site
   Design: Premium adventure · Dark cinematic · Glassmorphism
   Colors: #FF6B00 · #111827 · #00C896 · #0B1120 · #FFFFFF
*/

:root {
    --mk-primary: #FF6B00;
    --mk-primary-glow: rgba(255, 107, 0, 0.45);
    --mk-secondary: #111827;
    --mk-accent: #00C896;
    --mk-accent-glow: rgba(0, 200, 150, 0.35);
    --mk-bg: #0B1120;
    --mk-bg-elevated: #111827;
    --mk-bg-card: rgba(17, 24, 39, 0.65);
    --mk-text: #FFFFFF;
    --mk-text-muted: rgba(255, 255, 255, 0.65);
    --mk-border: rgba(255, 255, 255, 0.08);
    --mk-glass: rgba(255, 255, 255, 0.04);
    --mk-font-display: 'Barlow Condensed', sans-serif;
    --mk-font-body: 'Inter', system-ui, sans-serif;
    --mk-radius: 16px;
    --mk-radius-lg: 24px;
    --mk-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --mk-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.mk-body {
    margin: 0;
    font-family: var(--mk-font-body);
    background: var(--mk-bg);
    color: var(--mk-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
.mk-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mk-accent);
    margin-bottom: 1rem;
}

.mk-section-title {
    font-family: var(--mk-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
}

.mk-gradient-text {
    background: linear-gradient(135deg, var(--mk-primary), var(--mk-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mk-section-desc {
    font-size: 1.125rem;
    color: var(--mk-text-muted);
    max-width: 540px;
    margin: 0;
}

.mk-section {
    padding: 6rem 0;
    position: relative;
}

.mk-section-head {
    margin-bottom: 4rem;
}

/* ─── Glass & Buttons ─── */
.mk-glass {
    background: var(--mk-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--mk-border);
    border-radius: var(--mk-radius-lg);
    box-shadow: var(--mk-shadow);
}

.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--mk-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--mk-transition);
    white-space: nowrap;
}

.mk-btn-primary {
    background: linear-gradient(135deg, var(--mk-primary), #e55a00);
    color: #fff;
    box-shadow: 0 8px 32px var(--mk-primary-glow);
}

.mk-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px var(--mk-primary-glow);
    color: #fff;
}

.mk-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.mk-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.mk-btn-ghost {
    background: transparent;
    color: var(--mk-text-muted);
    padding: 0.5rem 1rem;
}

.mk-btn-ghost:hover { color: #fff; }

.mk-btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.mk-btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.mk-btn-block { width: 100%; }

.mk-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mk-accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--mk-transition);
}

.mk-link-arrow:hover {
    gap: 0.75rem;
    color: var(--mk-primary);
}

/* ─── Navigation ─── */
.mk-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--mk-transition);
}

.mk-nav-wrap.scrolled {
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--mk-border);
    padding: 0.65rem 0;
}

.mk-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.mk-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
}

.mk-logo-text {
    font-family: var(--mk-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mk-nav-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.mk-nav-links a {
    color: var(--mk-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.mk-nav-links a:hover { color: #fff; }

.mk-nav-cta {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.mk-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mk-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--mk-transition);
}

.mk-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mk-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mk-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 992px) {
    .mk-nav-links { display: flex; }
    .mk-nav-toggle { display: none; }
}

.mk-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--mk-border);
}

/* ─── Hero ─── */
.mk-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mk-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mk-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mk-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 17, 32, 0.55) 0%,
        rgba(11, 17, 32, 0.75) 50%,
        rgba(11, 17, 32, 0.95) 100%
    );
}

.mk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 960px;
}

.mk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 200, 150, 0.12);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mk-accent);
    margin-bottom: 1.5rem;
}

.mk-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--mk-accent);
    border-radius: 50%;
    animation: mk-pulse 2s infinite;
}

@keyframes mk-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.mk-hero-title {
    font-family: var(--mk-font-display);
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.mk-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--mk-text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.mk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.mk-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mk-hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.mk-stat-card {
    padding: 1.25rem 1rem;
    background: var(--mk-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--mk-border);
    border-radius: var(--mk-radius);
    text-align: center;
    transition: var(--mk-transition);
}

.mk-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.3);
}

.mk-stat-num {
    display: block;
    font-family: var(--mk-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.mk-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mk-text-muted);
}

.mk-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--mk-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: mk-bounce 2s infinite;
}

.mk-hero-scroll i { display: block; margin-top: 0.5rem; font-size: 1.25rem; }

@keyframes mk-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Features ─── */
.mk-features { background: var(--mk-bg); }

.mk-feature-row {
    padding: 4rem 0;
}

.mk-feature-row:nth-child(even) {
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.4), transparent);
}

.mk-feature-visual {
    position: relative;
}

.mk-feature-img-wrap {
    position: relative;
    border-radius: var(--mk-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--mk-border);
}

.mk-feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mk-feature-row:hover .mk-feature-img-wrap img {
    transform: scale(1.05);
}

.mk-feature-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--mk-primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.mk-feature-float-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--mk-primary), var(--mk-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: var(--mk-shadow);
    animation: mk-float 4s ease-in-out infinite;
}

@keyframes mk-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mk-feature-title {
    font-family: var(--mk-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.mk-feature-desc {
    color: var(--mk-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

/* ─── Live Ride ─── */
.mk-live-ride { background: var(--mk-secondary); }

.mk-live-panel { overflow: hidden; }

.mk-map-stage {
    position: relative;
    background: #0a0f1a;
    min-height: 360px;
    padding: 1.5rem;
}

.mk-map-svg { width: 100%; height: auto; display: block; }

.mk-rider-dot { filter: drop-shadow(0 0 8px currentColor); }

.mk-map-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mk-live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: mk-pulse 1.5s infinite;
}

.mk-live-stats {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.mk-live-stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mk-text-muted);
}

.mk-live-stat-value {
    font-family: var(--mk-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mk-accent);
}

.mk-live-stat-unit { font-size: 0.875rem; color: var(--mk-text-muted); }

.mk-elevation-chart { height: 60px; opacity: 0.8; }
.mk-elevation-chart svg { width: 100%; height: 100%; }
.mk-elev-fill { fill: rgba(0, 200, 150, 0.15); }

.mk-live-route-name {
    font-size: 0.875rem;
    color: var(--mk-text-muted);
    margin: 0;
}

/* ─── Community ─── */
.mk-community { background: var(--mk-bg); }

.mk-testimonial-card {
    padding: 2rem;
    height: 100%;
    transition: var(--mk-transition);
}

.mk-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.25);
}

.mk-testimonial-stars { color: var(--mk-primary); margin-bottom: 1rem; font-size: 0.875rem; }

.mk-testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mk-text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mk-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mk-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-primary), var(--mk-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.mk-testimonial-author strong { display: block; }
.mk-testimonial-author span { font-size: 0.8rem; color: var(--mk-text-muted); }

.mk-community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .mk-community-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 200px); }
    .mk-community-large { grid-row: span 2; }
}

.mk-community-card {
    position: relative;
    border-radius: var(--mk-radius);
    overflow: hidden;
    min-height: 180px;
}

.mk-community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mk-community-card:hover img { transform: scale(1.08); }

.mk-community-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.mk-community-overlay h4 {
    font-family: var(--mk-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.mk-community-overlay p { margin: 0.25rem 0 0; font-size: 0.8rem; color: var(--mk-text-muted); }

/* ─── Safety ─── */
.mk-safety {
    background: var(--mk-bg);
    overflow: hidden;
}

.mk-safety-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.mk-safety-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--mk-transition);
}

.mk-safety-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 150, 0.3);
}

.mk-safety-highlight {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.06);
}

.mk-safety-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--mk-primary), var(--mk-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mk-safety-card h4 {
    font-family: var(--mk-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.mk-safety-card p { color: var(--mk-text-muted); font-size: 0.9rem; margin: 0; }

/* ─── App Screens ─── */
.mk-app-screens {
    background: linear-gradient(180deg, var(--mk-secondary), var(--mk-bg));
    overflow: hidden;
}

.mk-phone-stage { padding: 2rem 0; }

.mk-phone-slider { overflow: hidden; }

.mk-phone-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-phone-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.mk-phone-mockup {
    width: 260px;
    padding: 12px;
    background: linear-gradient(145deg, #1a2234, #0d1117);
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(800px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mk-phone-slide:hover .mk-phone-mockup {
    transform: perspective(800px) rotateY(0) rotateX(0) translateY(-10px);
}

.mk-phone-notch {
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.mk-phone-screen {
    background: var(--mk-bg);
    border-radius: 24px;
    padding: 1rem;
    min-height: 420px;
    border: 1px solid var(--mk-border);
}

.mk-mock-header {
    font-family: var(--mk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--screen-accent, var(--mk-primary));
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--mk-border);
}

.mk-mock-card {
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(0, 200, 150, 0.1));
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--mk-border);
}

.mk-mock-card-sm { height: 48px; }

.mk-mock-nav {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 0.65rem;
    color: var(--mk-text-muted);
    text-transform: uppercase;
}

.mk-phone-caption {
    margin-top: 1.5rem;
    font-family: var(--mk-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--mk-text-muted);
}

.mk-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mk-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--mk-border);
    background: var(--mk-glass);
    color: #fff;
    cursor: pointer;
    transition: var(--mk-transition);
}

.mk-slider-btn:hover {
    background: var(--mk-primary);
    border-color: var(--mk-primary);
}

.mk-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.mk-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--mk-transition);
}

.mk-slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--mk-primary);
}

/* ─── Pricing ─── */
.mk-pricing { background: var(--mk-bg); }

.mk-price-card {
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: var(--mk-transition);
}

.mk-price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.35);
}

.mk-price-featured {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 107, 0, 0.06);
    transform: scale(1.03);
}

.mk-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, var(--mk-primary), var(--mk-accent));
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mk-price-name {
    font-family: var(--mk-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1rem;
}

.mk-price-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.mk-price-currency { font-size: 1.25rem; vertical-align: super; color: var(--mk-text-muted); }

.mk-price-num {
    font-family: var(--mk-font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.mk-price-period { color: var(--mk-text-muted); font-size: 0.9rem; }

.mk-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.mk-price-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--mk-text-muted);
    border-bottom: 1px solid var(--mk-border);
}

.mk-price-features li i { color: var(--mk-accent); flex-shrink: 0; }

.mk-compare-table {
    overflow-x: auto;
    padding: 0;
}

.mk-compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.mk-compare-table th,
.mk-compare-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--mk-border);
}

.mk-compare-table th:first-child,
.mk-compare-table td:first-child { text-align: left; }

.mk-compare-table th {
    font-family: var(--mk-font-display);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--mk-text-muted);
}

.mk-compare-table td:first-child { color: var(--mk-text-muted); }

/* ─── Gallery ─── */
.mk-gallery { padding-bottom: 4rem; background: var(--mk-secondary); }

.mk-masonry {
    columns: 2;
    column-gap: 1rem;
}

@media (min-width: 768px) { .mk-masonry { columns: 3; } }
@media (min-width: 1200px) { .mk-masonry { columns: 4; } }

.mk-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    border-radius: var(--mk-radius);
    overflow: hidden;
    cursor: pointer;
}

.mk-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.mk-masonry-item:hover img { transform: scale(1.08); }

.mk-masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    font-size: 2rem;
    color: #fff;
}

.mk-masonry-item:hover .mk-masonry-overlay { opacity: 1; }

/* ─── Stats Banner ─── */
.mk-stats-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.mk-stats-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mk-primary) 0%, #c44d00 50%, var(--mk-accent) 100%);
    opacity: 0.15;
}

.mk-banner-stat { padding: 1rem; }

.mk-banner-num {
    display: block;
    font-family: var(--mk-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.mk-banner-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mk-text-muted);
}

/* ─── FAQ ─── */
.mk-faq { background: var(--mk-bg); }

.mk-accordion-item {
    border-bottom: 1px solid var(--mk-border);
}

.mk-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--mk-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.mk-accordion-btn:hover { color: var(--mk-accent); }

.mk-accordion-btn i {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--mk-primary);
}

.mk-accordion-btn.active i { transform: rotate(45deg); }

.mk-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mk-accordion-body.open {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.mk-accordion-body p {
    margin: 0;
    color: var(--mk-text-muted);
    line-height: 1.7;
}

/* ─── CTA Banner ─── */
.mk-cta-banner {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--mk-bg), var(--mk-secondary));
    text-align: center;
}

.mk-cta-title {
    font-family: var(--mk-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.mk-cta-desc {
    color: var(--mk-text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.mk-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mk-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: var(--mk-transition);
}

.mk-store-btn:hover {
    transform: translateY(-4px);
    border-color: var(--mk-primary);
    color: #fff;
}

.mk-store-btn i { font-size: 1.75rem; }
.mk-store-btn span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.mk-store-btn small { font-size: 0.65rem; opacity: 0.7; }

.mk-cta-or { color: var(--mk-text-muted); font-size: 0.9rem; }
.mk-cta-or a { color: var(--mk-accent); }

/* ─── Footer ─── */
.mk-footer {
    background: #060a14;
    border-top: 1px solid var(--mk-border);
    padding: 4rem 0 2rem;
}

.mk-logo-footer { margin-bottom: 1rem; }

.mk-footer-tagline {
    color: var(--mk-text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mk-social-links {
    display: flex;
    gap: 0.75rem;
}

.mk-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mk-glass);
    border: 1px solid var(--mk-border);
    color: var(--mk-text-muted);
    text-decoration: none;
    transition: var(--mk-transition);
}

.mk-social-links a:hover {
    background: var(--mk-primary);
    border-color: var(--mk-primary);
    color: #fff;
    transform: translateY(-3px);
}

.mk-footer-heading {
    font-family: var(--mk-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.mk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mk-footer-links li { margin-bottom: 0.65rem; }

.mk-footer-links a {
    color: var(--mk-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.mk-footer-links a:hover { color: var(--mk-accent); }

.mk-footer-newsletter-text {
    color: var(--mk-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.mk-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mk-newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mk-border);
    border-radius: 999px;
    color: #fff;
    font-family: var(--mk-font-body);
    font-size: 0.9rem;
}

.mk-newsletter-form input:focus {
    outline: none;
    border-color: var(--mk-primary);
}

.mk-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--mk-border);
    font-size: 0.8rem;
    color: var(--mk-text-muted);
}

.mk-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.mk-footer-legal a {
    color: var(--mk-text-muted);
    text-decoration: none;
}

.mk-footer-legal a:hover { color: #fff; }

/* ─── Scroll Reveal ─── */
.mk-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mk-reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .mk-reveal { opacity: 1; transform: none; }
}
