/* === FONTS & VARIABLES === */
:root {
    --mgm-navy: #12305B;
    --mgm-navy-deep: #0E2547;
    --mgm-orange: #F26F21;
    --mgm-orange-dark: #D95E12;
    --mgm-gold: #F5A623;
    --mgm-green: #1E8A5B;
    --mgm-red: #C43D3D;
    --mgm-text: #35485E;
    --mgm-muted: #6A7A8E;
    --mgm-border: #E2E8F0;
    --mgm-bg: #F5F7FA;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    margin: 0;
    background: var(--mgm-bg);
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--mgm-text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
}

p, li, dt, dd, td, th, label, input, select, button, a, span, strong, figcaption {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-family: inherit;
}

a {
    color: #1B5FAE;
    text-decoration: none;
}

a:hover {
    color: var(--mgm-orange);
}

/* === HEADER STYLES === */
.mgm-header {
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.mgm-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.mgm-header-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.mgm-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mgm-nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #35485E;
    text-decoration: none;
}

.mgm-nav-link:hover {
    color: #F26F21;
}

.mgm-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mgm-header-phone {
    color: #12305B;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
}

.mgm-header-cta {
    white-space: nowrap;
}

/* === HERO / FORM STYLES === */
.mgm-hero {
    background: linear-gradient(180deg, #12305B 0%, #173A6C 100%);
    color: #ffffff;
}

.mgm-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px 52px;
}

.mgm-breadcrumb {
    font-size: 13.5px;
    color: #9FB4D2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.mgm-breadcrumb a {
    white-space: nowrap;
    color: #C9D7EB;
    text-decoration: none;
}

.mgm-breadcrumb a:hover {
    color: #ffffff;
}

.mgm-breadcrumb-current {
    color: #DCE6F4;
}

.mgm-hero-title {
    font-size: clamp(28px, 3.3vw, 40px);
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.25;
    text-wrap: pretty;
}

.mgm-answer-box {
    background: rgba(255,255,255,0.94);
    border-left: 5px solid var(--mgm-orange);
    border-radius: 12px;
    padding: 20px 22px;
    color: var(--mgm-text);
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(4, 18, 42, 0.22);
}

.mgm-answer-label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mgm-orange);
}

.mgm-answer-text {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.65;
}

.mgm-answer-text:last-child {
    margin-bottom: 0;
}

.mgm-answer-text strong {
    color: var(--mgm-navy);
}

.mgm-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mgm-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mgm-stat-num {
    font-family: 'Noto Serif', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.mgm-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #9FB4D2;
}

.mgm-quote-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 26px 22px;
    box-shadow: 0 18px 44px rgba(4, 18, 42, 0.35);
    color: var(--mgm-text);
}

.mgm-quote-eyebrow {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--mgm-orange);
}

.mgm-quote-headline {
    margin: 4px 0 18px;
    font-family: 'Noto Serif', serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--mgm-navy);
    line-height: 1.3;
}

.mgm-quote-form, .mgm-mini-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgm-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--mgm-navy);
}

.mgm-input {
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    border: 1.5px solid #CBD6E2;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--mgm-navy);
    background: #ffffff;
    outline: none;
    margin-top: 5px;
}

.mgm-input:focus {
    border-color: var(--mgm-orange);
    box-shadow: 0 0 0 3px rgba(242, 111, 33, 0.14);
}

.mgm-trust-note {
    margin: 14px 0 0;
    text-align: center;
    font-size: 13px;
    color: var(--mgm-muted);
}

/* === SECTION STYLES === */
.mgm-section {
    max-width: 1020px;
    margin: 0 auto;
    padding: 44px 20px 8px;
}

.mgm-section-last {
    padding-bottom: 44px;
}

.mgm-h2 {
    font-size: 28px;
    color: var(--mgm-navy);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.3;
}

.mgm-h3 {
    font-size: 21px;
    color: var(--mgm-navy);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.35;
}

.mgm-h3-spaced {
    margin-top: 36px;
}

.mgm-lead {
    font-size: 16.5px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.mgm-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mgm-orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 22px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    font-family: inherit;
}

.mgm-btn-primary:hover {
    background: var(--mgm-orange-dark);
    color: #ffffff;
}

.mgm-btn-block {
    display: flex;
    width: 100%;
}

.mgm-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #CBD6E2;
    color: var(--mgm-navy);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    min-height: 48px;
    background: #ffffff;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.mgm-btn-outline:hover {
    border-color: var(--mgm-navy);
    color: var(--mgm-navy);
}

.mgm-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-weight: 600;
    font-size: 15.5px;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    min-height: 44px;
}

.mgm-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

/* trust strip */
.mgm-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mgm-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mgm-navy);
    text-decoration: none;
}

.mgm-trust-item:hover {
    border-color: var(--mgm-orange);
    color: var(--mgm-orange);
}

.mgm-trust-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FDEBDD;
    color: var(--mgm-orange);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* tables */
.mgm-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    min-width: 420px;
}

.mgm-table thead th {
    position: sticky;
    top: 0;
    background: var(--mgm-navy);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    z-index: 1;
}

.mgm-table tbody td {
    padding: 14px 18px;
    font-size: 15.5px;
    border-top: 1px solid #EEF2F7;
    color: var(--mgm-text);
}

.mgm-table tbody tr:nth-child(even) {
    background: #F7FAFD;
}

.mgm-table .mgm-num {
    text-align: right;
    font-weight: 700;
    color: var(--mgm-navy);
    white-space: nowrap;
}

.mgm-table-cta {
    margin: 18px 0 0;
}

.mgm-note {
    margin: 18px 0 0;
    background: #FFF8F3;
    border: 1px solid #F6DFCB;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--mgm-text);
}

/* factors */
.mgm-factor-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgm-factor {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
    font-size: 15.5px;
    line-height: 1.65;
}

.mgm-factor-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mgm-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mgm-factor strong {
    color: var(--mgm-navy);
}

/* find movers near you */
.mgm-mini-form-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-mini-form-sub {
    margin: 0 0 16px;
    font-size: 14.5px;
    color: var(--mgm-muted);
}

.mgm-reverse-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #EEF3FA;
    border: 1px dashed #A9C0DE;
    border-radius: 14px;
    padding: 22px;
    text-decoration: none;
}

.mgm-reverse-card:hover {
    border-color: var(--mgm-orange);
    background: #FFF8F3;
}

.mgm-swap-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--mgm-orange);
    font-size: 19px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mgm-reverse-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mgm-navy);
}

/* movers */
.mgm-movers-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mgm-show-list {
    flex-shrink: 0;
}

#mgm-mover-list.is-collapsed {
    display: none;
}

.mgm-mover-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mgm-mover-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mgm-mover-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #EEF3FA;
    color: var(--mgm-navy);
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mgm-mover-id {
    min-width: 0;
}

.mgm-mover-name {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.mgm-mover-name a {
    color: var(--mgm-navy);
    text-decoration: none;
}

.mgm-mover-name a:hover {
    color: var(--mgm-orange);
}

.mgm-mover-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mgm-stars {
    display: inline-flex;
    gap: 2px;
}

.mgm-star {
    position: relative;
    display: inline-block;
    color: #D8E0EA;
    font-size: 15px;
    line-height: 1;
}

.mgm-star-fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: var(--mgm-gold);
    white-space: nowrap;
}

.mgm-rating-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--mgm-muted);
}

.mgm-no-reviews {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--mgm-muted);
}

.mgm-verified-badge {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #E7F5EE;
    color: var(--mgm-green);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.mgm-mover-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.mgm-pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
}

.mgm-page-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--mgm-muted);
    margin-right: 4px;
}

.mgm-page-current {
    background: var(--mgm-navy);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mgm-page-link {
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    color: var(--mgm-navy);
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 14px;
}

.mgm-page-link:hover {
    border-color: var(--mgm-orange);
    color: var(--mgm-orange);
}

.mgm-page-ellipsis {
    color: var(--mgm-muted);
    padding: 0 4px;
}

/* fmcsa */
.mgm-official-card {
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-left: 5px solid var(--mgm-navy);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-official-text {
    margin: 0 0 18px;
    font-size: 15.5px;
    line-height: 1.7;
}

.mgm-official-meta {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mgm-official-meta dt {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--mgm-muted);
}

.mgm-official-meta dd {
    margin: 2px 0 0;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--mgm-navy);
}

.mgm-official-link {
    font-weight: 700;
    color: var(--mgm-orange);
}

/* pros and cons */
.mgm-pc-card {
    height: 100%;
    overflow-x: auto;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-pc-table {
    min-width: 340px;
}

.mgm-pc-table tbody td {
    font-size: 14.5px;
    vertical-align: top;
}

.mgm-tick, .mgm-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
}

.mgm-tick {
    background: #E7F5EE;
    color: var(--mgm-green);
}

.mgm-cross {
    background: #FBE9E9;
    color: var(--mgm-red);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* how we pick */
.mgm-pick-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-pick-num {
    margin: 0 0 8px;
    font-family: 'Noto Serif', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--mgm-navy);
    line-height: 1.3;
}

.mgm-pick-text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--mgm-text);
}

.mgm-weight-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mgm-weight-item {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr 52px;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
}

.mgm-weight-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--mgm-navy);
    line-height: 1.4;
}

.mgm-weight-track {
    height: 10px;
    border-radius: 999px;
    background: #EEF3FA;
    overflow: hidden;
}

.mgm-weight-bar {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #F5A623 0%, #F26F21 100%);
}

.mgm-weight-pct {
    font-size: 15px;
    font-weight: 700;
    color: var(--mgm-navy);
    text-align: right;
}

.mgm-process-list {
    margin: 0 0 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.7;
}

.mgm-process-list strong {
    color: var(--mgm-navy);
}

/* faq */
.mgm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgm-faq {
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
    overflow: hidden;
}

.mgm-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    min-height: 56px;
    cursor: pointer;
    list-style: none;
}

.mgm-faq-q::-webkit-details-marker {
    display: none;
}

.mgm-faq-h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--mgm-navy);
    line-height: 1.4;
}

.mgm-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #EEF3FA;
    color: var(--mgm-navy);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.mgm-faq[open] .mgm-faq-icon {
    background: var(--mgm-orange);
    color: #ffffff;
    transform: rotate(45deg);
}

.mgm-faq-a {
    padding: 0 20px 20px;
    font-size: 15.5px;
    line-height: 1.7;
}

.mgm-faq-a p {
    margin: 0 0 12px;
}

.mgm-map-embed {
    margin: 6px 0 0;
}

.mgm-map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 12px;
    display: block;
}

.mgm-map-embed figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--mgm-muted);
}

.mgm-cta-banner {
    background: linear-gradient(135deg, #12305B 0%, #1B4478 100%);
    border-radius: 16px;
    padding: 40px 34px;
    color: #ffffff;
    text-align: center;
}

.mgm-cta-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
}

.mgm-cta-sub {
    margin: 0 0 22px;
    font-size: 16px;
    color: #C9D7EB;
}

.mgm-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.mgm-cta-trust {
    margin: 16px 0 0;
    font-size: 13px;
    color: #9FB4D2;
}

.mgm-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #ffffff;
    border-top: 1px solid var(--mgm-border);
    box-shadow: 0 -6px 20px rgba(18, 48, 91, 0.12);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
    align-items: center;
}

/* category tabs + extra tips (route detail variants) */
.mgm-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.mgm-cat-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid #CBD6E2;
    background: #ffffff;
    color: var(--mgm-navy);
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
}

.mgm-cat-tab:hover {
    border-color: var(--mgm-orange);
    color: var(--mgm-orange);
}

.mgm-cat-tab.is-active {
    background: var(--mgm-navy);
    border-color: var(--mgm-navy);
    color: #ffffff;
}

.mgm-cat-panel {
    display: none;
}

.mgm-cat-panel.is-active {
    display: block;
}

.mgm-tip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgm-tip {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--mgm-border);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(18, 48, 91, 0.05);
    font-size: 15.5px;
    line-height: 1.65;
}

.mgm-tip-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #E7F5EE;
    color: var(--mgm-green);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mgm-tip strong {
    color: var(--mgm-navy);
}

/* === RESPONSIVE / MEDIA QUERIES === */
@media (max-width: 1024px) {
    .mgm-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .mgm-hero-inner {
        padding: 26px 20px 44px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 84px;
    }

    .mgm-hero-inner {
        padding: 22px 18px 34px;
    }

    .mgm-hero-title {
        font-size: 27px;
    }

    .mgm-stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .mgm-stat-num {
        font-size: 23px;
    }

    .mgm-quote-card {
        padding: 22px 20px 20px;
    }

    .mgm-trust-strip {
        grid-template-columns: 1fr;
    }

    .mgm-h2 {
        font-size: 24px;
    }

    .mgm-weight-item {
        grid-template-columns: 1fr 48px;
        row-gap: 8px;
    }

    .mgm-weight-label {
        grid-column: 1 / -1;
    }

    .mgm-official-meta {
        grid-template-columns: 1fr;
    }

    .mgm-mover-actions {
        flex-direction: column;
    }

    .mgm-mover-actions a {
        width: 100%;
    }

    .mgm-table-cta .mgm-btn-primary {
        width: 100%;
    }

    .mgm-cta-banner {
        padding: 30px 20px;
    }

    .mgm-cta-buttons a {
        width: 100%;
    }

    .mgm-map-embed iframe {
        height: 240px;
    }

    .mgm-cat-tab {
        flex: 1 1 100%;
    }
}

/* === FOOTER STYLES === */
.mgm-footer {
    background: var(--mgm-navy-deep);
    color: #ffffff;
    margin-top: 44px;
}

.mgm-footer-inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 44px 20px 26px;
}

.mgm-footer-logo {
    display: inline-block;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.mgm-footer-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.mgm-footer-social {
    display: flex;
    gap: 10px;
}

.mgm-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mgm-footer-social a:hover {
    background: var(--mgm-orange);
    color: #ffffff;
}

.mgm-footer-heading {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.mgm-footer-link {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: #C9D7EB;
    text-decoration: none;
}

.mgm-footer-link:hover {
    color: #ffffff;
}

.mgm-footer-legal {
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 30px;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    color: #9FB4D2;
}

.mgm-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.mgm-footer-legal-links a {
    color: #C9D7EB;
    text-decoration: none;
}

.mgm-footer-legal-links a:hover {
    color: #ffffff;
}

/* === TABS STYLES === */
.mgm-tabs {
    display: flex;
    gap: 12px;
    margin: 28px 0 24px;
    flex-wrap: wrap;
}

.mgm-tab {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    background: #ffffff;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.mgm-tab:hover {
    border-color: var(--mgm-orange);
    background: #FFF8F2;
}

.mgm-tab.active {
    border-color: var(--mgm-orange);
    background: #FFF8F2;
    box-shadow: 0 4px 16px rgba(242, 111, 33, 0.15);
}

.mgm-tab-icon {
    margin-bottom: 8px;
}

.mgm-tab-icon img {
    display: block;
    margin: 0 auto;
}

.mgm-tab-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mgm-navy);
}

.mgm-tab.active .mgm-tab-label {
    color: var(--mgm-orange);
}

.mgm-tab-content {
    display: none;
}

.mgm-tab-content.active {
    display: block;
}

/* === MOVERS LIST HEADER === */
.mgm-movers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.mgm-show-list {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 14px;
}

.mgm-show-list span {
    margin-left: 6px;
}

/* === PAGINATION STYLES === */
.mgm-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.mgm-page-label {
    font-size: 14px;
    color: var(--mgm-muted);
    font-weight: 500;
}

.mgm-page-current {
    background: var(--mgm-orange);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.mgm-page-link {
    background: #ffffff;
    border: 1.5px solid #CBD6E2;
    color: var(--mgm-navy);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mgm-page-link:hover {
    border-color: var(--mgm-navy);
    background: #F5F7FA;
}

.mgm-page-ellipsis {
    color: var(--mgm-muted);
    font-size: 14px;
    padding: 0 4px;
}

.mgm-page-next {
    width: auto;
    padding: 0 16px;
}

.mgm-no-reviews {
    font-size: 13px;
    color: var(--mgm-muted);
    font-style: italic;
}

.flex-fill {
    flex: 1;
}

/* === PROCESS LIST STYLES === */
.mgm-process-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.mgm-process-list li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--mgm-text);
}

.mgm-process-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--mgm-orange);
    font-size: 20px;
    font-weight: 700;
}

/* === PICK CARD STYLES === */
.mgm-pick-card {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.mgm-pick-card:hover {
    border-color: var(--mgm-orange);
    box-shadow: 0 8px 24px rgba(242, 111, 33, 0.12);
}

.mgm-pick-num {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--mgm-orange);
    font-family: 'Noto Serif', serif;
}

.mgm-pick-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--mgm-text);
}

/* === WEIGHT LIST STYLES === */
.mgm-weight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mgm-weight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 12px;
}

.mgm-weight-label {
    flex: 0 0 200px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mgm-navy);
    line-height: 1.4;
}

.mgm-weight-track {
    flex: 1;
    background: #E2E8F0;
    border-radius: 6px;
    height: 8px;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.mgm-weight-bar {
    background: linear-gradient(90deg, var(--mgm-orange) 0%, #D95E12 100%);
    height: 100%;
    border-radius: 6px;
    display: block;
}

.mgm-weight-pct {
    flex: 0 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mgm-navy);
    text-align: right;
}

/* === PROS AND CONS TABLE STYLES === */
.mgm-pc-card {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
}

.mgm-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.mgm-pc-table {
    font-size: 14px;
}

.mgm-pc-table thead tr {
    background: var(--mgm-navy);
}

.mgm-pc-table th {
    color: #ffffff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: none;
}

.mgm-pc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: top;
}

.mgm-pc-table tbody tr:last-child td {
    border-bottom: none;
}

.mgm-pro {
    color: var(--mgm-green);
}

.mgm-con {
    color: var(--mgm-red);
}

.mgm-tick {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--mgm-green);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}

.mgm-cross {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--mgm-red);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
}

/* === FAQ STYLES === */
.mgm-faq-list {
    margin: 0;
    padding: 0;
}

.mgm-faq {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    margin: 0 0 12px;
    padding: 0;
}

.mgm-faq:last-child {
    margin-bottom: 0;
}

.mgm-faq[open] {
    border-color: var(--mgm-orange);
}

.mgm-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.mgm-faq-q::-webkit-details-marker {
    display: none;
}

.mgm-faq-h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--mgm-navy);
    flex: 1;
}

.mgm-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--mgm-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.mgm-faq[open] .mgm-faq-icon {
    transform: rotate(45deg);
}

.mgm-faq-a {
    padding: 0 24px 24px;
    border-top: 1px solid #E2E8F0;
    margin-top: 0;
}

.mgm-faq-a p {
    margin: 20px 0 0;
    line-height: 1.7;
    color: var(--mgm-text);
}

.mgm-faq-a p:first-child {
    margin-top: 20px;
}

.mgm-map-embed {
    margin: 20px 0 0;
    border-radius: 12px;
    overflow: hidden;
}

.mgm-map-embed figcaption {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--mgm-muted);
    text-align: center;
}

/* === CTA BANNER STYLES === */
.mgm-cta-banner {
    background: linear-gradient(135deg, var(--mgm-navy) 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.mgm-cta-title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.mgm-cta-sub {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #E2E8F0;
}

.mgm-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.mgm-cta-trust {
    margin: 0;
    font-size: 14px;
    color: #94A3B8;
}

.mgm-section-last {
    padding-bottom: 0;
}

