.mt-page { font-family: 'Nunito', 'Segoe UI', sans-serif; }

/* ── HERO BANNER ── */
.mt-hero {
    background: linear-gradient(135deg, #0f1a2e 0%, #1B2A4A 50%, #1a3a5e 100%);
    padding: 58px 20px 50px;
    position: relative; overflow: hidden;
}
.mt-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 8% 55%, rgba(41,171,226,0.16) 0%, transparent 45%),
        radial-gradient(circle at 88% 20%, rgba(58,170,53,0.10) 0%, transparent 38%),
        radial-gradient(circle at 55% 95%, rgba(247,168,0,0.08) 0%, transparent 35%);
    pointer-events: none;
}
.mt-hero::after {
    content: '';
    position: absolute;
    width: 480px; height: 480px; border-radius: 50%;
    border: 48px solid rgba(41,171,226,0.055);
    top: -180px; right: -120px; pointer-events: none;
}

.mt-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 48px;
    position: relative;
}

.mt-hero-text {}
.mt-hero-text .mt-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(41,171,226,0.18);
    border: 1px solid rgba(41,171,226,0.35);
    color: #29ABE2; font-size: 12px; font-weight: 800;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 18px;
}
.mt-hero-text h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900; color: #fff;
    margin: 0 0 16px; line-height: 1.15;
}
.mt-hero-text h1 span { color: #29ABE2; }
.mt-hero-text p {
    font-size: 15px; color: rgba(255,255,255,0.65);
    line-height: 1.75; margin: 0 0 28px;
    max-width: 480px;
}

.mt-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.mt-btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 50px;
    background: linear-gradient(135deg, #29ABE2, #1a8fc0);
    border: none; color: #fff;
    font-size: 14px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 22px rgba(41,171,226,0.40);
    transition: all .25s;
}
.mt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(41,171,226,0.52); color:#fff; text-decoration:none; }
.mt-btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
    font-size: 14px; font-weight: 800; font-family: inherit;
    cursor: pointer; text-decoration: none;
    transition: all .25s;
}
.mt-btn-outline:hover { border-color: #29ABE2; color: #29ABE2; text-decoration:none; }

/* hero image card */
.mt-hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(41,171,226,0.20);
    border-radius: 24px; padding: 32px;
    backdrop-filter: blur(12px);
}
.mt-hero-card .hc-title {
    color: rgba(255,255,255,0.50);
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 20px;
}
.mt-stat-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 20px;
}
.mt-stat {
    background: rgba(255,255,255,0.06);
    border-radius: 14px; padding: 18px 16px; text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.mt-stat-num {
    font-size: 26px; font-weight: 900; line-height: 1;
    margin-bottom: 5px;
}
.mt-stat-num.c-blue  { color: #29ABE2; }
.mt-stat-num.c-green { color: #3AAA35; }
.mt-stat-num.c-gold  { color: #F7A800; }
.mt-stat-num.c-white { color: #fff; }
.mt-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; }

.mt-transfer-demo {
    background: rgba(41,171,226,0.10);
    border: 1px solid rgba(41,171,226,0.25);
    border-radius: 14px; padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mt-transfer-demo .td-from,
.mt-transfer-demo .td-to {
    text-align: center; flex: 1;
}
.mt-transfer-demo .td-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; margin: 0 auto 6px;
}
.td-from .td-icon { background: rgba(58,170,53,0.20); color: #3AAA35; }
.td-to   .td-icon { background: rgba(247,168,0,0.20); color: #F7A800; }
.mt-transfer-demo .td-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing:.8px; font-weight:700; }
.mt-transfer-demo .td-val   { font-size: 13px; color: #fff; font-weight: 800; }
.mt-transfer-demo .td-arrow {
    font-size: 22px; color: #29ABE2;
    animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{transform:translateX(0);opacity:1} 50%{transform:translateX(5px);opacity:.6} }

/* ── BREADCRUMB ── */
.mt-breadcrumb {
    background: #f0f8fd; padding: 12px 20px;
    border-bottom: 1px solid #d8edf8;
}
.mt-breadcrumb .container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #7a9cbf; font-weight: 600;
}
.mt-breadcrumb a { color: #29ABE2; text-decoration: none; }
.mt-breadcrumb a:hover { text-decoration: underline; }
.mt-breadcrumb i { font-size: 11px; color: #aac4d8; }

/* ── INTRO SECTION ── */
.mt-intro {
    background: #fff; padding: 56px 20px;
}
.mt-intro .container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 56px; align-items: center;
}
.mt-intro-text .sec-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: #e8f7fe; color: #1a8fc0;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
    margin-bottom: 16px;
}
.mt-intro-text h2 {
    font-size: clamp(22px, 3vw, 36px); font-weight: 900;
    color: #1B2A4A; margin: 0 0 16px; line-height: 1.25;
}
.mt-intro-text h2 span { color: #29ABE2; }
.mt-intro-text p {
    font-size: 15px; color: #4a6080; line-height: 1.80;
    margin: 0 0 14px;
}
.mt-intro-text .mt-hl {
    width: 54px; height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, #29ABE2, #3AAA35);
    margin-bottom: 20px;
}

/* contact card inside intro */
.mt-contact-card {
    background: linear-gradient(135deg, #1B2A4A, #0f1a2e);
    border-radius: 22px; padding: 30px 28px;
    position: relative; overflow: hidden;
}
.mt-contact-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(41,171,226,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.mt-contact-card .cc-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.mt-contact-card .cc-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(41,171,226,0.20);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #29ABE2;
}
.mt-contact-card .cc-head h3 {
    color: #fff; font-size: 16px; font-weight: 800; margin: 0;
}
.mt-contact-card .cc-head p {
    color: rgba(255,255,255,0.50); font-size: 12px; margin: 0;
}

.mt-contact-item {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px; padding: 14px 16px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: background .2s;
}
.mt-contact-item:hover { background: rgba(41,171,226,0.15); text-decoration:none; }
.mt-contact-item .ci-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.ci-icon.mail  { background: rgba(58,170,53,0.20);  color: #3AAA35; }
.ci-icon.phone { background: rgba(247,168,0,0.20);  color: #F7A800; }
.mt-contact-item .ci-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:.8px; font-weight:700; }
.mt-contact-item .ci-val   { font-size: 14px; color: #fff; font-weight: 800; }

.mt-contact-card .cc-note {
    text-align: center; margin-top: 18px;
    font-size: 12px; color: rgba(255,255,255,0.35);
}
.mt-contact-card .cc-note span { color: #3AAA35; font-weight: 700; }

/* ── WHY CHOOSE SECTION ── */
.mt-why {
    background: #f0f8fd; padding: 60px 20px;
}
.mt-why .container { max-width: 1200px; margin: 0 auto; }

.mt-sec-head { text-align: center; margin-bottom: 44px; }
.mt-sec-head .sh-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
    margin-bottom: 14px;
}
.mt-sec-head h2 {
    font-size: clamp(22px, 3vw, 36px); font-weight: 900;
    color: #1B2A4A; margin: 0 0 10px;
}
.mt-sec-head h2 span { color: #29ABE2; }
.mt-sec-head p { font-size: 15px; color: #5a7a96; max-width: 560px; margin: 0 auto; }

/* WHY cards */
.mt-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media(max-width:900px){ .mt-why-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .mt-why-grid{ grid-template-columns: 1fr; } }

.mt-why-card {
    background: #fff; border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(27,42,74,0.08);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid transparent;
    position: relative; overflow: hidden;
}
.mt-why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 20px 20px 0 0;
}
.mt-why-card.c-blue::before  { background: linear-gradient(90deg, #29ABE2, #1a8fc0); }
.mt-why-card.c-green::before { background: linear-gradient(90deg, #3AAA35, #2d8829); }
.mt-why-card.c-gold::before  { background: linear-gradient(90deg, #F7A800, #c98e00); }
.mt-why-card.c-navy::before  { background: linear-gradient(90deg, #1B2A4A, #2e4070); }
.mt-why-card.c-teal::before  { background: linear-gradient(90deg, #0891B2, #0672a0); }
.mt-why-card.c-red::before   { background: linear-gradient(90deg, #E8392A, #c02d1f); }

.mt-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(27,42,74,0.13);
}
.mt-why-card .wc-icon {
    width: 54px; height: 54px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.mt-why-card.c-blue  .wc-icon { background: #e8f7fe; color: #29ABE2; }
.mt-why-card.c-green .wc-icon { background: #eaf7e9; color: #3AAA35; }
.mt-why-card.c-gold  .wc-icon { background: #fff8e1; color: #F7A800; }
.mt-why-card.c-navy  .wc-icon { background: #e8ecf5; color: #1B2A4A; }
.mt-why-card.c-teal  .wc-icon { background: #e0f4fa; color: #0891B2; }
.mt-why-card.c-red   .wc-icon { background: #fdecea; color: #E8392A; }

.mt-why-card h3 { font-size: 16px; font-weight: 800; color: #1B2A4A; margin: 0 0 8px; }
.mt-why-card p  { font-size: 13px; color: #6a84a0; line-height: 1.65; margin: 0; }

/* ── STATS SECTION ── */
.mt-stats {
    background: linear-gradient(135deg, #1B2A4A, #0f1a2e);
    padding: 56px 20px;
    position: relative; overflow: hidden;
}
.mt-stats::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(41,171,226,0.14) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(58,170,53,0.10) 0%, transparent 40%);
    pointer-events: none;
}
.mt-stats .container {
    max-width: 1200px; margin: 0 auto;
    position: relative;
}
.mt-stats .mt-sec-head h2 { color: #fff; }
.mt-stats .mt-sec-head p  { color: rgba(255,255,255,0.55); }
.mt-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media(max-width:900px){ .mt-stats-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .mt-stats-grid{ grid-template-columns:1fr 1fr; } }

.mt-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px; padding: 28px 20px; text-align: center;
    transition: background .3s;
}
.mt-stat-card:hover { background: rgba(41,171,226,0.15); }
.mt-stat-card .sc-num {
    font-size: 34px; font-weight: 900; line-height: 1;
    margin-bottom: 8px;
}
.mt-stat-card .sc-num.c-blue  { color: #29ABE2; }
.mt-stat-card .sc-num.c-green { color: #3AAA35; }
.mt-stat-card .sc-num.c-gold  { color: #F7A800; }
.mt-stat-card .sc-num.c-white { color: #fff; }
.mt-stat-card .sc-lbl { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; }
.mt-stat-card .sc-icon {
    font-size: 28px; margin-bottom: 12px; display: block;
}

/* ── WHO CAN USE SECTION ── */
.mt-who {
    background: #fff; padding: 60px 20px;
}
.mt-who .container { max-width: 1200px; margin: 0 auto; }
.mt-who-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 18px; margin-top: 36px;
}
@media(max-width:900px){ .mt-who-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:560px){ .mt-who-grid{ grid-template-columns:repeat(2,1fr); } }

.mt-who-card {
    text-align: center; padding: 26px 14px;
    background: #f7fbfe;
    border-radius: 18px;
    border: 2px solid #e0eff8;
    transition: all .28s;
}
.mt-who-card:hover {
    background: #29ABE2; border-color: #29ABE2;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(41,171,226,0.30);
}
.mt-who-card .wh-icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: #e8f7fe; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #29ABE2;
    transition: all .28s;
}
.mt-who-card:hover .wh-icon { background: rgba(255,255,255,0.25); color: #fff; }
.mt-who-card h4 { font-size: 13px; font-weight: 800; color: #1B2A4A; margin: 0; transition: color .28s; }
.mt-who-card:hover h4 { color: #fff; }

/* ── HOW IT WORKS ── */
.mt-how {
    background: #f0f8fd; padding: 60px 20px;
}
.mt-how .container { max-width: 1000px; margin: 0 auto; }
.mt-steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; position: relative; margin-top: 40px;
}
.mt-steps::before {
    content: '';
    position: absolute; top: 30px; left: 12%; right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #29ABE2, #3AAA35, #F7A800, #1B2A4A);
    border-radius: 2px; z-index: 0;
}
@media(max-width:700px){
    .mt-steps { grid-template-columns:repeat(2,1fr); }
    .mt-steps::before { display:none; }
}

.mt-step {
    text-align: center; padding: 0 12px;
    position: relative; z-index: 1;
}
.mt-step .step-circle {
    width: 60px; height: 60px; border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; font-weight: 900;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
}
.mt-step:nth-child(1) .step-circle { background: linear-gradient(135deg,#29ABE2,#1a8fc0); }
.mt-step:nth-child(2) .step-circle { background: linear-gradient(135deg,#3AAA35,#2d8829); }
.mt-step:nth-child(3) .step-circle { background: linear-gradient(135deg,#F7A800,#c98e00); }
.mt-step:nth-child(4) .step-circle { background: linear-gradient(135deg,#1B2A4A,#2e4070); }

.mt-step h4 { font-size: 14px; font-weight: 800; color: #1B2A4A; margin: 0 0 6px; }
.mt-step p  { font-size: 12px; color: #6a84a0; line-height: 1.55; margin: 0; }

/* ── FEATURES LIST SECTION ── */
.mt-features {
    background: #fff; padding: 60px 20px;
}
.mt-features .container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: start;
}
@media(max-width:768px){ .mt-features .container{ grid-template-columns:1fr; } }

.mt-feat-list h3 {
    font-size: 20px; font-weight: 900; color: #1B2A4A; margin: 0 0 22px;
    padding-bottom: 12px; border-bottom: 3px solid #29ABE2;
    display: inline-block;
}
.mt-feat-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid #eef4f9;
}
.mt-feat-item:last-child { border-bottom: none; }
.mt-feat-item .fi-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.fi-icon.blue  { background: #e8f7fe; color: #29ABE2; }
.fi-icon.green { background: #eaf7e9; color: #3AAA35; }
.fi-icon.gold  { background: #fff8e1; color: #F7A800; }
.fi-icon.navy  { background: #e8ecf5; color: #1B2A4A; }

.mt-feat-item .fi-text h4 { font-size: 14px; font-weight: 800; color: #1B2A4A; margin: 0 0 4px; }
.mt-feat-item .fi-text p  { font-size: 13px; color: #6a84a0; margin: 0; line-height: 1.55; }

/* ── CTA SECTION ── */
.mt-cta {
    background: linear-gradient(135deg, #1B2A4A, #0f1a2e);
    padding: 64px 20px; text-align: center;
    position: relative; overflow: hidden;
}
.mt-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(41,171,226,0.14) 0%, transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(247,168,0,0.10) 0%, transparent 40%);
    pointer-events: none;
}
.mt-cta .container { max-width: 680px; margin: 0 auto; position: relative; }
.mt-cta .cta-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(41,171,226,0.18);
    border: 2px solid rgba(41,171,226,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #29ABE2;
    margin: 0 auto 22px;
}
.mt-cta h2 { font-size: clamp(22px,3vw,36px); font-weight: 900; color: #fff; margin: 0 0 14px; }
.mt-cta h2 span { color: #29ABE2; }
.mt-cta p  { font-size: 15px; color: rgba(255,255,255,0.58); margin: 0 0 30px; line-height: 1.70; }
.mt-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* responsive */
@media(max-width:768px){
    .mt-hero-inner { grid-template-columns:1fr; gap:32px; }
    .mt-hero-card  { display:none; }
    .mt-intro .container { grid-template-columns:1fr; }
    .mt-stats-grid { grid-template-columns:repeat(2,1fr); }
    .mt-who-grid   { grid-template-columns:repeat(2,1fr); }
    .mt-steps      { grid-template-columns:repeat(2,1fr); }
}