:root {
    --brand: #0b3472;
    --brand-dark: #061f4d;
    --brand-light: #eaf1fb;
    --accent: #d59a1f;
    --accent-dark: #aa7410;
    --ink: #12213b;
    --muted: #68778e;
    --surface: #ffffff;
    --bg: #f4f7fb;
    --border: #e2e8f1;
    --success: #16834b;
    --shadow: 0 16px 44px rgba(22, 42, 75, .09);
    --shadow-strong: 0 28px 80px rgba(4, 24, 58, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title,
.mph-hero-title {
    font-family: Manrope, Inter, system-ui, sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.top-strip {
    background: #071a3e;
    color: #e9f0fb;
    font-size: .84rem;
}

.top-strip a {
    color: #fff;
}

.front-nav {
    background: rgba(6, 26, 62, .97) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(4, 21, 50, .16);
}

.front-nav .nav-link {
    color: #dbe5f5 !important;
    font-weight: 650;
    font-size: .92rem;
    padding: .65rem .72rem !important;
}

.front-nav .nav-link:hover {
    color: #fff !important;
}

.mph-navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    padding: 0;
}

.mph-nav-logo {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.mph-nav-logo img {
    width: 48px;
    height: 44px;
    object-fit: contain;
    object-position: center;
}

.mph-nav-name {
    display: grid;
    line-height: 1.12;
}

.mph-nav-name strong {
    font-size: 1rem;
    letter-spacing: -.02em;
}

.mph-nav-name small {
    color: #b9c7dc;
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .02em;
}

.btn-brand {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-soft {
    color: var(--brand);
    background: var(--brand-light);
    border: 1px solid #ccdaef;
}

.btn-soft:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.eyebrow {
    color: var(--brand);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.surface-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.metric-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
}

.metric-card::after {
    position: absolute;
    top: -35px;
    right: -28px;
    width: 90px;
    height: 90px;
    content: "";
    border-radius: 50%;
    background: rgba(11, 52, 114, .08);
}

.metric-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 1.25rem;
    border-radius: 14px;
    background: var(--brand-light);
}

/* Main professional homepage */
.mph-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 44px 0 52px;
    background:
        radial-gradient(circle at 86% 22%, rgba(213, 154, 31, .22), transparent 27%),
        radial-gradient(circle at 8% 82%, rgba(44, 100, 174, .28), transparent 33%),
        linear-gradient(125deg, #061a3e 0%, #0a3472 55%, #0d4b91 100%);
}

.mph-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to right, #000, transparent);
}

.mph-hero .container {
    position: relative;
    z-index: 2;
}

.mph-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    color: #ffefc7;
    font-size: .73rem;
    font-weight: 750;
    border: 1px solid rgba(255, 218, 129, .32);
    border-radius: 999px;
    background: rgba(213, 154, 31, .13);
}

.mph-hero-title {
    max-width: 690px;
    margin: 17px 0 0;
    font-size: clamp(2.15rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.mph-hero-copy {
    max-width: 650px;
    margin: 16px 0 0;
    color: #d9e4f5;
    font-size: clamp(.95rem, 1.08vw, 1.06rem);
    line-height: 1.6;
}

.mph-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    color: #d9e4f5;
    font-size: .88rem;
}

.mph-hero-trust i {
    color: #f4bf52;
    margin-right: 6px;
}

.official-logo-showcase {
    position: relative;
    max-width: 470px;
    margin-left: auto;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 25px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 40px 95px rgba(0, 0, 0, .25);
    transform: none;
}

.official-logo-showcase::after {
    position: absolute;
    inset: 8px;
    content: "";
    pointer-events: none;
    border: 1px solid #e6edf8;
    border-radius: 19px;
}

.official-logo-showcase img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.official-logo-glow {
    position: absolute;
    inset: -25%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(213, 154, 31, .22), transparent 55%);
}

/* Scrolling existing property listing rail */
.property-ticker-section {
    position: relative;
    overflow: hidden;
    padding: 28px 0 34px;
    background: #071a3e;
    border-top: 1px solid rgba(255,255,255,.08);
}

.property-ticker-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.property-ticker-window {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.property-ticker-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 4px 0;
    animation: propertyTicker 48s linear infinite;
    will-change: transform;
}

.property-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes propertyTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-property-card {
    width: 330px;
    min-width: 330px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.ticker-property-card:hover {
    color: var(--ink);
    border-color: #e0b147;
    transform: translateY(-2px);
}

.ticker-property-card > img,
.ticker-placeholder {
    width: 92px;
    height: 78px;
    flex: 0 0 92px;
    object-fit: cover;
    border-radius: 12px;
}

.ticker-placeholder {
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 1.6rem;
    background: var(--brand-light);
}

.ticker-property-content {
    min-width: 0;
    flex-grow: 1;
}

.ticker-property-content strong {
    color: var(--brand);
    font-size: 1rem;
}

.ticker-property-content span {
    color: #8a6416;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ticker-property-content h3 {
    overflow: hidden;
    margin: 6px 0 4px;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticker-property-content p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: .72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Search */
.professional-search-section {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 44px 0 38px;
    background: linear-gradient(180deg, #edf3fb 0%, var(--bg) 100%);
}

.search-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-strong);
}

.professional-search-card {
    padding: 28px;
}

.search-intent-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.search-intent-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: flex-end;
}

.search-intent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 15px;
    color: var(--ink);
    font-size: .83rem;
    font-weight: 750;
    border: 1px solid #d9e1ed;
    border-radius: 12px;
    background: #fff;
    transition: .2s ease;
}

.search-intent-button:hover,
.search-intent-button.active {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: 0 8px 20px rgba(11, 52, 114, .18);
}

.search-intent-button.list-button {
    color: #4e3608;
    border-color: #e4b84f;
    background: #ffd978;
}

.search-intent-button.list-button:hover {
    color: #fff;
    border-color: var(--accent-dark);
    background: var(--accent-dark);
}

.latest-property-section {
    padding-top: 58px;
    padding-bottom: 60px;
}

.browse-category-section {
    padding-top: 34px;
    padding-bottom: 58px;
}

.category-card {
    height: 100%;
    padding: 24px;
    transition: .22s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #bcd0eb;
    box-shadow: 0 18px 45px rgba(11, 52, 114, .13);
}

.category-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 1.4rem;
    border-radius: 17px;
    background: linear-gradient(135deg, #e6effc, #fff2d1);
}

.property-card {
    height: 100%;
    overflow: hidden;
    transition: .25s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 52px rgba(21, 43, 77, .14);
}

.property-photo {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 235px;
    display: grid;
    place-items: center;
    color: #8793a5;
    background: linear-gradient(135deg, #e7edf5, #f8fafc);
}

.property-price {
    color: var(--brand);
    font-size: 1.35rem;
    font-weight: 850;
}

.property-meta {
    color: var(--muted);
    font-size: .9rem;
}

.professional-property-card .position-relative {
    overflow: hidden;
}

.professional-property-card .property-photo {
    transition: transform .45s ease;
}

.professional-property-card:hover .property-photo {
    transform: scale(1.045);
}

.verified-property-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    color: #fff;
    font-size: .72rem;
    font-weight: 750;
    border-radius: 999px;
    background: rgba(18, 131, 75, .92);
    backdrop-filter: blur(10px);
}

.badge-soft {
    color: var(--brand);
    border: 1px solid #cad9ee;
    background: var(--brand-light);
}

.property-owner-cta {
    overflow: hidden;
    padding: 42px;
    color: #fff;
    border-color: #173e76;
    background:
        radial-gradient(circle at 90% 0%, rgba(213, 154, 31, .28), transparent 32%),
        linear-gradient(125deg, #061a3e, #0b3472);
}

.brand-story-section {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.brand-story-logo {
    width: 100%;
    max-width: 470px;
    padding: 12px;
    border-radius: 22px;
    background: #fff;
}

.brand-trust-point {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f9fbfe;
}

.brand-trust-point i {
    color: var(--accent-dark);
    font-size: 1.45rem;
}

.brand-trust-point span {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}

/* Forms, tables and common */
.form-control,
.form-select {
    padding: .73rem .9rem;
    border-color: #d9e1ec;
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #7f9fc7;
    box-shadow: 0 0 0 .25rem rgba(11, 52, 114, .11);
}

.avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-weight: 800;
    border-radius: 50%;
    background: var(--brand-light);
}

.table-modern {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table-modern tbody tr {
    background: #fff;
    box-shadow: 0 3px 13px rgba(25, 35, 55, .04);
}

.table-modern td,
.table-modern th {
    padding: 14px;
    border: 0;
}

/* Footer */
.footer-main {
    color: #c7d2e5;
    background: #06162f;
}

.footer-main h5 {
    color: #fff;
}

.footer-main a {
    color: #c7d2e5;
}

.footer-main a:hover {
    color: #fff;
}

.footer-brand-card {
    width: 100%;
    max-width: 360px;
    padding: 13px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.footer-brand-card img {
    width: 100%;
    max-height: 225px;
    object-fit: contain;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: #c7d2e5;
    font-size: .88rem;
}

.footer-contact-item i {
    color: #edbb51;
    margin-top: 2px;
}

.popup-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

/* Admin */
.admin-body {
    background: #eef3f8;
}

.admin-sidebar {
    position: fixed;
    z-index: 1035;
    top: 0;
    bottom: 0;
    left: 0;
    width: 280px;
    overflow-y: auto;
    padding: 18px 16px;
    color: #c8d4e8;
    background: #06162f;
}

.admin-official-brand {
    display: flex !important;
    align-items: center;
    gap: 11px !important;
    padding: 5px 8px 20px !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    background: transparent !important;
}

.admin-brand-logo {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    flex: 0 0 49px;
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
}

.admin-brand-logo img {
    width: 47px;
    height: 44px;
    object-fit: contain;
    object-position: center;
}

.admin-official-brand strong {
    display: block;
    color: #fff;
    font-size: .96rem;
    line-height: 1.15;
}

.admin-official-brand small {
    display: block;
    color: #8395b3;
    font-size: .7rem;
    margin-top: 3px;
}

.admin-sidebar .nav-label {
    padding: 18px 12px 8px;
    color: #7285a4;
    font-size: .67rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.admin-sidebar > a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    margin: 3px 0;
    color: #c8d4e8;
    font-weight: 620;
    border-radius: 11px;
}

.admin-sidebar > a:hover,
.admin-sidebar > a.active {
    color: #fff;
    background: rgba(40, 91, 159, .43);
}

.sidebar-notification-count {
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    margin-left: auto;
    padding: 0 6px;
    color: #fff;
    font-size: .66rem;
    font-weight: 800;
    border-radius: 999px;
    background: #e23b48;
}

.admin-main {
    min-height: 100vh;
    margin-left: 280px;
}

.admin-topbar {
    position: sticky;
    z-index: 1020;
    top: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
}

.admin-content {
    padding: 28px;
}

.admin-notification-bell {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 1.12rem;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
}

.admin-notification-bell:hover {
    color: var(--brand);
    border-color: #b7cbe7;
    background: var(--brand-light);
}

.notification-count-badge {
    position: absolute;
    top: -6px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #e23b48;
}

.admin-toast-container {
    z-index: 2000;
    top: 76px !important;
    max-width: min(410px, calc(100vw - 24px));
}

.staff-alert-toast {
    overflow: hidden;
    color: var(--ink);
    border: 1px solid #cdd9e9;
    border-left: 5px solid var(--accent);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(10, 31, 67, .23);
}

.staff-alert-toast.priority-high {
    border-left-color: #df3d49;
}

.staff-alert-toast .toast-header {
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}

.staff-alert-toast .notification-toast-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-right: 9px;
    color: var(--brand);
    border-radius: 10px;
    background: var(--brand-light);
}

.notification-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.notification-list-item.notification-unread {
    border-color: #b8cce8;
    background: #f2f7ff;
    box-shadow: 0 9px 25px rgba(11, 52, 114, .08);
}

.notification-event-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--brand);
    font-size: 1.2rem;
    border-radius: 14px;
    background: var(--brand-light);
}

.notification-routing-card {
    display: grid;
    grid-template-columns: minmax(210px, .9fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: 22px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f9fbfe;
}

.official-settings-logo {
    padding: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
}

.official-settings-logo img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.stat-card {
    padding: 22px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 850;
    letter-spacing: -.04em;
}

.chart-card {
    padding: 24px;
}

.permission-group {
    height: 100%;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.mobile-admin-toggle {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .property-ticker-track {
        animation: none;
    }
}

@media (max-width: 1199.98px) {
    .search-intent-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-intent-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .mph-nav-name small {
        display: none;
    }

    .front-nav .navbar-collapse {
        padding-top: 16px;
    }

    .mph-hero {
        padding: 58px 0 70px;
    }

    .official-logo-showcase {
        margin: 10px auto 0;
    }

    .property-ticker-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-sidebar {
        transform: translateX(-100%);
        transition: .25s ease;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .mobile-admin-toggle {
        display: inline-flex;
    }

    .admin-content {
        padding: 18px;
    }

    .notification-routing-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .mph-hero-title {
        font-size: 2.55rem;
    }

    .official-logo-showcase {
        padding: 16px;
        border-radius: 24px;
        transform: none;
    }

    .professional-search-card,
    .brand-story-section,
    .property-owner-cta {
        padding: 24px;
    }

    .search-intent-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .search-intent-button {
        width: 100%;
        padding: 10px;
        font-size: .76rem;
    }

    .ticker-property-card {
        width: 285px;
        min-width: 285px;
    }

    .footer-brand-card {
        max-width: 300px;
    }

    .admin-topbar {
        padding: 0 15px;
    }
}

@media (max-width: 420px) {
    .mph-nav-logo {
        width: 44px;
        height: 44px;
    }

    .mph-nav-name strong {
        font-size: .86rem;
    }

    .mph-hero-title {
        font-size: 2.2rem;
    }

    .search-intent-tabs {
        grid-template-columns: 1fr;
    }
}

/* V3.1 layout hardening */
html, body { overflow-x: hidden; }
.front-nav > .container { min-height: 60px; }
.official-logo-showcase { max-width: 510px; padding: 18px; }
.official-logo-showcase img { max-height: 390px; }
.brand-story-logo { max-width: 390px; }
.footer-brand-card { max-width: 310px; }
@media (min-width: 1400px) {
    .front-nav .container, .mph-hero .container, .professional-search-section .container,
    .latest-property-section, .browse-category-section { max-width: 1320px; }
}


/* V3.2 compact hero refinements */
.mph-hero .row {
    --bs-gutter-x: 2.25rem;
}

.mph-hero-actions {
    margin-top: 1.25rem !important;
}

.mph-hero-actions .btn {
    min-width: 176px;
    padding: .72rem 1.25rem;
    font-size: 1rem;
    border-radius: 11px;
}

.mph-hero-trust {
    margin-top: 1.25rem !important;
}

.mph-hero-trust span {
    display: inline-flex;
    align-items: center;
}

.official-logo-showcase img {
    max-width: 440px !important;
    max-height: 340px !important;
}

@media (min-width: 1400px) {
    .mph-hero {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .mph-hero-title {
        font-size: 3.75rem;
    }

    .official-logo-showcase {
        max-width: 465px;
    }
}

@media (max-width: 991.98px) {
    .mph-hero {
        padding: 38px 0 46px;
    }

    .mph-hero-title {
        font-size: clamp(2.15rem, 7vw, 3.35rem);
    }

    .official-logo-showcase {
        max-width: 430px;
        margin-top: 4px;
    }
}

@media (max-width: 767.98px) {
    .mph-hero {
        padding: 30px 0 38px;
    }

    .mph-hero-title {
        font-size: 2.25rem;
    }

    .mph-hero-copy {
        font-size: .94rem;
    }

    .mph-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px !important;
    }

    .mph-hero-actions .btn {
        min-width: 0;
        width: 100%;
        padding: .66rem .85rem;
        font-size: .9rem;
    }

    .mph-hero-trust {
        display: grid;
        gap: 8px;
        font-size: .8rem;
    }

    .official-logo-showcase {
        max-width: 360px;
    }

    .official-logo-showcase img {
        max-width: 330px !important;
        max-height: 270px !important;
    }
}

@media (max-width: 420px) {
    .mph-hero-title {
        font-size: 2rem;
    }

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