/* =============================================================
   TruckerPro Border — Marketing Design System
   All classes prefixed with `mkt-` to avoid dashboard conflicts
   ============================================================= */

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

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  /* Brand — #047857 passes WCAG AA on white (5.5:1) */
  --m-primary:        #047857;
  --m-primary-light:  #059669;
  --m-primary-dark:   #065f46;

  /* Text — all pass WCAG AA on white */
  --m-text:           #111827;
  --m-text-secondary: #374151;
  --m-text-muted:     #4b5563;  /* was #6b7280 (4.45:1); now 7.0:1 on white */

  /* Backgrounds */
  --m-bg:             #ffffff;
  --m-bg-alt:         #f9fafb;
  --m-tint:           #f0fdf4;

  /* Border */
  --m-border:         #e5e7eb;

  /* Status */
  --m-error:          #ef4444;
  --m-warning:        #f59e0b;
  --m-info:           #3b82f6;

  /* Hero */
  --m-hero-start:     #064e3b;
  --m-hero-end:       #047857;

  /* Footer */
  --m-footer-bg:      #111827;

  /* Shape */
  --m-radius:         8px;
  --m-radius-lg:      12px;

  /* Shadow */
  --m-shadow:         0 1px 3px rgba(0,0,0,0.06);
  --m-shadow-hover:   0 8px 24px rgba(0,0,0,0.10);
}

/* -------------------------------------------------------------
   2. BASE PAGE
   ------------------------------------------------------------- */
body.mkt-page {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--m-text-secondary);
  background: var(--m-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mkt-page *,
.mkt-page *::before,
.mkt-page *::after {
  box-sizing: border-box;
}

.mkt-page a {
  color: var(--m-primary);
  text-decoration: none;
}

.mkt-page a:hover {
  color: var(--m-primary-dark);
  text-decoration: underline;
}

.mkt-page h1,
.mkt-page h2,
.mkt-page h3,
.mkt-page h4,
.mkt-page h5,
.mkt-page h6 {
  color: var(--m-text);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

.mkt-page p {
  margin-top: 0;
}

.mkt-page img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------------------------------------
   3. CONTAINER
   ------------------------------------------------------------- */
.mkt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* -------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------- */
.btn-mkt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--m-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.12s ease;
  white-space: nowrap;
  user-select: none;
}

.btn-mkt:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

/* Override .mkt-page a color for buttons — prevent anchor green from leaking */
.mkt-page a.btn-mkt-primary,
.mkt-page a.btn-mkt-primary:hover { color: #fff; }
.mkt-page a.btn-mkt-dark,
.mkt-page a.btn-mkt-dark:hover { color: #fff; text-decoration: none; }
.mkt-page a.btn-mkt-white,
.mkt-page a.btn-mkt-white:hover { color: var(--m-primary-dark); text-decoration: none; }
.mkt-page a.btn-mkt-ghost,
.mkt-page a.btn-mkt-ghost:hover { text-decoration: none; }
.mkt-page a.btn-mkt-outline { color: var(--m-primary); text-decoration: none; }
.mkt-page a.btn-mkt-outline:hover { color: #fff; text-decoration: none; }
.mkt-page a.btn-mkt-soft,
.mkt-page a.btn-mkt-soft:hover { color: var(--m-primary-dark); text-decoration: none; }

.btn-mkt:active {
  transform: translateY(0);
}

.btn-mkt:focus-visible {
  outline: 3px solid var(--m-primary-light);
  outline-offset: 2px;
}

/* Primary */
.btn-mkt-primary {
  background: var(--m-primary);
  color: #fff;
  border-color: var(--m-primary);
}

.btn-mkt-primary:hover {
  background: var(--m-primary-dark);
  border-color: var(--m-primary-dark);
  color: #fff;
  box-shadow: var(--m-shadow-hover);
}

.btn-mkt-primary:active {
  background: var(--m-primary-dark);
  border-color: var(--m-primary-dark);
}

/* Outline */
.btn-mkt-outline {
  background: transparent;
  color: var(--m-primary);
  border-color: var(--m-primary);
}

.btn-mkt-outline:hover {
  background: var(--m-primary);
  color: #fff;
}

/* Dark */
.btn-mkt-dark {
  background: var(--m-text);
  color: #fff;
  border-color: var(--m-text);
}

.btn-mkt-dark:hover {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
  box-shadow: var(--m-shadow-hover);
}

/* Soft */
.btn-mkt-soft {
  background: var(--m-tint);
  color: var(--m-primary-dark);
  border-color: transparent;
}

.btn-mkt-soft:hover {
  background: #d1fae5;
  color: var(--m-primary-dark);
}

/* White */
.btn-mkt-white {
  background: #fff;
  color: var(--m-primary-dark);
  border-color: #fff;
}

.btn-mkt-white:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
  color: var(--m-primary-dark);
}

/* Ghost */
.btn-mkt-ghost {
  background: transparent;
  color: var(--m-text-secondary);
  border-color: var(--m-border);
}

.btn-mkt-ghost:hover {
  background: var(--m-bg-alt);
  color: var(--m-text);
  border-color: #d1d5db;
}

/* Large */
.btn-mkt-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--m-radius-lg);
}

.btn-mkt-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* -------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------- */
/* Promotional Banner */
.mkt-promo-banner {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;  /* was #f1f5f9; slightly warmer for better readability */
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.mkt-promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mkt-promo-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mkt-promo-text i {
  color: var(--m-primary-light);
}

.mkt-promo-text strong {
  color: #ffffff;
}

.mkt-promo-link,
.mkt-page a.mkt-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background: var(--m-primary);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.mkt-promo-link:hover,
.mkt-page a.mkt-promo-link:hover {
  background: var(--m-primary-light);
  color: #ffffff;
  text-decoration: none;
}

.mkt-promo-link i {
  font-size: 11px;
  transition: transform 0.2s;
}

.mkt-promo-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .mkt-promo-inner {
    flex-direction: column;
    gap: 8px;
  }
  .mkt-promo-text {
    font-size: 13px;
  }
}

.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--m-border);
  box-shadow: var(--m-shadow);
}

.mkt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.mkt-nav-brand,
.mkt-page a.mkt-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--m-text);
}

.mkt-nav-brand:hover,
.mkt-page a.mkt-nav-brand:hover {
  text-decoration: none;
  color: var(--m-text);
}

.mkt-nav-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--m-text);
  line-height: 1;
}

.mkt-nav-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--m-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.mkt-nav-brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--m-text);
  line-height: 1;
}

.mkt-nav-brand-text span {
  color: var(--m-primary);
}

.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mkt-nav-links > li {
  position: relative;
}

.mkt-nav-links > li > a,
.mkt-nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--m-text-secondary);
  background: none;
  border: none;
  border-radius: var(--m-radius);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.mkt-nav-links > li > a:hover,
.mkt-nav-links > li > button:hover,
.mkt-nav-links > li > a.active {
  color: var(--m-primary);
  background: var(--m-tint);
  text-decoration: none;
}

.mkt-nav-link-muted,
.mkt-page a.mkt-nav-link-muted {
  color: var(--m-text-muted);
}

.mkt-nav-link-muted:hover,
.mkt-page a.mkt-nav-link-muted:hover {
  color: var(--m-text);
}

.mkt-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   6. MEGA MENU
   ------------------------------------------------------------- */
.mkt-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 600px;
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  box-shadow: var(--m-shadow-hover);
  padding: 24px;
  display: none;
  z-index: 200;
}

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

.mkt-mega-sm {
  min-width: 360px;
}

.mkt-mega-sm .mkt-mega-inner {
  grid-template-columns: 1fr;
}

.mkt-nav-links > li:hover > .mkt-mega,
.mkt-nav-links > li:focus-within > .mkt-mega {
  display: block;
}

.mkt-mega::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--m-border);
  border-top: 1px solid var(--m-border);
  rotate: 45deg;
}

.mkt-mega-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mkt-mega-label,
.mkt-mega-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-text-muted);
  padding: 0 8px;
  margin: 0 0 4px;
}

.mkt-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkt-mega-list a,
.mkt-mega-link,
.mkt-page a.mkt-mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--m-text-secondary);
  border-radius: var(--m-radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mkt-mega-list a:hover,
.mkt-mega-link:hover,
.mkt-page a.mkt-mega-link:hover {
  background: var(--m-tint);
  color: var(--m-primary);
  text-decoration: none;
}

.mkt-mega-link span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkt-mega-link span strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--m-text);
}

.mkt-mega-link span em {
  font-size: 12px;
  font-style: normal;
  color: var(--m-text-muted);
}

.mkt-mega-link i {
  width: 32px;
  height: 32px;
  background: var(--m-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-primary);
  font-size: 14px;
  flex-shrink: 0;
}

.mkt-mega-list a .mega-icon {
  width: 32px;
  height: 32px;
  background: var(--m-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   7. MOBILE NAV
   ------------------------------------------------------------- */
.mkt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  cursor: pointer;
  padding: 0;
}

.mkt-hamburger span,
.mkt-hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--m-text-secondary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mkt-hamburger.open span:nth-child(1),
.mkt-hamburger.open .mkt-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mkt-hamburger.open span:nth-child(2),
.mkt-hamburger.open .mkt-hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mkt-hamburger.open span:nth-child(3),
.mkt-hamburger.open .mkt-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mkt-chevron {
  font-size: 10px;
  transition: transform 0.2s;
}

.mkt-nav-link-dropdown[aria-expanded="true"] .mkt-chevron {
  transform: rotate(180deg);
}

.mkt-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.mkt-mobile-menu.open {
  display: block;
}

.mkt-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.mkt-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: #fff;
  overflow-y: auto;
  padding: 0 0 40px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

/* Panel header (brand + close) */
.mkt-mobile-panel-header,
.mkt-mobile-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--m-border);
}

/* Close button (standalone or nested) */
.mkt-mobile-panel-header button,
.mkt-mobile-close button,
button.mkt-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--m-text-muted);
  font-size: 20px;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.mkt-mobile-panel-header button:hover,
.mkt-mobile-close button:hover,
button.mkt-mobile-close:hover {
  color: var(--m-text);
  background: var(--m-bg-alt);
}

.mkt-mobile-panel-body {
  flex: 1;
  overflow-y: auto;
}

.mkt-mobile-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--m-border);
}

.mkt-mobile-section-heading,
.mkt-mobile-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-text-muted);
  margin: 0 0 8px;
}

.mkt-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-mobile-section a,
.mkt-mobile-link,
.mkt-page a.mkt-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--m-text-secondary);
  border-radius: var(--m-radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mkt-mobile-section a:hover,
.mkt-mobile-link:hover,
.mkt-page a.mkt-mobile-link:hover {
  background: var(--m-tint);
  color: var(--m-primary);
  text-decoration: none;
}

.mkt-mobile-link-muted,
.mkt-page a.mkt-mobile-link-muted {
  color: var(--m-text-muted);
  justify-content: center;
}

.mkt-mobile-cta,
.mkt-mobile-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* -------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------- */
.mkt-hero {
  background: linear-gradient(135deg, var(--m-hero-start) 0%, var(--m-hero-end) 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.mkt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.mkt-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.mkt-hero-content {
  position: relative;
  z-index: 1;
}

.mkt-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.mkt-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.92);  /* was 0.85; improved for WCAG AA */
  max-width: 600px;
  margin-bottom: 32px;
}

.mkt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mkt-hero-sm {
  padding: 56px 0 48px;
}

.mkt-hero-sm h1 {
  font-size: clamp(26px, 3.5vw, 40px);
}

.mkt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 16px;
}

/* -------------------------------------------------------------
   9. STATS BAR
   ------------------------------------------------------------- */
.mkt-stats {
  background: var(--m-tint);
  border-top: 1px solid #d1fae5;
  border-bottom: 1px solid #d1fae5;
  padding: 32px 0;
}

.mkt-stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.mkt-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.mkt-stat + .mkt-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #a7f3d0;
}

.mkt-stat-value {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--m-primary-dark);
  line-height: 1;
  display: block;
}

.mkt-stat-label {
  font-size: 14px;
  color: var(--m-text-muted);
  margin-top: 4px;
  display: block;
}

/* -------------------------------------------------------------
   10. SECTIONS
   ------------------------------------------------------------- */
.mkt-section {
  padding: 80px 0;
  background: var(--m-bg);
}

.mkt-section-alt {
  padding: 80px 0;
  background: var(--m-bg-alt);
}

.mkt-section-tint {
  padding: 80px 0;
  background: var(--m-tint);
}

.mkt-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.mkt-section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--m-text);
  margin-bottom: 12px;
}

.mkt-section-header p {
  font-size: 17px;
  color: var(--m-text-muted);
  margin: 0;
}

.mkt-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-primary);
  background: var(--m-tint);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* -------------------------------------------------------------
   11. FEATURE CARDS
   ------------------------------------------------------------- */
.mkt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mkt-cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mkt-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mkt-cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Form input (replaces inline onfocus/onblur) */
.mkt-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--m-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--m-text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease;
}
.mkt-form-input:focus {
  border-color: var(--m-primary);
}

.mkt-card {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--m-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-card:hover {
  box-shadow: var(--m-shadow-hover);
  transform: translateY(-2px);
  border-color: #d1fae5;
}

.mkt-card-icon {
  width: 48px;
  height: 48px;
  background: var(--m-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-primary);
  font-size: 22px;
  flex-shrink: 0;
}

.mkt-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--m-text);
  margin: 0;
}

.mkt-card p {
  font-size: 14px;
  color: var(--m-text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.mkt-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--m-primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
}

.mkt-card-link:hover {
  color: var(--m-primary-dark);
  text-decoration: none;
  gap: 6px;
}

/* Highlighted card variant */
.mkt-card.highlight {
  border-color: var(--m-primary);
  background: var(--m-tint);
}

/* -------------------------------------------------------------
   12. HOW-IT-WORKS STEPS
   ------------------------------------------------------------- */
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.mkt-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--m-border) 0,
    var(--m-border) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.mkt-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mkt-step-number {
  width: 48px;
  height: 48px;
  background: var(--m-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #d1fae5;
}

.mkt-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--m-text);
  margin-bottom: 8px;
}

.mkt-step p {
  font-size: 14px;
  color: var(--m-text-muted);
  margin: 0;
}

/* -------------------------------------------------------------
   13. PRICING CARDS
   ------------------------------------------------------------- */
.mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.mkt-pricing-card {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 28px 24px 32px;
  box-shadow: var(--m-shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.mkt-pricing-card:hover {
  box-shadow: var(--m-shadow-hover);
  transform: translateY(-2px);
}

.mkt-pricing-card.featured {
  border-color: var(--m-primary);
  border-width: 2px;
  box-shadow: 0 4px 32px rgba(5,150,105,0.12);
  transform: translateY(-4px);
}

.mkt-pricing-card.featured:hover {
  transform: translateY(-6px);
}

.mkt-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--m-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.mkt-pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--m-text);
  margin-bottom: 4px;
}

.mkt-pricing-tagline {
  font-size: 13px;
  color: var(--m-text-muted);
  margin-bottom: 20px;
  display: block;
}

.mkt-pricing-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--m-text);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.mkt-pricing-amount sup {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
}

.mkt-pricing-period {
  font-size: 13px;
  color: var(--m-text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
  display: block;
}

.mkt-pricing-divider {
  height: 1px;
  background: var(--m-border);
  margin: 20px 0;
}

.mkt-pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mkt-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--m-text-secondary);
}

.mkt-pricing-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--m-tint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: cover;
}

.mkt-pricing-features li.disabled {
  color: var(--m-text-muted);
  text-decoration: line-through;
}

.mkt-pricing-features li.disabled::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3E%3Cpath d='M4.22 4.22a.75.75 0 011.06 0L8 6.94l2.72-2.72a.75.75 0 111.06 1.06L9.06 8l2.72 2.72a.75.75 0 11-1.06 1.06L8 9.06l-2.72 2.72a.75.75 0 01-1.06-1.06L6.94 8 4.22 5.28a.75.75 0 010-1.06z'/%3E%3C/svg%3E");
  background-color: #f3f4f6;
}

/* Pricing CTA buttons — override Bootstrap + anchor defaults */
.mkt-pricing-cta {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--m-radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: auto;
}

.mkt-page a.mkt-pricing-cta {
  text-decoration: none;
}

.mkt-pricing-cta.btn-primary,
.mkt-page a.mkt-pricing-cta.btn-primary {
  background: var(--m-primary);
  color: #fff;
  border: 2px solid var(--m-primary);
}

.mkt-pricing-cta.btn-primary:hover,
.mkt-page a.mkt-pricing-cta.btn-primary:hover {
  background: var(--m-primary-dark);
  border-color: var(--m-primary-dark);
  color: #fff;
  box-shadow: var(--m-shadow-hover);
}

.mkt-pricing-cta.btn-outline,
.mkt-page a.mkt-pricing-cta.btn-outline {
  background: transparent;
  color: var(--m-primary);
  border: 2px solid var(--m-primary);
}

.mkt-pricing-cta.btn-outline:hover,
.mkt-page a.mkt-pricing-cta.btn-outline:hover {
  background: var(--m-primary);
  color: #fff;
}

/* -------------------------------------------------------------
   14. COMPARISON TABLE
   ------------------------------------------------------------- */
.mkt-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  border: 1px solid var(--m-border);
  box-shadow: var(--m-shadow);
}

.mkt-compare-table thead th {
  position: sticky;
  top: 64px;
  background: var(--m-text);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 16px;
  text-align: left;
  z-index: 10;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.mkt-compare-table thead th:first-child {
  width: 40%;
}

.mkt-compare-table thead th.highlight-col {
  background: var(--m-primary);
}

.mkt-compare-table tbody tr {
  border-bottom: 1px solid var(--m-border);
  transition: background 0.12s;
}

.mkt-compare-table tbody tr:last-child {
  border-bottom: none;
}

.mkt-compare-table tbody tr:hover {
  background: var(--m-tint);
}

.mkt-compare-table tbody td {
  padding: 12px 16px;
  color: var(--m-text-secondary);
  border-right: 1px solid var(--m-border);
}

.mkt-compare-table tbody td:last-child {
  border-right: none;
}

.mkt-compare-table tbody tr:nth-child(even) {
  background: var(--m-bg-alt);
}

.mkt-compare-table tbody tr:nth-child(even):hover {
  background: var(--m-tint);
}

.mkt-compare-table .check-yes {
  color: var(--m-primary);
  font-weight: 600;
}

.mkt-compare-table .check-no {
  color: var(--m-text-muted);
}

.mkt-compare-table .group-row td {
  background: var(--m-tint);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--m-primary-dark);
  padding: 8px 16px;
}

/* -------------------------------------------------------------
   15. TESTIMONIALS
   ------------------------------------------------------------- */
.mkt-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mkt-testimonial {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--m-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.mkt-testimonial:hover {
  box-shadow: var(--m-shadow-hover);
}

.mkt-testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 15px;
}

.mkt-testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--m-text-secondary);
  font-style: italic;
  flex: 1;
}

.mkt-testimonial-text::before {
  content: '\201C';
  font-size: 40px;
  line-height: 0;
  vertical-align: -14px;
  color: var(--m-primary-light);
  margin-right: 2px;
}

.mkt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--m-border);
}

.mkt-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--m-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--m-primary-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.mkt-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mkt-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--m-text);
}

.mkt-testimonial-role {
  font-size: 13px;
  color: var(--m-text-muted);
  margin-top: 1px;
}

/* -------------------------------------------------------------
   16. CHECKLIST
   ------------------------------------------------------------- */
.mkt-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--m-text-secondary);
  padding: 8px 0;
}

.mkt-checklist li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: var(--m-tint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* -------------------------------------------------------------
   17. FAQ ACCORDION
   ------------------------------------------------------------- */
.mkt-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.mkt-faq-item {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  overflow: hidden;
  box-shadow: var(--m-shadow);
  transition: border-color 0.2s;
}

.mkt-faq-item.open {
  border-color: var(--m-primary);
}

.mkt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--m-text);
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}

.mkt-faq-q:hover {
  background: var(--m-bg-alt);
}

.mkt-faq-item.open .mkt-faq-q {
  background: var(--m-tint);
  color: var(--m-primary-dark);
}

.mkt-faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--m-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-primary);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.mkt-faq-item.open .mkt-faq-q-icon {
  transform: rotate(45deg);
  background: var(--m-primary);
  color: #fff;
}

.mkt-faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--m-text-secondary);
}

.mkt-faq-item.open .mkt-faq-a {
  display: block;
}

.mkt-faq-a p {
  margin-top: 0;
}

.mkt-faq-a p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   18. CTA BANNER
   ------------------------------------------------------------- */
/* TruckerPro Platform Promo Section */
.mkt-tp-promo {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--m-border);
  border-bottom: 1px solid var(--m-border);
}

.mkt-tp-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.mkt-tp-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e293b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.mkt-tp-promo-badge i {
  color: var(--m-primary-light);
}

.mkt-tp-promo-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--m-text);
  line-height: 1.2;
  margin: 0 0 16px;
}

.mkt-tp-promo-text {
  font-size: 16px;
  color: var(--m-text-secondary);
  line-height: 1.7;
  margin: 0 0 24px;
}

.mkt-tp-promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.mkt-tp-promo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--m-text-secondary);
}

.mkt-tp-promo-features li i {
  color: var(--m-primary);
  font-size: 14px;
  flex-shrink: 0;
}

.mkt-tp-promo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mkt-tp-card {
  background: #ffffff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.mkt-tp-card:hover {
  box-shadow: var(--m-shadow-hover);
  transform: translateY(-2px);
}

.mkt-tp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.mkt-tp-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--m-text);
  margin: 0 0 6px;
}

.mkt-tp-card p {
  font-size: 14px;
  color: var(--m-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .mkt-tp-promo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mkt-tp-promo-features {
    grid-template-columns: 1fr;
  }
  .mkt-tp-promo-cards {
    grid-template-columns: 1fr;
  }
}

.mkt-cta {
  background: linear-gradient(135deg, var(--m-hero-start) 0%, var(--m-hero-end) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.mkt-cta-content {
  position: relative;
  z-index: 1;
}

.mkt-cta h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.mkt-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);  /* was 0.85; improved for WCAG AA */
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* -------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------- */
.mkt-footer {
  background: var(--m-footer-bg);
  color: rgba(255,255,255,0.78);  /* was 0.65; improved for WCAG AA */
  padding: 64px 0 0;
}

.mkt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mkt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mkt-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mkt-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);  /* was 0.5; improved for WCAG AA */
  max-width: 280px;
  margin: 0;
}

.mkt-footer-social {
  display: flex;
  gap: 12px;
}

.mkt-footer-social-link,
.mkt-page a.mkt-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);  /* was 0.6; improved for WCAG AA */
  font-size: 16px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.mkt-footer-social-link:hover,
.mkt-page a.mkt-footer-social-link:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  text-decoration: none;
}

.mkt-footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);  /* was 0.4; improved for WCAG AA */
  margin: 0 0 16px;
}

.mkt-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.65);  /* was 0.4; improved for WCAG AA */
  margin: 0;
}

.mkt-footer-brand,
.mkt-page a.mkt-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.mkt-page a.mkt-footer-brand:hover {
  color: #ffffff;
  text-decoration: none;
}

.mkt-footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);  /* was 0.5; improved for WCAG AA */
  max-width: 280px;
}

.mkt-footer-col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);  /* was 0.4; improved for WCAG AA */
  margin-bottom: 16px;
}

.mkt-footer-list,
.mkt-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-footer-list a,
.mkt-footer-links a,
.mkt-page .mkt-footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);  /* was 0.6; improved for WCAG AA */
  text-decoration: none;
  transition: color 0.15s;
}

.mkt-footer-list a:hover,
.mkt-footer-links a:hover,
.mkt-page .mkt-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.mkt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);  /* was 0.4; improved for WCAG AA */
}

.mkt-footer-bottom a,
.mkt-page .mkt-footer-bottom a {
  color: rgba(255,255,255,0.72);  /* was 0.5; improved for WCAG AA */
  text-decoration: none;
}

.mkt-footer-bottom a:hover,
.mkt-page .mkt-footer-bottom a:hover {
  color: #fff;
  text-decoration: none;
}

.mkt-footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   20. SEARCH BOX
   ------------------------------------------------------------- */
.mkt-search-box {
  display: flex;
  gap: 0;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  box-shadow: var(--m-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.mkt-search-box:focus-within {
  border-color: var(--m-primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}

.mkt-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--m-text);
  background: transparent;
  min-width: 0;
}

.mkt-search-box input::placeholder {
  color: var(--m-text-muted);
}

.mkt-search-box button {
  border: none;
  background: var(--m-primary);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.mkt-search-box button:hover {
  background: var(--m-primary-dark);
}

.mkt-search-results {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  box-shadow: var(--m-shadow-hover);
  overflow: hidden;
}

.mkt-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--m-text-secondary);
  text-decoration: none;
  transition: background 0.12s;
  cursor: pointer;
  border-bottom: 1px solid var(--m-border);
}

.mkt-search-result:last-child {
  border-bottom: none;
}

.mkt-search-result:hover {
  background: var(--m-tint);
  color: var(--m-primary);
  text-decoration: none;
}

.mkt-search-result-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--m-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--m-primary);
  flex-shrink: 0;
}

.mkt-search-result-title {
  font-weight: 600;
  color: var(--m-text);
}

.mkt-search-result-meta {
  font-size: 12px;
  color: var(--m-text-muted);
  margin-top: 1px;
}

/* -------------------------------------------------------------
   21. BLOG STYLES
   ------------------------------------------------------------- */
.mkt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mkt-blog-card {
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  box-shadow: var(--m-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.mkt-blog-card:hover {
  box-shadow: var(--m-shadow-hover);
  transform: translateY(-2px);
}

.mkt-blog-card-image {
  aspect-ratio: 16 / 9;
  background: var(--m-bg-alt);
  overflow: hidden;
}

.mkt-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mkt-blog-card:hover .mkt-blog-card-image img {
  transform: scale(1.04);
}

.mkt-blog-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mkt-blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mkt-blog-tag {
  display: inline-flex;
  align-items: center;
  background: var(--m-tint);
  color: var(--m-primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
}

.mkt-blog-tag:hover {
  background: #d1fae5;
  text-decoration: none;
}

.mkt-blog-date {
  font-size: 12px;
  color: var(--m-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mkt-blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--m-text);
  margin: 0;
  line-height: 1.3;
}

.mkt-blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.mkt-blog-card-body h3 a:hover {
  color: var(--m-primary);
}

.mkt-blog-content {
  font-size: 14px;
  color: var(--m-text-muted);
  line-height: 1.6;
  flex: 1;
}

.mkt-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--m-primary);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.15s;
}

.mkt-blog-read-more:hover {
  color: var(--m-primary-dark);
  gap: 6px;
  text-decoration: none;
}

/* Blog single post */
.mkt-blog-post-header {
  padding: 56px 0 40px;
}

.mkt-blog-post-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--m-text-secondary);
  max-width: 720px;
}

.mkt-blog-post-body h2,
.mkt-blog-post-body h3 {
  color: var(--m-text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.mkt-blog-post-body p {
  margin-bottom: 20px;
}

.mkt-blog-post-body ul,
.mkt-blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.mkt-blog-post-body li {
  margin-bottom: 8px;
}

.mkt-blog-post-body blockquote {
  border-left: 3px solid var(--m-primary);
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--m-tint);
  border-radius: 0 var(--m-radius) var(--m-radius) 0;
  font-style: italic;
  color: var(--m-text);
}

.mkt-blog-post-body code {
  background: var(--m-bg-alt);
  border: 1px solid var(--m-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
}

.mkt-blog-post-body pre {
  background: var(--m-text);
  color: #e5e7eb;
  border-radius: var(--m-radius);
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.mkt-blog-post-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: inherit;
}

/* -------------------------------------------------------------
   22. SERVICE PAGE FEATURE GRID
   ------------------------------------------------------------- */
.mkt-service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mkt-service-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-lg);
  box-shadow: var(--m-shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.mkt-service-feature:hover {
  box-shadow: var(--m-shadow-hover);
  border-color: #d1fae5;
}

.mkt-service-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--m-tint);
  border-radius: var(--m-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-primary);
  font-size: 24px;
  flex-shrink: 0;
}

.mkt-service-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--m-text);
  margin: 0;
}

.mkt-service-feature p {
  font-size: 14px;
  color: var(--m-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   23. UTILITY & MISC
   ------------------------------------------------------------- */
.mkt-divider {
  height: 1px;
  background: var(--m-border);
  margin: 0;
  border: none;
}

.mkt-text-center { text-align: center; }
.mkt-text-muted  { color: var(--m-text-muted); }
.mkt-text-primary { color: var(--m-primary); }

.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.mkt-badge-success {
  background: var(--m-tint);
  color: var(--m-primary-dark);
}

.mkt-badge-warning {
  background: #fffbeb;
  color: #92400e;
}

.mkt-badge-error {
  background: #fef2f2;
  color: #991b1b;
}

.mkt-badge-info {
  background: #eff6ff;
  color: #1e40af;
}

.mkt-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--m-radius);
  font-size: 14px;
  border: 1px solid;
}

.mkt-alert-success {
  background: var(--m-tint);
  border-color: #a7f3d0;
  color: var(--m-primary-dark);
}

.mkt-alert-warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.mkt-alert-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.mkt-alert-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

/* Logo strip */
.mkt-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 32px 0;
}

.mkt-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.mkt-logo-item {
  opacity: 0.55;  /* was 0.45; improved visibility */
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}

.mkt-logo-item:hover {
  opacity: 0.85;  /* was 0.75; improved visibility */
  filter: grayscale(0%);
}

/* Trust indicators */
.mkt-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
}

.mkt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--m-text-muted);
}

.mkt-trust-item svg,
.mkt-trust-item i {
  color: var(--m-primary);
  font-size: 16px;
}

/* -------------------------------------------------------------
   24. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------- */

/* --- 991px: Tablet --- */
@media (max-width: 991px) {
  /* Nav */
  .mkt-nav-links {
    display: none;
  }

  .mkt-nav-actions .btn-mkt {
    display: none;
  }

  .mkt-hamburger {
    display: flex;
  }

  /* Cards: 4 -> 2 cols */
  .mkt-cards,
  .mkt-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing: 4 -> 2 */
  .mkt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mkt-pricing-card.featured {
    transform: none;
  }

  .mkt-pricing-card.featured:hover {
    transform: translateY(-2px);
  }

  /* Footer grid */
  .mkt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Service features */
  .mkt-service-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps connector */
  .mkt-steps::before {
    display: none;
  }

  /* Compare table scrollable */
  .mkt-compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mkt-compare-table {
    min-width: 600px;
  }

  /* Mega menu hidden on mobile */
  .mkt-mega {
    display: none !important;
  }
}

/* --- 767px: Phablet --- */
@media (max-width: 767px) {
  /* Sections */
  .mkt-section,
  .mkt-section-alt,
  .mkt-section-tint {
    padding: 56px 0;
  }

  .mkt-section-header {
    margin-bottom: 36px;
  }

  /* Testimonials: 3 -> 1 */
  .mkt-testimonials {
    grid-template-columns: 1fr;
  }

  /* Blog: 3 -> 1 */
  .mkt-blog-grid {
    grid-template-columns: 1fr;
  }

  /* Checklist: 3 -> 1 */
  .mkt-checklist {
    grid-template-columns: 1fr;
  }

  /* Cards-3 -> 1 */
  .mkt-cards-3 {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .mkt-stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .mkt-stat + .mkt-stat::before {
    display: none;
  }

  /* Footer */
  .mkt-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mkt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Service features: 3 -> 1 */
  .mkt-service-features {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .mkt-hero {
    padding: 64px 0 56px;
  }

  .mkt-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mkt-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* --- 575px: Mobile --- */
@media (max-width: 575px) {
  /* Cards: all -> 1 */
  .mkt-cards,
  .mkt-cards-4,
  .mkt-cards-2 {
    grid-template-columns: 1fr;
  }

  /* Pricing: all -> 1 */
  .mkt-pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Container padding */
  .mkt-container {
    padding: 0 16px;
  }

  /* Nav */
  .mkt-nav-inner {
    height: 56px;
  }

  /* Hero */
  .mkt-hero {
    padding: 48px 0 40px;
  }

  .mkt-hero-sm {
    padding: 40px 0 32px;
  }

  /* Steps */
  .mkt-steps {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .mkt-cta {
    padding: 48px 0;
  }

  /* Nav mobile panel full width */
  .mkt-mobile-panel {
    width: 100vw;
  }

  /* Trust bar */
  .mkt-trust-bar {
    gap: 16px;
  }

  /* FAQs */
  .mkt-faq-q {
    font-size: 15px;
    padding: 14px 16px;
  }

  .mkt-faq-a {
    padding: 0 16px 16px;
  }

  /* Blog card body */
  .mkt-blog-card-body {
    padding: 16px 16px 20px;
  }
}

/* --- Print --- */
@media print {
  .mkt-nav,
  .mkt-hamburger,
  .mkt-mobile-menu,
  .mkt-cta,
  .mkt-footer {
    display: none;
  }

  .mkt-hero {
    background: #f0fdf4;
    color: var(--m-text);
  }

  .mkt-hero h1,
  .mkt-hero p {
    color: var(--m-text);
  }
}
