/* =============================================
   GLOBAL & RESET
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #1A1D2E;
  background: #fff;
  margin: 0;
}

img { max-width: 100%; }

/* =============================================
   NAVBAR
   ============================================= */
.main-nav {
  background: #1A1D2E !important;
  height: 72px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-container { display: flex; align-items: center; }

.nav-img {
  border-radius: 12px;
  object-fit: cover;
}

.nav-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  color: #fff !important;
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F5A623;
  color: #1A1D2E !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.22s ease;
  white-space: nowrap;
  margin-right: 48px;
}

.nav-login-btn:hover {
  background: #e09415;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  color: #1A1D2E !important;
}

.nav-login-btn--dashboard {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff !important;
}

.nav-login-btn--dashboard:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff !important;
  box-shadow: none;
  transform: translateY(-2px);
}


/* =============================================
   REUSABLE SECTION HELPERS
   ============================================= */
.mt-section {
  padding: 90px 0;
}

.mt-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.mt-section__tag {
  display: inline-block;
  background: #FFF3CD;
  color: #D4870A;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.mt-section__tag--light {
  background: rgba(245, 166, 35, 0.18);
  color: #F5A623;
}

.mt-section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.mt-section__title--left { text-align: left; }

.mt-section__sub {
  font-size: 1.05rem;
  color: #6B7280;
  margin: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.mt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.22s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.mt-btn--primary {
  background: #F5A623;
  color: #1A1D2E;
}

.mt-btn--primary:hover {
  background: #e09415;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
  color: #1A1D2E;
}

.mt-btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.mt-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

.mt-btn--white {
  background: #fff;
  color: #1A1D2E;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mt-btn--white:hover {
  background: #F5A623;
  color: #fff;
  transform: translateY(-2px);
}

.mt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.mt-hero {
  background: linear-gradient(135deg, #1A1D2E 0%, #2D3250 55%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
}

.mt-hero__bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mt-hero__container { position: relative; z-index: 2; }

.mt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: #F5A623;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.mt-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.mt-hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Stats */
.mt-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.mt-stat { text-align: center; }

.mt-stat__num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #F5A623;
  line-height: 1;
}

.mt-stat__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.mt-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Hero illustration */
.mt-hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}

.mt-hero__illustration-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(245,166,35,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
}

.mt-hero__illustration {
  position: relative;
  z-index: 2;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: heroFloat 4s ease-in-out infinite;
  border-radius: 24px;
}

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

/* Float cards */
.mt-float-card {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 190px;
  animation: cardPulse 3s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.mt-float-card--top { top: 60px; left: -10px; }
.mt-float-card--bottom { bottom: 60px; right: -10px; animation-delay: 1.5s; }

.mt-float-card__icon { font-size: 1.4rem; }

.mt-float-card__title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A1D2E;
  line-height: 1;
}

.mt-float-card__sub {
  display: block;
  font-size: 0.73rem;
  color: #6B7280;
  margin-top: 2px;
}

/* Wave divider */
.mt-hero__wave {
  margin-bottom: -6px;
  line-height: 0;
  margin-top: 40px;
}

.mt-hero__wave svg { display: block; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.mt-steps { row-gap: 32px; }

.mt-step {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(26,29,46,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F3F4F6;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.mt-step.mt-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mt-step:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(26,29,46,0.12);
}

.mt-step--center { margin-top: 0; }

.mt-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mt-step__num {
  font-size: 2rem;
  font-weight: 800;
  color: #E5E7EB;
  line-height: 1;
  margin-bottom: 10px;
}

.mt-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1A1D2E;
}

.mt-step__desc {
  font-size: 0.92rem;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mt-mission { background: #fff; }

.mt-mission__img-col { padding: 40px 0; }

.mt-mission__img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.mt-mission__blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: #FFF3CD;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%; }
  66% { border-radius: 70% 30% 50% 50% / 30% 70% 60% 40%; }
}

.mt-mission__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
  border-radius: 28px;
}

.mt-mission__badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #1A1D2E;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.mt-mission__text-col { padding: 20px 0 20px 40px; }

.mt-mission__desc {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mt-mission__features { margin-top: 24px; }

.mt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 10px;
}

.mt-feature__icon { font-size: 1rem; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.mt-why { padding: 90px 0; }

.mt-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.mt-why-card.mt-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mt-why-card:hover {
  background: rgba(245,166,35,0.1) !important;
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-6px) !important;
}

.mt-why-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.mt-why-card__icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.mt-why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.mt-why-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.mt-testimonial {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(26,29,46,0.1);
  border: 1px solid #F3F4F6;
}

.mt-testimonial__quote {
  font-size: 4rem;
  color: #F5A623;
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}

.mt-testimonial__text {
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.mt-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mt-testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F5A623;
  flex-shrink: 0;
}

.mt-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-testimonial__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1D2E;
}

.mt-testimonial__role {
  font-size: 0.82rem;
  color: #9CA3AF;
  margin-top: 2px;
}

.mt-testimonial__stars {
  color: #F5A623;
  font-size: 0.85rem;
  margin-top: 4px;
}

.mt-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.mt-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #E5E7EB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A1D2E;
  transition: all 0.2s ease;
}

.mt-carousel-btn:hover {
  background: #F5A623;
  border-color: #F5A623;
  color: #fff;
}

/* =============================================
   DOWNLOAD SECTION
   ============================================= */
.mt-download {
  background: linear-gradient(135deg, #1A1D2E 0%, #2D3250 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.mt-download__bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

.mt-download__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.mt-download__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.7;
}

.mt-download__img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-download__img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: heroFloat 4s ease-in-out infinite;
  animation-delay: 0.8s;
  border-radius: 28px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #111320 !important;
  background-image: none !important;
  padding: 60px 0 0;
}

.footer-container { padding: 0 40px; }

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-content, .footer-link {
  color: #9CA3AF;
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-link:hover, .hover-stop:hover {
  color: #F5A623 !important;
}

.footer a { text-decoration: none; }

.footer .divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 30px 0;
}

.logo-name {
  font-weight: 700;
  font-size: 1rem;
}

.terms-condition {
  font-size: 0.82rem;
  font-weight: 600;
  color: #9CA3AF !important;
}

.copyright {
  font-size: 0.82rem;
  color: #6B7280;
  padding: 16px 0 24px;
}

/* Social icons */
.info-share .fab {
  font-size: 1.1rem;
  color: #9CA3AF;
  transition: color 0.2s;
}

.info-share .fab:hover { color: #F5A623; }

/* =============================================
   STATIC PAGES
   ============================================= */
.pages { margin-top: 2rem; padding: 40px 0 80px; }
.pages p, .pages ul li { font-size: 0.95rem; color: #4B5563; line-height: 1.8; }
.terms-service, .privacy-policy { margin-top: 2rem; }
.terms-service p, .terms-service ul li,
.privacy-policy p, .privacy-policy ul li {
  color: #4B5563; font-size: 0.95rem;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c5c5c0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #888; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .mt-hero { padding: 60px 0 0; }
  .mt-hero__img-wrap { margin-top: 50px; }
  .mt-float-card--top { top: 20px; left: 0; }
  .mt-float-card--bottom { bottom: 30px; right: 0; }
  .mt-mission__text-col { padding-left: 16px; }
  .mt-download__img-col { margin-top: 40px; }
  .mt-stats { flex-wrap: wrap; }
}

@media (max-width: 767px) {
  .mt-section { padding: 60px 0; }
  .mt-hero { padding: 50px 0 0; }
  .mt-hero__title { font-size: 2rem; }
  .mt-hero__illustration { max-height: 320px; }
  .mt-float-card { display: none; }
  .mt-stats { width: 100%; }
  .mt-mission__text-col { padding-left: 0; margin-top: 24px; }
  .mt-testimonial { padding: 28px; }
  .footer-container { padding: 0 20px; }
}

@media (min-width: 1200px) {
  .nav-container { margin-left: 220px !important; }
  .footer-container {
    padding-left: 240px !important;
    padding-right: 240px !important;
  }
}