/* =========================================================
   MPCU Pro — Theme v2 (White + Orange + Brown)
   Primary design layer for the redesigned public frontend
   ========================================================= */

:root {
    --mp-white: #FFFFFF;
    --mp-surface: #FAFAF8;
    --mp-surface-warm: #FFF8F3;
    --mp-orange: #FF5203;
    --mp-orange-dark: #D94400;
    --mp-orange-soft: rgba(255, 82, 3, 0.10);
    --mp-brown: #3E2723;
    --mp-brown-dark: #2A1810;
    --mp-brown-muted: #6D4C41;
    --mp-text: #4A403A;
    --mp-muted: #7A6F68;
    --mp-border: rgba(62, 39, 35, 0.10);
    --mp-shadow-sm: 0 4px 16px rgba(42, 24, 16, 0.06);
    --mp-shadow-md: 0 12px 40px rgba(42, 24, 16, 0.10);
    --mp-shadow-lg: 0 24px 64px rgba(42, 24, 16, 0.14);
    --mp-radius-sm: 10px;
    --mp-radius-md: 16px;
    --mp-radius-lg: 24px;
    --mp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --mp-duration: 0.4s;
    --mp-font-heading: "Plus Jakarta Sans", sans-serif;
    --mp-font-body: "Manrope", sans-serif;
    --mp-header-offset: 0px;
}

/* Neutralize conflicting theme heading colors inside redesigned chrome */
.mp-site h1,
.mp-site h2,
.mp-site h3,
.mp-site h4,
.mp-site h5,
.mp-site h6 {
    font-family: var(--mp-font-heading);
    color: var(--mp-brown);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.mp-site h1,
.mp-site h2,
.mp-site h4 {
    color: var(--mp-white);
}

.mp-site {
    font-family: var(--mp-font-body);
    color: var(--mp-text);
    background: var(--mp-white);
    -webkit-font-smoothing: antialiased;
}

.mp-site a {
    transition: color var(--mp-duration) var(--mp-ease);
}

.mp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ---------- Buttons ---------- */
.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--mp-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform var(--mp-duration) var(--mp-ease),
        box-shadow var(--mp-duration) var(--mp-ease),
        background var(--mp-duration) var(--mp-ease),
        color var(--mp-duration) var(--mp-ease),
        border-color var(--mp-duration) var(--mp-ease);
}

.mp-btn--primary {
    background: linear-gradient(135deg, var(--mp-orange) 0%, var(--mp-orange-dark) 100%);
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(255, 82, 3, 0.28);
}

.mp-btn--primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 14px 36px rgba(255, 82, 3, 0.38);
}

.mp-btn--secondary {
    background: transparent;
    color: var(--mp-brown) !important;
    border-color: var(--mp-border);
}

.mp-btn--secondary:hover {
    background: var(--mp-surface-warm);
    border-color: rgba(255, 82, 3, 0.35);
    color: var(--mp-brown) !important;
    transform: translateY(-2px);
}

.mp-btn--ghost {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35);
}

.mp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* ---------- Section heading ---------- */
.mp-section-heading {
    max-width: 640px;
    margin-bottom: 48px;
}

.mp-section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mp-eyebrow {
    display: inline-block;
    font-family: var(--mp-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mp-orange);
    margin-bottom: 12px;
}

.mp-section-heading__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--mp-brown);
    margin: 0 0 14px;
}

.mp-section-heading__text {
    margin: 0;
    color: var(--mp-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.mp-card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    box-shadow: var(--mp-shadow-sm);
    transition: transform var(--mp-duration) var(--mp-ease),
        box-shadow var(--mp-duration) var(--mp-ease),
        border-color var(--mp-duration) var(--mp-ease);
}

.mp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-md);
    border-color: rgba(255, 82, 3, 0.2);
}

/* ---------- Header ---------- */
.mp-topbar {
    background: var(--mp-brown-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
}

.mp-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: center;
    justify-content: space-between;
}

.mp-topbar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-topbar__links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mp-topbar__links a:hover {
    color: var(--mp-orange);
}

.mp-topbar__links i {
    color: var(--mp-orange);
    font-size: 0.8rem;
}

.mp-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mp-border);
    transition: box-shadow var(--mp-duration) var(--mp-ease);
}

.mp-header.is-scrolled {
    box-shadow: var(--mp-shadow-sm);
}

.mp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.mp-logo img {
    max-height: 80px;
    width: auto;
}

.mp-nav {
    display: none;
}

.mp-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-nav__list > li {
    position: relative;
}

.mp-nav__list > li > a {
    display: block;
    padding: 10px 14px;
    font-family: var(--mp-font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--mp-brown);
    text-decoration: none;
    border-radius: 8px;
}

.mp-nav__list > li > a:hover,
.mp-nav__list > li.active > a {
    color: var(--mp-orange);
}

.mp-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    box-shadow: var(--mp-shadow-md);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--mp-duration) var(--mp-ease),
        transform var(--mp-duration) var(--mp-ease),
        visibility var(--mp-duration) var(--mp-ease);
    list-style: none;
    margin: 0;
    z-index: 20;
}

.mp-nav__list > li:hover > .mp-nav__dropdown,
.mp-nav__list > li:focus-within > .mp-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mp-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    color: var(--mp-text);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.mp-nav__dropdown a:hover {
    background: var(--mp-surface-warm);
    color: var(--mp-orange);
}

.mp-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-header__quote {
    display: none;
}

.mp-nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--mp-border);
    border-radius: 12px;
    background: var(--mp-white);
    color: var(--mp-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mp-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
}

.mp-drawer.is-open {
    pointer-events: auto;
}

.mp-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 24, 16, 0.45);
    opacity: 0;
    transition: opacity var(--mp-duration) var(--mp-ease);
}

.mp-drawer.is-open .mp-drawer__backdrop {
    opacity: 1;
}

.mp-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: var(--mp-white);
    box-shadow: var(--mp-shadow-lg);
    transform: translateX(100%);
    transition: transform var(--mp-duration) var(--mp-ease);
    padding: 24px;
    overflow-y: auto;
}

.mp-drawer.is-open .mp-drawer__panel {
    transform: translateX(0);
}

.mp-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mp-drawer__close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--mp-border);
    border-radius: 10px;
    background: transparent;
    color: var(--mp-brown);
}

.mp-drawer__nav {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.mp-drawer__nav a {
    display: block;
    padding: 12px 0;
    color: var(--mp-brown);
    text-decoration: none;
    font-family: var(--mp-font-heading);
    font-weight: 600;
    border-bottom: 1px solid var(--mp-border);
}

.mp-drawer__nav a:hover {
    color: var(--mp-orange);
}

.mp-drawer__sub {
    list-style: none;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
}

.mp-drawer__sub a {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--mp-muted);
    border-bottom: none;
    padding: 8px 0;
}

@media (min-width: 992px) {
    .mp-nav {
        display: block;
    }

    .mp-header__quote {
        display: inline-flex;
    }

    .mp-nav-toggle {
        display: none;
    }
}

/* ---------- Footer ---------- */
.mp-footer {
    background: var(--mp-brown-dark);
    color: rgba(255, 255, 255, 0.78);
}

.mp-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.mp-footer a:hover {
    color: var(--mp-orange);
}

.mp-footer__top {
    padding: 72px 0 48px;
}

.mp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.mp-footer__brand img {
    max-height: 85px;
    margin-bottom: 16px;
}

.mp-footer__brand p {
    margin: 0;
    line-height: 1.7;
    max-width: 280px;
}

.mp-footer__title {
    font-family: var(--mp-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.mp-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-footer__top .mp-footer__links li + li {
    margin-top: 10px;
}

.mp-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-footer__contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mp-footer__contact i {
    color: var(--mp-orange);
    margin-top: 4px;
}

.mp-footer__social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.mp-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mp-footer__social a:hover {
    background: var(--mp-orange);
    border-color: var(--mp-orange);
    color: #fff;
}

.mp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    font-size: 0.9rem;
}

.mp-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.mp-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .mp-footer__grid {
        grid-template-columns: 1.2fr 2fr 1fr 1.1fr;
    }
}

/* ---------- Page hero ---------- */
.mp-page-hero {
    background-color: var(--mp-brown);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(88px, 14vw, 140px) 0 clamp(48px, 8vw, 72px);
    position: relative;
    overflow: hidden;
}

.mp-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(26, 20, 18, 0.82) 0%,
        rgba(62, 39, 35, 0.68) 55%,
        rgba(26, 20, 18, 0.78) 100%
    );
    z-index: 0;
}

.mp-page-hero .mp-container {
    position: relative;
    z-index: 1;
}

.mp-page-hero__title {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}

.mp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
}

.mp-page-hero .mp-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.mp-page-hero .mp-breadcrumb li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.45);
}

.mp-page-hero .mp-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.mp-page-hero .mp-breadcrumb a:hover {
    color: var(--mp-orange);
}

.mp-page-hero .mp-breadcrumb .active {
    color: var(--mp-orange);
}

/* ---------- Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--mp-ease), transform 0.7s var(--mp-ease);
}

[data-reveal="fade-left"] {
    transform: translateX(-24px);
}

[data-reveal="fade-right"] {
    transform: translateX(24px);
}

[data-reveal].is-visible,
[data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}

[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--mp-ease), transform 0.6s var(--mp-ease);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Homepage: Hero video ---------- */
.mp-hero-video {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(620px, 72vh, 820px);
    overflow: hidden;
    isolation: isolate;
}

.mp-hero-video__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mp-hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        115deg,
        rgba(20, 14, 12, 0.82) 0%,
        rgba(62, 39, 35, 0.58) 45%,
        rgba(20, 14, 12, 0.72) 100%
    );
}

.mp-hero-video__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: clamp(72px, 12vw, 120px);
}

.mp-hero-video__content {
    max-width: 44rem;
}

.mp-hero-video__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.mp-hero-video__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.12;
}

.mp-hero-video__text {
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 36rem;
}

.mp-hero-video__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-hero-video .mp-btn--secondary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45);
}

.mp-hero-video .mp-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
    .mp-hero-video__bg {
        display: none;
    }

    .mp-hero-video {
        background: url("../img/images/about_img01.jpg") center / cover no-repeat;
    }
}

.mp-faq h4 {
    color: var(--mp-orange) !important;
    font-family: var(--mp-font-heading);
}

/* ---------- About ---------- */
.mp-about {
    padding: 100px 0;
    background: var(--mp-white);
}

.mp-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.mp-about__media {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.mp-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--mp-radius-md);
    display: block;
}

.mp-about__media img:first-child {
    min-height: 340px;
}

.mp-about__media img:last-child {
    min-height: 220px;
    margin-top: 40px;
}

.mp-about__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: var(--mp-brown);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--mp-shadow-md);
    z-index: 2;
}

.mp-about__badge strong {
    display: block;
    font-family: var(--mp-font-heading);
    font-size: 1.4rem;
    color: var(--mp-orange);
}

.mp-about__badge span {
    font-size: 0.82rem;
    opacity: 0.85;
}

.mp-about__features {
    list-style: none;
    margin: 24px 0 28px;
    padding: 0;
}

.mp-about__features li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--mp-border);
}

.mp-about__features li:last-child {
    border-bottom: 1px solid var(--mp-border);
}

.mp-about__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--mp-orange-soft);
    color: var(--mp-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-about__features h4 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.mp-about__features p {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.92rem;
}

.mp-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.mp-about__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mp-brown);
    font-weight: 700;
    text-decoration: none;
}

.mp-about__phone:hover {
    color: var(--mp-orange);
}

@media (min-width: 992px) {
    .mp-about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.mp-about--profile {
    padding-top: 72px;
}

.mp-about--profile .mp-section-heading {
    max-width: 820px;
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .mp-about--profile .mp-section-heading {
        margin-bottom: 56px;
    }

    .mp-about--profile .mp-about__grid {
        align-items: stretch;
    }

    .mp-about--profile .mp-about__media {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: 100%;
        min-height: 100%;
    }

    .mp-about--profile .mp-about__media img {
        flex: 1 1 0;
        width: 100%;
        min-height: 160px;
        height: auto;
        margin-top: 0;
        object-fit: cover;
    }
}

/* ---------- Products grid ---------- */
.mp-products {
    padding: 100px 0;
    background: var(--mp-surface);
}

.mp-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.mp-product-card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--mp-duration) var(--mp-ease), box-shadow var(--mp-duration) var(--mp-ease);
}

.mp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mp-shadow-md);
}

.mp-product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eee;
}

.mp-product-card__media::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--mp-orange);
}

.mp-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--mp-ease);
}

.mp-product-card:hover .mp-product-card__media img {
    transform: scale(1.05);
}

.mp-product-card__body {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mp-product-card__title {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.mp-product-card__title a {
    color: var(--mp-brown);
    text-decoration: none;
}

.mp-product-card__title a:hover {
    color: var(--mp-orange);
}

.mp-product-card__text {
    margin: 0 0 18px;
    color: var(--mp-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-product-card__link {
    margin-top: auto;
    color: var(--mp-orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.92rem;
}

@media (min-width: 768px) {
    .mp-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mp-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Process timeline ---------- */
.mp-process {
    padding: 100px 0;
    background: var(--mp-white);
}

.mp-process__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mp-process__step {
    position: relative;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    padding: 28px 24px;
    text-align: center;
}

.mp-process__num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mp-orange);
    color: #fff;
    font-family: var(--mp-font-heading);
    font-weight: 800;
    margin-bottom: 14px;
}

.mp-process__title {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.mp-process__text {
    margin: 0;
    color: var(--mp-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .mp-process__track {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ---------- Why / quality teaser ---------- */
.mp-why {
    padding: 100px 0;
    background: var(--mp-surface-warm);
}

.mp-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mp-why__card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    padding: 28px 24px;
    height: 100%;
}

.mp-why__card i {
    color: var(--mp-orange);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.mp-why__card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.mp-why__card p {
    margin: 0;
    color: var(--mp-muted);
    line-height: 1.65;
}

@media (min-width: 768px) {
    .mp-why__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Clients ---------- */
.mp-clients {
    padding: 60px 0;
    background: var(--mp-white);
    border-block: 1px solid var(--mp-border);
}

.mp-clients__row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.mp-clients__item {
    width: 140px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--mp-border);
    border-radius: 12px;
    background: var(--mp-surface);
}

.mp-clients__item img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter var(--mp-duration) var(--mp-ease), opacity var(--mp-duration) var(--mp-ease);
}

.mp-clients__item:hover img {
    filter: none;
    opacity: 1;
}

/* ---------- Inner page content shells ---------- */
.mp-page-section {
    padding: 72px 0 96px;
    background: var(--mp-white);
}

.mp-content-card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    box-shadow: var(--mp-shadow-sm);
    padding: 28px;
}

.mp-prose {
    color: var(--mp-text);
    line-height: 1.8;
}

.mp-prose h2,
.mp-prose h3,
.mp-prose h4 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.mp-prose p {
    margin-bottom: 1em;
}

.mp-prose ul {
    padding-left: 1.2em;
    margin-bottom: 1em;
}

/* Product/infra listing reuse product cards */
.mp-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .mp-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mp-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mission / feature cards */
.mp-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mp-feature-card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    transition: transform var(--mp-duration) var(--mp-ease), box-shadow var(--mp-duration) var(--mp-ease), background var(--mp-duration) var(--mp-ease);
}

.mp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-md);
    background: var(--mp-brown);
}

.mp-feature-card:hover,
.mp-feature-card:hover h3,
.mp-feature-card:hover p,
.mp-feature-card:hover i {
    color: #fff !important;
}

.mp-feature-card i {
    font-size: 2rem;
    color: var(--mp-orange);
    margin-bottom: 16px;
}

.mp-feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.mp-feature-card p {
    margin: 0;
    color: var(--mp-muted);
    line-height: 1.65;
}

@media (min-width: 768px) {
    .mp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact */
.mp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.mp-contact-info {
    display: grid;
    gap: 14px;
}

.mp-contact-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-sm);
    background: var(--mp-surface);
}

.mp-contact-item i {
    color: var(--mp-orange);
    margin-top: 4px;
}

.mp-contact-item strong {
    display: block;
    color: var(--mp-brown);
    font-family: var(--mp-font-heading);
    margin-bottom: 4px;
}

.mp-contact-item p,
.mp-contact-item a {
    margin: 0;
    color: var(--mp-muted);
    text-decoration: none;
}

.mp-form .form-control,
.mp-form .form-select {
    border-radius: 12px;
    border-color: var(--mp-border);
    padding: 12px 14px;
}

.mp-form .form-control:focus,
.mp-form .form-select:focus {
    border-color: var(--mp-orange);
    box-shadow: 0 0 0 3px var(--mp-orange-soft);
}

.mp-map {
    border-radius: var(--mp-radius-md);
    overflow: hidden;
    border: 1px solid var(--mp-border);
    margin-bottom: 32px;
}

.mp-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

@media (min-width: 992px) {
    .mp-contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 32px;
    }
}

/* Product detail */
.mp-product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.mp-product-detail__media {
    border-radius: var(--mp-radius-md);
    overflow: hidden;
    border: 1px solid var(--mp-border);
    background: var(--mp-surface);
}

.mp-product-detail__media img {
    width: 100%;
    display: block;
}

.mp-product-detail__title {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

@media (min-width: 992px) {
    .mp-product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* Error pages */
.mp-error {
    text-align: center;
    padding: 48px 0 24px;
}

.mp-error__code {
    font-family: var(--mp-font-heading);
    font-size: clamp(4rem, 12vw, 6.5rem);
    font-weight: 800;
    color: var(--mp-orange);
    line-height: 1;
    margin: 0 0 12px;
}

.mp-error__title {
    margin: 0 0 12px;
}

.mp-error__text {
    max-width: 34rem;
    margin: 0 auto 28px;
    color: var(--mp-muted);
    line-height: 1.7;
}

.mp-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Certificate cards */
.mp-cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mp-cert-card {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    padding: 24px;
    text-align: center;
    height: 100%;
}

.mp-cert-card h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .mp-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .mp-cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hide old theme transparent header conflicts when mp header is present */
body.mp-site .header-style-two,
body.mp-site .transparent-header {
    display: none !important;
}

body.mp-site .footer-area {
    display: none !important;
}

body.mp-site .breadcrumb-area {
    display: none !important;
}

/* FAQ accordion polish */
.mp-faq .accordion-button {
    font-family: var(--mp-font-heading);
    font-weight: 600;
    color: var(--mp-brown);
}

.mp-faq .accordion-button:not(.collapsed) {
    background: var(--mp-surface-warm);
    color: var(--mp-orange);
    box-shadow: none;
}

.mp-faq .accordion-item {
    border-color: var(--mp-border);
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}
.mp-topbar__links li span {
    display: inline-flex;
    gap: 8px;
    align-items: center;    
}