/* ==========================================
   HK Money – Landing Page Stylesheet
   RTL | Hebrew | Figma-faithful design
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Karantina:wght@400;700&family=Rubik:wght@400;500;600;700&display=swap');

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

:root {
  --navy:    #0c4068;
  --blue:    #39abe2;
  --salmon:  #e48375;
  --salmon-h:#d4705f;
  --white:   #ffffff;
  --off:     #eef4f9;
  --text:    #333344;
  --muted:   #6b7c8d;
  --border:  #d8e8f2;
  --hdr-h:   64px;
  --font:    'Heebo', sans-serif;
  --max-w:   1200px;
}

html { direction: rtl; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.mn-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.mn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 50px;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s ease;
  white-space: nowrap; text-align: center;
}
.mn-btn--salmon  { background: var(--salmon);  color: var(--white); }
.mn-btn--salmon:hover { background: var(--salmon-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(228,131,117,.35); }
.mn-btn--navy    { background: var(--navy);    color: var(--white); }
.mn-btn--navy:hover { opacity: .88; transform: translateY(-2px); }
.mn-btn--full    { width: 100%; }

/* ── INPUTS ── */
.mn-input {
  width: 100%; padding: 13px 18px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font); font-size: .95rem;
  color: var(--text); background: var(--white); outline: none; transition: border-color .2s;
}
.mn-input:focus { border-color: var(--blue); }
.mn-input--white { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: var(--white); }
.mn-input--white::placeholder { color: rgba(255,255,255,.6); }
.mn-input--white:focus { border-color: rgba(255,255,255,.7); }
.mn-textarea { resize: vertical; min-height: 110px; }

/* ── SHARED SECTION TITLES ── */
.mn-section-title {
  font-family: var(--font); font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800; color: var(--navy); line-height: 1.3;
}
.mn-section-title--center { text-align: center; }
.mn-section-title--white  { color: var(--white); }

.mn-accent-salmon { color: var(--salmon); }
.mn-accent-blue   { color: var(--blue); }


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.mn-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--hdr-h); background: var(--white); z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(12,64,104,.08);
}
.mn-header .mn-wrap { height: 100%; }

.mn-nav {
  display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px;
}

.mn-logo {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  direction: ltr;
}
.mn-logo__icon { width: 44px; height: auto; }
.mn-logo__text {
  font-family: 'Rubik', sans-serif; font-size: 1.55rem; font-weight: 400;
  color: var(--navy); letter-spacing: -.01em; line-height: 1;
}

.mn-nav__links {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.mn-nav__links a {
  font-size: .88rem; font-weight: 500; color: var(--navy);
  transition: color .2s; white-space: nowrap;
  position: relative;
}
.mn-nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform .2s;
}
.mn-nav__links a:hover { color: var(--blue); }
.mn-nav__links a:hover::after { transform: scaleX(1); }

.mn-nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mn-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }


/* ══════════════════════════════════════════
   HERO  (faithfully from Figma 2091-1032)
══════════════════════════════════════════ */
.mn-hero {
  position: relative;
  overflow: hidden;
  background: #fffefe;
  padding-top: var(--hdr-h);
  min-height: clamp(600px, 68vw, 900px);
  display: flex;
  flex-direction: column;
}

/* Background building photo – mirrored horizontally, 33% opacity */
.mn-hero__bg-wrap {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.mn-hero__bg-img {
  position: absolute;
  width: 126%; height: 126%;
  top: -13%; left: -13%;
  object-fit: cover;
  transform: scaleX(-1);
  opacity: .33;
}

/* White fade at bottom */
.mn-hero__white-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 34%; background: linear-gradient(to top, #fffefe 50%, transparent);
  pointer-events: none; z-index: 1;
}

.mn-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(24px,3vw,50px) 32px 0;
  max-width: 1680px; margin: 0 auto; width: 100%;
  flex: 1;
}

/* Logo block */
.mn-hero__logo-block {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: clamp(12px, 1.8vw, 28px);
  gap: 2px;
}

.mn-hero__presenting {
  display: flex; align-items: baseline; gap: 6px;
  align-self: flex-end;
  direction: rtl;
}
.mn-hero__presenting-text {
  font-family: 'Rubik', sans-serif; font-size: clamp(.7rem, 1.1vw, 1.05rem);
  font-weight: 500; color: var(--navy);
}
.mn-hero__presenting-brand {
  font-family: 'Rubik', sans-serif; font-size: clamp(.7rem, 1.1vw, 1.05rem);
  font-weight: 500; color: var(--navy);
}

.mn-hero__logo-main {
  display: flex; align-items: center;
}
.mn-hero__logo-img {
  height: clamp(36px, 5.5vw, 80px); width: auto;
}

/* Headline */
.mn-hero__headline {
  font-family: 'Karantina', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 4.8rem);
  font-weight: 400; color: var(--navy);
  text-align: center; line-height: 1.05;
  letter-spacing: -.01em;
  width: 100%;
  margin-bottom: clamp(16px, 2.5vw, 36px);
  overflow-wrap: break-word;
}
.mn-hero__accent { color: var(--salmon); }

/* Images row — proportions from Figma (chat left 0–55%, man right 49–100%) */
.mn-hero__images {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: clamp(200px, 28vw, 450px);
  overflow: hidden;
}

.mn-hero__chat-wrap {
  position: absolute; z-index: 2;
  left: 0; bottom: 0;
  width: 57%;
  box-shadow: -30px 20px 58px rgba(12,64,104,.16);
  border-radius: 12px 12px 0 0; overflow: hidden;
}

/* HTML Chat */
.mn-chat {
  background: #ece5dd;
  font-family: var(--font);
  direction: rtl;
}
.mn-chat__header {
  display: flex; align-items: center; gap: 10px;
  background: #075e54; padding: clamp(8px,1.2vw,14px) clamp(12px,1.8vw,20px);
}
.mn-chat__avatar {
  width: clamp(28px,3.5vw,42px); height: clamp(28px,3.5vw,42px);
  border-radius: 50%; object-fit: cover; background: #fff;
}
.mn-chat__header-info { display: flex; flex-direction: column; }
.mn-chat__name {
  font-size: clamp(.7rem,1vw,.9rem); font-weight: 700; color: #fff; line-height: 1.2;
}
.mn-chat__status {
  font-size: clamp(.55rem,.8vw,.72rem); color: rgba(255,255,255,.75);
}
.mn-chat__body {
  padding: clamp(10px,1.5vw,20px) clamp(8px,1.2vw,16px);
  display: flex; flex-direction: column; gap: clamp(6px,1vw,12px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Crect width='400' height='400' fill='%23ddd5c8'/%3E%3C/svg%3E");
}
.mn-chat__bubble {
  position: relative;
  max-width: 88%;
  padding: clamp(6px,1vw,10px) clamp(8px,1.2vw,14px) clamp(18px,2.5vw,28px);
  border-radius: 8px;
  font-size: clamp(.65rem,.95vw,.85rem);
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.mn-chat__bubble--out {
  background: #dcf8c6; align-self: flex-start;
  border-radius: 8px 0 8px 8px;
}
.mn-chat__bubble--in {
  background: #fff; align-self: flex-end;
  border-radius: 0 8px 8px 8px;
}
.mn-chat__time {
  position: absolute; bottom: 4px; left: 8px;
  font-size: clamp(.5rem,.65vw,.6rem); color: rgba(0,0,0,.4);
  white-space: nowrap;
}

.mn-hero__man-wrap {
  position: absolute; z-index: 3;
  right: 0; bottom: 0;
  width: 52%;
  height: 115%;
}
.mn-hero__man-img {
  width: 100%; height: 100%; display: block;
  object-fit: contain; object-position: bottom center;
}


/* ══════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════ */
.mn-lead {
  position: relative; overflow: hidden;
  padding: 60px 0;
}
.mn-lead__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0b3a5e 0%, #1a6194 60%, #2176ae 100%);
  z-index: 0;
}
.mn-lead__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.mn-lead__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--white); line-height: 1.25;
}
.mn-lead__accent { color: var(--salmon); }
.mn-lead__sub { color: rgba(255,255,255,.75); font-size: 1rem; margin-top: 10px; }

.mn-lead__form {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 32px; border: 1px solid rgba(255,255,255,.15);
}
.mn-lead__form .mn-input {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: var(--white);
}
.mn-lead__form .mn-input::placeholder { color: rgba(255,255,255,.6); }
.mn-lead__form .mn-input:focus { border-color: rgba(255,255,255,.6); }


/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.mn-why { padding: 80px 0; background: var(--white); }
.mn-why__header { margin-bottom: 32px; }
.mn-why .mn-section-title { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.mn-why__body { max-width: 820px; }
.mn-why__text { color: var(--text); font-size: 1.02rem; line-height: 1.85; margin-bottom: 16px; }
.mn-why__body .mn-btn { margin-top: 12px; }


/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.mn-features { padding: 80px 0; background: var(--white); }
.mn-features__header { text-align: center; margin-bottom: 48px; }
.mn-features__logo-inline {
  display: inline-flex; align-items: center; gap: 6px;
  vertical-align: middle;
}
.mn-features__logo-inline svg { width: 48px; height: auto; }
.mn-features__logo-inline { font-family: 'Rubik', sans-serif; font-size: inherit; font-weight: 400; }
.mn-features__subtitle { color: var(--muted); font-size: 1rem; margin-top: 10px; }

.mn-features__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.mn-feature-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  text-align: center; border: 1px solid var(--border);
  transition: all .3s;
}
.mn-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(57,171,226,.18);
  border-color: var(--blue);
}
.mn-feature-card__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-size: 1.25rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.mn-feature-card__title {
  font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.mn-feature-card__text { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.mn-features__cta { text-align: center; margin-top: 40px; }


/* ══════════════════════════════════════════
   VIDEO
══════════════════════════════════════════ */
.mn-video { position: relative; overflow: hidden; padding: 70px 0; }
.mn-video__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #1a7fb5 100%);
}
.mn-video__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.mn-video__title {
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700;
  color: var(--white); line-height: 1.5;
}
.mn-video__subtitle { color: rgba(255,255,255,.9); font-size: 1rem; margin: 16px 0 24px; }
.mn-video__player { display: flex; justify-content: center; }
.mn-video__thumb {
  width: 100%; max-width: 440px; aspect-ratio: 16/9;
  background: rgba(0,0,0,.25); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 2px solid rgba(255,255,255,.25);
  transition: transform .2s;
}
.mn-video__thumb:hover { transform: scale(1.02); }
.mn-video__play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}


/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.mn-how { padding: 80px 0; background: var(--white); }
.mn-how .mn-section-title { margin-bottom: 52px; }

.mn-how__circles {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; margin-bottom: 60px;
}
.mn-how__item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mn-how__circle {
  border-radius: 50%; background: linear-gradient(135deg, var(--blue), #1a7fb5);
  color: var(--white); font-weight: 700; text-align: center;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  line-height: 1.4;
}
.mn-how__circle--lg  { width: 220px; height: 220px; font-size: 1rem; }
.mn-how__circle--md  { width: 180px; height: 180px; font-size: .9rem; }
.mn-how__circle--sm  { width: 148px; height: 148px; font-size: .85rem; }

.mn-how__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--salmon); color: var(--white);
  font-size: .9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: -12px; position: relative; z-index: 1;
}
.mn-how__cta-wrap { text-align: center; max-width: 600px; margin: 0 auto; }
.mn-how__cta-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.mn-how__cta-sub { color: var(--muted); margin-bottom: 24px; }


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.mn-testimonials {
  padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, #0b3a5e 0%, #1a6194 100%);
}
.mn-testimonials .mn-section-title { margin-bottom: 10px; }
.mn-testimonials__sub { color: rgba(255,255,255,.7); text-align: center; margin-bottom: 40px; }

.mn-testimonials__track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 8px;
  scroll-behavior: smooth;
}
.mn-testimonials__track::-webkit-scrollbar { display: none; }

.mn-testimonial-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
  padding: 28px; min-width: 300px; flex: 0 0 300px;
  scroll-snap-align: start;
}
.mn-testimonial-card__img-wrap { margin-bottom: 16px; }
.mn-testimonial-card__img-placeholder {
  width: 100%; height: 180px; border-radius: 10px;
  background: rgba(255,255,255,.1);
}
.mn-testimonial-card__stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 10px; }
.mn-testimonial-card__name { font-weight: 800; color: var(--white); font-size: 1rem; }
.mn-testimonial-card__role { color: var(--blue); font-size: .85rem; margin-bottom: 12px; }
.mn-testimonial-card__quote { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.7; }

.mn-testimonials__nav {
  display: flex; justify-content: center; gap: 16px; margin-top: 28px;
}
.mn-testimonials__arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mn-testimonials__arrow:hover { background: rgba(255,255,255,.3); }


/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.mn-whyus { position: relative; overflow: hidden; padding: 80px 0; }
.mn-whyus__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0c4068 0%, #155e8e 100%);
}
.mn-whyus__inner { position: relative; z-index: 1; }
.mn-whyus__text { max-width: 700px; }
.mn-whyus__body { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.85; margin-bottom: 16px; }
.mn-whyus__form { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; max-width: 420px; }


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.mn-faq { padding: 80px 0; background: var(--off); }
.mn-faq .mn-section-title { text-align: center; margin-bottom: 48px; }
.mn-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.mn-faq__item {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.mn-faq__q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  color: var(--navy); text-align: right;
}
.mn-faq__arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue); transition: transform .3s; }
.mn-faq__item.open .mn-faq__arrow { transform: rotate(180deg); }
.mn-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mn-faq__item.open .mn-faq__a { max-height: 300px; }
.mn-faq__a p { padding: 0 24px 20px; color: var(--muted); font-size: .95rem; line-height: 1.8; }


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.mn-about { position: relative; padding: 80px 0; background: var(--white); overflow: hidden; }
.mn-about__bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(57,171,226,.03) 60px, rgba(57,171,226,.03) 61px);
}
.mn-about__header { text-align: center; margin-bottom: 56px; }
.mn-about__intro { color: var(--muted); font-size: 1rem; margin-top: 12px; }
.mn-about__team { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.mn-team-card {
  display: flex; gap: 28px; align-items: flex-start;
  background: var(--off); border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
}
.mn-team-card--reverse { flex-direction: row-reverse; }
.mn-team-card__photo {
  width: 130px; height: 150px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #1a7fb5);
}
.mn-team-card__name { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.mn-team-card__role { font-size: .85rem; font-weight: 600; color: var(--blue); margin-bottom: 14px; }
.mn-team-card__bio { font-size: .9rem; color: var(--muted); line-height: 1.8; }


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.mn-contact { padding: 80px 0; background: var(--white); }
.mn-contact .mn-section-title { margin-bottom: 12px; }
.mn-contact__sub { text-align: center; color: var(--muted); margin-bottom: 36px; }
.mn-contact__form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.mn-footer {
  background: var(--navy); padding: 32px 0;
}
.mn-footer__inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.mn-logo--footer .mn-logo__text { color: var(--white); }
.mn-footer__social { display: flex; gap: 12px; }
.mn-social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mn-social-btn svg { width: 18px; height: 18px; }
.mn-social-btn:hover { background: var(--blue); }
.mn-footer__copy { color: rgba(255,255,255,.45); font-size: .82rem; }


/* ══════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mn-features__grid { grid-template-columns: repeat(3, 1fr); }
  .mn-lead__inner    { grid-template-columns: 1fr; gap: 32px; }
  .mn-video__inner   { grid-template-columns: 1fr; }
  .mn-about__team    { grid-template-columns: 1fr; }
  .mn-team-card--reverse { flex-direction: row; }

  .mn-hero__images { max-width: 900px; }
}


/* ══════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 768px)
   Faithfully from Figma mobile 2100-4614
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --hdr-h: 52px; }
  .mn-wrap { padding: 0 20px; }

  /* Header */
  .mn-nav__links { display: none; flex-direction: column; gap: 0; }
  .mn-nav__links.open {
    display: flex; position: absolute; top: var(--hdr-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .mn-nav__links.open li { border-bottom: 1px solid var(--border); }
  .mn-nav__links.open a { display: block; padding: 14px 0; font-size: 1rem; }
  .mn-nav__toggle { display: flex; }

  /* Hero – mobile Figma layout */
  .mn-hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .mn-hero__inner { padding: 24px 20px 0; }

  .mn-hero__logo-block { margin-bottom: 20px; }
  .mn-hero__presenting { align-self: flex-end; }
  .mn-hero__presenting-text,
  .mn-hero__presenting-brand { font-size: .9rem; }

  .mn-hero__hk-svg  { width: clamp(50px, 16vw, 90px); }
  .mn-hero__money-text { font-size: clamp(2rem, 12vw, 3.8rem); }

  .mn-hero__headline {
    font-size: clamp(1.6rem, 8.5vw, 3rem);
    margin-bottom: 0;
    padding: 0 4px;
  }
  .mn-hero__br { display: none; }

  /* Mobile images: chat on top, man below – stacked */
  .mn-hero__images {
    flex-direction: column; align-items: center;
    gap: 0; margin-top: 24px;
    width: calc(100% + 40px); margin-left: -20px; margin-right: -20px;
  }
  .mn-hero__chat-wrap {
    width: 97%; margin-left: 0;
    box-shadow: 0 8px 32px rgba(12,64,104,.14);
    border-radius: 8px 8px 0 0;
  }
  .mn-hero__man-wrap {
    width: 86%; align-self: center;
  }

  /* Lead form */
  .mn-lead { padding: 40px 0; }
  .mn-lead__inner { grid-template-columns: 1fr; gap: 24px; }
  .mn-lead__form { padding: 24px 20px; }

  /* Why */
  .mn-why { padding: 52px 0; }

  /* Features */
  .mn-features { padding: 52px 0; }
  .mn-features__grid { grid-template-columns: 1fr; gap: 14px; }
  .mn-feature-card { padding: 24px 20px; display: flex; gap: 16px; text-align: right; align-items: flex-start; }
  .mn-feature-card__num { margin: 0; flex-shrink: 0; }

  /* Video */
  .mn-video { padding: 52px 0; }
  .mn-video__inner { grid-template-columns: 1fr; gap: 28px; }

  /* How it works */
  .mn-how { padding: 52px 0; }
  .mn-how__circles { gap: 16px; }
  .mn-how__circle--lg { width: 160px; height: 160px; font-size: .85rem; }
  .mn-how__circle--md { width: 140px; height: 140px; font-size: .82rem; }
  .mn-how__circle--sm { width: 118px; height: 118px; font-size: .8rem; }

  /* Testimonials */
  .mn-testimonials { padding: 52px 0; }
  .mn-testimonial-card { min-width: 280px; flex: 0 0 280px; }

  /* Why us */
  .mn-whyus { padding: 52px 0; }
  .mn-whyus__form { max-width: 100%; }

  /* FAQ */
  .mn-faq { padding: 52px 0; }

  /* About */
  .mn-about { padding: 52px 0; }
  .mn-about__team { grid-template-columns: 1fr; }
  .mn-team-card { flex-direction: column; }
  .mn-team-card--reverse { flex-direction: column; }
  .mn-team-card__photo { width: 100%; height: 200px; }

  /* Contact */
  .mn-contact { padding: 52px 0; }

  /* Buttons */
  .mn-btn { font-size: .9rem; padding: 13px 28px; }
  .mn-btn--full { width: 100%; }
}


/* ══════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤ 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .mn-hero__headline { font-size: clamp(1.4rem, 8vw, 2.2rem); }
  .mn-hero__money-text { font-size: 2.4rem; }
  .mn-features__grid { grid-template-columns: 1fr; }
}
