/*
Theme Name: Mercovex
Theme URI: https://mercovex.com
Author: Mercovex Limited
Author URI: https://mercovex.com
Description: Corporate WordPress theme for Mercovex Limited - a Hong Kong-based B2B general trading company. Clean, modern, navy and gold corporate aesthetic.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mercovex
Tags: business, corporate, trading, b2b, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* =========================================================
   Mercovex - Corporate Theme Styles
   Brand: Navy #0F1F4A · Gold #9A7C3C · Light grey #f8f9fc
   Type:  Syne (headings) · DM Sans (body)
   ========================================================= */

:root {
    --mvx-navy: #0F1F4A;
    --mvx-navy-deep: #0a1638;
    --mvx-gold: #9A7C3C;
    --mvx-gold-soft: #b89456;
    --mvx-white: #FFFFFF;
    --mvx-bg-grey: #f8f9fc;
    --mvx-text: #1a1a2e;
    --mvx-muted: #6b7a9d;
    --mvx-border: #e5e7ef;
    --mvx-shadow: 0 1px 2px rgba(15, 31, 74, 0.04), 0 4px 16px rgba(15, 31, 74, 0.06);
    --mvx-shadow-hover: 0 8px 28px rgba(15, 31, 74, 0.10);
    --mvx-max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--mvx-text);
    background: var(--mvx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a:not(.mvx-btn) { color: var(--mvx-navy); text-decoration: none; transition: color .2s ease; }
a:not(.mvx-btn):hover { color: var(--mvx-gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", "Inter", sans-serif;
    font-weight: 700;
    color: var(--mvx-navy);
    letter-spacing: -0.02em;
    margin: 0 0 .8rem;
    line-height: 1.15;
}

h1 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1rem; color: var(--mvx-text); font-weight: 300; }

.mvx-container { max-width: var(--mvx-max); margin: 0 auto; padding: 0 24px; }

.mvx-eyebrow {
    display: inline-block;
    font-family: "Playfair Display", sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mvx-gold);
    margin-bottom: 1rem;
}

.mvx-divider {
    width: 56px;
    height: 2px;
    background: var(--mvx-gold);
    border: 0;
    margin: 1.25rem 0 1.75rem;
}
.mvx-divider.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.mvx-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
    text-decoration: none;
    line-height: 1;
}
.mvx-btn-primary { background: var(--mvx-navy); color: var(--mvx-white); border-color: var(--mvx-navy); }
.mvx-btn-primary:hover { background: var(--mvx-gold); border-color: var(--mvx-gold); color: var(--mvx-white); }
.mvx-btn-outline { background: transparent; color: var(--mvx-navy); border-color: var(--mvx-navy); }
.mvx-btn-outline:hover { background: var(--mvx-navy); color: var(--mvx-white); }
.mvx-btn-gold { background: var(--mvx-gold); color: var(--mvx-white); border-color: var(--mvx-gold); }
.mvx-btn-gold:hover { background: transparent; color: var(--mvx-white); border-color: var(--mvx-white); }
.mvx-btn-ghost-light { background: transparent; color: var(--mvx-white); border-color: rgba(255,255,255,.4); }
.mvx-btn-ghost-light:hover { background: var(--mvx-gold); border-color: var(--mvx-gold); color: var(--mvx-white); }

/* =====================  HEADER / NAV  ===================== */
.mvx-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--mvx-border);
    z-index: 100;
}
.mvx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.mvx-logo { display: flex; align-items: center; gap: .65rem; }
.mvx-logo img { height: 52px; width: auto; }
.mvx-logo-img { height: 52px; width: auto; display: block; }
.mvx-logo-mark { display: inline-flex; }
.mvx-logo-mark svg { height: 38px; width: auto; display: block; }
.mvx-logo-wordmark {
    font-family: "Playfair Display", sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
    color: var(--mvx-navy);
    line-height: 1;
}
.mvx-logo-wordmark span { color: var(--mvx-gold); }
.mvx-logo-text {
    font-family: "Playfair Display", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    color: var(--mvx-navy);
}
.mvx-logo-text span { color: var(--mvx-gold); }

.mvx-nav { display: flex; align-items: center; gap: 2.25rem; }
.mvx-nav a {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: .94rem;
    color: var(--mvx-text);
    position: relative;
    padding: 8px 0;
}
.mvx-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--mvx-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.mvx-nav a:hover, .mvx-nav a.active { color: var(--mvx-navy); }
.mvx-nav a:hover::after, .mvx-nav a.active::after { transform: scaleX(1); }
.mvx-nav .mvx-btn::after { display: none; }
/* Contact CTA button overrides - always navy bg + white label, no uppercase */
.mvx-nav .mvx-btn-primary,
.mvx-nav .mvx-btn-primary.active,
.mvx-nav .mvx-btn-primary:hover.active { color: var(--mvx-white); text-transform: none; letter-spacing: 0; font-weight: 500; }
.mvx-nav .mvx-btn-primary:hover { background: var(--mvx-gold); border-color: var(--mvx-gold); color: var(--mvx-white); }

.mvx-burger {
    display: none;
    width: 42px; height: 42px;
    border: 1px solid var(--mvx-border);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.mvx-burger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--mvx-navy);
    position: relative;
}
.mvx-burger span::before, .mvx-burger span::after {
    content: ""; position: absolute; left: 0;
    width: 20px; height: 2px; background: var(--mvx-navy);
}
.mvx-burger span::before { top: -6px; }
.mvx-burger span::after { top: 6px; }

.mvx-mobile-nav {
    display: none;
    background: var(--mvx-white);
    border-top: 1px solid var(--mvx-border);
    padding: 1rem 24px 1.5rem;
}
.mvx-mobile-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--mvx-border);
    font-weight: 500;
    color: var(--mvx-text);
}
.mvx-mobile-nav a:last-child { border-bottom: 0; }
.mvx-mobile-nav.is-open { display: block; }

main.mvx-main { padding-top: 78px; }

/* =====================  HERO  ===================== */
.mvx-hero {
    background: var(--mvx-bg-grey);
    padding: clamp(72px, 11vw, 140px) 0 clamp(80px, 12vw, 150px);
    position: relative;
    overflow: hidden;
}
.mvx-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border: 1px solid var(--mvx-border);
    border-radius: 50%;
    pointer-events: none;
}
.mvx-hero::after {
    content: "";
    position: absolute;
    bottom: -200px; left: -160px;
    width: 380px; height: 380px;
    border: 1px solid var(--mvx-border);
    border-radius: 50%;
    pointer-events: none;
}
.mvx-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.mvx-hero h1 { margin-bottom: 1.4rem; }
.mvx-hero h1 .mvx-accent { color: var(--mvx-gold); }
.mvx-hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--mvx-muted);
    max-width: 640px;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.mvx-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.mvx-hero-meta {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--mvx-border);
    flex-wrap: wrap;
}
.mvx-hero-meta-item .label {
    font-family: "Playfair Display", sans-serif;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mvx-gold);
    margin-bottom: .4rem;
    display: block;
    font-weight: 700;
}
.mvx-hero-meta-item .value {
    font-family: "Playfair Display", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mvx-navy);
}

/* =====================  PAGE HERO (inner)  ===================== */
.mvx-page-hero {
    background: var(--mvx-navy);
    color: var(--mvx-white);
    padding: 100px 0 80px;
    position: relative;
}
.mvx-page-hero h1 { color: var(--mvx-white); margin-bottom: 1rem; }
.mvx-page-hero .mvx-eyebrow { color: var(--mvx-gold-soft); }
.mvx-page-hero p { color: rgba(255,255,255,.78); max-width: 680px; font-size: 1.05rem; }
.mvx-page-hero .mvx-divider { background: var(--mvx-gold); }

/* =====================  SECTIONS  ===================== */
.mvx-section { padding: clamp(64px, 9vw, 110px) 0; }
.mvx-section-grey { background: var(--mvx-bg-grey); }
.mvx-section-navy { background: var(--mvx-navy); color: var(--mvx-white); }
.mvx-section-navy h1, .mvx-section-navy h2, .mvx-section-navy h3 { color: var(--mvx-white); }
.mvx-section-navy p { color: rgba(255,255,255,.78); }
.mvx-section-navy .mvx-eyebrow { color: var(--mvx-gold-soft); }

.mvx-section-head { max-width: 720px; margin-bottom: 3.5rem; }
.mvx-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.mvx-section-head h2 { margin-bottom: 1rem; }
.mvx-section-head p { color: var(--mvx-muted); font-size: 1.05rem; }
.mvx-section-navy .mvx-section-head p { color: rgba(255,255,255,.75); }

/* =====================  SERVICES GRID  ===================== */
.mvx-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.mvx-service-card {
    background: var(--mvx-white);
    border: 1px solid var(--mvx-border);
    padding: 2.4rem 2rem;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    position: relative;
}
.mvx-service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--mvx-gold);
    transition: width .3s ease;
}
.mvx-service-card:hover { border-color: var(--mvx-gold); box-shadow: var(--mvx-shadow-hover); }
.mvx-service-card:hover::before { width: 100%; }
.mvx-service-icon {
    width: 56px; height: 56px;
    background: var(--mvx-bg-grey);
    color: var(--mvx-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.mvx-service-icon svg { width: 26px; height: 26px; }
.mvx-service-card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.mvx-service-card p { color: var(--mvx-muted); font-size: .95rem; margin-bottom: 0; line-height: 1.65; }

/* Detailed services list (services page) */
.mvx-service-detail {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--mvx-border);
    align-items: start;
}
.mvx-service-detail:last-child { border-bottom: 0; }
.mvx-service-detail .mvx-service-icon { margin-bottom: 0; }
.mvx-service-detail h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.mvx-service-detail p { color: var(--mvx-muted); margin-bottom: 1rem; }
.mvx-service-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem 1.5rem;
}
.mvx-service-detail li {
    font-size: .92rem;
    color: var(--mvx-text);
    padding-left: 1.3rem;
    position: relative;
}
.mvx-service-detail li::before {
    content: "";
    position: absolute;
    left: 0; top: .6em;
    width: 8px; height: 1px;
    background: var(--mvx-gold);
}

/* =====================  ABOUT TEASER / TWO-COL  ===================== */
.mvx-two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
}
.mvx-two-col-text h2 { margin-bottom: 1.2rem; }
.mvx-two-col-text p { color: var(--mvx-muted); font-size: 1.02rem; margin-bottom: 1.1rem; }
.mvx-two-col-visual {
    background: var(--mvx-navy);
    color: var(--mvx-white);
    padding: 3rem 2.5rem;
    position: relative;
}
.mvx-two-col-visual::after {
    content: "";
    position: absolute;
    inset: -10px -10px auto auto;
    width: 80px; height: 80px;
    border: 2px solid var(--mvx-gold);
    pointer-events: none;
}
.mvx-stat { display: flex; align-items: baseline; gap: .8rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mvx-stat:last-child { border-bottom: 0; }
.mvx-stat .num { font-family: "Playfair Display", sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--mvx-gold-soft); min-width: 90px; }
.mvx-stat .label { color: rgba(255,255,255,.85); font-size: .98rem; }

/* =====================  PILLARS / FEATURES STRIP  ===================== */
.mvx-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.mvx-pillar {
    padding: 1.6rem;
    border: 1px solid var(--mvx-border);
    background: var(--mvx-white);
}
.mvx-pillar .num {
    font-family: "Playfair Display", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--mvx-gold);
    letter-spacing: .15em;
    margin-bottom: .8rem;
    display: block;
}
.mvx-pillar h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.mvx-pillar p { font-size: .9rem; color: var(--mvx-muted); margin: 0; }

/* =====================  CONTACT  ===================== */
.mvx-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.mvx-contact-info h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.mvx-info-block { padding: 1.4rem 0; border-bottom: 1px solid var(--mvx-border); }
.mvx-info-block:last-of-type { border-bottom: 0; }
.mvx-info-block .lbl {
    font-family: "Playfair Display", sans-serif;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mvx-gold);
    margin-bottom: .5rem;
    display: block;
    font-weight: 700;
}
.mvx-info-block .val { font-size: 1.05rem; color: var(--mvx-navy); font-weight: 500; }
.mvx-info-block .val a { color: var(--mvx-navy); }

.mvx-form {
    background: var(--mvx-white);
    border: 1px solid var(--mvx-border);
    padding: 3rem;
}
.mvx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.mvx-field { display: flex; flex-direction: column; }
.mvx-field.full { grid-column: 1 / -1; }
.mvx-field label {
    font-family: "Playfair Display", sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mvx-navy);
    margin-bottom: .5rem;
}
.mvx-field input,
.mvx-field select,
.mvx-field textarea {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--mvx-text);
    background: var(--mvx-white);
    border: 1px solid var(--mvx-border);
    padding: 13px 14px;
    outline: none;
    transition: border-color .2s ease;
    width: 100%;
}
.mvx-field textarea { min-height: 140px; resize: vertical; }
.mvx-field input:focus,
.mvx-field select:focus,
.mvx-field textarea:focus { border-color: var(--mvx-gold); }
.mvx-form .mvx-btn { width: 100%; justify-content: center; padding: 16px 28px; }

.mvx-form-msg {
    padding: 14px 16px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--mvx-gold);
    background: var(--mvx-bg-grey);
    font-size: .95rem;
}
.mvx-form-msg.error { border-left-color: #b94a48; color: #b94a48; }
.mvx-form-msg.success { border-left-color: var(--mvx-gold); color: var(--mvx-navy); }

/* =====================  FINAL CTA  ===================== */
.mvx-cta {
    background: var(--mvx-navy);
    color: var(--mvx-white);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
}
.mvx-cta h2 { color: var(--mvx-white); max-width: 720px; margin: 0 auto 1rem; }
.mvx-cta p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 2rem; }

/* =====================  FOOTER  ===================== */
.mvx-footer {
    background: var(--mvx-navy-deep);
    color: rgba(255,255,255,.75);
    padding: 4.5rem 0 2rem;
}
.mvx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.mvx-footer-brand .mvx-logo-text { color: var(--mvx-white); margin-bottom: 1rem; display: inline-block; font-size: 1.4rem; }
.mvx-footer-brand img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.mvx-footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; }
.mvx-footer h5 {
    color: var(--mvx-white);
    font-family: "Playfair Display", sans-serif;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.mvx-footer ul { list-style: none; padding: 0; margin: 0; }
.mvx-footer li { margin-bottom: .6rem; }
.mvx-footer a { color: rgba(255,255,255,.7); font-size: .92rem; }
.mvx-footer a:hover { color: var(--mvx-gold-soft); }

.mvx-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 980px) {
    .mvx-services-grid { grid-template-columns: repeat(2, 1fr); }
    .mvx-pillars { grid-template-columns: repeat(2, 1fr); }
    .mvx-two-col, .mvx-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .mvx-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .mvx-service-detail { grid-template-columns: 1fr; gap: 1.2rem; }
    .mvx-service-detail ul { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .mvx-nav { display: none; }
    .mvx-burger { display: inline-flex; }
    .mvx-services-grid { grid-template-columns: 1fr; }
    .mvx-pillars { grid-template-columns: 1fr; }
    .mvx-form-row { grid-template-columns: 1fr; }
    .mvx-footer-grid { grid-template-columns: 1fr; }
    .mvx-form { padding: 1.75rem; }
    .mvx-hero-meta { gap: 1.5rem; }
    .mvx-hero-cta { flex-direction: column; }
    .mvx-hero-cta .mvx-btn { width: 100%; justify-content: center; }
}

/* ---------- Typography spec overrides ---------- */
.mvx-eyebrow,
.mvx-hero-meta-item .label,
.mvx-info-block .lbl,
.mvx-field label,
.mvx-footer h5,
.mvx-pillar .num {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

/* ---------- Pre-qualification wizard ---------- */
.mvx-wiz-progress { display: flex; align-items: center; gap: .8rem; margin-bottom: 2rem; }
.mvx-wiz-step { font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--mvx-muted); }
.mvx-wiz-dots { display: flex; gap: .4rem; flex: 1; }
.mvx-wiz-dot { flex: 1; height: 3px; background: var(--mvx-border); transition: background .25s ease; }
.mvx-wiz-dot.active { background: var(--mvx-gold); }
.mvx-wiz-back { background: transparent; border: 0; cursor: pointer; color: var(--mvx-muted); font-family: "Inter", sans-serif; font-size: .85rem; font-weight: 500; padding: 0; text-decoration: underline; }
.mvx-wiz-back:hover { color: var(--mvx-gold); }
.mvx-wiz-q { font-family: "Playfair Display", serif; font-size: 1.6rem; font-weight: 700; color: var(--mvx-navy); margin: 0 0 .5rem; letter-spacing: -0.02em; }
.mvx-wiz-help { color: var(--mvx-muted); margin-bottom: 1.6rem; font-size: .98rem; }
.mvx-wiz-options { display: flex; flex-direction: column; gap: .65rem; }
.mvx-wiz-option { display: flex; align-items: center; gap: 1rem; text-align: left; width: 100%; background: var(--mvx-white); border: 1px solid var(--mvx-border); padding: 1.1rem 1.2rem; cursor: pointer; transition: border-color .2s ease, background-color .2s ease; font-family: "Inter", sans-serif; color: var(--mvx-text); }
.mvx-wiz-option:hover { border-color: var(--mvx-gold); background: var(--mvx-bg-grey); }
.mvx-wiz-option.selected { border-color: var(--mvx-gold); background: var(--mvx-bg-grey); }
.mvx-wiz-option-mark { width: 28px; height: 28px; border: 1.5px solid var(--mvx-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--mvx-gold); transition: border-color .2s ease; }
.mvx-wiz-option:hover .mvx-wiz-option-mark, .mvx-wiz-option.selected .mvx-wiz-option-mark { border-color: var(--mvx-gold); }
.mvx-wiz-option-mark svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s ease; }
.mvx-wiz-option.selected .mvx-wiz-option-mark svg { opacity: 1; }
.mvx-wiz-option-body { flex: 1; }
.mvx-wiz-option-title { display: block; font-weight: 500; color: var(--mvx-navy); margin-bottom: .15rem; font-size: 1rem; }
.mvx-wiz-option-desc { display: block; font-size: .85rem; color: var(--mvx-muted); line-height: 1.45; font-weight: 300; }
.mvx-wiz-option-arrow { color: var(--mvx-muted); transition: transform .2s ease, color .2s ease; }
.mvx-wiz-option:hover .mvx-wiz-option-arrow { color: var(--mvx-gold); transform: translateX(4px); }
.mvx-wiz-summary { background: var(--mvx-bg-grey); border-left: 3px solid var(--mvx-gold); padding: 1.1rem 1.2rem; margin-bottom: 1.75rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; }
.mvx-wiz-summary-item { display: flex; flex-direction: column; gap: 2px; }
.mvx-wiz-summary-item .lbl { font-family: "Inter", sans-serif; font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--mvx-gold); }
.mvx-wiz-summary-item .val { font-size: .94rem; color: var(--mvx-navy); font-weight: 500; }
.mvx-wiz-summary .mvx-wiz-back { margin-left: auto; }
@media (max-width: 720px) {
    .mvx-wiz-q { font-size: 1.35rem; }
    .mvx-wiz-option { padding: 1rem; }
    .mvx-wiz-option-arrow { display: none; }
}

/* ---------- Per-service permalinks (clickable cards + service detail page) ---------- */
.mvx-service-card-link, a.mvx-service-card { text-decoration: none; color: inherit; display: block; position: relative; }
.mvx-service-card-arrow { position: absolute; top: 2rem; right: 1.6rem; color: var(--mvx-muted); transition: color .2s ease, transform .2s ease; }
.mvx-service-card-link:hover .mvx-service-card-arrow { color: var(--mvx-gold); transform: translateX(4px); }
.mvx-service-detail-link { text-decoration: none; color: inherit; transition: background-color .2s ease; padding-left: 1.25rem; padding-right: 1.25rem; margin-left: -1.25rem; margin-right: -1.25rem; }
.mvx-service-detail-link:hover { background: var(--mvx-bg-grey); }
.mvx-service-detail-link:hover h3 { color: var(--mvx-gold); }
.mvx-service-detail-arrow { color: var(--mvx-gold); margin-left: .5rem; display: inline-block; transition: transform .2s ease; font-weight: 400; }
.mvx-service-detail-link:hover .mvx-service-detail-arrow { transform: translateX(6px); }
.mvx-back-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--mvx-gold-soft) !important; margin-bottom: 1rem !important; text-decoration: none !important; cursor: pointer; }
.mvx-back-link:hover { color: var(--mvx-white) !important; }
.mvx-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 4rem; align-items: start; }
.mvx-detail-main h2 { margin-bottom: 1rem; }
.mvx-detail-main p { color: var(--mvx-muted); font-size: 1.02rem; margin-bottom: 1.1rem; }
.mvx-detail-points { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.5rem; }
.mvx-detail-points li { display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem; background: var(--mvx-bg-grey); color: var(--mvx-text); font-weight: 400; font-size: .95rem; }
.mvx-tick { width: 16px; height: 16px; flex-shrink: 0; background: var(--mvx-gold); position: relative; }
.mvx-tick::after { content: ""; position: absolute; left: 4px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.mvx-detail-aside { background: var(--mvx-bg-grey); border: 1px solid var(--mvx-border); border-top: 3px solid var(--mvx-gold); padding: 2rem; position: sticky; top: 100px; }
.mvx-detail-icon { width: 56px; height: 56px; background: var(--mvx-white); color: var(--mvx-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mvx-detail-icon svg { width: 26px; height: 26px; }
.mvx-detail-aside h4 { font-family: "Playfair Display", serif; font-size: 1.05rem; margin-bottom: 1rem; }
.mvx-detail-aside dl { margin: 0; }
.mvx-detail-aside dl > div { padding: .8rem 0; border-bottom: 1px solid var(--mvx-border); display: flex; justify-content: space-between; gap: 1rem; }
.mvx-detail-aside dl > div:last-child { border-bottom: 0; }
.mvx-detail-aside dt { font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mvx-gold); }
.mvx-detail-aside dd { margin: 0; font-size: .9rem; color: var(--mvx-navy); font-weight: 500; text-align: right; }
.mvx-prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mvx-prev-next-link { display: flex; flex-direction: column; gap: .25rem; padding: 1.5rem 1.75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18); color: var(--mvx-white) !important; text-decoration: none !important; transition: border-color .2s ease, background-color .2s ease; }
.mvx-prev-next-link:hover { border-color: var(--mvx-gold); background: rgba(154,124,60,.12); }
.mvx-prev-next-link span { font-family: "Inter", sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mvx-gold-soft); font-weight: 500; }
.mvx-prev-next-link strong { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.15rem; color: var(--mvx-white); }
.mvx-prev-next-link-right { text-align: right; align-items: flex-end; }
.mvx-notfound { min-height: calc(100vh - 78px); display: flex; align-items: center; background: var(--mvx-bg-grey); padding: 80px 0; position: relative; overflow: hidden; }
.mvx-notfound::before { content: "404"; position: absolute; right: -40px; bottom: -80px; font-family: "Playfair Display", serif; font-size: 28rem; line-height: 1; font-weight: 700; color: var(--mvx-border); opacity: .55; pointer-events: none; letter-spacing: -0.05em; }
.mvx-notfound .mvx-container { position: relative; z-index: 1; max-width: 720px; }
.mvx-notfound h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.mvx-notfound p { color: var(--mvx-muted); font-size: 1.1rem; max-width: 540px; margin-bottom: 2.2rem; }
.mvx-notfound-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 980px) {
    .mvx-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .mvx-detail-aside { position: static; }
    .mvx-prev-next { grid-template-columns: 1fr; }
    .mvx-prev-next-link-right { text-align: left; align-items: flex-start; }
}
@media (max-width: 720px) {
    .mvx-detail-points { grid-template-columns: 1fr; }
    .mvx-service-card-arrow { display: none; }
    .mvx-notfound::before { font-size: 14rem; right: -30px; bottom: -40px; }
    .mvx-form { padding: 1.75rem; }
}

/* =========================================================
   OTP Verification Box
   ========================================================= */
.mvx-otp-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--mvx-bg-grey);
    border: 1px solid var(--mvx-border);
    border-radius: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.mvx-otp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--mvx-gold);
}
.mvx-otp-box h3 {
    font-family: var(--mvx-font-head);
    font-size: 1.4rem;
    color: var(--mvx-navy);
    margin-bottom: 0.75rem;
}
.mvx-otp-box p {
    color: var(--mvx-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.mvx-otp-input {
    font-size: 1.8rem !important;
    letter-spacing: 0.4em;
    text-align: center;
    font-weight: 700;
    color: var(--mvx-navy);
    border: 2px solid var(--mvx-gold) !important;
    border-radius: 6px;
    padding: 0.75rem 1rem !important;
    width: 100%;
}
.mvx-otp-input:focus {
    outline: none;
    border-color: var(--mvx-navy) !important;
    box-shadow: 0 0 0 3px rgba(15,31,74,0.1);
}
.mvx-otp-note {
    font-size: 0.8rem !important;
    color: var(--mvx-muted) !important;
    margin-top: 1rem !important;
}
