:root {
  --mt-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --mt-brand-500: #4fb8ff;
  --mt-brand-600: #3aa2ec;
  --mt-brand-700: #2b8ad4;

  --mt-text-700: #0f172a;
  --mt-text-700: #334155;
  --mt-text-500: #64748b;

  --mt-bg: #ffffff;
  --mt-bg-soft: #f8fafc;
  --mt-border: #e5e7eb;

  --mt-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --mt-shadow-md: 0 16px 40px rgba(0, 0, 0, 0.10);

  --mt-radius-sm: 10px;
  --mt-radius-md: 14px;
  --mt-radius-lg: 22px;

  --mt-container: 1160px;
  --mt-section-space: clamp(56px, 6vw, 96px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--mt-font);
  color: var(--mt-text-700);
  background: var(--mt-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


a{
    text-decoration:none;
}

/* Base button */

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 44px;
  padding: 0 16px;

  border-radius: 14px;
  border: 1px solid transparent;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
  cursor: pointer;

  transition:
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease,
    transform .12s ease;
}

.mt-btn i {
  font-size: 13px;
}

/* Primary */

.mt-btn-primary {
  background: var(--mt-brand-600);
  border-color: var(--mt-brand-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79,184,255,0.25);
}

.mt-btn-primary:hover {
  background: var(--mt-brand-700);
  border-color: var(--mt-brand-700);
  color: #fff;
  transform: translateY(-1px);
}

.mt-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(79,184,255,0.25);
}

/* Ghost */

.mt-btn-ghost {
  background: transparent;
  border-color: var(--mt-border);
  color: var(--mt-text-900);
}

.mt-btn-ghost:hover {
  background: rgba(2,6,23,0.04);
  border-color: var(--mt-text-300);
}

/* Link style */

.mt-btn-link {
  background: transparent;
  border: none;
  color: var(--mt-brand-700);
  padding: 0 6px;
  height: auto;
}

.mt-btn-link:hover {
  text-decoration: underline;
}

/* Disabled */

.mt-btn:disabled,
.mt-btn.is-disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile */

@media (max-width:560px) {

  .mt-btn {
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
  }

}

.mt-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mt-site .mt-main {
  flex: 1 0 auto;
}

.mt-site .mt-container {
  width: min(100% - 40px, var(--mt-container));
  margin-inline: auto;
}

.mt-site .mt-section {
  padding: var(--mt-section-space) 0;
}

.mt-site .mt-surface {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
}

/* Links */


/* Skip link */
.mt-skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--mt-text-700);
  box-shadow: var(--mt-shadow-sm);
}

.mt-skip:focus {
  left: 12px;
  outline: none;
}

/* Focus */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 184, 255, 0.25);
  border-radius: 10px;
}

/* Header */
.mt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mt-border);
}

.mt-header .mt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.mt-header .mt-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.mt-header .mt-brand .mt-logo {
  width: auto;
  height: 44px;
  display: block;
}

.mt-header .mt-brand .mt-beta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;

  padding: 3px 8px;
  border-radius: 999px;

  background: linear-gradient(135deg,#4fb8ff,#3b82f6);
  color: #fff;

  box-shadow: 0 4px 10px rgba(59,130,246,0.25);

  line-height: 1;
}

/* Nav desktop */
.mt-header .mt-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mt-header .mt-nav .mt-nav-link {
  color: var(--mt-text-700);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 8px 10px;
  border-radius: 12px;
}

.mt-header .mt-nav .mt-nav-link:hover {
  color: var(--mt-text-700);
  background: var(--mt-bg-soft);
  text-decoration: none;
}

/* Actions + buttons */
.mt-header .mt-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-header .mt-actions .mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.mt-header .mt-actions .mt-btn i {
  margin-right: 8px;
  font-size: 14px;
}

.mt-header .mt-actions .mt-btn.mt-btn-ghost {
  color: var(--mt-text-700);
  background: transparent;
  border-color: var(--mt-border);
}

.mt-header .mt-actions .mt-btn.mt-btn-ghost:hover {
  background: var(--mt-bg-soft);
  color: var(--mt-text-700);
  text-decoration: none;
}

.mt-header .mt-actions .mt-btn.mt-btn-primary {
  background: var(--mt-brand-600);
  border-color: var(--mt-brand-600);
  color: #fff;
  box-shadow: 0 10px 22px rgba(58, 162, 236, 0.18);
}

.mt-header .mt-actions .mt-btn.mt-btn-primary:hover {
  background: var(--mt-brand-700);
  border-color: var(--mt-brand-700);
  text-decoration: none;
}

/* Mobile toggle */
.mt-header .mt-nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mt-header .mt-actions .mt-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--mt-border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.mt-header .mt-actions .mt-toggle i {
  margin-right: 0;
  font-size: 18px;
  color: var(--mt-text-700);
}

/* Responsive */
@media (max-width: 992px) {
  .mt-header .mt-nav {
    display: none;
  }

  .mt-header .mt-actions .mt-toggle {
    display: inline-flex;
  }

  .mt-header .mt-actions .mt-btn.mt-btn-ghost {
    
  }
  .mt-header .mt-actions .mt-btn.mt-btn-primary{
    display:none;
  }

  .mt-header .mt-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--mt-border);
    box-shadow: var(--mt-shadow-md);
    padding: 12px 20px 16px 20px;
  }

  .mt-header .mt-nav .mt-nav-link {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
  }

  .mt-header .mt-nav-check:checked ~ .mt-nav {
    display: block;
  }
}

@media (max-width: 420px) {
  .mt-header .mt-brand .mt-logo {
    height: 40px;
  }

  .mt-header .mt-actions .mt-btn.mt-btn-primary {
    padding: 0 12px;
  }
}


.mt-footer {
  border-top: 1px solid var(--mt-border);
  background: var(--mt-bg);
}

.mt-footer .mt-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 40px;
  padding: 44px 0 26px 0;
}

.mt-footer .mt-footer-brand {
  padding-right: 10px;
}

.mt-footer .mt-footer-logo {
  display: inline-flex;
  align-items: center;
}

.mt-footer .mt-footer-img {
  width: auto;
  height: 44px;
  display: block;
}

.mt-footer .mt-footer-text {
  margin: 14px 0 0 0;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.7;
  max-width: 440px;
}

.mt-footer .mt-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mt-footer .mt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--mt-border);
  background: var(--mt-bg-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mt-text-700);
}

.mt-footer .mt-badge i {
  color: var(--mt-brand-600);
}

.mt-footer .mt-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-content: start;
}

.mt-footer .mt-col-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--mt-text-700);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-footer .mt-footer-link {
  display: block;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--mt-text-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.mt-footer .mt-footer-link i {
  color: var(--mt-text-500);
  width: 16px;
  text-align: center;
}

.mt-footer .mt-footer-link:hover {
  color: var(--mt-text-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mt-footer .mt-footer-meta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.6;
}

.mt-footer .mt-footer-meta i {
  color: var(--mt-text-500);
  margin-top: 3px;
}

.mt-footer .mt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px 0;
  border-top: 1px solid var(--mt-border);
}

.mt-footer .mt-copy {
  color: var(--mt-text-500);
  font-size: 13px;
  font-weight: 600;
}

.mt-footer .mt-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mt-footer .mt-legal-link {
  color: var(--mt-text-500);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 0;
}

.mt-footer .mt-legal-link:hover {
  color: var(--mt-text-700);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-footer .mt-footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0 18px 0;
  }

  .mt-footer .mt-footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .mt-footer .mt-footer-text {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .mt-footer .mt-footer-cols {
    grid-template-columns: 1fr;
  }

  .mt-footer .mt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mt-footer .mt-legal {
    justify-content: flex-start;
    gap: 12px;
  }
}



/* Hero wrapper */
.mt-hero {
  padding: clamp(46px, 6vw, 84px) 0;
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(79, 184, 255, 0.18), transparent 60%),
    radial-gradient(700px 360px at 90% 10%, rgba(58, 162, 236, 0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--mt-border);
}


.mt-hero .mt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.25);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.mt-hero .mt-hero-badge i {
  font-size: 14px;
}


.mt-hero .mt-highlight {
  color: var(--mt-brand-600);
}


.mt-hero .mt-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

/* Copy */
.mt-hero .mt-hero-title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--mt-text-700);
}

.mt-hero .mt-hero-subtitle {
  margin: 14px 0 0 0;
  color: var(--mt-text-700);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}

.mt-hero .mt-hero-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.mt-hero .mt-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--mt-shadow-sm);
  color: var(--mt-text-700);
  font-weight: 650;
  font-size: 14px;
}

.mt-hero .mt-point i {
  color: var(--mt-brand-600);
  width: 18px;
  text-align: center;
}

/* CTA */
.mt-hero .mt-hero-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mt-hero .mt-hero-cta .mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.mt-hero .mt-hero-cta .mt-btn.mt-btn-primary {
  background: var(--mt-brand-600);
  border-color: var(--mt-brand-600);
  color: #fff;
  box-shadow: 0 14px 28px rgba(58, 162, 236, 0.18);
}

.mt-hero .mt-hero-cta .mt-btn.mt-btn-primary:hover {
  background: var(--mt-brand-700);
  border-color: var(--mt-brand-700);
}

.mt-hero .mt-hero-cta .mt-btn.mt-btn-ghost {
  background: #fff;
  border-color: var(--mt-border);
  color: var(--mt-text-700);
}

.mt-hero .mt-hero-cta .mt-btn.mt-btn-ghost i {
  margin-right: 8px;
  color: var(--mt-text-500);
}

.mt-hero .mt-hero-cta .mt-btn.mt-btn-ghost:hover {
  background: var(--mt-bg-soft);
}

/* Trust row */
.mt-hero .mt-hero-trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--mt-text-500);
  font-weight: 700;
  font-size: 13px;
}

.mt-hero .mt-hero-trust .mt-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.7);
}

.mt-hero .mt-hero-trust .mt-trust i {
  color: var(--mt-text-700);
}

/* Media area */
.mt-hero .mt-hero-media {
  position: relative;
  min-height: 460px;
}

/* Mac placeholder */
.mt-hero .mt-hero-media .mt-mac {
  position: relative;
  width: min(520px, 100%);
  margin-left: auto;



  overflow: hidden;
}



/* Screen area */
.mt-hero .mt-hero-media .mt-mac .mt-mac-screen {
  aspect-ratio: 16 / 10;
}

/* If you drop an image inside later */
.mt-hero .mt-hero-media .mt-mac .mt-mac-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* iPhone placeholder (suprapus) */
.mt-hero .mt-hero-media .mt-phone {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 190px;

  overflow: hidden;
}



/* Phone screen */
.mt-hero .mt-hero-media .mt-phone .mt-phone-screen {
  aspect-ratio: 9 / 19.5;
}

.mt-hero .mt-hero-media .mt-phone .mt-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative glow */
.mt-hero .mt-hero-media .mt-hero-glow {
  position: absolute;
  inset: -40px -20px -60px -20px;
  background:
    radial-gradient(420px 260px at 65% 60%, rgba(79, 184, 255, 0.22), transparent 60%),
    radial-gradient(340px 220px at 40% 30%, rgba(58, 162, 236, 0.16), transparent 60%);
  pointer-events: none;
  filter: blur(2px);
  z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-hero .mt-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mt-hero .mt-hero-media {
    min-height: 420px;
  }

  .mt-hero .mt-hero-media .mt-mac {
    margin-left: 0;
  }

  .mt-hero .mt-hero-media .mt-phone {
    right: 14px;
    bottom: -14px;
    width: 176px;
  }
}

@media (max-width: 560px) {
  .mt-hero {
    padding: 44px 0;
  }

  .mt-hero .mt-hero-subtitle {
    font-size: 15px;
  }

  .mt-hero .mt-hero-media {
    min-height: 360px;
  }

  .mt-hero .mt-hero-media .mt-phone {
    width: 156px;
    right: 10px;
    bottom: -12px;
  }

  .mt-hero .mt-hero-cta .mt-btn {
    width: 100%;
  }
}




.mt-how {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-how .mt-how-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px auto;
}

.mt-how .mt-how-title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-700);
}

.mt-how .mt-how-subtitle {
  margin: 12px 0 0 0;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-how .mt-how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.mt-how .mt-step {
  border: 1px solid var(--mt-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 16px 14px 16px;
  height: 100%;
}

.mt-how .mt-step .mt-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mt-how .mt-step .mt-step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(79, 184, 255, 0.14);
  color: var(--mt-brand-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.mt-how .mt-step .mt-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mt-how .mt-step .mt-step-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-how .mt-step .mt-step-title {
  font-weight: 700;
  color: var(--mt-text-700);
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: 15px;
  margin-top: 2px;
}

.mt-how .mt-step .mt-step-text {
  margin-top: 8px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.65;
}

.mt-how .mt-how-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-how .mt-how-foot .mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.mt-how .mt-how-foot .mt-btn.mt-btn-primary {
  background: var(--mt-brand-600);
  border-color: var(--mt-brand-600);
  color: #fff;
  box-shadow: 0 14px 28px rgba(58, 162, 236, 0.18);
}

.mt-how .mt-how-foot .mt-btn.mt-btn-primary:hover {
  background: var(--mt-brand-700);
  border-color: var(--mt-brand-700);
}

.mt-how .mt-how-foot .mt-btn.mt-btn-ghost {
  background: #fff;
  border-color: var(--mt-border);
  color: var(--mt-text-700);
}

.mt-how .mt-how-foot .mt-btn.mt-btn-ghost:hover {
  background: var(--mt-bg-soft);
}

.mt-how .mt-how-note {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.mt-how .mt-how-note i {
  margin-top: 2px;
  color: var(--mt-text-500);
}

/* Responsive */
@media (max-width: 992px) {
  .mt-how .mt-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mt-how .mt-how-head {
    text-align: left;
  }

  .mt-how .mt-how-grid {
    grid-template-columns: 1fr;
  }

  .mt-how .mt-how-note {
    justify-content: flex-start;
    text-align: left;
  }

  .mt-how .mt-how-foot .mt-btn {
    width: 100%;
  }
}



.mt-qr {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-qr .mt-qr-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.mt-qr .mt-qr-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-qr .mt-qr-subtitle {
  margin-top: 12px;
  font-size: 15px;
  color: var(--mt-text-700);
  line-height: 1.7;
}

.mt-qr .mt-qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mt-qr .mt-qr-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--mt-shadow-sm);
}

.mt-qr .mt-qr-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mt-qr .mt-qr-icon i {
  color: var(--mt-brand-600);
  font-size: 20px;
}

.mt-qr .mt-qr-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--mt-text-900);
}

.mt-qr .mt-qr-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.6;
}

.mt-qr .mt-qr-cta {
  text-align: center;
  margin-top: 36px;
}

/* Responsive */

@media (max-width: 992px) {

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

}

@media (max-width: 560px) {

  .mt-qr .mt-qr-grid {
    grid-template-columns: 1fr;
  }

}

.mt-print {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-print .mt-print-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.mt-print .mt-print-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-print .mt-print-subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: var(--mt-text-700);
  line-height: 1.7;
}

.mt-print .mt-print-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
}

.mt-print .mt-print-card {
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  padding: 22px;
  background: #fff;
  box-shadow: var(--mt-shadow-sm);
}

.mt-print .mt-print-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-print .mt-print-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-print .mt-print-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--mt-text-900);
}

.mt-print .mt-print-text {
  margin-top: 6px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.6;
}

@media (max-width: 992px) {

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

}

@media (max-width: 560px) {

  .mt-print .mt-print-grid {
    grid-template-columns: 1fr;
  }

}





.mt-dash {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-dash .mt-dash-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 34px auto;
}

.mt-dash .mt-dash-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-dash .mt-dash-subtitle {
  margin: 12px 0 0 0;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-dash .mt-dash-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

/* Media */
.mt-dash .mt-dash-media {
  position: relative;
  min-height: 420px;
}

.mt-dash .mt-dash-frame {
  overflow: hidden;
}



.mt-dash .mt-dash-frame .mt-dash-screen {
  aspect-ratio: 16 / 10;
}

.mt-dash .mt-dash-frame .mt-dash-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating badges */
.mt-dash .mt-dash-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--mt-shadow-sm);
  color: var(--mt-text-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-dash .mt-dash-badge i {
  color: var(--mt-brand-600);
}

.mt-dash .mt-dash-badge:nth-of-type(1) {
  top: 18px;
  left: 18px;
}

.mt-dash .mt-dash-badge:nth-of-type(2) {
  bottom: 18px;
  right: 18px;
}

/* Copy list */
.mt-dash .mt-dash-list {
  display: grid;
  gap: 12px;
}

.mt-dash .mt-dash-item {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--mt-radius-lg);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--mt-shadow-sm);
}

.mt-dash .mt-dash-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79, 184, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mt-dash .mt-dash-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-dash .mt-dash-name {
  color: var(--mt-text-900);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
}

.mt-dash .mt-dash-desc {
  margin-top: 6px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.6;
}

.mt-dash .mt-dash-note {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
}

.mt-dash .mt-dash-note i {
  margin-top: 2px;
  color: var(--mt-text-500);
}

/* Responsive */
@media (max-width: 992px) {
  .mt-dash .mt-dash-inner {
    grid-template-columns: 1fr;
  }

  .mt-dash .mt-dash-media {
    min-height: 380px;
  }

  .mt-dash .mt-dash-badge:nth-of-type(1) {
    top: 14px;
    left: 14px;
  }

  .mt-dash .mt-dash-badge:nth-of-type(2) {
    bottom: 14px;
    right: 14px;
  }
}

@media (max-width: 560px) {
  .mt-dash .mt-dash-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-dash .mt-dash-badge {
    display: none;
  }
}




.mt-cases {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-cases .mt-cases-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px auto;
}

.mt-cases .mt-cases-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-cases .mt-cases-subtitle {
  margin: 12px 0 0 0;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-cases .mt-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mt-cases .mt-case {
  border: 1px solid var(--mt-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 16px 14px 16px;
}

.mt-cases .mt-case .mt-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79, 184, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-cases .mt-case .mt-case-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-cases .mt-case .mt-case-title {
  color: var(--mt-text-900);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
}

.mt-cases .mt-case .mt-case-text {
  margin-top: 8px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.6;
}

.mt-cases .mt-cases-note {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
  max-width: 980px;
}

.mt-cases .mt-cases-note i {
  margin-top: 2px;
  color: var(--mt-text-500);
}

/* Responsive */
@media (max-width: 992px) {
  .mt-cases .mt-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mt-cases .mt-cases-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-cases .mt-cases-grid {
    grid-template-columns: 1fr;
  }
}


.mt-payments {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-payments .mt-payments-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.mt-payments .mt-payments-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-payments .mt-payments-subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: var(--mt-text-700);
  line-height: 1.7;
}

.mt-payments .mt-payments-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.mt-payments .mt-payment-card {
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: var(--mt-shadow-sm);
}

.mt-payments .mt-payment-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-payments .mt-payment-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-payments .mt-payment-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--mt-text-900);
}

.mt-payments .mt-payment-text {
  margin-top: 6px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.6;
}

.mt-payments .mt-payments-note {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  color: var(--mt-text-600);
  font-size: 13px;
  line-height: 1.6;
}

.mt-payments .mt-payments-note i {
  margin-top: 2px;
}

/* responsive */

@media (max-width: 992px) {

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

}

@media (max-width: 560px) {

  .mt-payments .mt-payments-grid {
    grid-template-columns: 1fr;
  }

}



.mt-why {
  padding: clamp(64px, 7vw, 110px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.20), transparent 60%),
    radial-gradient(700px 360px at 88% 30%, rgba(58,162,236,0.16), transparent 58%),
    linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
  color: rgba(255,255,255,0.90);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mt-why .mt-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Left */
.mt-why .mt-why-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mt-why .mt-why-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #ffffff;
  max-width: 20ch;
}

.mt-why .mt-why-lead {
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  max-width: 60ch;
}

/* Check mark pills */
.mt-why .mt-why-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.mt-why .mt-why-mark i {
  font-size: 13px;
}

.mt-why .mt-why-ok {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
  color: rgba(34,197,94,0.95);
}

.mt-why .mt-why-no {
  border-color: rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.10);
  color: rgba(239,68,68,0.95);
}

.mt-why .mt-why-highlights {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.mt-why .mt-why-line .mt-why-line-text {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

/* Proof block */
.mt-why .mt-why-proof {
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
}

.mt-why .mt-why-proof .mt-why-proof-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-why .mt-why-proof .mt-why-proof-list {
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-proof .mt-why-proof-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mt-why .mt-why-proof .mt-why-proof-text {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.7;
}

/* Right compare */
.mt-why .mt-why-compare {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mt-why .mt-why-col {
  padding: 18px 18px 16px 18px;
}

.mt-why .mt-why-col.mt-why-col-good {
  background: linear-gradient(180deg, rgba(34,197,94,0.08) 0%, rgba(255,255,255,0.00) 100%);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.mt-why .mt-why-col-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mt-why .mt-why-checklist {
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
}

.mt-why .mt-why-check .mt-why-check-text {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.7;
}

.mt-why .mt-why-footnote {
  margin-top: 12px;
  color: rgba(255,255,255,0.66);
  font-size: 12.5px;
  line-height: 1.6;
  padding-left: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-why .mt-why-inner {
    grid-template-columns: 1fr;
  }

  .mt-why .mt-why-title {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .mt-why .mt-why-line {
    padding: 12px 12px;
  }

  .mt-why .mt-why-compare {
    grid-template-columns: 1fr;
  }

  .mt-why .mt-why-col.mt-why-col-good {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}


.mt-price {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-price .mt-price-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.mt-price .mt-price-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-price .mt-price-subtitle {
  margin: 12px 0 0 0;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-price .mt-price-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(79,184,255,0.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
  padding: 18px 18px 16px 18px;
}

.mt-price .mt-price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mt-price .mt-price-name {
  color: var(--mt-text-900);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.mt-price .mt-price-tag {
  color: var(--mt-text-500);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.7);
}

.mt-price .mt-price-main {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.mt-price .mt-price-number {
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mt-text-900);
}

.mt-price .mt-price-plus {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-text-700);
}

.mt-price .mt-price-unit {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text-500);
}

.mt-price .mt-price-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.mt-price .mt-price-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mt-price .mt-price-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
}

.mt-price .mt-price-mark i {
  font-size: 12px;
}

.mt-price .mt-price-ok {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.10);
  color: rgba(34,197,94,0.95);
}

.mt-price .mt-price-neutral {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(100,116,139,0.95);
}

.mt-price .mt-price-text {
  color: var(--mt-text-700);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
}

.mt-price .mt-price-meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.mt-price .mt-price-meta-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-600);
  font-size: 13px;
  line-height: 1.65;
}

.mt-price .mt-price-meta-text strong {
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-price .mt-price-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

.mt-price .mt-price-actions .mt-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-price .mt-price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mt-price .mt-price-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-price .mt-price-card {
    padding: 16px 14px 14px 14px;
  }

  .mt-price .mt-price-number {
    font-size: 40px;
  }
}



.mt-faq {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-faq .mt-faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px auto;
}

.mt-faq .mt-faq-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-faq .mt-faq-subtitle {
  margin-top: 10px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.7;
}

.mt-faq .mt-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.mt-faq .mt-faq-item {
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  background: #fff;
  overflow: hidden;
}

.mt-faq .mt-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--mt-text-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mt-faq .mt-faq-question::-webkit-details-marker {
  display: none;
}

.mt-faq .mt-faq-icon {
  font-size: 14px;
  color: var(--mt-text-500);
}

.mt-faq .mt-faq-answer {
  padding: 0 18px 16px 18px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.7;
}

.mt-faq .mt-faq-item[open] .mt-faq-icon i {
  transform: rotate(45deg);
}

.mt-faq .mt-faq-icon i {
  transition: transform .2s ease;
}

/* mobile */

@media (max-width: 560px) {

  .mt-faq .mt-faq-head {
    text-align: left;
  }

  .mt-faq .mt-faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

}



.mt-cta {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-cta .mt-cta-box {
  position: relative;
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(600px 300px at 20% 10%, rgba(79,184,255,0.18), transparent 60%),
    radial-gradient(500px 280px at 80% 90%, rgba(58,162,236,0.15), transparent 60%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
  overflow: hidden;
}

.mt-cta .mt-cta-title {
  margin: 0;
  font-size: clamp(28px,3vw,38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
}

.mt-cta .mt-cta-subtitle {
  margin: 14px auto 0 auto;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mt-text-700);
}

.mt-cta .mt-cta-actions {
  margin-top: 24px;
}

.mt-cta .mt-cta-actions .mt-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
}

.mt-cta .mt-cta-trust {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mt-cta .mt-cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text-600);
}

.mt-cta .mt-cta-trust-item i {
  font-size: 14px;
}

.mt-cta .mt-cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(79,184,255,0.15), transparent 60%);
  pointer-events: none;
}

/* mobile */

@media (max-width:560px) {

  .mt-cta .mt-cta-box {
    padding: 36px 22px;
  }

  .mt-cta .mt-cta-title {
    font-size: 26px;
  }

}



.mt-404 {
  padding: clamp(56px, 7vw, 110px) 0;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(79,184,255,0.14), transparent 60%),
    radial-gradient(700px 360px at 88% 30%, rgba(58,162,236,0.10), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-404 .mt-404-card {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--mt-border);
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  box-shadow: var(--mt-shadow-md);
  padding: 28px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mt-404 .mt-404-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(79,184,255,0.14), transparent 60%);
  pointer-events: none;
}

.mt-404 .mt-404-top {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mt-404 .mt-404-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(79,184,255,0.22);
  background: rgba(79,184,255,0.10);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-404 .mt-404-code {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: clamp(62px, 10vw, 110px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-404 .mt-404-title {
  position: relative;
  z-index: 1;
  margin: 10px 0 0 0;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-404 .mt-404-text {
  position: relative;
  z-index: 1;
  margin: 12px auto 0 auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-404 .mt-404-actions {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mt-404 .mt-404-actions .mt-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mt-404 .mt-404-actions .mt-404-btn i {
  font-size: 14px;
}

.mt-404 .mt-404-actions .mt-404-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 10px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--mt-text-900);
}

.mt-404 .mt-404-actions .mt-404-link:hover {
  background: rgba(2, 6, 23, 0.04);
}

.mt-404 .mt-404-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
}

.mt-404 .mt-404-note i {
  margin-top: 2px;
}

.mt-404 .mt-404-note .mt-404-app {
  margin-left: 6px;
  color: var(--mt-brand-700);
  font-weight: 700;
  text-decoration: none;
}

.mt-404 .mt-404-note .mt-404-app:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 560px) {
  .mt-404 .mt-404-card {
    padding: 22px 16px;
    text-align: left;
  }

  .mt-404 .mt-404-top {
    justify-content: flex-start;
  }

  .mt-404 .mt-404-actions {
    justify-content: flex-start;
  }

  .mt-404 .mt-404-actions .mt-404-btn {
    width: 100%;
  }

  .mt-404 .mt-404-actions .mt-404-link {
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(229,231,235,0.9);
    background: rgba(255,255,255,0.7);
  }

  .mt-404 .mt-404-note {
    justify-content: flex-start;
  }
}



.mt-page {
  padding: clamp(28px, 4vw, 56px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-page .mt-page-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 18px auto;
}

.mt-page .mt-page-title {
  margin: 8px 0 0 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-page .mt-page-subtitle {
  margin: 12px auto 0 auto;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mt-text-700);
  font-weight: 400;
}

/* Breadcrumb */
.mt-page .mt-page-breadcrumb {
  display: flex;
  justify-content: center;
}

.mt-page .mt-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text-500);
}

.mt-page .mt-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mt-page .mt-breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: rgba(100, 116, 139, 0.6);
}

.mt-page .mt-breadcrumb-link {
  color: var(--mt-text-600);
  text-decoration: none;
}

.mt-page .mt-breadcrumb-link:hover {
  color: var(--mt-text-900);
  text-decoration: underline;
}

/* Banner */
.mt-page .mt-page-banner {
  max-width: 1040px;
  margin: 18px auto 0 auto;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: #fff;
  box-shadow: var(--mt-shadow-md);
  overflow: hidden;
}

.mt-page .mt-page-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body */
.mt-page .mt-page-body {
  max-width: 920px;
  margin: 22px auto 0 auto;
  padding: 22px 22px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--mt-shadow-sm);
}

/* Full template (wider reading layout) */
.mt-page .mt-page-body.mt-page-body-full {
  max-width: 1200px;
}

/* Content defaults inside page body */
.mt-page .mt-page-body h2 {
  margin: 18px 0 10px 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-page .mt-page-body h3 {
  margin: 16px 0 8px 0;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-page .mt-page-body p {
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

.mt-page .mt-page-body a {
  color: var(--mt-brand-700);
  text-decoration: none;
  font-weight: 600;
}

.mt-page .mt-page-body a:hover {
  text-decoration: underline;
}

.mt-page .mt-page-body ul,
.mt-page .mt-page-body ol {
  margin: 10px 0 10px 18px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.8;
}

.mt-page .mt-page-body blockquote {
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 2px solid rgba(79,184,255,0.7);
  background: rgba(79,184,255,0.08);
  border-radius: 16px;
  color: var(--mt-text-700);
}

.mt-page .mt-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 560px) {
  .mt-page .mt-page-head {
    text-align: left;
  }

  .mt-page .mt-page-breadcrumb {
    justify-content: flex-start;
  }

  .mt-page .mt-page-body {
    padding: 16px 14px;
    margin-top: 16px;
  }
}


/* Page hero */
.mt-page-hero {
  padding: clamp(44px, 6vw, 82px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-page-hero .mt-page-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mt-page-hero .mt-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.25);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-page-hero .mt-page-hero-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-page-hero .mt-page-hero-subtitle {
  margin: 14px auto 0 auto;
  max-width: 76ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

.mt-page-hero .mt-page-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.mt-page-hero .mt-page-hero-trust {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mt-page-hero .mt-page-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text-600);
}

.mt-page-hero .mt-page-hero-trust-item i {
  font-size: 14px;
}

/* HOW */
.mt-how.mt-how-page {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-how .mt-how-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px auto;
}

.mt-how .mt-how-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-how .mt-how-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-how .mt-how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mt-how .mt-step {
  border: 1px solid var(--mt-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 16px 14px 16px;
}

.mt-how .mt-step .mt-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.mt-how .mt-step .mt-step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--mt-text-900);
  font-size: 13px;
}

.mt-how .mt-step .mt-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-how .mt-step .mt-step-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-how .mt-step .mt-step-title {
  color: var(--mt-text-900);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.mt-how .mt-step .mt-step-text {
  margin-top: 8px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.65;
}

.mt-how .mt-how-note {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
  max-width: 980px;
}

.mt-how .mt-how-note i {
  margin-top: 2px;
  color: var(--mt-text-500);
}

/* QR */
.mt-qr.mt-qr-page {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-qr .mt-qr-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px auto;
}

.mt-qr .mt-qr-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-qr .mt-qr-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-qr .mt-qr-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mt-qr .mt-qr-card {
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.86);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 16px 14px 16px;
}

.mt-qr .mt-qr-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-qr .mt-qr-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-qr .mt-qr-card-title {
  color: var(--mt-text-900);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}

.mt-qr .mt-qr-text {
  margin-top: 8px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.6;
}

/* PRINT */
.mt-print.mt-print-page {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-print .mt-print-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px auto;
}

.mt-print .mt-print-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-print .mt-print-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-print .mt-print-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.mt-print .mt-print-card {
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  padding: 18px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-sm);
}

.mt-print .mt-print-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-print .mt-print-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-print .mt-print-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-print .mt-print-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.6;
}

/* PAYMENTS */
.mt-payments.mt-payments-page {
  padding: var(--mt-section-space) 0;
  background: var(--mt-bg-soft);
}

.mt-payments .mt-payments-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px auto;
}

.mt-payments .mt-payments-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-payments .mt-payments-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-payments .mt-payments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mt-payments .mt-payment-card {
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  background: rgba(255,255,255,0.86);
  padding: 18px 16px;
  box-shadow: var(--mt-shadow-sm);
}

.mt-payments .mt-payment-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(79,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mt-payments .mt-payment-icon i {
  color: var(--mt-brand-600);
  font-size: 18px;
}

.mt-payments .mt-payment-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-payments .mt-payment-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.6;
}

.mt-payments .mt-payments-note {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
  max-width: 980px;
}

.mt-payments .mt-payments-note i {
  margin-top: 2px;
}

/* Page CTA */
.mt-page-cta {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-page-cta .mt-page-cta-box {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(79,184,255,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
}

.mt-page-cta .mt-page-cta-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-page-cta .mt-page-cta-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-page-cta .mt-page-cta-actions {
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-how .mt-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mt-qr .mt-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mt-print .mt-print-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mt-payments .mt-payments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mt-page-hero .mt-page-hero-inner {
    text-align: left;
  }

  .mt-page-hero .mt-page-hero-actions {
    justify-content: flex-start;
  }

  .mt-page-hero .mt-page-hero-trust {
    justify-content: flex-start;
  }

  .mt-how .mt-how-head,
  .mt-qr .mt-qr-head,
  .mt-print .mt-print-head,
  .mt-payments .mt-payments-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-how .mt-how-grid,
  .mt-qr .mt-qr-grid,
  .mt-print .mt-print-grid,
  .mt-payments .mt-payments-grid {
    grid-template-columns: 1fr;
  }

  .mt-page-cta .mt-page-cta-box {
    padding: 30px 18px;
    text-align: left;
  }
}




/* Page hero (beneficii) */
.mt-benef-page-hero {
  padding: clamp(44px, 6vw, 88px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-benef-page-hero .mt-benef-page-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mt-benef-page-hero .mt-benef-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.25);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-benef-page-hero .mt-benef-page-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-benef-page-hero .mt-benef-page-subtitle {
  margin: 14px auto 0 auto;
  max-width: 76ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

.mt-benef-page-hero .mt-benef-page-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WHY signature section */
.mt-why.mt-why-page {
  padding: clamp(64px, 7vw, 110px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.20), transparent 60%),
    radial-gradient(700px 360px at 88% 30%, rgba(58,162,236,0.16), transparent 58%),
    linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mt-why .mt-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.mt-why .mt-why-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mt-why .mt-why-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #ffffff;
  max-width: 22ch;
}

.mt-why .mt-why-lead {
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
  max-width: 60ch;
}

/* marks */
.mt-why .mt-why-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.mt-why .mt-why-mark i { font-size: 13px; }

.mt-why .mt-why-ok {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
  color: rgba(34,197,94,0.95);
}

.mt-why .mt-why-no {
  border-color: rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.10);
  color: rgba(239,68,68,0.95);
}

.mt-why .mt-why-highlights {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.mt-why .mt-why-line .mt-why-line-text {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.mt-why .mt-why-proof {
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
}

.mt-why .mt-why-proof .mt-why-proof-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-why .mt-why-proof .mt-why-proof-list {
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-proof .mt-why-proof-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mt-why .mt-why-proof .mt-why-proof-text {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.7;
}

/* right compare */
.mt-why .mt-why-compare {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mt-why .mt-why-col {
  padding: 18px 18px 16px 18px;
}

.mt-why .mt-why-col.mt-why-col-good {
  background: linear-gradient(180deg, rgba(34,197,94,0.08) 0%, rgba(255,255,255,0.00) 100%);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.mt-why .mt-why-col-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mt-why .mt-why-checklist {
  display: grid;
  gap: 10px;
}

.mt-why .mt-why-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
}

.mt-why .mt-why-check .mt-why-check-text {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.7;
}

.mt-why .mt-why-footnote {
  margin-top: 12px;
  color: rgba(255,255,255,0.66);
  font-size: 12.5px;
  line-height: 1.6;
  padding-left: 2px;
}

/* Benefits rows (light, not card-grid) */
.mt-benefits.mt-benefits-page {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-benefits .mt-benefits-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px auto;
}

.mt-benefits .mt-benefits-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-benefits .mt-benefits-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-benefits .mt-benefits-rows {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.mt-benefits .mt-benefit-row {
  border: 1px solid var(--mt-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-sm);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.mt-benefits .mt-benefit-row-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mt-text-600);
  background: rgba(2,6,23,0.04);
  border: 1px solid rgba(229,231,235,0.9);
}

.mt-benefits .mt-benefit-row-title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-benefits .mt-benefit-row-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-benefits .mt-benefit-row-right {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.mt-benefits .mt-benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.22);
  background: rgba(34,197,94,0.08);
  color: var(--mt-text-900);
  font-size: 13px;
  font-weight: 700;
}

.mt-benefits .mt-benefit-chip i {
  color: rgba(34,197,94,0.95);
  font-size: 12px;
}

/* Page CTA (reuse) */
.mt-page-cta {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-page-cta .mt-page-cta-box {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(79,184,255,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
}

.mt-page-cta .mt-page-cta-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-page-cta .mt-page-cta-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-page-cta .mt-page-cta-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
  .mt-why .mt-why-inner {
    grid-template-columns: 1fr;
  }

  .mt-why .mt-why-title {
    max-width: none;
  }

  .mt-benefits .mt-benefit-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mt-benef-page-hero .mt-benef-page-hero-inner {
    text-align: left;
  }

  .mt-benef-page-hero .mt-benef-page-actions {
    justify-content: flex-start;
  }

  .mt-why .mt-why-compare {
    grid-template-columns: 1fr;
  }

  .mt-why .mt-why-col.mt-why-col-good {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .mt-benefits .mt-benefits-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-page-cta .mt-page-cta-box {
    padding: 30px 18px;
    text-align: left;
  }

  .mt-page-cta .mt-page-cta-actions {
    justify-content: flex-start;
  }
}




/* PRICING HERO */
.mt-pricing-hero {
  padding: clamp(46px, 6vw, 86px) 0 44px;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-pricing-hero .mt-pricing-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mt-pricing-hero .mt-pricing-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.22);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-pricing-hero .mt-pricing-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-pricing-hero .mt-pricing-subtitle {
  margin: 12px auto 0 auto;
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

/* PRICING CARD */
.mt-pricing {
  padding: clamp(38px, 5vw, 70px) 0;
  background: #fff;
}

.mt-pricing .mt-pricing-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid var(--mt-border);
  padding: 34px 28px;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(79,184,255,0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
  text-align: center;
}

.mt-pricing .mt-pricing-card .mt-pricing-card-head {
  text-align: center;
}

.mt-pricing .mt-pricing-card .mt-pricing-plan {
  font-weight: 700;
  font-size: 16px;
  color: var(--mt-text-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.7);
}

.mt-pricing .mt-pricing-card .mt-pricing-price {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.mt-pricing .mt-pricing-card .mt-pricing-percent {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--mt-text-900);
}

.mt-pricing .mt-pricing-card .mt-pricing-plus {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-text-700);
}

.mt-pricing .mt-pricing-card .mt-pricing-desc {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-text-500);
}

.mt-pricing .mt-pricing-card .mt-pricing-divider {
  height: 1px;
  background: rgba(229,231,235,0.9);
  margin: 22px 0;
}

/* BREAKDOWN */
.mt-pricing .mt-pricing-card .mt-pricing-breakdown {
  display: grid;
  gap: 12px;
  text-align: left;
}

.mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.75);
}

.mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mt-text-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-label i {
  color: var(--mt-brand-700);
  font-size: 14px;
}

.mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-value {
  color: var(--mt-text-700);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

/* FEATURES */
.mt-pricing .mt-pricing-card .mt-pricing-features {
  margin-top: 6px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.mt-pricing .mt-pricing-card .mt-pricing-features .mt-price-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.75);
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.mt-pricing .mt-pricing-card .mt-pricing-features .mt-price-feature i {
  margin-top: 2px;
  color: rgba(34,197,94,0.95);
}

/* CTA */
.mt-pricing .mt-pricing-card .mt-pricing-cta {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* NOTE */
.mt-pricing-note {
  padding: 0 0 clamp(44px, 6vw, 78px);
  background: #fff;
}

.mt-pricing-note .mt-pricing-note-box {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--mt-bg-soft);
  border: 1px solid var(--mt-border);
  border-radius: 18px;
  padding: 18px 18px;
}

.mt-pricing-note .mt-pricing-note-box .mt-note-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mt-brand-700);
}

.mt-pricing-note .mt-pricing-note-box .mt-note-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-pricing-note .mt-pricing-note-box .mt-note-text strong {
  color: var(--mt-text-900);
  font-weight: 700;
}

/* PAGE CTA (reuse) */
.mt-page-cta {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-page-cta .mt-page-cta-box {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(79,184,255,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
}

.mt-page-cta .mt-page-cta-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-page-cta .mt-page-cta-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-page-cta .mt-page-cta-actions {
  margin-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 560px) {
  .mt-pricing-hero .mt-pricing-hero-inner {
    text-align: left;
  }

  .mt-pricing .mt-pricing-card {
    padding: 22px 16px;
    text-align: left;
  }

  .mt-pricing .mt-pricing-card .mt-pricing-price {
    justify-content: flex-start;
  }

  .mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .mt-pricing .mt-pricing-card .mt-pricing-breakdown .mt-price-value {
    text-align: left;
  }

  .mt-pricing .mt-pricing-card .mt-pricing-cta {
    justify-content: flex-start;
  }

  .mt-pricing-note .mt-pricing-note-box {
    grid-template-columns: 1fr;
  }

  .mt-page-cta .mt-page-cta-box {
    padding: 30px 18px;
    text-align: left;
  }
}





/* FAQ HERO */
.mt-faq-hero {
  padding: clamp(44px, 6vw, 86px) 0 40px;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-faq-hero .mt-faq-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mt-faq-hero .mt-faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.22);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-faq-hero .mt-faq-hero-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-faq-hero .mt-faq-hero-subtitle {
  margin: 12px auto 0 auto;
  max-width: 76ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

.mt-faq-hero .mt-faq-hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE LAYOUT */
.mt-faq-page {
  padding: clamp(34px, 5vw, 70px) 0;
  background: #fff;
}

.mt-faq-page .mt-faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

/* NAV */
.mt-faq-page .mt-faq-nav .mt-faq-nav-card {
  position: sticky;
  top: 88px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 14px;
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--mt-text-700);
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-link i {
  color: var(--mt-brand-700);
  font-size: 14px;
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-link:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--mt-text-900);
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-cta {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(229,231,235,0.9);
}

.mt-faq-page .mt-faq-nav .mt-faq-nav-cta .mt-btn {
  width: 100%;
  justify-content: center;
}

/* CONTENT BLOCKS */
.mt-faq-page .mt-faq-content .mt-faq-block {
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--mt-shadow-sm);
}

.mt-faq-page .mt-faq-content .mt-faq-block + .mt-faq-block {
  margin-top: 14px;
}

.mt-faq-page .mt-faq-content .mt-faq-block .mt-faq-block-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
}

/* FAQ LIST */
.mt-faq-page .mt-faq-content .mt-faq-list {
  display: grid;
  gap: 10px;
}

.mt-faq-page .mt-faq-content .mt-faq-item {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--mt-text-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-question::-webkit-details-marker {
  display: none;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mt-text-600);
  flex: 0 0 auto;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-answer {
  padding: 0 14px 14px 14px;
  font-size: 14px;
  color: var(--mt-text-700);
  line-height: 1.75;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-answer a {
  color: var(--mt-brand-700);
  text-decoration: none;
  font-weight: 700;
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-answer a:hover {
  text-decoration: underline;
}

.mt-faq-page .mt-faq-content .mt-faq-item[open] .mt-faq-icon i {
  transform: rotate(45deg);
}

.mt-faq-page .mt-faq-content .mt-faq-item .mt-faq-icon i {
  transition: transform .2s ease;
}

/* PAGE CTA (reuse) */
.mt-page-cta {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-page-cta .mt-page-cta-box {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--mt-border);
  background:
    radial-gradient(600px 280px at 20% 10%, rgba(79,184,255,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-md);
}

.mt-page-cta .mt-page-cta-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-page-cta .mt-page-cta-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-page-cta .mt-page-cta-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mt-faq-page .mt-faq-layout {
    grid-template-columns: 1fr;
  }

  .mt-faq-page .mt-faq-nav .mt-faq-nav-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .mt-faq-hero .mt-faq-hero-inner {
    text-align: left;
  }

  .mt-faq-hero .mt-faq-hero-actions {
    justify-content: flex-start;
  }

  .mt-faq-page .mt-faq-content .mt-faq-block {
    padding: 16px 14px;
  }

  .mt-page-cta .mt-page-cta-box {
    padding: 30px 18px;
    text-align: left;
  }

  .mt-page-cta .mt-page-cta-actions {
    justify-content: flex-start;
  }
}


.mt-contact-hero {
  padding: clamp(44px, 6vw, 86px) 0 36px;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-contact-hero .mt-contact-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mt-contact-hero .mt-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.22);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-contact-hero .mt-contact-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-contact-hero .mt-contact-subtitle {
  margin: 12px auto 0 auto;
  max-width: 76ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

.mt-contact {
  padding: clamp(34px, 5vw, 70px) 0;
  background: #fff;
}

.mt-contact .mt-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.mt-contact .mt-contact-card {
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  padding: 18px 18px;
}

.mt-contact .mt-contact-card .mt-contact-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
}

.mt-contact .mt-contact-card .mt-contact-card-text {
  margin: 10px 0 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-contact .mt-contact-card .mt-contact-form {
  margin-top: 14px;
}

.mt-contact .mt-contact-card .mt-field {
  margin-top: 12px;
}

.mt-contact .mt-contact-card .mt-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-contact .mt-contact-card .mt-input,
.mt-contact .mt-contact-card .mt-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,0.95);
  background: #fff;
  padding: 12px 12px;
  font-size: 14px;
  color: var(--mt-text-900);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.mt-contact .mt-contact-card .mt-input:focus,
.mt-contact .mt-contact-card .mt-textarea:focus {
  border-color: rgba(79,184,255,0.55);
  box-shadow: 0 0 0 4px rgba(79,184,255,0.12);
}

.mt-contact .mt-contact-card .mt-textarea {
  resize: vertical;
  min-height: 140px;
}

.mt-contact .mt-contact-card .mt-contact-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.mt-contact .mt-contact-card .mt-contact-mini {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mt-text-500);
}

.mt-contact .mt-contact-side {
  display: grid;
  gap: 12px;
}

.mt-contact .mt-contact-side .mt-contact-info,
.mt-contact .mt-contact-side .mt-contact-social,
.mt-contact .mt-contact-side .mt-contact-help {
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 14px;
}

.mt-contact .mt-contact-side .mt-contact-info-title,
.mt-contact .mt-contact-side .mt-contact-social-title,
.mt-contact .mt-contact-side .mt-contact-help-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-contact .mt-contact-side .mt-contact-info-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--mt-text-700);
  font-weight: 600;
  font-size: 14px;
}

.mt-contact .mt-contact-side .mt-contact-info-row:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--mt-text-900);
}

.mt-contact .mt-contact-side .mt-contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.20);
  color: var(--mt-brand-700);
  flex: 0 0 auto;
}

.mt-contact .mt-contact-side .mt-contact-info-text {
  line-height: 1.4;
}

.mt-contact .mt-contact-side .mt-contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-contact .mt-contact-side .mt-contact-social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,0.95);
  background: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mt-text-900);
  text-decoration: none;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}

.mt-contact .mt-contact-side .mt-contact-social-link:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.04);
  border-color: rgba(148,163,184,0.5);
}

.mt-contact .mt-contact-side .mt-contact-help .mt-contact-help-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-contact .mt-contact-side .mt-contact-help .mt-contact-help-text a {
  color: var(--mt-brand-700);
  font-weight: 700;
  text-decoration: none;
}

.mt-contact .mt-contact-side .mt-contact-help .mt-contact-help-text a:hover {
  text-decoration: underline;
}

/* Responsive */
/* Responsive */
@media (max-width: 992px) {
  .mt-contact .mt-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mt-contact-hero .mt-contact-hero-inner {
    text-align: left;
  }

  .mt-contact .mt-contact-card {
    padding: 16px 14px;
  }

  .mt-contact .mt-contact-card .mt-contact-actions {
    justify-content: flex-start;
  }
}

  /* BLOG BASE */
.mt-blog {
  padding: clamp(44px, 6vw, 84px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-blog .mt-blog-head {
  max-width: 980px;
  margin: 0 auto 18px auto;
  text-align: center;
}

.mt-blog .mt-blog-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(79,184,255,0.22);
  background: rgba(79,184,255,0.10);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-blog .mt-blog-title {
  margin: 14px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-blog .mt-blog-subtitle {
  margin: 12px auto 0 auto;
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mt-text-700);
}

/* SEARCH */
.mt-blog .mt-blog-search {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.mt-blog .mt-blog-search .mt-blog-search-inner {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,0.95);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--mt-shadow-sm);
}

.mt-blog .mt-blog-search .mt-blog-search-inner i {
  justify-self: center;
  color: var(--mt-text-500);
}

.mt-blog .mt-blog-search .mt-blog-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--mt-text-900);
  padding: 8px 4px;
}

.mt-blog .mt-blog-search .mt-blog-search-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 14px;
}

/* LAYOUT */
.mt-blog .mt-blog-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  align-items: start;
}

/* SIDE */
.mt-blog .mt-blog-side .mt-blog-side-card {
  position: sticky;
  top: 88px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  padding: 14px 14px;
}

.mt-blog .mt-blog-side .mt-blog-side-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mt-blog .mt-blog-side .mt-blog-side-links {
  display: grid;
  gap: 8px;
}

.mt-blog .mt-blog-side .mt-blog-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(229,231,235,0.85);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--mt-text-700);
  font-weight: 700;
  font-size: 14px;
}

.mt-blog .mt-blog-side .mt-blog-side-link:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--mt-text-900);
}

.mt-blog .mt-blog-side .mt-blog-side-link i {
  color: var(--mt-text-500);
}

.mt-blog .mt-blog-side .mt-blog-side-cta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(229,231,235,0.9);
}

.mt-blog .mt-blog-side .mt-blog-side-cta .mt-btn {
  width: 100%;
  justify-content: center;
}

/* GRID LIST */
.mt-blog .mt-blog-main .mt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mt-blog .mt-blog-main .mt-blog-item {
  min-width: 0;
}

.mt-blog .mt-blog-empty {
  grid-column: 1 / -1;
}

/* CATEGORIES PAGE */
.mt-blog .mt-cats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mt-blog .mt-cat-card {
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  padding: 16px 16px;
}

.mt-blog .mt-cat-card .mt-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mt-blog .mt-cat-card .mt-cat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.01em;
}

.mt-blog .mt-cat-card .mt-cat-sub {
  margin-top: 10px;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.7;
}

.mt-blog .mt-cat-card .mt-cat-posts {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.mt-blog .mt-cat-card .mt-cat-btn {
  height: 40px;
  padding: 0 14px;
}

/* ARTICLE */
.mt-article {
  padding: clamp(44px, 6vw, 84px) 0;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(79,184,255,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mt-article .mt-article-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--mt-text-500);
  font-size: 13px;
  font-weight: 600;
}

.mt-article .mt-article-breadcrumb .mt-article-breadcrumb-link {
  color: var(--mt-text-600);
  text-decoration: none;
}

.mt-article .mt-article-breadcrumb .mt-article-breadcrumb-link:hover {
  color: var(--mt-text-900);
  text-decoration: underline;
}

.mt-article .mt-article-hero {
  margin-top: 14px;
}

.mt-article .mt-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.mt-article .mt-article-meta .mt-article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mt-article .mt-article-meta .mt-article-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.9);
  background: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-700);
}

.mt-article .mt-article-meta .mt-article-tag:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--mt-text-900);
}

.mt-article .mt-article-meta .mt-article-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mt-text-500);
  font-size: 13px;
  font-weight: 600;
}

.mt-article .mt-article-title {
  margin: 12px 0 0 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.10;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--mt-text-900);
  max-width: 24ch;
}

.mt-article .mt-article-cover {
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--mt-shadow-md);
}

.mt-article .mt-article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* ARTICLE LAYOUT */
.mt-article .mt-article-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items: start;
}

.mt-article .mt-article-card {
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  padding: 18px 18px;
}

.mt-article .mt-article-card .mt-article-content {
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.9;
}

.mt-article .mt-article-card .mt-article-content h2 {
  margin: 18px 0 10px 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-article .mt-article-card .mt-article-content h3 {
  margin: 16px 0 8px 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-article .mt-article-card .mt-article-content a {
  color: var(--mt-brand-700);
  font-weight: 700;
  text-decoration: none;
}

.mt-article .mt-article-card .mt-article-content a:hover {
  text-decoration: underline;
}

.mt-article .mt-article-card .mt-article-divider {
  height: 1px;
  background: rgba(229,231,235,0.9);
  margin: 18px 0;
}

.mt-article .mt-article-card .mt-article-cta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(79,184,255,0.20);
  background: rgba(79,184,255,0.10);
}

.mt-article .mt-article-card .mt-article-cta .mt-article-cta-title {
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.01em;
}

.mt-article .mt-article-card .mt-article-cta .mt-article-cta-sub {
  margin-top: 4px;
  color: var(--mt-text-700);
  font-size: 13px;
  line-height: 1.6;
}

.mt-article .mt-article-side .mt-article-side-card {
  position: sticky;
  top: 88px;
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  padding: 14px 14px;
}

.mt-article .mt-article-side .mt-article-side-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text-900);
  margin-bottom: 10px;
}

.mt-article .mt-article-side .mt-article-side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,0.85);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-decoration: none;
  color: var(--mt-text-700);
  font-weight: 700;
  font-size: 14px;
}

.mt-article .mt-article-side .mt-article-side-link:hover {
  background: rgba(2, 6, 23, 0.04);
  color: var(--mt-text-900);
}

/* RELATED */
.mt-article .mt-related {
  margin-top: 18px;
}

.mt-article .mt-related .mt-related-head {
  margin-bottom: 10px;
}

.mt-article .mt-related .mt-related-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--mt-text-900);
  letter-spacing: -0.02em;
}

.mt-article .mt-related .mt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mt-blog .mt-blog-layout {
    grid-template-columns: 1fr;
  }

  .mt-blog .mt-blog-side .mt-blog-side-card {
    position: relative;
    top: auto;
  }

  .mt-blog .mt-blog-main .mt-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mt-blog .mt-cats-grid {
    grid-template-columns: 1fr;
  }

  .mt-article .mt-article-layout {
    grid-template-columns: 1fr;
  }

  .mt-article .mt-article-side .mt-article-side-card {
    position: relative;
    top: auto;
  }

  .mt-article .mt-related .mt-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mt-blog .mt-blog-head {
    text-align: left;
  }

  .mt-blog .mt-blog-search {
    justify-content: flex-start;
  }

  .mt-blog .mt-blog-search .mt-blog-search-inner {
    grid-template-columns: 42px 1fr;
  }

  .mt-blog .mt-blog-search .mt-blog-search-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mt-blog .mt-blog-main .mt-blog-grid {
    grid-template-columns: 1fr;
  }

  .mt-article .mt-article-title {
    max-width: none;
  }

  .mt-article .mt-related .mt-related-grid {
    grid-template-columns: 1fr;
  }
}


.mt-post-card {
  border-radius: 22px;
  border: 1px solid var(--mt-border);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--mt-shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mt-post-card .mt-post-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.mt-post-card .mt-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .28s ease;
}

.mt-post-card .mt-post-media .mt-post-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(700px 260px at 20% 10%, rgba(79,184,255,0.20), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.mt-post-card .mt-post-media .mt-post-shine {
  position: absolute;
  inset: -60% -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 55%);
  transform: translate3d(0,0,0);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.mt-post-card .mt-post-body {
  padding: 14px 14px 16px 14px;
  display: grid;
  gap: 10px;
}

.mt-post-card .mt-post-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-post-card .mt-post-title .mt-post-title-link {
  color: inherit;
  text-decoration: none;
}

.mt-post-card .mt-post-title .mt-post-title-link:hover {
  text-decoration: underline;
}

.mt-post-card .mt-post-text {
  margin: 0;
  color: var(--mt-text-700);
  font-size: 14px;
  line-height: 1.7;
}

.mt-post-card .mt-post-foot {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mt-post-card .mt-post-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mt-brand-700);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.mt-post-card .mt-post-link i {
  transition: transform .18s ease;
}

/* Hover */
.mt-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mt-shadow-md);
  border-color: rgba(79,184,255,0.30);
}

.mt-post-card:hover .mt-post-media img {
  transform: scale(1.05);
}

.mt-post-card:hover .mt-post-media .mt-post-shine {
  opacity: 1;
}

.mt-post-card:hover .mt-post-link i {
  transform: translateX(2px);
}

/* Mobile */
@media (max-width: 560px) {
  .mt-post-card .mt-post-body {
    padding: 12px 12px 14px 12px;
  }

  .mt-post-card .mt-post-text {
    font-size: 14px;
  }
}

/* Auth Pages */
.mt-auth {
  padding: clamp(32px, 5vw, 72px) 0;
}

.mt-auth .mt-auth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 560px);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.mt-auth .mt-auth-aside,
.mt-auth .mt-auth-card {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-shadow-sm);
}

.mt-auth .mt-auth-aside {
  padding: clamp(22px, 3vw, 34px);
}

.mt-auth .mt-auth-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf6ff;
  color: var(--mt-brand-700);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.mt-auth .mt-auth-title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color: var(--mt-text-900);
  line-height: 1.14;
}

.mt-auth .mt-auth-subtitle {
  margin: 0;
  color: var(--mt-text-700);
}

.mt-auth .mt-auth-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mt-auth .mt-auth-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mt-text-700);
}

.mt-auth .mt-auth-points i {
  color: var(--mt-brand-600);
}

.mt-auth .mt-auth-card {
  padding: clamp(22px, 3vw, 34px);
}

.mt-auth .mt-auth-card-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  color: var(--mt-text-900);
}

.mt-auth .mt-auth-card-subtitle {
  margin: 0 0 16px;
  color: var(--mt-text-700);
}

.mt-auth .mt-auth-form .form-label {
  font-weight: 600;
  color: var(--mt-text-900);
}

.mt-auth .mt-auth-form .form-control {
  border-radius: 12px;
  border-color: var(--mt-border);
  min-height: 44px;
}

.mt-auth .mt-auth-form .form-control:focus {
  border-color: var(--mt-brand-600);
  box-shadow: 0 0 0 3px rgba(58, 162, 236, 0.18);
}

.mt-auth .mt-auth-captcha {
  margin: 12px 0;
}

.mt-auth .mt-auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 14px;
}

.mt-auth .mt-auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.mt-auth .mt-auth-foot {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.mt-auth .mt-auth-foot p {
  margin: 0;
  color: var(--mt-text-700);
}

@media (max-width: 992px) {
  .mt-auth .mt-auth-grid {
    grid-template-columns: 1fr;
  }
}


.mt-videos {
  padding: var(--mt-section-space) 0;
  background: #fff;
}

.mt-videos .mt-videos-head {
  max-width: 860px;
  margin: 0 auto 34px auto;
  text-align: center;
}

.mt-videos .mt-videos-head .mt-videos-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mt-text-900);
  font-weight: 700;
}

.mt-videos .mt-videos-head .mt-videos-subtitle {
  margin-top: 12px;
  color: var(--mt-text-700);
  font-size: 15px;
  line-height: 1.75;
}

.mt-videos .mt-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mt-videos .mt-videos-grid .mt-video-card {
  border: 1px solid var(--mt-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--mt-shadow-sm);
  padding: 18px 18px;
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-top .mt-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,184,255,0.12);
  border: 1px solid rgba(79,184,255,0.20);
  color: var(--mt-brand-700);
  font-size: 13px;
  font-weight: 600;
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-top .mt-video-time {
  font-size: 12px;
  color: var(--mt-text-500);
  font-weight: 600;
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-title {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--mt-text-900);
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mt-text-700);
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-embed {
  margin-top: 16px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.95);
  background: #0f172a;
}

.mt-videos .mt-videos-grid .mt-video-card .mt-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.mt-videos .mt-videos-note {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mt-text-500);
  font-size: 13px;
  line-height: 1.6;
  max-width: 920px;
}

.mt-videos .mt-videos-note i {
  margin-top: 2px;
}

/* responsive */
@media (max-width: 992px) {
  .mt-videos .mt-videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mt-videos .mt-videos-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .mt-videos .mt-videos-grid .mt-video-card {
    padding: 16px 14px;
  }
}

.mt-home-video{
  padding:80px 0;
}

 .mt-home-video .mt-home-video-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 40px;
}

.vimeo-video{
  width:100%;
  aspect-ratio:16/9;
  border:0;
}