/**
 * MISTER FAST — HOMEPAGE CLEAN REDESIGN V1.0 (PRODUCTION SYSTEM)
 * Visual Baseline: Approved Mockup (Media Reference 2026-09-13)
 * Colors: #003DA5 (Blue), #002D7A (Deep Blue), #FFC400 (Yellow), #FFFFFF (White), #0B1E38 (Navy)
 * Typography: 'Prompt', 'Kanit', sans-serif
 */

:root {
  --mf-cr-blue: #003DA5;
  --mf-cr-blue-dark: #002D7A;
  --mf-cr-navy: #0B1E38;
  --mf-cr-navy-light: #162C4E;
  --mf-cr-yellow: #FFC400;
  --mf-cr-yellow-hover: #FFD633;
  --mf-cr-bg-light: #F4F7FC;
  --mf-cr-card-bg: #FFFFFF;
  --mf-cr-text-dark: #0F172A;
  --mf-cr-text-muted: #64748B;
  --mf-cr-card-border: #E2E8F0;
  --mf-cr-shadow-sm: 0 2px 10px rgba(11, 30, 56, 0.04);
  --mf-cr-shadow-md: 0 10px 30px rgba(11, 30, 56, 0.07);
  --mf-cr-shadow-lg: 0 20px 50px rgba(0, 45, 122, 0.12);
  --mf-cr-radius-sm: 10px;
  --mf-cr-radius-md: 16px;
  --mf-cr-radius-lg: 24px;
}

/* Base Scope */
html,
body.mf-clean-body,
.mf-clean-home {
  font-family: 'Prompt', 'Kanit', sans-serif;
  color: var(--mf-cr-text-dark);
  background: #FFFFFF;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.mf-cr-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.mf-cr-section {
  padding: 64px 0;
  box-sizing: border-box;
}

.mf-cr-section-light {
  background: var(--mf-cr-bg-light);
}

.mf-cr-section-head {
  margin-bottom: 36px;
}

.mf-cr-section-title {
  font-family: 'Prompt', 'Kanit', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--mf-cr-navy);
  margin: 0 0 8px 0;
}

/* ==========================================================================
   1. CLEAN HEADER (Global Corporate Baseline V1.0)
   ========================================================================== */
.mf-clean-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 30, 79, 0.04);
  border-bottom: 1px solid #EEF2F6;
  transition: all 0.2s ease;
}

.mf-clean-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 28px;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.mf-clean-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid #E2E8F0;
  height: 48px;
}

.mf-clean-brand img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.mf-clean-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0 14px;
  height: 100%;
}

.mf-clean-nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  position: relative;
  height: 68px;
  min-width: 68px;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mf-clean-nav a .mf-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.2s ease;
}

.mf-clean-nav a .mf-nav-icon img,
.mf-clean-nav a .mf-nav-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mf-clean-nav a .mf-nav-label {
  font-family: 'Kanit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.2;
  text-align: center;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.mf-clean-nav a:hover {
  background: #F4F8FF;
}

.mf-clean-nav a:hover .mf-nav-label {
  color: #003DA5;
}

.mf-clean-nav a:hover .mf-nav-icon {
  transform: translateY(-2px);
}

.mf-clean-nav a.is-active {
  background: transparent;
}

.mf-clean-nav a.is-active .mf-nav-label {
  color: #003DA5;
  font-weight: 800;
}

.mf-clean-nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 14px;
  right: 14px;
  height: 3.5px;
  background: #003DA5;
  border-radius: 999px;
}

.mf-clean-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid #E2E8F0;
  height: 48px;
  flex-shrink: 0;
}

.mf-clean-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #DCE6F3;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mf-clean-search-btn:hover {
  background: #EFF6FF;
  border-color: #003DA5;
  transform: scale(1.05);
}

.mf-clean-search-btn img {
  display: block;
}

.mf-btn-pill-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #003DA5;
  color: #FFFFFF;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.mf-btn-pill-blue:hover {
  background: #002D7A;
  box-shadow: 0 4px 14px rgba(0, 61, 165, 0.3);
  transform: translateY(-1px);
}

.mf-btn-pill-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #FFC400;
  color: #001E4F;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.mf-btn-pill-yellow:hover {
  background: #FFD633;
  box-shadow: 0 4px 14px rgba(255, 196, 0, 0.4);
  transform: translateY(-1px);
}

.mf-clean-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  color: #003DA5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mf-clean-mobile-toggle:hover {
  background: #EFF6FF;
}

/* Mobile Drawer Menu */
.mf-clean-mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 2px solid #E2E8F0;
  box-shadow: 0 16px 32px rgba(0, 30, 79, 0.12);
  padding: 18px 20px;
  z-index: 999;
}

.mf-clean-mobile-drawer.is-open {
  display: block;
}

.mf-mobile-drawer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mf-mobile-drawer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  text-decoration: none;
  color: #1E293B;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.mf-mobile-drawer__links a.is-active,
.mf-mobile-drawer__links a:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #003DA5;
}

.mf-mobile-drawer__actions {
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

/* ==========================================================================
   2. HERO SLIDER SECTION (1920x900 target layout)
   ========================================================================== */
.mf-clean-hero-wrap {
  position: relative;
  background: linear-gradient(135deg, #071D3A 0%, #002D7A 50%, #003DA5 100%);
  color: #FFFFFF;
  padding: 56px 0 90px 0;
  min-height: 620px;
  overflow: hidden;
  box-sizing: border-box;
}

.mf-clean-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.mf-clean-hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.mf-hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.mf-hero-pill-badge span.dots {
  display: inline-flex;
  gap: 4px;
}
.mf-hero-pill-badge span.dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mf-cr-yellow);
  display: inline-block;
}

.mf-clean-hero-title {
  font-family: 'Prompt', 'Kanit', sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
}

.mf-clean-hero-sub {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: #E2E8F0;
  margin: 0 0 28px 0;
  line-height: 1.6;
}

.mf-clean-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.mf-hero-controls-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 8px;
}

.mf-hero-arrow-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.mf-hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--mf-cr-yellow);
}

.mf-hero-dots-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mf-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-hero-dot.is-active {
  width: 28px;
  background: var(--mf-cr-yellow);
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.mf-clean-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.mf-hero-quote-badge {
  font-family: 'Prompt', cursive, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  display: inline-block;
}

.mf-hero-live-card {
  background: #FFFFFF;
  border-radius: var(--mf-cr-radius-md);
  box-shadow: var(--mf-cr-shadow-lg);
  padding: 22px 24px;
  color: var(--mf-cr-text-dark);
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
}

.mf-hero-live-card h4 {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--mf-cr-navy);
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mf-live-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

.mf-live-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   3. INTEGRATED TRACKING WORKSPACE CARD
   ========================================================================== */
.mf-tracking-workspace-wrap {
  position: relative;
  z-index: 30;
  margin-top: -46px;
  margin-bottom: 24px;
}

.mf-tracking-workspace-card {
  background: #FFFFFF;
  border-radius: var(--mf-cr-radius-lg);
  box-shadow: var(--mf-cr-shadow-lg);
  border: 1px solid var(--mf-cr-card-border);
  padding: 24px 32px;
  box-sizing: border-box;
}

.mf-tracking-tabs-row {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 12px;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mf-tracking-tabs-row::-webkit-scrollbar { display: none; }

.mf-tracking-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #F8FAFC;
  color: #64748B;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mf-tracking-tab.is-active {
  background: var(--mf-cr-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 61, 165, 0.25);
}

.mf-tracking-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mf-tracking-input {
  flex: 1;
  height: 54px;
  border: 2px solid #E2E8F0;
  border-radius: var(--mf-cr-radius-sm);
  padding: 0 20px;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  color: var(--mf-cr-text-dark);
  outline: none;
  background: #F8FAFC;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.mf-tracking-input:focus {
  border-color: var(--mf-cr-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.12);
}

.mf-tracking-submit-btn {
  height: 54px;
  padding: 0 32px;
  border-radius: var(--mf-cr-radius-sm);
  background: var(--mf-cr-yellow);
  color: var(--mf-cr-navy);
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 196, 0, 0.35);
  flex-shrink: 0;
}
.mf-tracking-submit-btn:hover {
  background: var(--mf-cr-yellow-hover);
  transform: translateY(-1px);
}

.mf-tracking-help-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.mf-tracking-help-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--mf-cr-blue);
  text-decoration: none;
}
.mf-tracking-help-links a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   4. QUICK ACTION BAR (6 Iconic Cards)
   ========================================================================== */
.mf-quick-actions-6grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.mf-qa-card-6 {
  background: #FFFFFF;
  border: 1px solid var(--mf-cr-card-border);
  border-radius: var(--mf-cr-radius-md);
  box-shadow: var(--mf-cr-shadow-sm);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--mf-cr-navy);
  transition: all 0.2s ease;
  position: relative;
}

.mf-qa-card-6:hover {
  transform: translateY(-4px);
  box-shadow: var(--mf-cr-shadow-md);
  border-color: #BFDBFE;
}

.mf-qa-card-6.is-highlight {
  background: var(--mf-cr-blue);
  color: #FFFFFF;
  border-color: var(--mf-cr-blue);
  box-shadow: 0 8px 24px rgba(0, 61, 165, 0.25);
}

.mf-qa-card-6__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.mf-qa-card-6.is-highlight .mf-qa-card-6__icon {
  width: 62px;
  height: 62px;
}

.mf-qa-card-6__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.mf-qa-card-6.is-highlight .mf-qa-card-6__icon img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 4px 12px rgba(0, 30, 79, 0.35));
}

.mf-qa-card-6:hover .mf-qa-card-6__icon img {
  transform: scale(1.08);
}

.mf-qa-card-6__title {
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.mf-qa-card-6__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--mf-cr-blue);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: auto;
  transition: all 0.2s;
}

.mf-qa-card-6.is-highlight .mf-qa-card-6__arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* ==========================================================================
   SERVICES PAGE (REDESIGN V1.0 - LOCKED VISUAL BASELINE)
   ========================================================================== */
.mf-services-wrap {
  padding-bottom: 60px;
}

.mf-services-hero {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  padding: 48px 0 36px 0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
}

.mf-services-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.mf-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF3FF;
  color: var(--mf-cr-blue);
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid #BFDBFE;
}

.mf-services-hero__title {
  font-family: 'Kanit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--mf-cr-navy);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.mf-services-hero__title-accent {
  background: linear-gradient(135deg, #003DA5 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mf-services-hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mf-cr-gray-text);
  margin: 0 0 28px 0;
  max-width: 560px;
}

.mf-services-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mf-services-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mf-cr-blue);
  color: #FFFFFF;
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--mf-cr-radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 61, 165, 0.25);
  transition: all 0.2s ease;
}
.mf-services-btn-primary:hover {
  background: #002B7A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 61, 165, 0.35);
  color: #FFFFFF;
}

.mf-services-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--mf-cr-navy);
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--mf-cr-radius-pill);
  text-decoration: none;
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.mf-services-btn-secondary:hover {
  border-color: var(--mf-cr-blue);
  color: var(--mf-cr-blue);
  background: #F8FAFC;
  transform: translateY(-2px);
}

.mf-services-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mf-services-hero__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 30, 79, 0.12);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* 6-Card Services Grid on Services Page */
.mf-services-section {
  padding: 48px 0;
}

.mf-services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.mf-svc-card {
  background: #FFFFFF;
  border: 1px solid var(--mf-cr-card-border);
  border-radius: var(--mf-cr-radius-md);
  box-shadow: var(--mf-cr-shadow-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--mf-cr-navy);
  transition: all 0.25s ease;
  position: relative;
}

.mf-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mf-cr-shadow-md);
  border-color: #BFDBFE;
}

.mf-svc-card.is-highlight {
  background: var(--mf-cr-blue);
  color: #FFFFFF;
  border-color: var(--mf-cr-blue);
  box-shadow: 0 10px 28px rgba(0, 61, 165, 0.28);
}

.mf-svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mf-svc-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  transition: transform 0.2s ease;
}

.mf-svc-card.is-highlight .mf-svc-card__icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.mf-svc-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.mf-svc-card.is-highlight .mf-svc-card__icon img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 10px rgba(0, 20, 60, 0.35));
}

.mf-svc-card:hover .mf-svc-card__icon img {
  transform: scale(1.08);
}

.mf-svc-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--mf-cr-blue);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.mf-svc-card:hover .mf-svc-card__arrow {
  background: var(--mf-cr-blue);
  color: #FFFFFF;
  transform: translateX(3px);
}

.mf-svc-card.is-highlight .mf-svc-card__arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.mf-svc-card.is-highlight:hover .mf-svc-card__arrow {
  background: #FFC400;
  color: #001E4F;
}

.mf-svc-card__title {
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.mf-svc-card.is-highlight .mf-svc-card__title {
  color: #FFFFFF;
}

.mf-svc-card__sub {
  font-size: 14px;
  color: var(--mf-cr-gray-text);
  line-height: 1.5;
  margin: 0;
}

.mf-svc-card.is-highlight .mf-svc-card__sub {
  color: rgba(255, 255, 255, 0.85);
}

/* 4-Pillar Benefit Bar */
.mf-services-benefits {
  background: #FFFFFF;
  border: 1px solid var(--mf-cr-card-border);
  border-radius: var(--mf-cr-radius-lg);
  box-shadow: var(--mf-cr-shadow-sm);
  padding: 28px 32px;
  margin: 36px 0;
}

.mf-services-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mf-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mf-benefit-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF6FF;
  color: var(--mf-cr-blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mf-benefit-item__title {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--mf-cr-navy);
  margin: 0 0 4px 0;
}

.mf-benefit-item__desc {
  font-size: 13px;
  color: var(--mf-cr-gray-text);
  margin: 0;
  line-height: 1.45;
}

/* Bottom Blue CTA Band */
.mf-services-cta-band {
  background: linear-gradient(135deg, #003DA5 0%, #001E4F 100%);
  border-radius: var(--mf-cr-radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 12px 32px rgba(0, 30, 79, 0.22);
  margin-top: 40px;
}

.mf-services-cta-band__text {
  color: #FFFFFF;
  font-family: 'Kanit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  max-width: 680px;
}

.mf-services-cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFC400;
  color: #001E4F;
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--mf-cr-radius-pill);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 196, 0, 0.35);
  transition: all 0.2s ease;
}

.mf-services-cta-band__btn:hover {
  background: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.45);
  color: #001E4F;
}

/* ==========================================================================
   5. MAIN SERVICE CARDS (3 Columns: LiveMapChat Big + Shopping + Food)
   ========================================================================== */
.mf-main-services-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

.mf-card-livemapchat {
  background: #FFFFFF;
  border-radius: var(--mf-cr-radius-lg);
  border: 1px solid var(--mf-cr-card-border);
  box-shadow: var(--mf-cr-shadow-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.mf-card-livemapchat__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #DC2626;
  background: #FEF2F2;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #FECACA;
  margin-bottom: 12px;
}

.mf-card-livemapchat__title {
  font-family: 'Prompt', 'Kanit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--mf-cr-blue);
  margin: 0 0 6px 0;
}

.mf-card-livemapchat__sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--mf-cr-navy);
  margin: 0 0 16px 0;
}

.mf-card-livemapchat__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.mf-card-livemapchat__features li {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mf-card-livemapchat__features li i {
  color: #10B981;
  font-weight: 800;
  font-style: normal;
}

.mf-phone-preview-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--mf-cr-radius-md);
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mf-service-promo-card {
  background: #FFFFFF;
  border-radius: var(--mf-cr-radius-lg);
  border: 1px solid var(--mf-cr-card-border);
  box-shadow: var(--mf-cr-shadow-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.mf-service-promo-card:hover {
  transform: translateY(-4px);
}

.mf-service-promo-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.mf-service-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mf-service-badge-icon.is-blue {
  background: #EFF6FF;
  color: var(--mf-cr-blue);
  border: 1px solid #DBEAFE;
}
.mf-service-badge-icon.is-yellow {
  background: #FEF9C3;
  color: #D97706;
  border: 1px solid #FDE047;
}

.mf-service-promo-card__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--mf-cr-radius-sm);
  margin-bottom: 18px;
}

/* ==========================================================================
   6. FRANCHISE & DROP POINT WIDE BANNER
   ========================================================================== */
.mf-franchise-wide-banner {
  background: linear-gradient(135deg, #071D3A 0%, #003DA5 100%);
  border-radius: var(--mf-cr-radius-lg);
  color: #FFFFFF;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--mf-cr-shadow-lg);
}

.mf-franchise-store-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--mf-cr-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mf-franchise-network-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: var(--mf-cr-radius-md);
}

.mf-franchise-network-box h4 {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--mf-cr-yellow);
  margin: 0 0 12px 0;
}

.mf-franchise-network-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mf-franchise-network-list li {
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   7. PARTNER LOGOS STRIP
   ========================================================================== */
.mf-partners-strip-wrap {
  padding: 40px 0;
  text-align: center;
}

.mf-partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.mf-partner-badge-item {
  height: 40px;
  padding: 6px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
}
.mf-partner-badge-item:hover {
  border-color: var(--mf-cr-blue);
  color: var(--mf-cr-blue);
  transform: translateY(-2px);
}

/* ==========================================================================
   8. APP DOWNLOAD BANNER
   ========================================================================== */
.mf-app-download-banner {
  background: linear-gradient(135deg, #062B5C 0%, #003DA5 100%);
  color: #FFFFFF;
  border-radius: var(--mf-cr-radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--mf-cr-shadow-lg);
  margin-bottom: 60px;
}

.mf-app-feature-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-app-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: var(--mf-cr-radius-md);
  font-size: 14px;
  font-weight: 700;
}

/* ==========================================================================
   9. CLEAN 5-COLUMN FOOTER
   ========================================================================== */
.mf-clean-footer {
  background: linear-gradient(180deg, #003F87 0%, #001E4F 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 60px 0 0 0;
  color: #FFFFFF;
}

.mf-clean-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 48px;
}

.mf-clean-footer__col h4 {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
}

.mf-clean-footer__col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.mf-clean-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mf-clean-footer__col ul li {
  margin-bottom: 10px;
}
.mf-clean-footer__col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mf-clean-footer__col ul li a:hover {
  color: #FFC400;
}

.mf-clean-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.mf-clean-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.mf-clean-footer-social a:hover {
  background: #FFC400;
  color: #001E4F;
  transform: translateY(-2px);
}

.mf-clean-footer-bottom-wrap {
  background: #001637;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  width: 100%;
}

.mf-clean-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
  gap: 12px;
}

.mf-clean-footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mf-clean-footer-bottom a:hover {
  color: #FFC400;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (360px - 1440px)
   ========================================================================== */
@media (max-width: 1360px) and (min-width: 1181px) {
  .mf-clean-header__inner { padding: 0 16px; }
  .mf-clean-brand { padding-right: 14px; }
  .mf-clean-brand img { max-width: 175px; height: 42px; }
  .mf-clean-nav { gap: 2px; padding: 0 8px; }
  .mf-clean-nav a { padding: 8px 10px; min-width: 60px; height: 64px; }
  .mf-clean-nav a .mf-nav-label { font-size: 12.5px; }
  .mf-clean-header__actions { padding-left: 14px; gap: 8px; }
  .mf-btn-pill-blue, .mf-btn-pill-yellow { padding: 0 16px; font-size: 14px; height: 40px; }
  .mf-clean-search-btn { width: 40px; height: 40px; }
}

@media (max-width: 1180px) {
  .mf-clean-nav { display: none; }
  .mf-clean-mobile-toggle { display: inline-flex; }
  .mf-clean-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .mf-quick-actions-6grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .mf-qa-card-6__icon { width: 54px; height: 54px; margin-bottom: 10px; }
  .mf-qa-card-6__icon img { width: 48px; height: 48px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon { width: 56px; height: 56px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon img { width: 50px; height: 50px; }
  
  .mf-services-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .mf-services-hero__visual { justify-content: flex-start; }
  .mf-services-hero__img { max-width: 420px; }
  .mf-services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .mf-services-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mf-services-cta-band { flex-direction: column; text-align: center; padding: 32px 24px; gap: 20px; }
  .mf-services-cta-band__text { max-width: 100%; font-size: 19px; }

  .mf-main-services-grid { grid-template-columns: 1fr; }
  .mf-franchise-wide-banner { grid-template-columns: 1fr; }
  .mf-app-download-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .mf-clean-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html, body.mf-clean-body, .mf-clean-home {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .mf-clean-header {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .mf-clean-header__inner {
    height: 72px;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .mf-clean-brand {
    padding-right: 0;
    border-right: none;
    height: 40px;
    flex-shrink: 0;
    max-width: 160px;
  }
  .mf-clean-brand img {
    max-width: 150px;
    width: 100%;
    height: auto;
    max-height: 38px;
  }
  .mf-clean-nav {
    display: none !important;
  }
  .mf-clean-header__actions {
    padding-left: 0;
    border-left: none;
    gap: 8px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .mf-clean-header__actions > a:not(.mf-clean-search-btn) {
    display: none !important;
  }
  .mf-clean-search-btn {
    width: 40px;
    height: 40px;
    display: grid !important;
    place-items: center;
    flex-shrink: 0;
  }
  .mf-clean-mobile-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mf-clean-hero-wrap { min-height: auto; padding: 36px 0 64px 0; width: 100% !important; max-width: 100vw !important; overflow-x: hidden !important; }
  .mf-clean-hero-left,
  .mf-hero-slide-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .mf-clean-hero-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
  .mf-clean-hero-sub { font-size: 14.5px; line-height: 1.5; }
  .mf-clean-hero-actions { flex-direction: column; width: 100%; }
  .mf-clean-hero-actions a { width: 100%; justify-content: center; box-sizing: border-box; }
  .mf-clean-hero-grid { grid-template-columns: 1fr; gap: 24px; width: 100% !important; max-width: 100% !important; }
  .mf-clean-hero-right { align-items: stretch; width: 100% !important; max-width: 100% !important; }
  .mf-hero-live-card { max-width: 100%; }
  .mf-hero-quote-badge { align-self: flex-start; }
  .mf-tracking-workspace-wrap { margin-top: -30px; width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
  .mf-tracking-workspace-card { padding: 20px 16px; width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
  .mf-tracking-tabs-row {
    display: flex;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  
  /* Mobile Stable Baseline for Tracking Form: Input Full-width + Button Full-width Below */
  .mf-tracking-input-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .mf-tracking-input {
    width: 100%;
    height: 50px;
  }
  .mf-tracking-submit-btn {
    width: 100%;
    height: 48px;
    justify-content: center;
  }
  .mf-quick-actions-6grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mf-qa-card-6__icon { width: 50px; height: 50px; margin-bottom: 8px; }
  .mf-qa-card-6__icon img { width: 44px; height: 44px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon { width: 52px; height: 52px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon img { width: 46px; height: 46px; }

  .mf-services-hero { padding: 36px 0 28px 0; }
  .mf-services-hero__title { font-size: 34px; }
  .mf-services-hero__actions { flex-direction: column; width: 100%; gap: 10px; }
  .mf-services-btn-primary, .mf-services-btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
  .mf-services-hero__img { max-width: 100%; height: auto; }
  .mf-services-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .mf-services-benefits__grid { grid-template-columns: 1fr; gap: 16px; }
  .mf-services-benefits { padding: 20px 16px; }

  .mf-card-livemapchat { grid-template-columns: 1fr; }
  .mf-clean-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mf-cr-container { padding: 0 16px; }
  .mf-clean-header__inner { padding: 0 14px; height: 68px; }
  .mf-clean-brand img { max-width: 145px; height: 34px; }
  .mf-quick-actions-6grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mf-qa-card-6 { padding: 14px 8px; }
  .mf-qa-card-6__icon { width: 48px; height: 48px; margin-bottom: 8px; }
  .mf-qa-card-6__icon img { width: 42px; height: 42px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon { width: 50px; height: 50px; }
  .mf-qa-card-6.is-highlight .mf-qa-card-6__icon img { width: 44px; height: 44px; }
  .mf-qa-card-6__title { font-size: 13px; }

  .mf-services-hero__title { font-size: 28px; }
  .mf-services-hero__desc { font-size: 14px; margin-bottom: 20px; }
  .mf-services-hero__actions { flex-direction: column; width: 100%; gap: 10px; }
  .mf-services-btn-primary, .mf-services-btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
  .mf-services-cta-band { padding: 24px 18px; }
  .mf-services-cta-band__text { font-size: 16px; }
  .mf-services-cta-band__btn { width: 100%; justify-content: center; box-sizing: border-box; }
}