:root {
    --bg: #f3f6f8;
    --surface: #ffffff;
    --surface-strong: #e8eef1;
    --text: #14212b;
    --muted: #566673;
    --line: #d7e0e7;
    --accent: #0f7f7c;
    --accent-strong: #0b5f62;
    --accent-soft: rgba(15, 127, 124, 0.12);
    --radius: 18px;
    --shadow: 0 20px 45px rgba(20, 33, 43, 0.09);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 5% 10%, rgba(15, 127, 124, 0.08), transparent 38%), var(--bg);
    color: var(--text);
    line-height: 1.55;
}

.mpp-shell {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.mpp-skip-link {
    position: absolute;
    left: -9999px;
}

.mpp-skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 100;
    background: var(--text);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
}

.mpp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: rgba(243, 246, 248, 0.92);
    border-bottom: 1px solid var(--line);
}

.mpp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.mpp-auth-btn {
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s, background-color 0.2s;
}

.mpp-auth-btn:hover {
    transform: translateY(-1px);
    background: var(--surface-strong);
}

.mpp-auth-btn-login,
.mpp-auth-btn-warehouse {
    color: #fff;
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    border-color: transparent;
}

.mpp-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.mpp-brand strong {
    display: block;
    font-family: "Exo 2", "Manrope", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.mpp-brand small {
    color: var(--muted);
    font-size: 0.75rem;
}

.mpp-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--accent) 0%, #1c2d37 100%);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.mpp-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mpp-nav-spacer {
    display: inline-block;
    flex: 1;
}

.mpp-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    transition: color 0.22s, background-color 0.22s, transform 0.22s;
}

.mpp-nav a:hover {
    color: var(--text);
    background: var(--surface-strong);
}

.mpp-nav a.is-active {
    color: var(--text);
    background: var(--accent-soft);
}

.mpp-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mpp-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
}

.mpp-hero {
    padding: 4.5rem 0 3.1rem;
    position: relative;
}

.mpp-hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    width: min(26vw, 330px);
    height: min(26vw, 330px);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 127, 124, 0.23), transparent 70%);
    pointer-events: none;
}

.mpp-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
}

.mpp-badge {
    display: inline-block;
    margin: 0 0 1rem;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: "Exo 2", "Manrope", sans-serif;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.45rem, 2.7vw, 2.2rem);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.12rem;
}

.mpp-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
}

.mpp-hero-panel,
.mpp-card,
.mpp-map-placeholder {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow);
}

.mpp-hero-panel ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.mpp-hero-panel li {
    margin-bottom: 0.5rem;
}

.mpp-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.mpp-btn {
    border: 0;
    border-radius: 12px;
    padding: 0.72rem 1rem;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s, background-color 0.22s;
}

.mpp-btn:hover {
    transform: translateY(-1px);
}

.mpp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 10px 24px rgba(11, 95, 98, 0.3);
}

.mpp-btn-secondary {
    color: var(--text);
    background: var(--surface-strong);
}

.mpp-btn-ghost {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
}

.mpp-inline-link {
    color: var(--accent-strong);
    font-weight: 700;
}

.mpp-section {
    padding: 3rem 0;
}

.mpp-section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(231, 237, 241, 0.65));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mpp-section-head {
    margin-bottom: 1.2rem;
}

.mpp-section-head p {
    color: var(--muted);
}

.mpp-grid {
    display: grid;
    gap: 1rem;
}

.mpp-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpp-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpp-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mpp-card {
    transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s;
}

.mpp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 127, 124, 0.35);
    box-shadow: 0 24px 55px rgba(20, 33, 43, 0.12);
}

.mpp-list {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
}

.mpp-list li {
    margin-bottom: 0.45rem;
}

.mpp-split {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpp-map-placeholder {
    border-style: dashed;
}

.mpp-map-embed {
    margin: 0.8rem 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.mpp-map-embed iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.mpp-center {
    text-align: center;
    margin-top: 1.1rem;
}

.mpp-page-head {
    padding: 3rem 0 1.2rem;
    background: linear-gradient(180deg, rgba(224, 233, 238, 0.7), transparent);
    border-bottom: 1px solid var(--line);
}

.mpp-flow {
    display: grid;
    gap: 1rem;
}

.mpp-muted {
    color: var(--muted);
}

.mpp-form {
    display: grid;
    gap: 0.85rem;
}

.mpp-form label {
    display: grid;
    gap: 0.32rem;
    font-weight: 600;
    color: var(--muted);
}

.mpp-form input,
.mpp-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    font: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.22s, box-shadow 0.22s;
}

.mpp-form input:focus,
.mpp-form textarea:focus {
    outline: none;
    border-color: rgba(15, 127, 124, 0.56);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.mpp-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.mpp-form-status {
    margin: 0.2rem 0 0;
    font-weight: 600;
}

.mpp-bottom-cta {
    padding: 3rem 0;
    background: linear-gradient(140deg, #1d2e39 0%, #274452 65%, #1f6471 100%);
    color: #eef4f7;
}

.mpp-bottom-cta p {
    color: rgba(238, 244, 247, 0.88);
}

.mpp-bottom-cta .mpp-btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.mpp-footer {
    background: #0e1720;
    color: #dae2e7;
    padding-top: 2rem;
}

.mpp-footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpp-footer h3 {
    margin-bottom: 0.5rem;
}

.mpp-footer p {
    margin: 0.25rem 0;
    color: #b2c0ca;
}

.mpp-footer a {
    color: #e7f3f9;
}

.mpp-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 1.2rem;
    padding: 0.8rem 0 1.1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .mpp-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpp-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpp-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .mpp-menu-toggle {
        display: inline-flex;
    }

    .mpp-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem 1rem 1rem;
        gap: 0.4rem;
        border-bottom: 1px solid var(--line);
        background: rgba(243, 246, 248, 0.97);
    }

    .mpp-nav-spacer {
        display: none;
    }

    .mpp-nav.is-open {
        display: flex;
    }

    .mpp-grid-2,
    .mpp-grid-3,
    .mpp-grid-4,
    .mpp-split,
    .mpp-footer-grid {
        grid-template-columns: 1fr;
    }

    .mpp-hero {
        padding-top: 3.4rem;
    }

    .mpp-map-embed iframe {
        height: 230px;
    }
}
