/* ═══════════════════════════════════════════════════════════════════════════
   MovePro.online v2.1 — International Moving Calculator
   Mobile-first responsive design with landing page + calculator wizard
   Premium animations, glass-morphism, responsive breakpoints
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --mp-primary: #0d6b3e;
    --mp-primary-light: #e8f5ee;
    --mp-primary-dark: #094d2c;
    --mp-primary-darker: #063520;
    --mp-accent: #f59e0b;
    --mp-accent-light: #fef3c7;
    --mp-bg: #f0f4f8;
    --mp-card: #ffffff;
    --mp-text: #0f172a;
    --mp-muted: #64748b;
    --mp-border: #e2e8f0;
    --mp-radius: 12px;
    --mp-shadow: 0 2px 16px rgba(0,0,0,.08);
    --mp-shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --mp-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mp-glow-green: rgba(16,185,129,.15);
    --mp-glow-amber: rgba(245,158,11,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--mp-font);
    background: var(--mp-bg);
    color: var(--mp-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.mp-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ═══ Google Places autocomplete dropdown ═════════════════════════════════ */
.pac-container { z-index: 10000 !important; border-radius: 12px; border: 1px solid var(--mp-border); box-shadow: var(--mp-shadow-lg); margin-top: 4px; font-family: var(--mp-font); }
.pac-item { padding: 10px 14px; font-size: 14px; line-height: 1.4; border-top-color: var(--mp-border); cursor: pointer; }
.pac-item:hover, .pac-item-selected { background: var(--mp-primary-light); }
.pac-icon { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-header {
    background: rgba(255,255,255,.95);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 10px 0;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: box-shadow .3s;
}
.mp-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.mp-header-inner {
    display: flex; justify-content: space-between; align-items: center; max-width: 1200px;
}
.mp-header-right { display: flex; align-items: center; gap: 12px; }
.mp-logo {
    display: flex; align-items: center; gap: 7px;
    text-decoration: none; color: var(--mp-text); font-size: 1.2rem;
}
.mp-logo-icon { font-size: 1.3rem; }
.mp-logo-text { font-weight: 400; letter-spacing: -.02em; }
.mp-logo-text strong { font-weight: 800; color: var(--mp-primary); }

.mp-nav-links {
    display: flex; align-items: center; gap: 4px;
}
.mp-nav-link {
    text-decoration: none; color: var(--mp-muted); font-size: .82rem; font-weight: 600;
    padding: 6px 12px; border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.mp-nav-link:hover, .mp-nav-link.mp-nav-active { color: var(--mp-primary); background: var(--mp-primary-light); }

.mp-header-cta {
    display: inline-flex; padding: 8px 18px; font-size: .82rem; font-weight: 700;
    background: var(--mp-primary); color: #fff !important; text-decoration: none;
    border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.mp-header-cta:hover { background: var(--mp-primary-dark); transform: translateY(-1px); }

.mp-header-login {
    text-decoration: none; color: var(--mp-muted); font-size: .82rem; font-weight: 600;
    padding: 6px 12px; border-radius: 8px; transition: all .2s;
    border: 1px solid var(--mp-border);
}
.mp-header-login:hover { color: var(--mp-primary); border-color: var(--mp-primary); }

.mp-mobile-menu-btn {
    display: none; background: none; border: 1px solid var(--mp-border);
    border-radius: 8px; padding: 6px 10px; font-size: 1.2rem; cursor: pointer;
    color: var(--mp-text);
}

.mp-lang { display: flex; gap: 2px; }

/* Footer & cookie banner: see UNIVERSAL FOOTER section at bottom of file */
.mp-lang a {
    text-decoration: none; color: var(--mp-muted); font-size: .78rem; font-weight: 600;
    padding: 5px 8px; border-radius: 6px; transition: all .15s;
    min-width: 32px; text-align: center;
}
.mp-lang a.active, .mp-lang a:hover { color: var(--mp-primary); background: var(--mp-primary-light); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Full viewport, TV-commercial quality
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-hero-full {
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    background: #060d1a;
    color: #fff;
    padding: 90px 20px 60px;
    position: relative; overflow: hidden;
}
/* Hero image carousel */
.mp-hero-carousel {
    position: absolute; inset: 0; z-index: 0;
}
.mp-hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}
.mp-hero-slide-active { opacity: 1; }
/* Dark overlay over carousel */
.mp-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(150deg, rgba(2,20,24,.88) 0%, rgba(4,40,32,.82) 25%, rgba(6,53,32,.78) 50%, rgba(10,30,58,.85) 75%, rgba(6,13,26,.92) 100%);
    pointer-events: none;
}

/* ── Animated grid background (tech/map feel) ───────────────────────────── */
.mp-hero-full::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image:
        radial-gradient(circle, rgba(16,185,129,.25) 1px, transparent 1px),
        radial-gradient(circle, rgba(59,130,246,.15) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 30px 30px;
    animation: mpGridPulse 8s ease-in-out infinite;
    opacity: .35;
    pointer-events: none;
}

/* Gradient overlay at bottom */
.mp-hero-full::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--mp-bg), transparent);
    pointer-events: none; z-index: 3;
}

/* ── Floating decorative emoji elements ──────────────────────────────────── */
.mp-float {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: .18;
    will-change: transform;
}
.mp-float:nth-child(1) { font-size: 2rem; top: 12%; left: 8%; animation: mpFloatSlow 7s ease-in-out infinite; opacity: .15; }
.mp-float:nth-child(2) { font-size: 2.5rem; top: 25%; right: 6%; animation: mpFloatSlow 9s ease-in-out infinite 1s; opacity: .2; }
.mp-float:nth-child(3) { font-size: 1.5rem; bottom: 20%; left: 12%; animation: mpFloatSlow 6s ease-in-out infinite 0.5s; opacity: .22; }
.mp-float:nth-child(4) { font-size: 3rem; bottom: 30%; right: 10%; animation: mpFloatSlow 11s ease-in-out infinite 2s; opacity: .12; }
.mp-float:nth-child(5) { font-size: 1.8rem; top: 55%; left: 3%; animation: mpFloatSlow 8s ease-in-out infinite 3s; opacity: .25; }

/* Animated background orbs */
.mp-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .35;
    pointer-events: none; z-index: 0;
    will-change: transform;
}
.mp-orb1 {
    width: 700px; height: 700px; top: -15%; left: -15%;
    background: radial-gradient(circle, rgba(16,185,129,.5), transparent 70%);
    animation: mpOrbMove1 12s ease-in-out infinite;
}
.mp-orb2 {
    width: 550px; height: 550px; top: 20%; right: -10%;
    background: radial-gradient(circle, rgba(59,130,246,.4), transparent 70%);
    animation: mpOrbMove2 15s ease-in-out infinite;
}
.mp-orb3 {
    width: 450px; height: 450px; bottom: -5%; left: 40%;
    background: radial-gradient(circle, rgba(245,158,11,.3), transparent 70%);
    animation: mpOrbMove3 10s ease-in-out infinite;
}
@keyframes mpOrbMove1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px); }
}
@keyframes mpOrbMove2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -50px); }
}
@keyframes mpOrbMove3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

/* Hero layout: left text + right visual */
.mp-hero-layout {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 40px;
    max-width: 1100px; margin: 0 auto; width: 100%;
}
.mp-hero-left { flex: 1; min-width: 0; }
.mp-hero-right { flex: 0 0 420px; }

/* ── Map card visual ──────────────────────────────────────────────────── */
.mp-map-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px; overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,.5),
        0 0 80px rgba(16,185,129,.12),
        0 0 40px rgba(59,130,246,.08);
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
    transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .5s ease;
    animation: mpGlowPulse 4s ease-in-out infinite;
}
.mp-map-card:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow:
        0 24px 70px rgba(0,0,0,.55),
        0 0 100px rgba(16,185,129,.2),
        0 0 50px rgba(59,130,246,.12);
}

.mp-hero-map-wrap {
    position: relative; width: 100%; height: 340px;
    overflow: hidden; border-radius: 20px;
}
.mp-hero-gmap { width: 100%; height: 100%; border-radius: 20px; }
.mp-hero-map-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

/* Map overlay badges — glass-morphism */
.mp-hero-map-badge {
    position: absolute; display: flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,.55);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    padding: 8px 16px; border-radius: 24px; font-size: .82rem; font-weight: 700; color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 4px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
    animation: mpFadeIn .4s ease forwards; opacity: 0;
    transition: all .4s ease;
}
.mp-hero-badge-a { top: 14px; left: 14px; }
.mp-hero-badge-b { top: 14px; right: 14px; }
.mp-hb-pin {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 900; color: #fff; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.mp-hero-badge-a .mp-hb-pin { background: #10b981; }
.mp-hero-badge-b .mp-hb-pin { background: #f59e0b; }

.mp-hero-map-dist {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    background: rgba(13,107,62,.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    padding: 10px 24px; border-radius: 28px; font-size: .88rem; font-weight: 700; color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 4px 20px rgba(13,107,62,.4), inset 0 1px 0 rgba(255,255,255,.15);
    animation: mpFadeIn .4s ease forwards; opacity: 0;
    white-space: nowrap;
}

/* Dead CSS removed: .mp-map-visual, .mp-map-glow, .mp-route-svg/path/dash,
   .mp-marker*, .mp-map-distance, .mp-truck-anim — replaced by interactive Google Maps hero */
@keyframes mpFadeIn { to { opacity: .6; } }

.mp-hero-left { text-align: left; }

.mp-hero-badge {
    display: inline-block; padding: 6px 18px; border-radius: 999px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    font-size: .82rem; font-weight: 600; letter-spacing: .02em;
    margin-bottom: 20px; -webkit-backdrop-filter: blur(8px);
}

.mp-hero-full h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900; letter-spacing: -.04em;
    line-height: 1.15; margin-bottom: 16px;
}
.mp-hero-accent {
    display: block; color: var(--mp-accent);
    text-shadow: 0 2px 20px rgba(245,158,11,.3);
}
.mp-hero-sub {
    font-size: clamp(.95rem, 2.5vw, 1.15rem);
    opacity: .85; max-width: 520px; margin: 0 0 24px;
    line-height: 1.6;
}

/* Hero stats */
.mp-hero-stats {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 24px;
}
.mp-hero-stat {
    font-size: .88rem; font-weight: 600; opacity: .85;
    display: flex; align-items: center; gap: 6px;
}

/* Hero CTA button */
.mp-btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; font-size: 1.05rem; font-weight: 800;
    background: var(--mp-accent); color: #fff !important;
    border: none; border-radius: 14px; cursor: pointer;
    font-family: var(--mp-font); text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,158,11,.4);
    transition: all .25s; margin-bottom: 32px;
}
.mp-btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,158,11,.5); background: #d97706; }

/* ── Conversational hero form ──────────────────────────────────────────── */
.mp-hero-conv {
    max-width: 520px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.mp-conv-step {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px; padding: 14px 18px;
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
    transform-origin: top center;
}
.mp-conv-step.mp-conv-active {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 4px 24px rgba(0,0,0,.2), 0 0 30px rgba(16,185,129,.08);
}
.mp-conv-step.mp-conv-hidden {
    opacity: 0; max-height: 0; padding: 0 18px; margin: 0;
    overflow: hidden; border: none;
    transform: translateY(-8px) scale(.96);
}
.mp-conv-step.mp-conv-visible {
    opacity: 1; max-height: 200px; padding: 14px 18px;
    animation: mpSlideDown .5s cubic-bezier(.4, 0, .2, 1);
    transform: none;
}
@keyframes mpSlideDown {
    from { opacity: 0; transform: translateY(-10px) scale(.97); max-height: 0; }
    to { opacity: 1; transform: none; max-height: 200px; }
}
.mp-conv-label {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; font-weight: 700; opacity: .9; margin-bottom: 8px;
}
.mp-conv-globe {
    font-size: 1.4rem;
    display: inline-block;
    animation: mpGlobeSpin 4s linear infinite;
}
@keyframes mpGlobeSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.mp-conv-input {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px; padding: 2px;
    transition: all .3s ease;
}
.mp-conv-input:focus-within {
    background: rgba(255,255,255,.22); border-color: var(--mp-accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,.2), 0 0 20px rgba(245,158,11,.1);
}
.mp-conv-icon { padding-left: 12px; font-size: 1.2rem; flex-shrink: 0; }
.mp-conv-input input {
    width: 100%; background: transparent; border: none; outline: none;
    padding: 15px 16px 15px 8px; font-size: 17px; color: #fff;
    font-family: var(--mp-font);
}
.mp-conv-input input::placeholder { color: rgba(255,255,255,.45); }
.mp-conv-route-info {
    text-align: center; padding: 8px 0 12px;
    font-size: .95rem; font-weight: 700; color: var(--mp-accent);
}
.mp-btn-hero-go {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 16px 20px; font-size: 1.05rem; font-weight: 800;
    background: var(--mp-accent); color: #fff !important;
    border: none; border-radius: 14px; cursor: pointer;
    font-family: var(--mp-font); white-space: nowrap;
    transition: all .25s; box-shadow: 0 4px 16px rgba(245,158,11,.35);
    min-height: 52px;
}
.mp-btn-hero-go:hover { background: #d97706; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245,158,11,.4); }

/* ── Floating globe widget ────────────────────────────────────────────── */
.mp-globe-widget {
    position: fixed; bottom: 24px; right: 24px; z-index: 500;
    width: 64px; height: 64px;
    cursor: pointer; transition: transform .3s;
}
.mp-globe-widget:hover { transform: scale(1.15); }
.mp-globe-widget:active { transform: scale(.95); }
.mp-globe-spin {
    width: 64px; height: 64px; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--mp-primary), #0a8c4a);
    border-radius: 50%; box-shadow: 0 4px 24px rgba(13,107,62,.4);
    animation: mpGlobeFloat 3s ease-in-out infinite;
    will-change: transform;
}
.mp-globe-face {
    font-size: 2rem;
    animation: mpGlobeSpin3D 6s linear infinite;
    display: inline-block;
}
@keyframes mpGlobeSpin3D {
    0% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(90deg) scale(.9); }
    50% { transform: rotateY(180deg) scale(1); }
    75% { transform: rotateY(270deg) scale(.9); }
    100% { transform: rotateY(360deg) scale(1); }
}
.mp-globe-smiley {
    position: absolute; bottom: -4px; right: -4px;
    font-size: 1.3rem; filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
    animation: mpSmileyBounce 2s ease-in-out infinite;
}
@keyframes mpSmileyBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.1); }
}
@keyframes mpGlobeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.mp-globe-pulse {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid var(--mp-primary);
    animation: mpPulseRing 2s ease-out infinite;
    pointer-events: none;
}
@keyframes mpPulseRing {
    0% { transform: scale(.8); opacity: .6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS — Shared
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-section { padding: 64px 0; }
.mp-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800;
    text-align: center; margin-bottom: 40px; letter-spacing: -.03em;
}

/* Scroll reveal animation */
.mp-reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.mp-reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STRIP — Premium card-like items
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-trust-strip {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f7ff 50%, #fefdf5 100%);
    border-bottom: 1px solid var(--mp-border);
    padding: 24px 0;
}
.mp-trust-grid {
    display: flex; gap: 16px; justify-content: center; align-items: stretch;
    flex-wrap: wrap;
}
.mp-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; font-weight: 600; color: var(--mp-text);
    white-space: nowrap;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--mp-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.mp-trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.mp-trust-icon { font-size: 1.4rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — With connecting lines
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-how { background: #fff; }
.mp-how-grid {
    display: flex; gap: 16px; justify-content: center; align-items: center;
    flex-wrap: wrap; max-width: 800px; margin: 0 auto;
}
.mp-how-card {
    flex: 1; min-width: 200px; max-width: 240px;
    text-align: center; padding: 28px 16px;
    border-radius: 16px; background: var(--mp-bg);
    border: 1px solid var(--mp-border);
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.mp-how-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-lg); }

/* Connecting lines between steps */
.mp-how-card::after {
    content: '';
    position: absolute;
    top: 50%; right: -18px;
    width: 18px; height: 2px;
    background: linear-gradient(90deg, var(--mp-primary), transparent);
    opacity: .35;
}
.mp-how-card:last-child::after { display: none; }

.mp-how-num {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--mp-primary); color: #fff;
    font-size: .8rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.mp-how-icon { font-size: 2.2rem; margin-bottom: 12px; margin-top: 8px; }
.mp-how-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.mp-how-card p { font-size: .82rem; color: var(--mp-muted); line-height: 1.5; }
.mp-how-arrow {
    font-size: 1.5rem; color: var(--mp-muted); opacity: .4;
    flex-shrink: 0; font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES — Gradient border on hover
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-features { background: var(--mp-bg); }
.mp-features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; max-width: 800px; margin: 0 auto;
}
.mp-feature-card {
    background: #fff; padding: 24px 20px; border-radius: 14px;
    border: 2px solid var(--mp-border);
    transition: transform .25s, box-shadow .25s, border-color .3s;
    position: relative;
}
.mp-feature-card::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
}
.mp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--mp-shadow);
    border-color: transparent;
}
.mp-feature-card:hover::before { opacity: 1; }
.mp-feature-icon { font-size: 1.8rem; margin-bottom: 10px; }
.mp-feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.mp-feature-card p { font-size: .82rem; color: var(--mp-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════════════
   POPULAR ROUTES
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-routes { background: #fff; }
.mp-routes-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px; max-width: 800px; margin: 0 auto;
}
.mp-route-card {
    display: block; text-decoration: none; color: var(--mp-text);
    background: var(--mp-bg); padding: 18px 20px; border-radius: 12px;
    border: 1px solid var(--mp-border);
    transition: all .2s;
}
.mp-route-card:hover { border-color: var(--mp-primary); background: var(--mp-primary-light); transform: translateY(-2px); }
.mp-route-from-to { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mp-route-city { font-weight: 700; font-size: .92rem; }
.mp-route-arrow { color: var(--mp-primary); font-weight: 700; }
.mp-route-meta { display: flex; justify-content: space-between; font-size: .82rem; color: var(--mp-muted); }
.mp-route-meta strong { color: var(--mp-primary); font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   TOOLS SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-tools { background: #fff; }
.mp-tools-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; max-width: 900px; margin: 0 auto;
}
.mp-tool-card {
    background: var(--mp-bg); border-radius: 14px; overflow: hidden;
    border: 1px solid var(--mp-border);
    transition: transform .25s, box-shadow .25s;
}
.mp-tool-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-lg); }
.mp-tool-img {
    width: 100%; height: 140px; overflow: hidden;
}
.mp-tool-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.mp-tool-card:hover .mp-tool-img img { transform: scale(1.06); }
.mp-tool-body { padding: 14px 16px; }
.mp-tool-body h3 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.mp-tool-body p { font-size: .8rem; color: var(--mp-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS — Quote watermark
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-reviews { background: var(--mp-bg); }
.mp-reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; max-width: 900px; margin: 0 auto;
}
.mp-review-card {
    background: #fff; padding: 24px 20px; border-radius: 14px;
    border: 1px solid var(--mp-border);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.mp-review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 12px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--mp-primary);
    opacity: .06;
    line-height: 1;
    pointer-events: none;
}
.mp-review-card:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow); }
.mp-review-stars { color: var(--mp-accent); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.mp-review-text {
    font-size: .88rem; line-height: 1.6; color: var(--mp-text);
    margin-bottom: 16px; font-style: italic;
    position: relative; z-index: 1;
}
.mp-review-author {
    display: flex; align-items: center; gap: 10px;
    position: relative; z-index: 1;
}
.mp-review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--mp-primary-light);
}
.mp-review-author strong { display: block; font-size: .85rem; font-weight: 700; }
.mp-review-author span { font-size: .78rem; color: var(--mp-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   CALCULATOR SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-calc-section {
    background: var(--mp-bg); padding: 48px 0 80px;
}

/* Progress steps */
.mp-progress-wrap {
    background: #fff; border: 1px solid var(--mp-border); border-radius: 14px;
    padding: 14px 8px; margin-bottom: 24px;
    position: sticky; top: 60px; z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.mp-steps { display: flex; gap: 0; justify-content: center; align-items: center; }
.mp-step {
    display: flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600;
    color: var(--mp-muted); padding: 4px 10px; transition: color .3s; white-space: nowrap;
}
.mp-step.active { color: var(--mp-primary); }
.mp-step.done { color: var(--mp-primary); opacity: .6; }
.mp-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--mp-border); color: var(--mp-muted);
    font-size: .82rem; font-weight: 700; flex-shrink: 0; transition: all .25s;
}
.mp-step.active .mp-step-num {
    background: var(--mp-primary); color: #fff;
    box-shadow: 0 0 0 4px var(--mp-primary-light);
}
.mp-step.done .mp-step-num { background: var(--mp-primary-light); color: var(--mp-primary); }
.mp-step + .mp-step::before {
    content: ''; display: block; width: 16px; height: 2px;
    background: var(--mp-border); margin-right: 8px; flex-shrink: 0;
}
.mp-step.done + .mp-step::before { background: var(--mp-primary-light); }

/* Panels */
.mp-panel { display: none; animation: mpFadeIn .3s ease; }
.mp-panel.active { display: block; }

.mp-panel h2 {
    font-size: 1.3rem; font-weight: 700; margin-bottom: 20px;
    letter-spacing: -.02em; display: flex; align-items: center; gap: 8px;
}
.mp-panel-icon { font-size: 1.2rem; }

/* Form fields */
.mp-field { margin-bottom: 18px; }
.mp-field label {
    display: block; font-weight: 600; font-size: .88rem;
    margin-bottom: 6px; color: var(--mp-text);
}
.mp-field input[type="text"],
.mp-field input[type="email"],
.mp-field input[type="tel"],
.mp-field input[type="date"],
.mp-field select {
    width: 100%; font-size: 16px;
    padding: 13px 16px; border: 2px solid var(--mp-border);
    border-radius: var(--mp-radius); font-family: var(--mp-font);
    transition: border-color .2s, box-shadow .2s;
    background: #fff; color: var(--mp-text);
    -webkit-appearance: none; appearance: none; min-height: 50px;
}
.mp-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.mp-field input:focus, .mp-field select:focus {
    outline: none; border-color: var(--mp-primary);
    box-shadow: 0 0 0 3px rgba(13,107,62,.12);
}

/* Input with icon */
.mp-input-icon {
    position: relative; display: flex; align-items: center;
}
.mp-icon-pin {
    position: absolute; left: 14px; font-size: 1rem; z-index: 1;
    pointer-events: none;
}
.mp-input-icon input { padding-left: 42px !important; }

/* Row layout */
.mp-row { display: flex; gap: 14px; flex-wrap: wrap; }
.mp-half { flex: 1; min-width: 200px; }
.mp-third { flex: 1; min-width: 160px; }

/* Swap addresses button */
.mp-swap-row { text-align: center; margin: -6px 0 10px; }
.mp-swap-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; font-size: .8rem; font-weight: 600;
    color: var(--mp-primary); background: var(--mp-primary-light);
    border: 1px solid rgba(13,107,62,.15); border-radius: 8px;
    cursor: pointer; font-family: var(--mp-font); transition: all .2s;
}
.mp-swap-btn:hover { background: var(--mp-primary); color: #fff; }
.mp-swap-btn svg { width: 14px; height: 14px; }

/* ── Smart suggestions (after route) ──────────────────────────────────── */
.mp-suggest {
    background: linear-gradient(135deg, var(--mp-primary-light), #f0f9ff);
    border: 1px solid rgba(13,107,62,.15);
    border-radius: 14px; padding: 18px; margin: 18px 0;
    animation: mpSlideDown .4s ease;
}
.mp-suggest-title {
    font-size: .9rem; font-weight: 700; color: var(--mp-primary);
    margin-bottom: 12px; text-align: center;
}
.mp-suggest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mp-suggest-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 14px 8px; border: 2px solid var(--mp-border); border-radius: 12px;
    background: #fff; cursor: pointer; transition: all .2s;
    text-align: center; font-family: var(--mp-font);
}
.mp-suggest-card:hover { border-color: var(--mp-primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.mp-suggest-card.active { border-color: var(--mp-primary); background: var(--mp-primary-light); box-shadow: 0 0 0 1px var(--mp-primary); }
.mp-suggest-icon { font-size: 1.8rem; margin-bottom: 4px; }
.mp-suggest-label { font-size: .82rem; font-weight: 700; color: var(--mp-text); }
.mp-suggest-desc { font-size: .68rem; color: var(--mp-muted); line-height: 1.3; margin-top: 2px; }
.mp-suggest-route {
    text-align: center; margin-top: 12px; font-size: .85rem;
    color: var(--mp-muted); font-weight: 500;
}

/* Country badges */
.mp-country-badges {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 10px 0;
}
.mp-country-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--mp-primary-light); color: var(--mp-primary);
    padding: 5px 12px; border-radius: 8px; font-weight: 700; font-size: .85rem;
}
.mp-country-arrow { color: var(--mp-muted); font-size: .9rem; }

/* Route info badge */
.mp-route-info { margin: 14px 0; text-align: center; }
.mp-route-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--mp-accent-light); color: #92400e;
    padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: .92rem;
}

/* Map */
.mp-map-wrap { margin: 14px 0; border-radius: var(--mp-radius); overflow: hidden; box-shadow: var(--mp-shadow); }
#mpMap { width: 100%; height: 260px; border-radius: var(--mp-radius); }

/* Housing grid */
.mp-housing-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px;
}
.mp-housing-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 16px 8px 14px; border: 2px solid var(--mp-border); border-radius: var(--mp-radius);
    cursor: pointer; transition: all .2s; text-align: center; background: #fff;
    min-height: 95px; position: relative;
}
.mp-housing-card:active { transform: scale(.97); }
.mp-housing-card:has(input:checked) {
    border-color: var(--mp-primary); background: var(--mp-primary-light);
    box-shadow: 0 0 0 1px var(--mp-primary);
}
.mp-housing-card input { display: none; }
.mp-housing-icon { font-size: 1.8rem; margin-bottom: 4px; }
.mp-housing-label { font-weight: 600; font-size: .82rem; line-height: 1.2; }
.mp-housing-m3 { font-size: .72rem; color: var(--mp-muted); margin-top: 3px; }

/* Furniture grid */
.mp-furniture-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px;
}
.mp-furniture-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 14px 6px 12px; border: 2px solid var(--mp-border); border-radius: var(--mp-radius);
    cursor: pointer; transition: all .18s; text-align: center; background: #fff; min-height: 90px;
}
.mp-furniture-card:active { transform: scale(.97); }
.mp-furniture-card:has(input:checked) {
    border-color: var(--mp-primary); background: var(--mp-primary-light);
    box-shadow: 0 0 0 1px var(--mp-primary);
}
.mp-furniture-card input { display: none; }
.mp-furn-icon { font-size: 1.7rem; margin-bottom: 3px; }
.mp-furn-name { font-size: .76rem; font-weight: 600; line-height: 1.2; }
.mp-furn-m3 { font-size: .68rem; color: var(--mp-muted); margin-top: 2px; }

/* Extras grid */
.mp-extras-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.mp-extra-card {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    border: 2px solid var(--mp-border); border-radius: var(--mp-radius);
    cursor: pointer; transition: all .18s; background: #fff; min-height: 54px;
}
.mp-extra-card:active { transform: scale(.98); }
.mp-extra-card:has(input:checked) {
    border-color: var(--mp-primary); background: var(--mp-primary-light);
    box-shadow: 0 0 0 1px var(--mp-primary);
}
.mp-extra-card input { margin: 0; accent-color: var(--mp-primary); width: 20px; height: 20px; flex-shrink: 0; }
.mp-extra-card span { font-weight: 600; font-size: .88rem; }

/* Volume bar */
.mp-volume-bar {
    background: var(--mp-primary-light); padding: 14px 18px;
    border-radius: var(--mp-radius); font-size: .92rem;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin: 18px 0; border: 1px solid rgba(13,107,62,.15);
}
.mp-truck-rec { margin-left: auto; font-size: .82rem; color: var(--mp-primary); font-weight: 700; }

/* Date tip */
.mp-tip {
    background: var(--mp-accent-light); padding: 10px 16px; border-radius: 10px;
    font-size: .85rem; color: #92400e; font-weight: 500;
    display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}

/* Price preview */
.mp-price-preview {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    color: #fff; text-align: center; padding: 24px 20px;
    border-radius: var(--mp-radius); margin: 20px 0;
    box-shadow: 0 4px 20px rgba(13,107,62,.25);
}
.mp-price-label { font-size: .88rem; opacity: .85; margin-bottom: 4px; font-weight: 500; }
.mp-price-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.mp-price-vat { font-size: .78rem; opacity: .7; margin-top: 4px; }

/* Nav buttons */
.mp-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 24px; gap: 10px;
}
.mp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 14px 28px; border: none; border-radius: var(--mp-radius);
    font-size: .95rem; font-weight: 700; cursor: pointer;
    font-family: var(--mp-font); transition: all .2s cubic-bezier(.34,1.56,.64,1);
    min-height: 50px; text-decoration: none;
}
.mp-btn:active { transform: scale(.95) !important; }
.mp-btn-next, .mp-btn-submit {
    background: var(--mp-primary); color: #fff !important;
    box-shadow: 0 2px 10px rgba(13,107,62,.25);
}
.mp-btn-next:hover, .mp-btn-submit:hover {
    background: var(--mp-primary-dark); transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13,107,62,.3);
}
.mp-btn-prev {
    background: transparent; color: var(--mp-muted);
    border: 2px solid var(--mp-border); padding: 14px 20px;
}
.mp-btn-prev:hover { background: var(--mp-border); color: var(--mp-text); }

/* Result card */
.mp-result-card {
    background: #fff; border-radius: 16px; box-shadow: var(--mp-shadow-lg);
    padding: 32px 24px; text-align: center;
}
.mp-result-check { font-size: 2.5rem; margin-bottom: 12px; }
.mp-result-price { margin-bottom: 20px; }
.mp-result-label { font-size: .88rem; color: var(--mp-muted); margin-bottom: 4px; }
.mp-result-amount {
    font-size: 3.2rem; font-weight: 800; color: var(--mp-primary);
    letter-spacing: -.04em; line-height: 1.1;
}
.mp-result-vat { font-size: .82rem; color: var(--mp-muted); margin-top: 4px; }

.mp-result-details {
    display: flex; gap: 0; justify-content: center;
    margin-bottom: 20px; padding: 18px 0;
    border-top: 1px solid var(--mp-border); border-bottom: 1px solid var(--mp-border);
}
.mp-result-row {
    flex: 1; text-align: center; padding: 0 12px;
    border-right: 1px solid var(--mp-border);
}
.mp-result-row:last-child { border-right: none; }
.mp-result-row span {
    display: block; font-size: .72rem; color: var(--mp-muted);
    margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
}
.mp-result-row strong { font-size: 1rem; font-weight: 700; }

.mp-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.mp-btn-pdf {
    background: var(--mp-accent); color: #fff !important;
    padding: 16px 32px; font-size: 1rem;
    box-shadow: 0 2px 10px rgba(245,158,11,.3);
}
.mp-btn-pdf:hover { background: #d97706; transform: translateY(-1px); }

/* Price breakdown */
.mp-breakdown {
    text-align: left; max-width: 360px; margin: 0 auto 20px;
    border: 1px solid var(--mp-border); border-radius: 12px; overflow: hidden;
}
.mp-bd-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 16px; font-size: .85rem;
    border-bottom: 1px solid var(--mp-border);
}
.mp-bd-row:last-child { border-bottom: none; }
.mp-bd-row span { color: var(--mp-muted); }
.mp-bd-row strong { font-weight: 600; }
.mp-bd-vat { background: #fafafa; }
.mp-bd-total {
    background: var(--mp-primary-light); font-size: .95rem;
    padding: 10px 16px;
}
.mp-bd-total span { color: var(--mp-primary); font-weight: 700; }
.mp-bd-total strong { color: var(--mp-primary); font-size: 1.1rem; font-weight: 800; }

/* AI Advice block */
.mp-advice {
    background: #fff; border-radius: 16px; box-shadow: var(--mp-shadow);
    padding: 24px; margin-top: 16px; text-align: left;
    animation: mpFadeIn .5s ease forwards;
}
.mp-advice h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--mp-primary); }
.mp-advice-stats {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.mp-advice-stat {
    flex: 1; min-width: 100px; background: var(--mp-bg); border-radius: 10px;
    padding: 10px 14px; text-align: center;
}
.mp-advice-stat-val { font-size: 1.2rem; font-weight: 800; color: var(--mp-primary); display: block; }
.mp-advice-stat-label { font-size: .72rem; color: var(--mp-muted); }
.mp-advice-tips { margin-bottom: 12px; }
.mp-advice-tip {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 8px 0; font-size: .85rem; color: var(--mp-text);
    border-bottom: 1px solid var(--mp-border);
}
.mp-advice-tip:last-child { border-bottom: none; }
.mp-advice-tip-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.mp-advice-saving {
    background: var(--mp-accent-light); padding: 12px 16px; border-radius: 10px;
    font-size: .88rem; font-weight: 600; color: #92400e;
    display: flex; align-items: center; gap: 8px;
}

.mp-price-note { font-size: .8rem; color: var(--mp-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.mp-privacy { font-size: .8rem; color: var(--mp-muted); margin: 12px 0 0; }

/* ── Micro-interactions & animations ──────────────────────────────────────── */
/* Validation states */
.mp-field.mp-valid .mp-input-icon input,
.mp-field.mp-valid input { border-color: #10b981 !important; }
.mp-field.mp-valid::after { content: '\2713'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #10b981; font-weight: 700; font-size: 1.1rem; }
.mp-field.mp-valid { position: relative; }
.mp-field.mp-invalid .mp-input-icon input,
.mp-field.mp-invalid input { border-color: #ef4444 !important; animation: mpShake .4s; }

/* Shake animation */
@keyframes mpShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.mp-shake { animation: mpShake .5s ease; }

/* Number flash */
.mp-num-flash { color: var(--mp-primary) !important; transition: color .3s; }

/* Result check bounce */
.mp-result-check { animation: mpCheckBounce .6s ease; }
@keyframes mpCheckBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* (hero animation handled by orbs now) */

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — Smooth expand/collapse
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-faq { background: #fff; }
.mp-faq-list { max-width: 600px; margin: 0 auto; }
.mp-faq-item {
    border: 1px solid var(--mp-border); border-radius: 12px;
    margin-bottom: 10px; overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.mp-faq-item[open] {
    border-color: var(--mp-primary);
    box-shadow: 0 2px 12px rgba(13,107,62,.08);
}
.mp-faq-item summary {
    padding: 16px 20px; font-weight: 600; font-size: .92rem;
    cursor: pointer; list-style: none; display: flex; align-items: center;
    justify-content: space-between;
    transition: background .3s, color .3s;
    -webkit-user-select: none; user-select: none;
    min-height: 44px;
}
.mp-faq-item summary::-webkit-details-marker { display: none; }
.mp-faq-item summary::after {
    content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--mp-muted);
    transition: transform .3s ease, color .3s;
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; flex-shrink: 0;
}
.mp-faq-item[open] summary::after {
    content: '\2212';
    color: var(--mp-primary);
    transform: rotate(180deg);
}
.mp-faq-item[open] summary { background: var(--mp-primary-light); color: var(--mp-primary); }
.mp-faq-item p {
    padding: 0 20px 16px; font-size: .88rem; color: var(--mp-muted); line-height: 1.6;
    animation: mpFaqExpand .35s ease;
}
@keyframes mpFaqExpand {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-bottom-cta {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    color: #fff; text-align: center; padding: 60px 20px;
}
.mp-bottom-cta h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.mp-bottom-cta p { font-size: 1rem; opacity: .85; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   STICKY MOBILE PRICE BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-sticky-price {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--mp-primary);
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 16px rgba(0,0,0,.2);
}
.mp-sticky-inner {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #fff; max-width: 500px; margin: 0 auto;
}
.mp-sticky-label { font-size: .8rem; opacity: .85; font-weight: 500; }
.mp-sticky-amount { font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; }
.mp-sticky-vat { font-size: .72rem; opacity: .7; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-footer {
    background: var(--mp-text); color: #94a3b8;
    padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
    text-align: center; font-size: .8rem;
}
.mp-footer a { color: #cbd5e1; text-decoration: none; }
.mp-footer a:hover { color: #fff; }

@keyframes mpGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEW KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Grid dot pulse for hero background */
@keyframes mpGridPulse {
    0%, 100% {
        opacity: .3;
        background-position: 0 0, 30px 30px;
    }
    25% {
        opacity: .45;
        background-position: 2px 2px, 32px 32px;
    }
    50% {
        opacity: .35;
        background-position: 0 0, 30px 30px;
    }
    75% {
        opacity: .4;
        background-position: -2px -2px, 28px 28px;
    }
}

/* Gentle up/down float for decorative elements */
@keyframes mpFloatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(2deg);
    }
    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
    75% {
        transform: translateY(-18px) rotate(1deg);
    }
}

/* Subtle glow pulse for hero map card */
@keyframes mpGlowPulse {
    0%, 100% {
        box-shadow:
            0 20px 60px rgba(0,0,0,.5),
            0 0 80px rgba(16,185,129,.12),
            0 0 40px rgba(59,130,246,.08);
    }
    50% {
        box-shadow:
            0 20px 60px rgba(0,0,0,.5),
            0 0 100px rgba(16,185,129,.2),
            0 0 50px rgba(59,130,246,.14);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (max-width: 768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Header nav */
    .mp-nav-links {
        display: none; position: fixed; top: 56px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 999;
        border-bottom: 2px solid var(--mp-primary);
    }
    .mp-nav-links.mp-nav-open { display: flex; }
    .mp-nav-link { padding: 12px 16px; font-size: .95rem; border-radius: 10px; }
    .mp-mobile-menu-btn { display: block; }
    .mp-header-cta { display: none; }
    .mp-header-login { display: none; }

    /* Hero stacks vertically */
    .mp-hero-full { padding: 80px 16px 40px; min-height: auto; }
    .mp-hero-layout { flex-direction: column; gap: 24px; }
    .mp-hero-left { text-align: center; }
    .mp-hero-right { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
    .mp-hero-map-wrap { height: 200px; }
    .mp-map-card { transform: none; }
    .mp-hero-sub { text-align: center; margin-left: auto; margin-right: auto; }

    /* Conversational form full width */
    .mp-hero-conv { max-width: 100%; }
    .mp-conv-input input { width: 100%; }

    /* Stats row wraps */
    .mp-hero-stats { justify-content: center; gap: 12px; }

    /* Trust strip 2-column */
    .mp-trust-grid { gap: 10px; }
    .mp-trust-item { flex: 1 1 calc(50% - 10px); min-width: 140px; justify-content: center; }

    /* How-it-works connecting lines hide on tablet */
    .mp-how-card::after { display: none; }

    /* Reviews 2 col */
    .mp-reviews-grid { grid-template-columns: 1fr 1fr; }

    /* Tools 2 col */
    .mp-tools-grid { grid-template-columns: 1fr 1fr; }

    /* Footer 2 col */
    .mp-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 24px; }
    .mp-footer-brand { grid-column: 1 / -1; }
    .mp-cookie-inner { flex-direction: column; text-align: center; }
    .mp-cookie-btns { justify-content: center; }

    /* Floating elements smaller on tablet */
    .mp-float { opacity: .1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 600px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .mp-container { padding: 0 14px; }

    /* Header */
    .mp-header { padding: 8px 0; }
    .mp-header-cta { display: none; }

    /* Hero */
    .mp-hero-full { padding: 64px 14px 28px; min-height: auto; }
    .mp-hero-layout { flex-direction: column; gap: 16px; }
    .mp-hero-left { text-align: center; }
    .mp-hero-right { flex: none; width: 100%; }
    .mp-hero-map-wrap { height: 220px; }
    .mp-map-visual { height: 170px; }
    .mp-map-card { transform: none; border-radius: 14px; animation: none; }
    .mp-hero-map-badge { font-size: .7rem; padding: 4px 10px; }
    .mp-hero-map-dist { font-size: .75rem; padding: 6px 14px; }
    .mp-map-distance { font-size: .66rem; padding: 3px 10px; }
    .mp-truck-anim { font-size: 1rem; }
    .mp-hero-full h1 { font-size: clamp(1.4rem, 7vw, 2rem); }
    .mp-hero-badge { font-size: .72rem; padding: 4px 12px; margin-bottom: 10px; }
    .mp-hero-sub { font-size: .85rem; margin: 0 auto 14px; text-align: center; }
    .mp-hero-stats { gap: 8px; justify-content: center; margin-bottom: 14px; }
    .mp-hero-stat { font-size: .75rem; }
    .mp-hero-conv { max-width: 100%; }
    .mp-conv-step { padding: 10px 12px; border-radius: 12px; }
    .mp-conv-input input { padding: 11px 12px 11px 6px; font-size: 15px; }
    .mp-orb { filter: blur(50px); opacity: .2; }
    .mp-float { display: none; }
    .mp-globe-widget { width: 48px; height: 48px; bottom: 14px; right: 14px; }
    .mp-globe-spin { width: 48px; height: 48px; }
    .mp-globe-face { font-size: 1.6rem; }
    .mp-globe-smiley { font-size: 1rem; }

    /* Sections */
    .mp-section { padding: 40px 0; }
    .mp-section-title { font-size: 1.4rem; margin-bottom: 28px; }

    /* How it works */
    .mp-how-grid { flex-direction: column; align-items: center; }
    .mp-how-card { max-width: 100%; width: 100%; }
    .mp-how-card::after { display: none; }
    .mp-how-arrow { transform: rotate(90deg); font-size: 1.2rem; }

    /* Features */
    .mp-features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .mp-feature-card { padding: 16px 14px; }
    .mp-feature-icon { font-size: 1.5rem; }

    /* Suggestions */
    .mp-suggest-grid { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .mp-suggest-card { padding: 10px 4px; }
    .mp-suggest-icon { font-size: 1.4rem; }
    .mp-suggest-label { font-size: .72rem; }
    .mp-suggest-desc { display: none; }
    .mp-suggest { padding: 12px; margin: 12px 0; }

    /* Trust strip */
    .mp-trust-grid { gap: 8px; justify-content: center; }
    .mp-trust-item {
        font-size: .78rem; flex: 1 1 calc(50% - 8px);
        padding: 10px 12px; min-width: 130px;
    }

    /* Tools */
    .mp-tools-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .mp-tool-img { height: 100px; }
    .mp-tool-body { padding: 10px 12px; }
    .mp-tool-body h3 { font-size: .82rem; }
    .mp-tool-body p { font-size: .75rem; }

    /* Reviews */
    .mp-reviews-grid { grid-template-columns: 1fr; gap: 12px; }

    /* Routes */
    .mp-routes-grid { grid-template-columns: 1fr; gap: 8px; }

    /* Calculator */
    .mp-calc-section { padding: 32px 0 100px; }
    .mp-progress-wrap { top: 50px; padding: 10px 4px; margin-bottom: 18px; }
    .mp-step-label { display: none; }
    .mp-step { padding: 4px 6px; }
    .mp-step + .mp-step::before { width: 12px; margin-right: 6px; }

    .mp-panel h2 { font-size: 1.1rem; margin-bottom: 14px; }
    .mp-field { margin-bottom: 14px; }
    .mp-row { flex-direction: column; gap: 0; }
    .mp-half, .mp-third { min-width: 100%; }

    /* Housing: 2 cols */
    .mp-housing-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .mp-housing-card { padding: 14px 6px 12px; min-height: 85px; }
    .mp-housing-icon { font-size: 1.5rem; }

    /* Furniture: 2 cols */
    .mp-furniture-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
    .mp-furniture-card { padding: 12px 6px 10px; min-height: 82px; }

    /* Extras: 1 col */
    .mp-extras-grid { grid-template-columns: 1fr; gap: 8px; }

    /* Volume bar */
    .mp-volume-bar { flex-direction: column; align-items: flex-start; gap: 3px; }
    .mp-truck-rec { margin-left: 0; }

    /* Price preview */
    .mp-price-preview { padding: 18px 14px; }
    .mp-price-amount { font-size: 2rem; }

    #mpMap { height: 200px; }

    /* Nav full-width on mobile */
    .mp-nav { flex-direction: column-reverse; gap: 6px; }
    .mp-btn-next, .mp-btn-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 14px; min-height: 50px; }
    .mp-btn-prev { width: 100%; border: none; background: transparent; color: var(--mp-muted); font-size: .88rem; padding: 10px; min-height: 44px; }

    /* Result */
    .mp-result-card { padding: 22px 14px; }
    .mp-result-amount { font-size: 2.4rem; }
    .mp-result-actions { flex-direction: column; }
    .mp-btn-pdf { width: 100%; padding: 16px; border-radius: 14px; min-height: 50px; }

    /* FAQ */
    .mp-faq-item summary { padding: 14px 16px; font-size: .88rem; min-height: 48px; }

    /* Bottom CTA */
    .mp-bottom-cta { padding: 40px 16px; }
    .mp-bottom-cta .mp-btn-hero { width: 100%; min-height: 50px; }

    /* Footer */
    .mp-footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mp-footer-brand { grid-column: 1 / -1; }
    .mp-cookie-inner { flex-direction: column; text-align: center; }

    /* Disable hover effects on touch devices */
    .mp-feature-card:hover,
    .mp-how-card:hover,
    .mp-tool-card:hover,
    .mp-review-card:hover,
    .mp-route-card:hover,
    .mp-trust-item:hover {
        transform: none;
        box-shadow: none;
    }
    /* Keep active/tap feedback */
    .mp-feature-card:active,
    .mp-how-card:active { transform: scale(.98); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small phone (max-width: 480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    /* Hero adjustments */
    .mp-hero-full { padding: 60px 12px 24px; }
    .mp-hero-full h1 { font-size: clamp(1.3rem, 6.5vw, 1.75rem); }
    .mp-hero-map-wrap { height: 180px; }
    .mp-hero-badge { font-size: .68rem; padding: 3px 10px; }
    .mp-hero-sub { font-size: .82rem; }
    .mp-conv-step { padding: 8px 10px; }
    .mp-conv-input input { font-size: 16px; padding: 10px 10px 10px 6px; }
    .mp-btn-hero-go { padding: 14px 16px; font-size: .95rem; }

    /* Calculator full-width inputs */
    .mp-field input[type="text"],
    .mp-field input[type="email"],
    .mp-field input[type="tel"],
    .mp-field input[type="date"],
    .mp-field select {
        font-size: 16px;
        padding: 14px 16px;
        min-height: 52px;
    }

    /* Housing grid: 2 columns */
    .mp-housing-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .mp-housing-card { padding: 12px 4px 10px; min-height: 80px; }
    .mp-housing-icon { font-size: 1.3rem; }
    .mp-housing-label { font-size: .75rem; }

    /* Furniture grid: 2 columns */
    .mp-furniture-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .mp-furniture-card { padding: 10px 4px 8px; min-height: 76px; }
    .mp-furn-icon { font-size: 1.4rem; }
    .mp-furn-name { font-size: .72rem; }

    /* Features: single column */
    .mp-features-grid { grid-template-columns: 1fr; }

    /* Tools: single column */
    .mp-tools-grid { grid-template-columns: 1fr; }

    /* Blog / route cards: single column */
    .mp-routes-grid { grid-template-columns: 1fr; }

    /* Trust items full width */
    .mp-trust-item { flex: 1 1 100%; }

    /* Footer stacks */
    .mp-footer-inner { grid-template-columns: 1fr; gap: 16px; }
    .mp-footer-brand { grid-column: auto; }

    /* Sticky price safe area */
    .mp-sticky-price {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    /* Sections tighter */
    .mp-section { padding: 32px 0; }
    .mp-section-title { font-size: 1.25rem; margin-bottom: 24px; }

    /* Result page */
    .mp-result-amount { font-size: 2rem; }
    .mp-result-card { padding: 18px 12px; }
    .mp-result-details { flex-wrap: wrap; }
    .mp-result-row { flex: 1 1 33%; min-width: 80px; padding: 0 8px; }

    /* Globe widget smaller */
    .mp-globe-widget { width: 44px; height: 44px; bottom: 12px; right: 12px; }
    .mp-globe-spin { width: 44px; height: 44px; }
    .mp-globe-face { font-size: 1.4rem; }

    /* Cookie banner compact */
    .mp-cookie-inner p { font-size: .75rem; }
    .mp-cookie-accept, .mp-cookie-reject { padding: 8px 14px; font-size: .78rem; min-height: 44px; }
}

/* ═══ Very small: 360px ═══ */
@media (max-width: 360px) {
    .mp-hero-full h1 { font-size: 1.4rem; }
    .mp-hero-full { padding: 56px 10px 20px; }
    .mp-hero-map-wrap { height: 160px; }
    .mp-features-grid { grid-template-columns: 1fr; }
    .mp-tools-grid { grid-template-columns: 1fr; }
    .mp-result-amount { font-size: 1.8rem; }
    .mp-suggest-grid { grid-template-columns: 1fr 1fr; }
    .mp-conv-label { font-size: .78rem; }
}

/* ═══ Desktop 900px+ ═══ */
@media (min-width: 900px) {
    .mp-header-cta { display: inline-flex; }
    .mp-hero-full { padding: 120px 20px 80px; }
    .mp-container { padding: 0 24px; }
}

/* ═══ Header nav links ═══ */
.mp-nav-links { display: none; gap: 4px; }
.mp-nav-links a { text-decoration: none; color: var(--mp-muted); font-size: .85rem; font-weight: 600; padding: 6px 12px; border-radius: 8px; transition: all .15s; }
.mp-nav-links a:hover { color: var(--mp-primary); background: var(--mp-primary-light); }
@media (min-width: 768px) { .mp-nav-links { display: flex; } }

/* Hide sticky price bar on desktop */
@media (min-width: 601px) { .mp-sticky-price { display: none !important; } }

/* ═══════════════════════════════════════════════════════════════════════════
   UNIVERSAL FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-footer-full { background: #0a1628; color: #94a3b8; padding: 48px 0 0; }
.mp-footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; max-width: 1100px; margin: 0 auto; padding: 0 24px 32px;
}
.mp-footer-brand { margin-bottom: 16px; }
.mp-footer-logo { font-size: 1.3rem; font-weight: 400; color: #fff; }
.mp-footer-logo strong { font-weight: 800; color: #10b981; }
.mp-footer-slogan { font-size: .82rem; color: #64748b; margin-top: 6px; }
.mp-footer-social { font-size: .82rem; margin-top: 12px; }
.mp-footer-social a { color: #94a3b8; text-decoration: none; }
.mp-footer-social a:hover { color: #10b981; }
.mp-footer-col h4 { color: #e2e8f0; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.mp-footer-col ul { list-style: none; padding: 0; }
.mp-footer-col li { margin-bottom: 8px; }
.mp-footer-col a { color: #94a3b8; text-decoration: none; font-size: .85rem; transition: color .15s; }
.mp-footer-col a:hover { color: #10b981; }
.mp-footer-bottom {
    border-top: 1px solid #1e293b; padding: 16px 24px;
    text-align: center; font-size: .78rem; max-width: 1100px; margin: 0 auto;
}
.mp-footer-bottom a { color: #10b981; text-decoration: none; }
.mp-footer-bottom a:hover { color: #34d399; }
.mp-footer-legal { color: #475569; font-size: .72rem; margin-top: 4px; }

/* Cookie banner */
.mp-cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: #1e293b; border-top: 1px solid #334155;
    padding: 14px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.mp-cookie-inner {
    display: flex; align-items: center; gap: 16px; max-width: 900px; margin: 0 auto;
    flex-wrap: wrap;
}
.mp-cookie-inner p { flex: 1; min-width: 200px; font-size: .82rem; color: #94a3b8; margin: 0; }
.mp-cookie-inner a { color: #10b981; }
.mp-cookie-btns { display: flex; gap: 8px; }
.mp-cookie-accept {
    padding: 8px 18px; background: #10b981; color: #fff; border: none;
    border-radius: 8px; font-weight: 700; font-size: .82rem; cursor: pointer; font-family: inherit;
    min-height: 44px;
}
.mp-cookie-reject {
    padding: 8px 18px; background: transparent; color: #94a3b8; border: 1px solid #334155;
    border-radius: 8px; font-weight: 600; font-size: .82rem; cursor: pointer; font-family: inherit;
    min-height: 44px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUCH / MOBILE POLISH
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ensure minimum touch targets globally */
@media (pointer: coarse) {
    .mp-housing-card,
    .mp-furniture-card,
    .mp-extra-card,
    .mp-suggest-card,
    .mp-route-card,
    .mp-faq-item summary,
    .mp-lang a,
    .mp-btn,
    .mp-btn-hero,
    .mp-btn-hero-go,
    .mp-swap-btn,
    .mp-cookie-accept,
    .mp-cookie-reject {
        min-height: 44px;
    }

    /* No hover elevation on touch */
    .mp-feature-card:hover::before { opacity: 0; }
    .mp-map-card { animation: none; }
}

/* iOS safe area padding for bottom elements */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mp-footer-full {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mp-bottom-cta {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
}

/* Scroll snap for landing page sections (optional, smooth UX) */
@media (min-height: 600px) and (min-width: 769px) {
    .mp-hero-full,
    .mp-trust-strip,
    .mp-how,
    .mp-features,
    .mp-reviews,
    .mp-faq,
    .mp-bottom-cta {
        scroll-snap-align: start;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY: Reduced motion
   ═══════════════════════════════════════════════════════════════════════════ */
/* ── Matched Movers (result panel) ────────────────────────────────────────── */
.mp-matched-movers { margin-top: 16px; }
.mp-matched-movers h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--mp-primary); }
.mp-matched-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.mp-matched-card { display: block; background: #fff; border: 1px solid var(--mp-border); border-radius: 12px; padding: 14px; text-decoration: none; color: var(--mp-text); transition: all .2s; }
.mp-matched-card:hover { border-color: var(--mp-primary); transform: translateY(-2px); box-shadow: var(--mp-shadow); }
.mp-matched-card strong { display: block; font-size: .88rem; margin-bottom: 4px; }
.mp-matched-rating { display: block; font-size: .8rem; color: var(--mp-accent); }
.mp-matched-city { display: block; font-size: .75rem; color: var(--mp-muted); }

/* ── City Landing Page ───────────────────────────────────────────────────── */
.stad-hero { background: linear-gradient(135deg, #021418, #063520, #0a1e3a); color: #fff; padding: 90px 20px 40px; text-align: center; }
.stad-hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 900; margin-bottom: 8px; }
.stad-hero p { opacity: .8; font-size: 1rem; }
.stad-stats { display: flex; gap: 20px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.stad-stat { background: rgba(255,255,255,.12); padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: .9rem; }
.stad-stat small { display: block; font-weight: 400; font-size: .75rem; opacity: .75; }
.stad-cta-box { text-align: center; margin: 32px 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .mp-hero-slide { transition: opacity 0.01ms !important; }
    .mp-orb, .mp-float, .mp-globe-spin, .mp-globe-face,
    .mp-globe-smiley, .mp-globe-pulse, .mp-conv-globe { animation: none !important; }
    .mp-map-card { transform: none !important; }
    .mp-reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}


/* ═══════════════════════════════════════════════════════════════════════
   SVG ICON FIXES
   ═══════════════════════════════════════════════════════════════════════ */

/* Float elements → CSS circles instead of emoji */
.mp-float {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(16,185,129,.15);
    backdrop-filter: blur(4px);
}
.mp-float.mp-float-1 { background: rgba(16,185,129,.12); }
.mp-float.mp-float-2 { background: rgba(245,158,11,.12); width:80px;height:80px; }
.mp-float.mp-float-3 { background: rgba(99,102,241,.1); width:45px;height:45px; }
.mp-float.mp-float-4 { background: rgba(16,185,129,.08); width:90px;height:90px; }
.mp-float.mp-float-5 { background: rgba(245,158,11,.1); width:55px;height:55px; }

/* Feature icon SVG sizing */
.mp-feature-icon { display:flex; align-items:center; justify-content:center; width:52px; height:52px; background: rgba(13,107,62,.08); border-radius:14px; margin-bottom:12px; }
.mp-feature-icon svg { flex-shrink:0; }

/* How icon SVG sizing */
.mp-how-icon { display:flex; align-items:center; justify-content:center; width:52px; height:52px; background: rgba(13,107,62,.08); border-radius:50%; margin:0 auto 12px; }

/* Trust icon sizing */
.mp-trust-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background: rgba(13,107,62,.08); border-radius:8px; flex-shrink:0; }

/* Conv globe SVG */
.mp-conv-globe { display:inline-flex; align-items:center; justify-content:center; vertical-align:middle; opacity:.8; }

/* Conv icon (pin) SVG */
.mp-conv-icon { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

/* Icon pin in input */
.mp-icon-pin { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

/* Logo icon SVG */
.mp-logo-icon { display:inline-flex; align-items:center; justify-content:center; }

/* Hero stat SVG */
.mp-hero-stat svg { flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE NAVIGATION OVERLAY
   ═══════════════════════════════════════════════════════════════════════ */
.mp-mobile-nav-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: #fff;
    display: flex; flex-direction: column;
    padding: 24px 24px 40px;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mp-mobile-nav-overlay.mp-mobile-nav-open { transform: translateX(0); }
.mp-mobile-nav-close {
    align-self: flex-end; background: none; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: 8px 12px; font-size: 1rem; cursor: pointer;
    color: #64748b; margin-bottom: 24px;
}
.mp-mobile-nav-overlay nav { display:flex; flex-direction:column; gap:4px; }
.mp-mobile-nav-overlay nav a {
    display:block; padding:16px 20px; text-decoration:none;
    color: #0f172a; font-size: 1.1rem; font-weight: 600;
    border-radius: 12px; transition: background .15s;
    border-bottom: 1px solid #f1f5f9;
}
.mp-mobile-nav-overlay nav a:hover { background: #f0fdf4; color: #0d6b3e; }
.mp-mobile-nav-overlay nav a:last-child {
    margin-top: 16px; background: #0d6b3e; color: #fff !important;
    text-align: center; border: none; font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVIEWS CAROUSEL — touch-friendly on mobile
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .mp-reviews-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .mp-reviews-grid::-webkit-scrollbar { display: none; }
    .mp-review-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   TOOLS GRID — better responsive
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .mp-tools-grid {
        grid-template-columns: 1fr !important;
    }
    .mp-footer-inner {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP — better mobile
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .mp-trust-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .mp-trust-item {
        flex-direction: column !important;
        text-align: center;
        padding: 12px 8px;
        font-size: .78rem;
    }
    .mp-trust-icon {
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO LAYOUT — better tablet
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) and (min-width: 601px) {
    .mp-hero-layout {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .mp-hero-left { max-width: 600px; text-align: center; }
    .mp-hero-right { width: 100%; max-width: 500px; }
    .mp-hero-sub { max-width: 100%; }
    .mp-hero-stats { justify-content: center; }
    .mp-hero-conv { max-width: 480px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CALCULATOR — better mobile steps
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .mp-step-label { display: none; }
    .mp-step-num { width: 32px; height: 32px; font-size: .85rem; }
    .mp-panel h2 { font-size: 1.1rem; }
    .mp-housing-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .mp-furniture-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .mp-extras-grid { grid-template-columns: 1fr 1fr !important; }
    .mp-row { flex-direction: column !important; }
    .mp-half, .mp-third { min-width: 100% !important; }
    .mp-result-details { grid-template-columns: 1fr 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION HEADER — max-width for large screens
   ═══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .mp-container { max-width: 1100px; }
    .mp-hero-layout { max-width: 1100px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   INLINE SVG ICONS — h3 headings & panel icons
   ═══════════════════════════════════════════════════════════════════════ */
.mp-h3-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    color: #0d6b3e;
    flex-shrink: 0;
}
.mp-tool-body h3 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mp-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #dcfce7;
    border-radius: 8px;
    color: #0d6b3e;
    vertical-align: middle;
    margin-right: 8px;
}
.mp-suggest-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    color: #0d6b3e;
    margin: 0 auto 8px;
}
.mp-advice h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d6b3e;
}
.mp-advice h3 svg { color: #f59e0b; }
.mp-extra-card span svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}
.mp-result-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO STATS — Counter + trust badges
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.mp-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}
.mp-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.mp-stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    margin-top: 2px;
    letter-spacing: .5px;
}

/* Counter pulse on hover */
@keyframes mp-count-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.mp-stats-item:hover .mp-count { animation: mp-count-pulse .4s ease; display: inline-block; }

/* Hero trust badges row */
.mp-hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.mp-hero-trust-badges span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW-IT-WORKS — Large numbered circles
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-how-num-large {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d6b3e;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(13,107,62,.35);
    border: 3px solid #fff;
}
/* Dashed connecting line between steps on desktop */
@media (min-width: 768px) {
    .mp-how-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -30px;
        width: 44px;
        height: 2px;
        border-top: 2px dashed #86efac;
        z-index: 1;
    }
    .mp-how-step { position: relative; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES — Icon circle + left border
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-feat-icon-circle {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.mp-feat-card {
    border-left: 3px solid #0d6b3e !important;
}
.mp-feat-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(13,107,62,.15) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS — Aggregate score banner
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-review-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    border-radius: 50px;
    padding: 10px 24px;
    margin: 0 auto 28px;
    width: fit-content;
    flex-wrap: wrap;
}
.mp-aggregate-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.mp-aggregate-score {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d6b3e;
}
.mp-aggregate-label {
    font-size: .85rem;
    color: #166534;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOFTWARE TEASER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-software-teaser {
    background: #0d6b3e;
    color: #fff;
    padding: 64px 24px;
    text-align: center;
}
.mp-software-teaser .mp-container {
    max-width: 640px;
    margin: 0 auto;
}
.mp-software-teaser h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}
.mp-software-teaser p {
    opacity: .87;
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.6;
}
.mp-btn-white {
    background: #fff;
    color: #0d6b3e;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.mp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
    color: #0d6b3e;
}
