/* ==========================================================================
   PRIDENS — MERCHANT HUB PAGE  |  Professional & Sleek Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary:        #2db7cc;
    --primary-dark:   #1a9ab0;
    --primary-light:  #e6f8fb;
    --text-dark:      #0f172a;
    --text-mid:       #334155;
    --text-muted:     #64748b;
    --bg-page:        #f8fafc;
    --bg-white:       #ffffff;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:      0 20px 50px rgba(0,0,0,0.10);
    --shadow-primary: 0 8px 30px rgba(45,183,204,0.25);
}

body {
    background: var(--bg-page) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ─── SCROLL ANIMATION ──────────────────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SHARED SECTION STYLES ────────────────────────────────────────────── */
.mh-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 24px;
}

.mh-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(45,183,204,0.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.mh-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.mh-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}

.mh-section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.mh-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0e3a4a 100%);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* subtle grid overlay */
.mh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,183,204,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(45,183,204,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* radial glow */
.mh-hero::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,183,204,0.12) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.mh-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mh-hero-text .mh-badge {
    background: rgba(45,183,204,0.15);
    border-color: rgba(45,183,204,0.3);
}

.mh-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 14px 0 20px;
}

.mh-hero-text > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.mh-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.mh-btn-primary {
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-primary);
    white-space: nowrap;
}

.mh-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45,183,204,0.35);
}

.mh-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.mh-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

/* Hero stats */
.mh-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mh-trust-item {
    display: flex;
    flex-direction: column;
}

.mh-trust-item > div,
.mh-trust-item > span:first-of-type {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline;
}

.mh-trust-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.mh-trust-item > span:last-of-type {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.mh-trust-label {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.5) !important;
    margin-top: 4px;
    display: block;
}

.mh-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* Hero floating cards */
.mh-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,183,204,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mh-hero-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 20px 22px;
    color: #fff;
    transition: transform 0.3s ease;
}

.mh-hero-card:hover { transform: translateY(-4px); }

.merchant-card-1 {
    width: 280px;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 6s ease-in-out infinite;
}

.merchant-card-2 {
    width: 220px;
    bottom: 40px;
    left: 30px;
    animation: floatCard 7s ease-in-out infinite reverse;
}

.merchant-card-3 {
    width: 200px;
    top: 80px;
    right: 0;
    animation: floatCard 8s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.mhc-icon {
    width: 42px;
    height: 42px;
    background: rgba(45,183,204,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mhc-icon.blue {
    background: rgba(59,130,246,0.2);
}

.mhc-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.mhc-icon.blue svg { color: #60a5fa; }

.mhc-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.mhc-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.mhc-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.mhc-badge.open {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.3);
}

.mhc-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

.mhc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mhc-star {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
}

.mhc-reviews {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

.mhc-bar-wrap {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.mhc-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #67e8f9);
    border-radius: 4px;
    transition: width 1s ease;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════════════════════════════════ */
.mh-benefits-section {
    border-bottom: 1px solid var(--border);
}

.mh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mh-benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm);
}

.mh-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,183,204,0.2);
}

.mh-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.mh-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mh-benefit-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════════════ */
.mh-how-section {
    background: var(--bg-white);
    border-radius: 28px;
    max-width: 1160px;
    margin: 0 auto 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.mh-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 0;
    align-items: start;
    position: relative;
}

.mh-step {
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.mh-step-connector {
    display: none;
}

.mh-steps {
    position: relative;
}

/* Horizontal line connecting steps */
.mh-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 0px);
    right: calc(12.5% + 0px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(45,183,204,0.2));
    z-index: 0;
}

.mh-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.mh-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.mh-step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   REGISTRATION FORM
═══════════════════════════════════════════════════════════════════════════ */
.mh-register-section {
    padding-top: 40px;
}

.mh-register-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 60px;
    position: relative;
}

/* Teal left accent */
.mh-register-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 4px 0 0 4px;
}

.mh-register-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin: 14px 0 16px;
}

.mh-register-left > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.mh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mh-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mh-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mh-contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.mh-contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.mh-contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Form */
.mh-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mh-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mh-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mh-form-group input,
.mh-form-group select,
.mh-form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #f8fafc;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.mh-form-group input::placeholder,
.mh-form-group textarea::placeholder {
    color: #94a3b8;
}

.mh-form-group input:focus,
.mh-form-group select:focus,
.mh-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,183,204,0.12);
    background: #fff;
}

.mh-submit-btn {
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-primary);
    margin-top: 4px;
}

.mh-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.mh-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45,183,204,0.35);
}

.mh-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Success state */
.mh-form-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
    height: 100%;
}

.mh-success-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.mh-success-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
}

.mh-form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.mh-form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════════ */
.mh-faq-section {
    padding-bottom: 120px;
}

.mh-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mh-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s;
}

.mh-faq-item.open {
    border-color: rgba(45,183,204,0.35);
    box-shadow: 0 4px 20px rgba(45,183,204,0.1);
}

.mh-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.2s;
}

.mh-faq-q:hover { color: var(--primary); }

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s;
}

.mh-faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.mh-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mh-faq-item.open .mh-faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

.mh-faq-a p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    padding: 0 24px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mh-hero-inner { grid-template-columns: 1fr; }
    .mh-hero-visual { height: 280px; }
    .merchant-card-1 { width: 220px; left: 0; top: 0; }
    .merchant-card-2 { width: 180px; bottom: 0; left: 20px; }
    .merchant-card-3 { width: 160px; top: 40px; right: 0; }
    .mh-benefits-grid { grid-template-columns: 1fr 1fr; }
    .mh-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
    .mh-steps::before { display: none; }
    .mh-register-inner { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 640px) {
    .mh-hero-text h1 { font-size: 2.2rem; }
    .mh-benefits-grid { grid-template-columns: 1fr; }
    .mh-steps { grid-template-columns: 1fr; }
    .mh-form-row { grid-template-columns: 1fr; }
    .mh-hero-trust { flex-wrap: wrap; gap: 16px; }
}

/* --- FULL-WIDTH BREAKOUT for dark hero --------------------------------- */
/* Breaks out of the WordPress is-layout-constrained main wrapper          */
.mh-hero {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
}

/* ---------------------------------------------------------------------------
   P-VOUCHER HIGHLIGHT BLOCK
--------------------------------------------------------------------------- */
.mh-advantages-section {
    border-bottom: 1px solid var(--border);
}

.pvoucher-highlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a4a 60%, #0e2a3a 100%);
    border-radius: 24px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,23,42,0.2);
}

.pvoucher-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45,183,204,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(45,183,204,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.pvoucher-left {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.pvoucher-icon {
    width: 56px;
    height: 56px;
    background: rgba(45,183,204,0.15);
    border: 1px solid rgba(45,183,204,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pvoucher-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.pvoucher-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.pvoucher-left h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 12px;
}

.pvoucher-left p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

.pvoucher-left strong { color: var(--primary); }

.pvoucher-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.pvoucher-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
}

.pvoucher-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.pvoucher-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   FINANCIAL STRUCTURE SECTION
--------------------------------------------------------------------------- */
.mh-finance-section {
    background: var(--bg-page);
    padding: 80px 24px;
}

.mh-finance-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.mh-finance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mh-finance-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mh-finance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-finance {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
}

.mh-finance-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.6;
}

.featured-finance .mh-finance-num {
    color: rgba(255,255,255,0.6);
}

.mh-finance-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.featured-finance .mh-finance-label { color: #fff; }

.mh-finance-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.featured-finance .mh-finance-desc { color: rgba(255,255,255,0.8); }
.featured-finance .mh-finance-desc strong { color: #fff; }

.mh-finance-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
}

.mh-finance-tag.green  { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.mh-finance-tag.teal   { background: var(--primary-light); color: var(--primary-dark); border: 1px solid rgba(45,183,204,0.25); }
.mh-finance-tag.blue   { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.mh-finance-tag.gold   { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.35); }

/* ---------------------------------------------------------------------------
   VERIFIED MERCHANT SECTION
--------------------------------------------------------------------------- */
.mh-verified-section {
    background: var(--bg-page);
}

.mh-verified-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.mh-verified-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #67e8f9);
}

.mh-verified-badge-big {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-primary);
}

.mh-verified-badge-big svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.mh-verified-left h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin: 14px 0 14px;
}

.mh-verified-left p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.mh-quote {
    border-left: 3px solid var(--primary);
    padding: 12px 18px;
    background: var(--primary-light);
    border-radius: 0 10px 10px 0;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 0 0;
}

.mh-verified-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mh-policy-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mh-policy-card:hover {
    border-color: rgba(45,183,204,0.25);
    box-shadow: var(--shadow-sm);
}

.mh-policy-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mh-policy-icon.green { background: #f0fdf4; }
.mh-policy-icon.green svg { color: #16a34a; }
.mh-policy-icon.red   { background: #fff1f2; }
.mh-policy-icon.red svg   { color: #f43f5e; }
.mh-policy-icon.teal  { background: var(--primary-light); }
.mh-policy-icon.teal svg  { color: var(--primary); }

.mh-policy-icon svg { width: 22px; height: 22px; }

.mh-policy-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.mh-policy-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.mh-policy-card strong { color: var(--text-dark); }

/* quote in register left */
.mh-register-left .mh-quote {
    margin: 16px 0 28px;
}

/* ---------------------------------------------------------------------------
   RESPONSIVE ADDITIONS
--------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pvoucher-highlight { grid-template-columns: 1fr; }
    .pvoucher-right { flex-direction: row; flex-wrap: wrap; }
    .pvoucher-stat { flex: 1; min-width: 120px; }
    .mh-finance-grid { grid-template-columns: 1fr 1fr; }
    .mh-verified-inner { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 640px) {
    .pvoucher-left { flex-direction: column; }
    .mh-finance-grid { grid-template-columns: 1fr; }
}
