/* ═══════════════════════════════════════════════════════════════════════════
   MovePro.online v2.0 — International Moving Calculator
   Mobile-first responsive design with landing page + calculator wizard
   ═══════════════════════════════════════════════════════════════════════════ */

: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;
}

*, *::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-header-cta {
    display: none; padding: 7px 16px; font-size: .82rem; font-weight: 700;
    background: var(--mp-primary); color: #fff !important; text-decoration: none;
    border-radius: 8px; transition: all .2s;
}
.mp-header-cta:hover { background: var(--mp-primary-dark); }

.mp-lang { display: flex; gap: 2px; }
.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;
}
/* 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;
}

/* Animated background orbs */
.mp-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .35;
    pointer-events: none; z-index: 0;
}
.mp-orb1 {
    width: 600px; height: 600px; top: -10%; left: -10%;
    background: radial-gradient(circle, #0d6b3e, transparent);
    animation: mpOrbMove1 12s ease-in-out infinite;
}
.mp-orb2 {
    width: 500px; height: 500px; top: 30%; right: -15%;
    background: radial-gradient(circle, #1a6baa, transparent);
    animation: mpOrbMove2 15s ease-in-out infinite;
}
.mp-orb3 {
    width: 400px; height: 400px; bottom: -10%; left: 30%;
    background: radial-gradient(circle, #7c3aed, transparent);
    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,.1);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(13,107,62,.15);
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform .4s;
}
.mp-map-card:hover { transform: perspective(800px) rotateY(-2deg) rotateX(1deg) scale(1.02); }

.mp-map-visual {
    position: relative; width: 100%; height: 300px;
    background: linear-gradient(135deg, #0a1628 0%, #0d2340 50%, #0a2a1a 100%);
    overflow: hidden;
}

/* CSS grid lines (map feel) */
.mp-map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Route SVG */
.mp-route-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mp-route-path { stroke-dasharray: 500; stroke-dashoffset: 500; animation: mpDrawRoute 2s ease forwards 1s; }
.mp-route-dash { opacity: 0; animation: mpFadeIn .5s ease forwards 2.5s; }
@keyframes mpDrawRoute { to { stroke-dashoffset: 0; } }
@keyframes mpFadeIn { to { opacity: .6; } }

/* Markers */
.mp-marker {
    position: absolute; display: flex; flex-direction: column; align-items: center;
    animation: mpMarkerDrop .5s cubic-bezier(.34,1.56,.64,1) forwards;
    opacity: 0;
}
.mp-marker-a { bottom: 18%; left: 15%; animation-delay: .5s; }
.mp-marker-b { top: 12%; right: 12%; animation-delay: 1.5s; }
@keyframes mpMarkerDrop {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.mp-marker-pin {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: .9rem; color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.mp-marker-a .mp-marker-pin { background: #10b981; }
.mp-marker-b .mp-marker-pin { background: var(--mp-accent); }
.mp-marker-label {
    margin-top: 4px; font-size: .72rem; font-weight: 700;
    color: rgba(255,255,255,.8); white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.mp-marker-pulse {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    animation: mpPulseRing 2s ease-out infinite;
}
.mp-marker-a .mp-marker-pulse { border: 2px solid #10b981; }
.mp-marker-b .mp-marker-pulse { border: 2px solid var(--mp-accent); }

/* Truck animation along route */
.mp-truck-anim {
    position: absolute; font-size: 1.4rem;
    offset-path: path('M80,220 C140,180 180,80 320,60');
    animation: mpTruckDrive 4s linear infinite 3s;
    opacity: 0;
}
@keyframes mpTruckDrive {
    0% { offset-distance: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}

.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 auto 24px;
    line-height: 1.6;
}

/* Hero stats */
.mp-hero-stats {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 28px;
}
.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 .4s ease; 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);
}
.mp-conv-step.mp-conv-hidden {
    opacity: 0; max-height: 0; padding: 0 18px; margin: 0;
    overflow: hidden; border: none;
}
.mp-conv-step.mp-conv-visible {
    opacity: 1; max-height: 200px; padding: 14px 18px;
    animation: mpSlideDown .5s ease;
}
@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: 12px; padding: 2px;
    transition: all .2s;
}
.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);
}
.mp-conv-icon { padding-left: 10px; font-size: 1.1rem; flex-shrink: 0; }
.mp-conv-input input {
    width: 100%; background: transparent; border: none; outline: none;
    padding: 13px 14px 13px 6px; font-size: 16px; 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: 14px 20px; font-size: 1rem; font-weight: 800;
    background: var(--mp-accent); color: #fff !important;
    border: none; border-radius: 12px; cursor: pointer;
    font-family: var(--mp-font); white-space: nowrap;
    transition: all .25s; box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.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;
}
.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; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.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); }
.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
   ═══════════════════════════════════════════════════════════════════════════ */
.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: 1px solid var(--mp-border);
    transition: transform .25s, box-shadow .25s;
}
.mp-feature-card:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow); }
.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; }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.mp-trust-strip {
    background: #fff; border-bottom: 1px solid var(--mp-border);
    padding: 16px 0;
}
.mp-trust-grid {
    display: flex; gap: 24px; justify-content: center; align-items: center;
    flex-wrap: wrap;
}
.mp-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 600; color: var(--mp-text);
    white-space: nowrap;
}
.mp-trust-icon { 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
   ═══════════════════════════════════════════════════════════════════════════ */
.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;
}
.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;
}
.mp-review-author {
    display: flex; align-items: center; gap: 10px;
}
.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; }
@keyframes mpFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.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; }

/* 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 .18s;
    min-height: 50px; text-decoration: none;
}
.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; }

.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: '\u2713'; 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; }

/* Button spring */
.mp-btn { transition: all .2s cubic-bezier(.34,1.56,.64,1); }
.mp-btn:active { transform: scale(.95) !important; }

/* 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
   ═══════════════════════════════════════════════════════════════════════════ */
.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 .2s;
}
.mp-faq-item[open] { border-color: var(--mp-primary); }
.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 .2s;
    -webkit-user-select: none; user-select: none;
}
.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 .2s;
}
.mp-faq-item[open] summary::after { content: '−'; color: var(--mp-primary); }
.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;
}

/* ═══════════════════════════════════════════════════════════════════════════
   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%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE ≤ 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: 70px 14px 40px; min-height: auto; }
    .mp-hero-layout { flex-direction: column-reverse; gap: 20px; }
    .mp-hero-left { text-align: center; }
    .mp-hero-right { flex: none; width: 100%; max-width: 340px; margin: 0 auto; }
    .mp-map-visual { height: 180px; }
    .mp-map-card { transform: none; }
    .mp-hero-full h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .mp-hero-stats { gap: 10px; justify-content: center; }
    .mp-hero-stat { font-size: .78rem; }
    .mp-hero-conv { max-width: 100%; }
    .mp-conv-step { padding: 10px 12px; }
    .mp-orb { filter: blur(60px); opacity: .25; }
    .mp-globe-widget { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .mp-globe-spin { width: 52px; height: 52px; }
    .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-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; }

    /* Trust strip */
    .mp-trust-grid { gap: 10px; justify-content: flex-start; }
    .mp-trust-item { font-size: .78rem; }

    /* 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; }
    .mp-btn-prev { width: 100%; border: none; background: transparent; color: var(--mp-muted); font-size: .88rem; padding: 10px; min-height: 40px; }

    /* 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; }

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

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

/* ═══ Very small: 360px ═══ */
@media (max-width: 360px) {
    .mp-hero-full h1 { font-size: 1.6rem; }
    .mp-features-grid { grid-template-columns: 1fr; }
    .mp-tools-grid { grid-template-columns: 1fr; }
    .mp-result-amount { font-size: 2rem; }
}

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

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