/* =========================================================
   Map Tracking Feature Landing Page - Premium SaaS Style
   Color Palette: #3a3285 (Primary), #fff (White), #f8f9ff (Light BG)
   Font: Manrope (inherited from global theme)
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --mt-primary:     #3a3285;
  --mt-primary-light: #5a52c0;
  --mt-primary-dark: #2a2465;
  --mt-accent:      #e60c80;
  --mt-accent-2:    #05b7b7;
  --mt-white:       #ffffff;
  --mt-light-bg:    #f8f9ff;
  --mt-light-bg2:   #f0f2ff;
  --mt-text-dark:   #1e2228;
  --mt-text-body:   #60697b;
  --mt-border:      rgba(58, 50, 133, 0.12);
  --mt-shadow-sm:   0 4px 16px rgba(58, 50, 133, 0.08);
  --mt-shadow-md:   0 8px 32px rgba(58, 50, 133, 0.12);
  --mt-shadow-lg:   0 16px 48px rgba(58, 50, 133, 0.16);
  --mt-radius:      14px;
  --mt-radius-lg:   20px;
  --mt-transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- PAGE-LEVEL OVERFLOW GUARD ----
   Prevents decorative absolute elements and slide-in animations
   from causing horizontal scrollbar that breaks on Bootstrap modal open/close.
   Applied to all mt-* sections via individual overflow-x:hidden. */
.mt-hero,
.mt-section,
.mt-preview,
.mt-cta-banner,
.mt-problem-solution,
.mt-features,
.mt-how-it-works,
.mt-benefits,
.mt-testimonials,
.mt-faq {
  overflow-x: hidden;
}

/* ---- Scroll Animation Base States ---- */
.mt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.mt-reveal.mt-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Horizontal slides: fade-only on mobile to prevent horizontal overflow
   On desktop (>=992px) the full translateX is safe inside overflow-x:hidden sections */
.mt-reveal-left {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mt-reveal-left.mt-revealed {
  opacity: 1;
  transform: translateX(0);
}
.mt-reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mt-reveal-right.mt-revealed {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 992px) {
  .mt-reveal-left  { transform: translateX(-40px); }
  .mt-reveal-right { transform: translateX(40px); }
}
.mt-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mt-reveal-scale.mt-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Delay Utilities */
.mt-delay-1 { transition-delay: 0.1s; }
.mt-delay-2 { transition-delay: 0.2s; }
.mt-delay-3 { transition-delay: 0.3s; }
.mt-delay-4 { transition-delay: 0.4s; }
.mt-delay-5 { transition-delay: 0.5s; }
.mt-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.mt-hero {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 35px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.mt-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 12, 128, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mt-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 183, 183, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mt-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.mt-hero .hero-badge span.dot {
  width: 8px; height: 8px;
  background: #05b7b7;
  border-radius: 50%;
  display: inline-block;
  animation: mt-pulse 1.6s infinite;
}
@keyframes mt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 183, 183, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(5, 183, 183, 0); }
}
.mt-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.mt-hero .hero-title .highlight {
  background: linear-gradient(90deg, #05b7b7, #e60c80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-hero .hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.mt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.mt-hero .hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.mt-hero .hero-stats .stat-item {
  text-align: center;
}
.mt-hero .hero-stats .stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.mt-hero .hero-stats .stat-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}
.mt-hero .hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.mt-hero .hero-mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--mt-radius-lg);
  backdrop-filter: blur(10px);
  padding: 16px;
  box-shadow: var(--mt-shadow-lg), 0 0 60px rgba(58, 50, 133, 0.4);
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.mt-hero .hero-mockup .mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.mt-hero .hero-mockup .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #e2626b; }
.mt-hero .hero-mockup .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #fab758; }
.mt-hero .hero-mockup .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #45c4a0; }
.mt-hero .hero-mockup .map-canvas {
  background: linear-gradient(160deg, #1e254a 0%, #0f1526 100%);
  border-radius: 10px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-hero .hero-mockup .map-canvas .map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58, 50, 133, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 50, 133, 0.2) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mt-hero .hero-mockup .map-canvas .map-route {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 60%;
}
.mt-hero .hero-mockup .map-canvas .map-route path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: mt-draw-route 2.5s ease forwards 0.8s;
}
@keyframes mt-draw-route {
  to { stroke-dashoffset: 0; }
}
.mt-hero .hero-mockup .map-canvas .pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mt-hero .hero-mockup .map-canvas .pin .pin-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.mt-hero .hero-mockup .map-canvas .pin .pin-label {
  background: #fff;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.6rem;
  color: var(--mt-primary);
  font-weight: 700;
  margin-top: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.mt-hero .hero-mockup .map-canvas .pin.start { top: 25%; left: 15%; }
.mt-hero .hero-mockup .map-canvas .pin.end { bottom: 25%; right: 12%; }
.mt-hero .hero-mockup .map-canvas .pin.agent { top: 45%; left: 55%; }
.mt-hero .hero-mockup .map-canvas .pin.start .pin-dot { background: #45c4a0; }
.mt-hero .hero-mockup .map-canvas .pin.end .pin-dot { background: #e2626b; }
.mt-hero .hero-mockup .map-canvas .pin.agent .pin-dot { background: #fab758; animation: mt-ping 1.5s infinite; }
@keyframes mt-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(250, 183, 88, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(250, 183, 88, 0); }
}
.mt-hero .hero-mockup .map-stats-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 16px;
}
.mt-hero .hero-mockup .map-stats-bar .ms-item {
  text-align: center;
}
.mt-hero .hero-mockup .map-stats-bar .ms-val {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.mt-hero .hero-mockup .map-stats-bar .ms-lbl {
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  display: block;
}
.mt-hero .btn-hero-primary {
  background: #fff;
  color: var(--mt-primary);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--mt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.mt-hero .btn-hero-primary:hover {
  background: var(--mt-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 12, 128, 0.3);
}
.mt-hero .btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--mt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mt-hero .btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.mt-hero .hero-trust-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mt-hero .hero-avatars {
  display: flex;
  align-items: center;
}
.mt-hero .hero-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #3a3285;
  margin-left: -12px;
  object-fit: cover;
  transition: var(--mt-transition);
}
.mt-hero .hero-avatars img:first-child {
  margin-left: 0;
}
.mt-hero .hero-avatars img:hover {
  transform: translateY(-4px);
  z-index: 10;
}
.mt-hero .trust-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.mt-hero .trust-text strong {
  color: #fff;
  font-weight: 700;
}

.mockup-body {
  background: linear-gradient(155deg, #1a2040 0%, #0e1326 100%);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
  /* min-height: 300px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-body img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.preview-sidebar img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* Google Rating Component */
.mt-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.mt-google-rating:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.mt-rating-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mt-rating-icon svg {
  width: 100%;
  height: 100%;
}

.mt-rating-content {
  display: flex;
  flex-direction: column;
}

.mt-rating-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
  line-height: 1;
}

.mt-rating-stars-wrap {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  margin-bottom: 2px;
}

.mt-rating-num {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.mt-stars-row {
  color: #fab758;
  font-size: 0.8rem;
  display: flex;
  gap: 1px;
}

.mt-rating-count {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

/* ============================================================
   SECTION: Common Section Heading
   ============================================================ */
.mt-section {
  padding: 30px 0;
}
.mt-section-alt {
  background: var(--mt-light-bg);
}
.mt-section-alt2 {
  background: var(--mt-light-bg2);
}
.mt-section-label {
  display: inline-block;
  background: var(--mt-light-bg2);
  color: var(--mt-primary);
  border: 1px solid var(--mt-border);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mt-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--mt-text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.mt-section-subtitle {
  color: var(--mt-text-body);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 730px;
  margin: 0 auto;
}

/* ============================================================
   SECTION 2 — PROBLEM → SOLUTION
   ============================================================ */
.mt-problem-solution .ps-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
  position: relative;
  overflow: hidden;
}
.mt-problem-solution .ps-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--mt-radius) var(--mt-radius) 0 0;
}
.mt-problem-solution .ps-card.problem::before {
  background: linear-gradient(90deg, #e2626b, #f78b77);
}
.mt-problem-solution .ps-card.solution::before {
  background: linear-gradient(90deg, #3a3285, #05b7b7);
}
.mt-problem-solution .ps-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mt-shadow-md);
}
.mt-problem-solution .ps-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.mt-problem-solution .ps-icon.red { background: rgba(226, 98, 107, 0.1); color: #e2626b; }
.mt-problem-solution .ps-icon.primary { background: rgba(58, 50, 133, 0.1); color: var(--mt-primary); }
.mt-problem-solution .ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mt-problem-solution .ps-item:last-child { border-bottom: none; }
.mt-problem-solution .ps-item .ps-bullet {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  margin-top: 1px;
}
.mt-problem-solution .ps-item .ps-bullet.red { background: rgba(226, 98, 107, 0.12); color: #e2626b; }
.mt-problem-solution .ps-item .ps-bullet.green { background: rgba(69, 196, 160, 0.12); color: #45c4a0; }

/* ============================================================
   SECTION 3 — FEATURES
   ============================================================ */
.mt-features .feature-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 32px 24px;
  height: 100%;
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
  position: relative;
  overflow: hidden;
}
.mt-features .feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(135deg, rgba(58, 50, 133, 0.03) 0%, transparent 60%);
  border-radius: var(--mt-radius);
  pointer-events: none;
  opacity: 0;
  transition: var(--mt-transition);
}
.mt-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mt-shadow-lg);
  border-color: rgba(58, 50, 133, 0.25);
}
.mt-features .feature-card:hover::after {
  opacity: 1;
}
.mt-features .feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(58, 50, 133, 0.1), rgba(5, 183, 183, 0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--mt-primary);
  margin-bottom: 20px;
  transition: var(--mt-transition);
}
.mt-features .feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--mt-primary), #5a52c0);
  color: #fff;
  transform: rotate(-4deg) scale(1.08);
}
.mt-features .feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  margin-bottom: 10px;
}
.mt-features .feature-desc {
  font-size: 0.82rem;
  color: var(--mt-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   SECTION 4 — HOW IT WORKS
   ============================================================ */
.mt-how-it-works {
  background: var(--mt-light-bg);
}
.mt-how-it-works .step-connector {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.mt-how-it-works .step-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
}
.mt-how-it-works .step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mt-shadow-md);
}
.mt-how-it-works .step-number {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--mt-primary), #5a52c0);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(58, 50, 133, 0.35);
}
.mt-how-it-works .step-icon {
  font-size: 2.2rem;
  color: var(--mt-primary);
  margin-bottom: 16px;
  display: block;
}
.mt-how-it-works .step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  margin-bottom: 10px;
}
.mt-how-it-works .step-desc {
  font-size: 0.82rem;
  color: var(--mt-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}
/* Arrow between steps */
.mt-how-it-works .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: rgba(58, 50, 133, 0.3);
  font-size: 1.3rem;
}

/* ============================================================
   SECTION 5 — PRODUCT PREVIEW
   ============================================================ */
.mt-preview {
  background: var(--mt-primary);
  position: relative;
  overflow: hidden;
}
.mt-preview::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mt-preview .preview-screen-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--mt-radius-lg);
  padding: 12px;
  box-shadow: var(--mt-shadow-lg);
  backdrop-filter: blur(6px);
  transition: var(--mt-transition);
}
.mt-preview .preview-screen-wrapper:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.mt-preview .preview-screen {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1f3a;
  min-height: 280px;
  position: relative;
}
.mt-preview .preview-screen .ps-header {
  background: #0f1220;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mt-preview .preview-screen .ps-header .ps-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.mt-preview .preview-sidebar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mt-radius);
  padding: 12px;
}
.mt-preview .preview-sidebar .ps-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  transition: var(--mt-transition);
}
.mt-preview .preview-sidebar .ps-metric:hover {
  background: rgba(255,255,255,0.1);
}
.mt-preview .preview-sidebar .ps-metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.mt-preview .preview-sidebar .ps-metric-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  display: block;
}
.mt-preview .preview-sidebar .ps-progress {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
}
.mt-preview .preview-sidebar .ps-progress .ps-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mt-accent-2), #3a3285);
  border-radius: 50px;
  animation: mt-progress-fill 2.5s ease-out forwards;
}
@keyframes mt-progress-fill {
  from { width: 0; }
}

/* ============================================================
   SECTION 6 — BENEFITS
   ============================================================ */
.mt-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow-sm);
  margin-bottom: 16px;
  transition: var(--mt-transition);
}
.mt-benefits .benefit-item:hover {
  transform: translateX(4px);
  box-shadow: var(--mt-shadow-md);
  border-color: rgba(58, 50, 133, 0.25);
}
.mt-benefits .benefit-icon {
  width: 50px; min-width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(58, 50, 133, 0.1), rgba(5, 183, 183, 0.08));
  color: var(--mt-primary);
}
.mt-benefits .benefit-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  margin-bottom: 6px;
}
.mt-benefits .benefit-desc {
  font-size: 0.82rem;
  color: var(--mt-text-body);
  line-height: 1.65;
  margin-bottom: 0;
}
.mt-benefits .benefits-visual {
  background: linear-gradient(135deg, var(--mt-light-bg) 0%, var(--mt-light-bg2) 100%);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mt-benefits .benefits-cards { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:16px;
  width:100%;
} 
/* ============================================================
   SECTION 7 — TESTIMONIALS
   ============================================================ */
.mt-testimonials {
  background: var(--mt-light-bg);
}
.mt-testimonials .testimonial-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 32px 28px;
  box-shadow: var(--mt-shadow-sm);
  /* height: 100%; */
  transition: var(--mt-transition);
  position: relative;
}
.mt-testimonials .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(58, 50, 133, 0.08);
  font-family: Georgia, serif;
}
.mt-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mt-shadow-md);
  border-color: rgba(58, 50, 133, 0.2);
}
.mt-testimonials .t-stars {
  color: #fab758;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.mt-testimonials .t-quote {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--mt-text-body);
  margin-bottom: 24px;
  font-style: italic;
}
.mt-testimonials .t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mt-testimonials .t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mt-testimonials .t-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  margin-bottom: 2px;
}
.mt-testimonials .t-role {
  font-size: 0.72rem;
  color: var(--mt-text-body);
}
.mt-testimonials .trust-bar {
  border-top: 1px solid var(--mt-border);
  padding-top: 56px;
  margin-top: 56px;
  text-align: center;
}
.mt-testimonials .trust-bar .trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mt-text-body);
  margin-bottom: 24px;
}
.mt-testimonials .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.mt-testimonials .trust-badge {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
}
.mt-testimonials .trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--mt-shadow-md);
}
.mt-testimonials .trust-badge i {
  font-size: 1.2rem;
  color: var(--mt-primary);
}

/* ============================================================
   SECTION 8 — FAQ
   ============================================================ */
.mt-faq .faq-item {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
}
.mt-faq .faq-item:hover {
  border-color: rgba(58, 50, 133, 0.22);
  box-shadow: var(--mt-shadow-md);
}
.mt-faq .faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  transition: var(--mt-transition);
}
.mt-faq .faq-btn:hover {
  color: var(--mt-primary);
}
.mt-faq .faq-btn .faq-chevron {
  width: 28px; min-width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mt-light-bg2);
  color: var(--mt-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--mt-transition);
}
.mt-faq .faq-btn[aria-expanded="true"] .faq-chevron {
  background: var(--mt-primary);
  color: #fff;
  transform: rotate(180deg);
}
.mt-faq .faq-btn[aria-expanded="true"] {
  color: var(--mt-primary);
}
.mt-faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.84rem;
  color: var(--mt-text-body);
  line-height: 1.75;
}

/* ============================================================
   SECTION 9 — CTA BANNER
   ============================================================ */
.mt-cta-banner {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
}
.mt-cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 183, 183, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.mt-cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 12, 128, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mt-cta-banner .cta-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.mt-cta-banner .cta-desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.mt-cta-banner .btn-cta-primary {
  background: #fff;
  color: var(--mt-primary);
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--mt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mt-cta-banner .btn-cta-primary:hover {
  background: var(--mt-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 12, 128, 0.3);
}
.mt-cta-banner .btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--mt-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mt-cta-banner .btn-cta-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
  .mt-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .mt-hero .hero-mockup {
    /* margin-top: 40px; */
    max-width: 100%;
  }
  .mt-section {
    padding: 25px 0;
  }
  .mt-how-it-works .step-arrow {
    display: none;
  }
  /* Disable lateral hover transforms on tablet/mobile to prevent overflow */
  .mt-benefits .benefit-item:hover {
    transform: none;
  }
  .mt-features .feature-card:hover {
    transform: none;
  }
  .mt-problem-solution .ps-card:hover {
    transform: none;
  }
  .mt-how-it-works .step-card:hover {
    transform: none;
  }
  .mt-testimonials .testimonial-card:hover {
    transform: none;
  }
  .mt-preview .preview-screen-wrapper:hover {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .mt-hero {
    padding: 70px 0 50px;
    /* text-align: center; */
  }
  .mt-hero .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .mt-hero .hero-stats {
    justify-content: center;
    gap: 16px;
  }
  /* .mt-hero .btn-hero-group {
    justify-content: center;
  } */
  .mt-hero .hero-mockup .map-stats-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .mt-section {
    padding: 20px 0;
  }
  .mt-benefits .benefit-item:hover {
    transform: none;
  }
  /* Ensure trust badges wrap cleanly on small screens */
  .mt-testimonials .trust-badges {
    gap: 12px;
  }
  .mt-testimonials .trust-badge {
    padding: 10px 16px;
    font-size: 0.72rem;
  }
  /* Preview sidebar full width on mobile */
  .mt-preview .preview-sidebar {
    margin-top: 24px;
  }
  /* Benefits visual grid 1 col on very small screens */
  .mt-benefits .benefits-visual > div[style*='grid'] {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width: 576px){
  .mt-hero {
    padding: 40px 0;
  }
  .mt-preview .preview-screen {
    min-height: 268px;
  }
}
@media(max-width: 376px){
  .mt-benefits .benefits-cards { 
    display:grid; 
    grid-template-columns:1fr; 
    gap:10px;
    width:100%;
  }
  .mt-preview .preview-screen {
    min-height: 135px;
  }
}
@media (max-width:376px) {
  .mt-apk-buttons{
    flex-wrap: wrap;
  }
}
 /* Premium youtube reels review section */
.mt-youtube-reviews {
    background-color: #f8f9fa;
    overflow: hidden;
}
.reel-swiper {
    padding: 40px 0 60px;
}
.reel-card {
    width: 100%; /* Take full width of swiper-slide */
    max-width: 260px;
    height: 460px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    margin: 0 auto;
}
.reel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 50, 133, 0.15);
}
.reel-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}
.reel-video-container img, .reel-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 2;
}
.reel-handle {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.reel-handle i {
    color: #e1306c;
    font-size: 1rem;
}
.reel-content {
    font-size: 0.75rem;
    line-height: 1.4;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.reel-label {
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    color: #343f52;
    font-size: 0.85rem;
    display: block;
}

@media (max-width: 991px) {
    .reel-card {
        max-width: 220px;
        height: 380px;
    }
}
.swiper-pagination-bullet-active {
  background: #2a2465 !important;
}
/* App Install Buttons */
.mt-app-btn {
  display: inline-flex;
  align-items: center;
  transition: var(--em-transition);
  /* border-radius: 12px; */
  overflow: hidden;
  height: 48px; /* Standardize height */
  text-decoration: none !important;
}
.mt-app-btn svg {
  height: 100%;
  width: auto;
  display: block;
}
.mt-app-btn:hover {
  transform: translateY(-3px);
  /* filter: brightness(1.1); */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.3); */
}
/* Responsiveness for app buttons */
@media (max-width: 575px) {
  .mt-app-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---- Keyframes ---- */
@keyframes mt-tm-scroll-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Marquee outer wrapper with left/right fade edges ---- */
.mt-tm-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

/* ---- The animated track ---- */
.mt-tm-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Single row — right to left (clockwise) */
.mt-tm-scroll-ltr {
  animation: mt-tm-scroll-ltr 38s linear infinite;
}

/* ---- Pause on hover ---- */
.mt-tm-wrap:hover .mt-tm-track {
  animation-play-state: paused;
}

/* ============================================================
   Individual Testimonial Card
   ============================================================ */
.mt-tm-card {
  flex-shrink: 0;
  width: 340px;
  /* perfectly fit approx 30 words / 200 characters */
  min-height: 326px;
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  padding: 28px 26px 11px;
  box-shadow: var(--mt-shadow-sm);
  transition: var(--mt-transition);
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  cursor: default;
}

/* Bottom gradient bar (primary) — revealed on hover */
.mt-tm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mt-primary) 0%, var(--mt-primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--mt-radius-lg) var(--mt-radius-lg) 0 0;
}

/* Hover state */
.mt-tm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mt-shadow-lg);
  border-color: rgba(58, 50, 133, 0.2);
}

.mt-tm-card:hover::before {
  opacity: 1;
}

/* ---- Top row: quote icon ---- */
.mt-tm-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-bottom: 12px; */
}

.mt-tm-quote {
  font-size: 2.8rem;
  line-height: 0.5;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  color: var(--mt-primary);
  opacity: 0.15;
  margin-top: -8px;
  user-select: none;
  pointer-events: none;
}

/* ---- Review text ---- */
.mt-tm-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--mt-text-body);
  font-style: italic;
  flex: 1;
  margin: 0 0 0 0;
  /* Clamp at 5 lines for approx 200 characters */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
/* ---- Star Rating ---- */
.mt-tm-stars {
  color: #fab758;
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

/* ---- Author row ---- */
.mt-tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 7px;
  border-top: 1px solid var(--mt-border);
  margin-top: auto;
}

/* ---- Avatar ---- */
.mt-tm-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--mt-border);
  box-shadow: 0 2px 8px rgba(58, 50, 133, 0.1);
  flex-shrink: 0;
}

.mt-tm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Name & designation ---- */
.mt-tm-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt-tm-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--mt-text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mt-tm-role {
  font-size: 0.72rem;
  color: var(--mt-text-body);
  margin-top: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .mt-tm-card {
    width: 300px;
    min-height: 320px; /* Consistent height across breakpoints */
    padding: 24px 22px 20px;
  }

  .mt-tm-scroll-ltr { animation-duration: 32s; }
}

@media (max-width: 575px) {
  .mt-tm-section {
    padding: 50px 0 40px;
  }

  .mt-tm-card {
    width: 260px;
    min-height: 320px; /* Standardizing for mobile as well */
    padding: 20px 18px 22px;
  }

  .mt-tm-text {
    font-size: 0.82rem;
    -webkit-line-clamp: 4;
  }

  .mt-tm-track {
    gap: 16px;
  }

  .mt-tm-scroll-ltr { animation-duration: 25s; }
}
 
@media (max-width: 375px) {
  .mt-testimonials .trust-bar{
    padding-top: 25px;
    margin-top: 25px;
  }
}

/* ============================================================
   FIXES: Country Code Dropdown Visibility
   ============================================================ */
.iti--container {
    z-index: 999999 !important;
}

.get_in_touch {
    overflow: visible !important;
}

.iti__dropdown-content, .iti__country-list {
    z-index: 99999 !important;
}

/* Ensure the form row doesn't clip the dropdown */
.getintouch, .getintouch .row {
    overflow: visible !important;
}


/* Ensure the form row and containers don't clip the dropdown */
.getintouch, .getintouch .row, .mt-preview-section .container {
    overflow: visible !important;
}

/* Ensure the section stays above the following section to prevent label overlap */
.mt-preview-section {
    z-index: 50 !important;
    position: relative !important;
}