/* ============================================================
   mipp-core.css
   Mi Property Portal — Central Stylesheet
   Version: 1.0.0
   Hosted: /wp-content/mipp-assets/css/mipp-core.css
   Served via: Bunny CDN Pull Zone

   Contents:
   1. Font Face Declarations
   2. CSS Custom Properties (Brand Tokens)
   3. Base Reset
   4. Typography
   5. Layout Utilities
   6. Shared Buttons
   7. Shared Tags / Eyebrows
   8. Section Headers
   9. Checklists
   10. Shared Cards
   ============================================================ */


/* ============================================================
   1. FONT FACE DECLARATIONS
   Using your exact filenames from /wp-content/mipp-assets/fonts/
   font-display: swap = page renders instantly, font swaps in
   No render blocking, no external calls to Google
   ============================================================ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('https://www.mipropertyportal.com/wp-content/mipp-assets/fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('https://www.mipropertyportal.com/wp-content/mipp-assets/fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('https://www.mipropertyportal.com/wp-content/mipp-assets/fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   2. CSS CUSTOM PROPERTIES — BRAND TOKENS
   Single source of truth for all MiPP colours, spacing,
   shadows and radii. Change once, updates every page.
   ============================================================ */

:root {

  /* Brand Colours — from official MiPP Figma palette */
  --mipp-teal:        #009588;
  --mipp-teal-dark:   #00776D;
  --mipp-teal-mid:    #00B3A3;
  --mipp-teal-light:  #E6F7F5;
  --mipp-teal-pale:   #F0FAF9;
  --mipp-black:       #1F2020;
  --mipp-grey-dark:   #3D3F3F;
  --mipp-grey-mid:    #818585;
  --mipp-grey-light:  #EEF1F1;
  --mipp-grey-100:    #F7F8F8;
  --mipp-white:       #ffffff;

  /* Status Colours */
  --mipp-green:       #16A34A;
  --mipp-green-bg:    #DCFCE7;
  --mipp-amber:       #B45309;
  --mipp-amber-bg:    #FFFBEB;
  --mipp-red:         #DC2626;

  /* Typography */
  --mipp-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mipp-font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Border Radius */
  --mipp-r-xs:  4px;
  --mipp-r-sm:  8px;
  --mipp-r-md:  14px;
  --mipp-r-lg:  22px;
  --mipp-r-xl:  32px;

  /* Shadows */
  --mipp-shadow-sm:  0 2px 8px  rgba(0, 0, 0, .06);
  --mipp-shadow-md:  0 8px 28px rgba(0, 0, 0, .09);
  --mipp-shadow-lg:  0 20px 56px rgba(0, 0, 0, .13);

  /* Section Spacing */
  --mipp-section-padding: 88px;
  --mipp-container-width: 1100px;
  --mipp-container-pad:   28px;
}


/* ============================================================
   3. BASE RESET
   Scoped to .mipp-* elements only — does not interfere
   with your theme's existing styles
   ============================================================ */

.mipp-section *,
.mipp-section *::before,
.mipp-section *::after {
  box-sizing: border-box;
}

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

.mipp-section ul,
.mipp-section ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mipp-section a {
  text-decoration: none;
}


/* ============================================================
   4. TYPOGRAPHY
   Headings use display font, body uses system stack.
   font-weight 700 falls back to 800 (closest available).
   ============================================================ */

.mipp-section h1,
.mipp-section h2,
.mipp-section h3,
.mipp-section h4 {
  font-family: var(--mipp-font-display);
  line-height: 1.2;
  color: var(--mipp-black);
  margin: 0;
}

.mipp-section h1 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); font-weight: 800; }
.mipp-section h2 { font-size: clamp(1.6rem,  3vw,  2.3rem);  font-weight: 800; }
.mipp-section h3 { font-size: 1.1rem;  font-weight: 600; }
.mipp-section h4 { font-size: 1rem;    font-weight: 600; }

.mipp-section p {
  font-family: var(--mipp-font-body);
  color: var(--mipp-grey-dark);
  font-size: 1.01rem;
  line-height: 1.68;
  margin: 0;
}

/* Italic keyword highlight in headings */
.mipp-section h1 em,
.mipp-section h2 em {
  color: var(--mipp-teal);
  font-style: normal;
}


/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */

/* Max-width container */
.mipp-container {
  max-width: var(--mipp-container-width);
  margin: 0 auto;
  padding: 0 var(--mipp-container-pad);
}

/* Standard section spacing */
.mipp-section {
  padding: var(--mipp-section-padding) 0;
}

/* Alternate section background */
.mipp-section-alt {
  background: var(--mipp-grey-light);
}

/* Dark section background */
.mipp-section-dark {
  background: var(--mipp-black);
}

/* 2-column feature grid */
.mipp-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Flip — image on left, text on right */
.mipp-feat-grid.mipp-flip {
  direction: rtl;
}
.mipp-feat-grid.mipp-flip > * {
  direction: ltr;
}

/* Responsive: stack on mobile */
@media (max-width: 860px) {
  .mipp-feat-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mipp-feat-grid.mipp-flip {
    direction: ltr;
  }
  .mipp-section {
    padding: calc(var(--mipp-section-padding) * 0.65) 0;
  }
}

@media (max-width: 480px) {
  .mipp-container {
    padding: 0 18px;
  }
}


/* ============================================================
   6. SHARED BUTTONS
   ============================================================ */

/* Primary — teal fill */
.mipp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mipp-teal);
  color: #fff;
  font-family: var(--mipp-font-display);
  font-weight: 600;
  font-size: .91rem;
  padding: 13px 24px;
  border-radius: var(--mipp-r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(0, 149, 136, .28);
}
.mipp-btn-primary:hover {
  background: var(--mipp-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 149, 136, .36);
  color: #fff;
}
.mipp-btn-primary svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Secondary — outlined */
.mipp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--mipp-black);
  font-family: var(--mipp-font-display);
  font-weight: 600;
  font-size: .91rem;
  padding: 12px 22px;
  border-radius: var(--mipp-r-sm);
  text-decoration: none;
  border: 2px solid #D5D9D9;
  cursor: pointer;
  line-height: 1;
  transition: border-color .2s, background .2s;
}
.mipp-btn-secondary:hover {
  border-color: var(--mipp-teal);
  background: var(--mipp-teal-pale);
  color: var(--mipp-black);
}

/* White — for dark backgrounds */
.mipp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--mipp-teal-dark);
  font-family: var(--mipp-font-display);
  font-weight: 600;
  font-size: .91rem;
  padding: 13px 24px;
  border-radius: var(--mipp-r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
  transition: transform .15s, box-shadow .2s;
}
.mipp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .2);
  color: var(--mipp-teal-dark);
}

/* Outline white — for dark backgrounds */
.mipp-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--mipp-font-display);
  font-weight: 600;
  font-size: .91rem;
  padding: 12px 22px;
  border-radius: var(--mipp-r-sm);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .45);
  cursor: pointer;
  line-height: 1;
  transition: border-color .2s, background .2s;
}
.mipp-btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* Button group wrapper */
.mipp-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .mipp-btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .mipp-btn-primary,
  .mipp-btn-secondary,
  .mipp-btn-white,
  .mipp-btn-outline-white {
    justify-content: center;
    font-size: .88rem;
  }
}


/* ============================================================
   7. TAGS / EYEBROWS
   Small uppercase labels above headings
   ============================================================ */

.mipp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mipp-teal-light);
  color: var(--mipp-teal-dark);
  font-family: var(--mipp-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 149, 136, .2);
}
.mipp-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mipp-teal);
  flex-shrink: 0;
}

/* Amber variant — for Coming Soon */
.mipp-tag-amber {
  background: var(--mipp-amber-bg);
  color: var(--mipp-amber);
  border-color: #FCD34D;
}
.mipp-tag-amber::before {
  background: var(--mipp-amber);
}

/* Dark background variant */
.mipp-tag-dark {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .75);
  border-color: rgba(255, 255, 255, .15);
}
.mipp-tag-dark::before {
  background: var(--mipp-teal-mid);
}


/* ============================================================
   8. SECTION HEADERS
   Centred heading blocks above content grids
   ============================================================ */

.mipp-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.mipp-section-header h2 {
  margin-bottom: 12px;
}
.mipp-section-header p {
  color: var(--mipp-grey-mid);
}

@media (max-width: 600px) {
  .mipp-section-header {
    margin-bottom: 36px;
  }
}


/* ============================================================
   9. CHECKLISTS
   Teal tick bullets used in feature sections
   ============================================================ */

.mipp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mipp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--mipp-font-body);
  font-size: .95rem;
  color: var(--mipp-grey-dark);
  line-height: 1.5;
}
.mipp-checklist li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mipp-teal);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================================
   10. SHARED CARDS
   Feature visuals, mini dashboard cards
   ============================================================ */

/* Feature visual outer container */
.mipp-feat-visual {
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-lg);
  border: 1px solid #E0E6E5;
  overflow: hidden;
  box-shadow: var(--mipp-shadow-md);
}
.mipp-feat-visual-inner {
  padding: 22px;
}

/* Mini card inside a feature visual */
.mipp-mini-card {
  background: #fff;
  border-radius: var(--mipp-r-md);
  border: 1px solid #E5EAEA;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: var(--mipp-shadow-sm);
}
.mipp-mini-card:last-child {
  margin-bottom: 0;
}

/* Mini card label */
.mipp-mini-label {
  font-family: var(--mipp-font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--mipp-grey-mid);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
  display: block;
}

/* Pricing / info note with left border */
.mipp-info-note {
  background: #fff;
  border-left: 4px solid var(--mipp-teal);
  border-radius: 0 var(--mipp-r-sm) var(--mipp-r-sm) 0;
  padding: 14px 18px;
  margin-top: 18px;
  box-shadow: var(--mipp-shadow-sm);
}
.mipp-info-note p {
  font-size: .87rem;
  line-height: 1.65;
  color: var(--mipp-grey-dark);
}
.mipp-info-note strong {
  color: var(--mipp-black);
}

/* Trust item (icon + text row) */
.mipp-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mipp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mipp-font-body);
  font-size: .81rem;
  color: var(--mipp-grey-mid);
  font-weight: 500;
}
.mipp-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--mipp-teal);
  flex-shrink: 0;
}

/* Trust strip — used on dark CTA sections */
.mipp-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.mipp-ts-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .45);
  font-family: var(--mipp-font-body);
  font-size: .8rem;
}
.mipp-ts-item svg {
  width: 13px;
  height: 13px;
  color: var(--mipp-teal-mid);
  flex-shrink: 0;
}

/* Progress bar */
.mipp-prog-wrap { margin-bottom: 9px; }
.mipp-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  margin-bottom: 4px;
}
.mipp-prog-label span:first-child { color: var(--mipp-grey-dark); font-weight: 500; }
.mipp-prog-label span:last-child  { color: var(--mipp-teal-dark); font-weight: 600; }
.mipp-prog-track {
  background: var(--mipp-grey-light);
  border-radius: 100px;
  height: 7px;
  overflow: hidden;
}
.mipp-prog-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--mipp-teal-mid), var(--mipp-teal-dark));
}

/* Processor comparison chips */
.mipp-chip {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
}
.mipp-chip-green {
  background: var(--mipp-green-bg);
  color: #15803D;
}
.mipp-chip-amber {
  background: var(--mipp-amber-bg);
  color: #92400E;
}


/* ============================================================
   BLOCK 1: HERO SECTION
   Page: Online Rent Collection in Canada
   ============================================================ */

.b1-hero {
  padding: 72px 0 64px;
  background: #ffffff;
  border-bottom: 1px solid var(--mipp-grey-light);
}
.b1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* Eyebrow label */
.b1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--mipp-teal-light);
  color: var(--mipp-teal-dark);
  font-family: var(--mipp-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,149,136,.2);
}
.b1-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mipp-teal);
  flex-shrink: 0;
}

/* Heading */
.b1-h1 {
  font-family: var(--mipp-font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--mipp-black);
  margin: 0 0 18px;
}
.b1-h1 em {
  color: var(--mipp-teal);
  font-style: normal;
}

/* Subheading */
.b1-sub {
  font-family: var(--mipp-font-body);
  font-size: 1.03rem;
  color: var(--mipp-grey-mid);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Button group spacing */
.b1-btns { margin-bottom: 30px; }

/* Dashboard visual */
.b1-vis { position: relative; }

.b1-badge {
  position: absolute;
  top: -13px; right: -13px;
  background: var(--mipp-teal);
  color: #fff;
  font-family: var(--mipp-font-display);
  font-size: .74rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--mipp-r-sm);
  box-shadow: 0 4px 14px rgba(0,149,136,.38);
  z-index: 2;
  white-space: nowrap;
}
.b1-dash {
  background: #fff;
  border-radius: var(--mipp-r-lg);
  box-shadow: var(--mipp-shadow-lg);
  overflow: hidden;
  border: 1px solid #E5EAEA;
}
.b1-dash-bar {
  background: var(--mipp-black);
  padding: 11px 17px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.b1-dot { width: 9px; height: 9px; border-radius: 50%; }
.b1-dash-title {
  font-size: .73rem;
  color: rgba(255,255,255,.4);
  margin-left: 6px;
  font-family: var(--mipp-font-display);
}
.b1-body { padding: 18px; }
.b1-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}
.b1-stat {
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-sm);
  padding: 11px 8px;
  text-align: center;
}
.b1-sv {
  font-family: var(--mipp-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mipp-teal);
  display: block;
}
.b1-sl {
  font-size: .67rem;
  color: var(--mipp-grey-mid);
  margin-top: 2px;
  display: block;
  line-height: 1.3;
}
.b1-txn-lbl {
  font-size: .69rem;
  font-weight: 600;
  color: var(--mipp-grey-mid);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 9px;
  font-family: var(--mipp-font-display);
}
.b1-rows { display: flex; flex-direction: column; gap: 7px; }
.b1-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-sm);
  padding: 10px 12px;
}
.b1-row-l { display: flex; align-items: center; gap: 10px; }
.b1-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .69rem; font-weight: 700; color: #fff;
  font-family: var(--mipp-font-display);
  flex-shrink: 0;
}
.b1-nm {
  font-size: .81rem; font-weight: 600;
  color: var(--mipp-black);
  font-family: var(--mipp-font-display);
  display: block;
}
.b1-mt {
  font-size: .69rem;
  color: var(--mipp-grey-mid);
  display: block;
  margin-top: 1px;
}
.b1-amt {
  font-family: var(--mipp-font-display);
  font-weight: 700;
  color: var(--mipp-teal);
  font-size: .87rem;
  display: block;
  text-align: right;
}
.b1-ok {
  font-size: .64rem; font-weight: 700;
  background: #DCFCE7; color: #15803D;
  padding: 2px 8px; border-radius: 100px;
  display: block; text-align: right; margin-top: 3px;
}

/* Block 1 responsive */
@media (max-width: 860px) {
  .b1-hero { padding: 52px 0 48px; }
  .b1-grid { grid-template-columns: 1fr; gap: 36px; }
  .b1-vis { order: -1; }
  .b1-badge { top: -10px; right: -4px; font-size: .7rem; }
}
@media (max-width: 480px) {
  .b1-sv { font-size: 1rem; }
}


/* ============================================================
   BLOCK 2: PROOF BAR
   Dark bar with 4 trust statistics
   ============================================================ */

.b2-bar {
  background: var(--mipp-black);
  padding: 26px 0;
}
.b2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.b2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.b2-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.b2-icon svg { width: 20px; height: 20px; }
.b2-val {
  font-family: var(--mipp-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.b2-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: 1px;
}
.b2-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .b2-inner { justify-content: center; }
  .b2-sep { display: none; }
  .b2-item { min-width: 160px; flex: 0 1 45%; }
}
@media (max-width: 480px) {
  .b2-item { flex: 0 1 100%; }
}


/* ============================================================
   BLOCK 3: HOW IT WORKS
   3-column step cards with dashed connector
   ============================================================ */

.b3-section {
  padding: var(--mipp-section-padding) 0;
  background: var(--mipp-grey-light);
}
.b3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.b3-connector {
  position: absolute;
  top: 38px;
  left: calc(33.33% - 14px);
  right: calc(33.33% - 14px);
  border-top: 2px dashed #C8D4D3;
  z-index: 0;
  pointer-events: none;
}
.b3-card {
  background: #fff;
  border: 1px solid #E5EAEA;
  border-radius: var(--mipp-r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow .25s, transform .25s;
}
.b3-card:hover {
  box-shadow: var(--mipp-shadow-md);
  transform: translateY(-3px);
}
.b3-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mipp-teal);
  color: #fff;
  font-family: var(--mipp-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(0,149,136,.28);
}
.b3-card h3 {
  font-family: var(--mipp-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mipp-black);
  margin: 0 0 10px;
}
.b3-card p {
  font-size: .92rem;
  color: var(--mipp-grey-mid);
  line-height: 1.65;
  margin: 0;
}
.b3-note {
  font-size: .78rem;
  color: var(--mipp-grey-mid);
  margin-top: 10px !important;
  font-style: italic;
}

@media (max-width: 860px) {
  .b3-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .b3-grid { grid-template-columns: 1fr; gap: 14px; }
  .b3-connector { display: none; }
}


/* ============================================================
   BLOCK 4: PAYMENT METHODS
   2-col feature grid — copy left, processor cards right
   ============================================================ */

.b4-section {
  padding: var(--mipp-section-padding) 0;
  background: #fff;
}
.b4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b4-visual {
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-lg);
  border: 1px solid #E0E6E5;
  overflow: hidden;
  box-shadow: var(--mipp-shadow-md);
  padding: 22px;
}
.b4-proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.b4-proc {
  background: #fff;
  border: 2px solid #E5EAEA;
  border-radius: var(--mipp-r-md);
  padding: 14px;
  transition: border-color .2s;
}
.b4-proc.b4-featured { border-color: var(--mipp-teal); }
.b4-proc-name {
  font-family: var(--mipp-font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--mipp-black);
  margin-bottom: 4px;
}
.b4-proc-row {
  display: flex;
  justify-content: space-between;
  font-size: .77rem;
  padding: 5px 0;
  border-bottom: 1px solid #F0F0F0;
}
.b4-proc-row:last-child { border-bottom: none; }
.b4-proc-key { color: var(--mipp-grey-mid); }
.b4-proc-val { font-weight: 600; color: var(--mipp-black); }
.b4-proc-val.b4-yes { color: var(--mipp-teal-dark); }
.b4-proc-val.b4-no  { color: #9CA3AF; }

@media (max-width: 860px) {
  .b4-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .b4-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .b4-proc-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOCK 5: AUTOMATION
   2-col feature grid — copy right, progress cards left
   ============================================================ */

.b5-section {
  padding: var(--mipp-section-padding) 0;
  background: var(--mipp-grey-light);
}
.b5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b5-visual {
  background: #fff;
  border-radius: var(--mipp-r-lg);
  border: 1px solid #E0E6E5;
  overflow: hidden;
  box-shadow: var(--mipp-shadow-md);
  padding: 22px;
}
.b5-card {
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-md);
  border: 1px solid #E5EAEA;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.b5-card:last-child { margin-bottom: 0; }
.b5-card-teal {
  background: var(--mipp-teal-light);
  border-color: rgba(0,149,136,.2);
}
.b5-disburse-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--mipp-grey-light);
  border-radius: 8px;
  margin-bottom: 6px;
}
.b5-disburse-row:last-child { margin-bottom: 0; }
.b5-disburse-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--mipp-black);
}
.b5-disburse-amount {
  font-family: var(--mipp-font-display);
  font-weight: 700;
  font-size: .82rem;
}

@media (max-width: 860px) {
  .b5-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .b5-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ============================================================
   BLOCK 6: EQUIFAX COMING SOON
   2-col feature grid with amber coming-soon treatment
   ============================================================ */

.b6-section {
  padding: var(--mipp-section-padding) 0;
  background: #fff;
}
.b6-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b6-coming {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--mipp-amber-bg);
  color: var(--mipp-amber);
  border: 1px solid #FCD34D;
  border-radius: 100px;
  font-family: var(--mipp-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 13px;
  margin-bottom: 16px;
}
.b6-visual {
  background: var(--mipp-grey-light);
  border-radius: var(--mipp-r-lg);
  border: 1px solid #E0E6E5;
  overflow: hidden;
  box-shadow: var(--mipp-shadow-md);
  padding: 22px;
}
.b6-efx-banner {
  background: linear-gradient(135deg, #0F1F3A, #1A3458);
  border-radius: var(--mipp-r-md);
  padding: 16px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.b6-efx-logo {
  background: #E31837;
  color: #fff;
  font-family: var(--mipp-font-display);
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.b6-efx-t1 {
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  font-family: var(--mipp-font-display);
  display: block;
}
.b6-efx-t2 {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  margin-top: 3px;
  display: block;
}
.b6-pill {
  background: var(--mipp-amber-bg);
  color: var(--mipp-amber);
  font-size: .67rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  border: 1px solid #FCD34D;
  margin-left: 7px;
  white-space: nowrap;
}
.b6-amber-note {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--mipp-r-md);
  padding: 12px 16px;
  margin-top: 10px;
  font-size: .82rem;
  color: #92400E;
  text-align: center;
}

@media (max-width: 860px) {
  .b6-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .b6-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ============================================================
   BLOCK 7: COMPARISON TABLE
   Responsive — table on desktop, stacked cards on mobile
   ============================================================ */

.b7-section {
  padding: var(--mipp-section-padding) 0;
  background: var(--mipp-grey-light);
}

/* Desktop table */
.b7-table-wrap { overflow-x: auto; }
.b7-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 560px;
}
.b7-table th {
  padding: 12px 16px;
  text-align: center;
  font-family: var(--mipp-font-display);
  font-size: .8rem;
  font-weight: 700;
  background: var(--mipp-black);
  color: #fff;
}
.b7-table th:first-child {
  text-align: left;
  border-radius: 10px 0 0 0;
}
.b7-table th:last-child { border-radius: 0 10px 0 0; }
.b7-table th.b7-hl { background: var(--mipp-teal); }
.b7-table td {
  padding: 11px 16px;
  text-align: center;
  border-bottom: 1px solid #E5EAEA;
  color: var(--mipp-grey-dark);
  background: #fff;
}
.b7-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--mipp-black);
}
.b7-table td.b7-hl { background: var(--mipp-teal-light); }
.b7-table tr:last-child td { border-bottom: none; }
.b7-yes { color: var(--mipp-teal-dark); font-weight: 700; }
.b7-no  { color: #D1D5DB; }
.b7-note {
  font-size: .78rem;
  color: var(--mipp-grey-mid);
  margin-top: 14px;
  font-style: italic;
  text-align: center;
}

/* Mobile: hide table, show cards */
.b7-mobile-cards { display: none; }
.b7-mob-card {
  background: #fff;
  border-radius: var(--mipp-r-md);
  border: 1px solid #E5EAEA;
  margin-bottom: 10px;
  overflow: hidden;
}
.b7-mob-head {
  background: var(--mipp-black);
  padding: 10px 16px;
  font-family: var(--mipp-font-display);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}
.b7-mob-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #F0F0F0;
  font-size: .85rem;
}
.b7-mob-row:last-child { border-bottom: none; }
.b7-mob-feat { color: var(--mipp-grey-dark); }
.b7-mob-val  { font-weight: 600; color: var(--mipp-black); }
.b7-mob-val.b7-yes { color: var(--mipp-teal-dark); }
.b7-mob-val.b7-no  { color: #D1D5DB; }

@media (max-width: 700px) {
  .b7-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .b7-table-wrap { display: none; }
  .b7-mobile-cards { display: block; }
}


/* ============================================================
   BLOCK 8: FAQ
   Accordion — powered by mipp-core.js
   ============================================================ */

.b8-section {
  padding: var(--mipp-section-padding) 0;
  background: #fff;
}
.b8-list {
  max-width: 760px;
  margin: 0 auto;
}
.mipp-faq-item {
  background: #fff;
  border-radius: var(--mipp-r-md);
  border: 1px solid #E5EAEA;
  margin-bottom: 10px;
  overflow: hidden;
}
.mipp-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--mipp-font-display);
  font-size: .97rem;
  font-weight: 600;
  color: var(--mipp-black);
  transition: color .2s;
  gap: 12px;
}
.mipp-faq-q:hover { color: var(--mipp-teal); }
.mipp-faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mipp-teal-light);
  color: var(--mipp-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: background .2s, color .2s;
  line-height: 1;
}
.mipp-faq-item.mipp-open .mipp-faq-icon {
  background: var(--mipp-teal);
  color: #fff;
}
.mipp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mipp-faq-a-inner {
  padding: 0 22px 18px;
  color: var(--mipp-grey-mid);
  font-size: .93rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .b8-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
  .mipp-faq-q { font-size: .9rem; padding: 15px 18px; }
  .mipp-faq-a-inner { padding: 0 18px 16px; }
}


/* ============================================================
   BLOCK 9: FINAL CTA
   Dark section with radial glow, two buttons, trust strip
   ============================================================ */

.b9-section {
  padding: var(--mipp-section-padding) 0;
  background: var(--mipp-black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.b9-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,149,136,.18) 0%, transparent 65%);
  pointer-events: none;
}
.b9-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,149,136,.1) 0%, transparent 65%);
  pointer-events: none;
}
.b9-inner {
  position: relative;
  z-index: 1;
}
.b9-section h2 {
  color: #fff;
  margin-bottom: 12px;
}
.b9-sub {
  color: rgba(255,255,255,.6);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.b9-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

@media (max-width: 860px) {
  .b9-section { padding: calc(var(--mipp-section-padding) * .65) 0; }
}
@media (max-width: 480px) {
  .b9-btns { flex-direction: column; align-items: stretch; }
  .b9-sub { font-size: .95rem; }
}
