/* JetMove landing — jetshr-inspired, modern v4.1 */
:root {
  --jm-blue: #307fe2;
  --jm-blue-deep: #1a5fc4;
  --jm-ink: #1b1818;
  --jm-muted: #5c6570;
  --jm-line: #e6e8ec;
  --jm-soft: #f3f5f8;
  --jm-mute: #eceff3;
  --jm-white: #ffffff;
  --jm-mint: #00c9a7;
  --jm-font: "Montserrat", system-ui, sans-serif;
  --jm-header: 58px;
  --jm-header-offset: 72px;
  --jm-max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.jm-body {
  margin: 0;
  font-family: var(--jm-font);
  color: var(--jm-ink);
  background: var(--jm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.jm-wrap { width: min(100% - 2rem, var(--jm-max)); margin-inline: auto; }

/* Language */
.jm-lang { position: relative; z-index: 60; }
.jm-lang__btn {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--jm-blue); font-weight: 600; font-size: .75rem; padding: 6px 2px;
}
.jm-lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; left: auto;
  min-width: 168px; margin: 0; padding: 6px 0; list-style: none;
  background: #fff; border-radius: 10px;
  box-shadow: 0 12px 32px rgba(16,24,40,.14);
  border: 1px solid rgba(48,127,226,.1);
}
.jm-lang__menu a {
  display: block; padding: 10px 14px; font-size: .9rem; color: #2a3548;
}
.jm-lang__menu a:hover,
.jm-lang__menu a.is-active { background: #eaf2ff; color: var(--jm-blue); }

/* Header — floating on mobile, clean on desktop */
.jm-header {
  position: fixed;
  z-index: 80;
  display: flex;
  align-items: center;
  left: 12px;
  right: 12px;
  top: 10px;
  height: var(--jm-header);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px rgba(15, 40, 90, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: box-shadow .25s ease, background .25s ease, transform .25s ease;
}
.jm-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(15, 40, 90, 0.16);
}
.jm-header__inner {
  width: 100%;
  padding: 0 10px 0 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
}
.jm-logo {
  font-weight: 900; font-size: 1.2rem; letter-spacing: -.04em;
  color: var(--jm-blue); line-height: 1; flex-shrink: 0;
}
.jm-logo span { color: var(--jm-ink); font-weight: 800; }
.jm-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.jm-header__auth {
  display: flex;
  align-items: center;
  gap: 6px;
}
.jm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.jm-pill:active { transform: scale(.97); }
.jm-pill--ghost {
  background: #fff;
  color: var(--jm-blue);
  box-shadow: 0 6px 16px rgba(48, 127, 226, 0.16);
  border: 1px solid rgba(48, 127, 226, 0.14);
}
.jm-pill--solid {
  background: linear-gradient(135deg, #4d93f0, var(--jm-blue));
  color: #fff;
  box-shadow: 0 8px 18px rgba(48, 127, 226, 0.32);
}
.jm-icon-btn {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: #8aa0b8; border-radius: 11px; transition: color .2s, background .2s;
  flex-shrink: 0;
}
.jm-icon-btn:hover { color: var(--jm-blue); background: #f0f6ff; }
.jm-icon-btn--ig { display: none; }

.jm-drawer {
  position: fixed;
  left: 12px; right: 12px;
  top: calc(var(--jm-header-offset) + 4px);
  z-index: 70;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(48,127,226,.1);
  border-radius: 18px;
  padding: .35rem 1rem 1rem;
  display: none;
  box-shadow: 0 18px 40px rgba(15, 40, 90, 0.16);
}
.jm-drawer.is-open { display: block; animation: jmFade .2s ease; }
.jm-drawer a {
  display: block; padding: .85rem 0; font-weight: 600; color: var(--jm-ink);
  border-bottom: 1px solid var(--jm-line);
}
.jm-drawer a:last-child { border: 0; color: var(--jm-blue); }
@keyframes jmFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (max-width: 380px) {
  .jm-logo { font-size: 1.05rem; }
  .jm-pill { padding: 0 10px; font-size: .68rem; height: 32px; }
  .jm-header__actions { gap: 4px; }
}

@media (min-width: 760px) {
  .jm-header {
    left: 0; right: 0; top: 0;
    height: var(--jm-header);
    border-radius: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 4px rgba(0,0,0,.05);
    border: 0;
  }
  .jm-header.is-scrolled { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
  .jm-header__inner {
    width: min(100% - 1.25rem, 1200px);
    padding: 0;
  }
  .jm-logo { font-size: 1.55rem; }
  .jm-header__actions { gap: 12px; }
  .jm-header__auth { gap: 8px; margin-right: 4px; }
  .jm-pill { height: 38px; padding: 0 16px; font-size: .82rem; }
  .jm-icon-btn { width: 36px; height: 36px; border-radius: 10px; }
  .jm-icon-btn--ig { display: grid; }
  .jm-drawer {
    left: 0; right: 0; top: var(--jm-header);
    border-radius: 0; border-left: 0; border-right: 0;
  }
}

/* Hero banner — same as jetshr */
.jm-heroes {
  margin-top: 0;
  padding-top: calc(var(--jm-header-offset) + 12px);
  width: 100%;
  min-height: 400px;
  height: clamp(400px, 58vw, 500px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 28px;
  background:
    linear-gradient(180deg, rgba(20,70,150,.28), rgba(15,55,130,.42)),
    url("../images/jet/heroes.png") top center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.jm-heroes::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,30,80,.18));
  pointer-events: none;
}
.jm-heroes > * { position: relative; z-index: 1; }
.jm-hero-badge {
  background: #fff; color: var(--jm-blue);
  font-weight: 600; font-size: 14px;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  animation: jmRise .7s ease both;
}
.jm-heroes h1 {
  margin: 0; color: #fff; font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: .98; letter-spacing: -.03em;
  text-shadow: 0 8px 30px rgba(0,20,60,.25);
  animation: jmRise .75s .05s ease both;
}
.jm-heroes .lead {
  margin: 14px 0 0; color: #fff; font-weight: 600;
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  max-width: 34rem; opacity: .96;
  animation: jmRise .8s .1s ease both;
}
@keyframes jmRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* GO JET block */
.jm-go {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px 20px; background: #fff; width: 100%;
}
.jm-countries {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; margin-top: 8px; align-items: stretch;
  background: var(--jm-mute); padding: 8px 8px; border-radius: 50px;
}
.jm-country {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--jm-ink); font-size: 14px; font-weight: 700;
  padding: 8px 16px; position: relative;
}
.jm-country + .jm-country::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 1px; height: 20px; background: #d5dae2;
}
.jm-country .flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.jm-country--soon { opacity: .72; }
.jm-country small {
  display: block; font-size: .65rem; font-weight: 700;
  color: var(--jm-blue); letter-spacing: .04em; text-transform: uppercase;
}
.jm-downloads {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 26px; width: 100%; max-width: 420px;
}
.jm-store {
  flex: 1 1 160px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .7rem 1rem;
  border-radius: 12px; font-weight: 700; font-size: .92rem;
  transition: transform .2s, box-shadow .2s;
}
.jm-store:hover { transform: translateY(-2px); }
.jm-store--dark {
  background: #111; color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.jm-store--blue {
  background: var(--jm-blue); color: #fff;
  box-shadow: 0 10px 24px rgba(48,127,226,.28);
}
.jm-store img { height: 22px; width: auto; }

.jm-secondary {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 14px 16px; background: var(--jm-soft);
  width: 100%; flex-wrap: wrap; text-align: center;
}
.jm-secondary__text { font-size: 14px; color: var(--jm-ink); font-weight: 500; }
.jm-secondary__text b { font-weight: 800; color: var(--jm-blue); }
.jm-secondary__flags { display: flex; gap: 8px; align-items: center; }
.jm-secondary__flags img {
  width: 24px; height: 16px; object-fit: cover; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* Stats */
.jm-stats {
  display: flex; justify-content: center; padding: 48px 20px;
  width: 100%; background: var(--jm-mute);
}
.jm-stats__inner {
  display: flex; justify-content: space-between; width: 100%; max-width: 800px; gap: 1rem;
}
.jm-stats__item { text-align: center; flex: 1; }
.jm-stats__value {
  font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; color: var(--jm-blue);
  letter-spacing: -.03em; line-height: 1;
}
.jm-stats__label { font-size: 1rem; color: var(--jm-ink); margin-top: 6px; font-weight: 500; }

/* Sections */
.jm-section { padding: 4.5rem 0; }
.jm-section--soft { background: var(--jm-soft); }
.jm-kicker {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--jm-blue);
  margin-bottom: .75rem;
}
.jm-section h2 {
  margin: 0 0 .75rem; font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.15;
  max-width: 18ch;
}
.jm-section .sub {
  margin: 0 0 2rem; color: var(--jm-muted); font-size: 1.05rem;
  line-height: 1.55; max-width: 40rem; font-weight: 500;
}

.jm-model {
  display: grid; gap: 1rem;
}
.jm-model__card {
  background: #fff; border: 1px solid var(--jm-line);
  border-radius: 20px; padding: 1.35rem 1.25rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.jm-model__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(48,127,226,.1);
}
.jm-model__num {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(145deg, #5aa0ff, var(--jm-blue));
}
.jm-model__card h3 { margin: 0 0 .35rem; font-size: 1.1rem; }
.jm-model__card p { margin: 0; color: var(--jm-muted); line-height: 1.5; font-size: .95rem; }

.jm-earn {
  display: grid; gap: 1rem;
}
.jm-earn__item {
  border-radius: 18px; padding: 1.4rem 1.25rem;
  background: linear-gradient(160deg, #0f3d8c, #307fe2 55%, #1aa889);
  color: #fff; position: relative; overflow: hidden;
}
.jm-earn__item::after {
  content: ""; position: absolute; right: -20px; top: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.jm-earn__item h3 { margin: 0 0 .4rem; font-size: 1.15rem; position: relative; }
.jm-earn__item p { margin: 0; opacity: .9; line-height: 1.45; font-size: .95rem; position: relative; }
.jm-earn__item:nth-child(2) { background: linear-gradient(160deg, #173a6b, #307fe2); }
.jm-earn__item:nth-child(3) { background: linear-gradient(160deg, #0d6b5c, #1aa889); }

.jm-steps { display: grid; gap: 1rem; }
.jm-step {
  background: #fff; border: 1px solid var(--jm-line); border-radius: 18px;
  padding: 1.25rem; display: grid; gap: .65rem;
}
.jm-step__n {
  width: 36px; height: 36px; border-radius: 50%;
  background: #eaf2ff; color: var(--jm-blue);
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}
.jm-step h3 { margin: 0; font-size: 1.05rem; }
.jm-step p { margin: 0; color: var(--jm-muted); line-height: 1.5; font-size: .95rem; }

.jm-fleet {
  display: grid; gap: 1.5rem; align-items: center;
}
.jm-fleet__visual {
  border-radius: 24px; overflow: hidden; min-height: 240px;
  background: #0b2a5c center/cover no-repeat;
  box-shadow: 0 24px 48px rgba(48,127,226,.18);
}
.jm-fleet__visual img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.jm-safety { display: grid; gap: 1rem; margin-top: 1.25rem; }
.jm-safety__row { display: grid; grid-template-columns: auto 1fr; gap: .85rem; }
.jm-safety__ico {
  width: 44px; height: 44px; border-radius: 12px; background: #eaf2ff;
  color: var(--jm-blue); display: grid; place-items: center;
}
.jm-safety__row h4 { margin: 0 0 .2rem; font-size: 1.02rem; }
.jm-safety__row p { margin: 0; color: var(--jm-muted); font-size: .92rem; line-height: 1.45; }

.jm-cta {
  border-radius: 28px; padding: 2.75rem 1.5rem; text-align: center; color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,201,167,.35), transparent 45%),
    linear-gradient(135deg, #307fe2, #174ea6 60%, #0d2f6b);
}
.jm-cta h2 { margin: 0 0 .6rem; max-width: none; color: #fff; }
.jm-cta p { margin: 0 auto 1.4rem; max-width: 28rem; opacity: .92; color: #fff; }
.jm-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.jm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.25rem; border-radius: 12px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.jm-btn:hover { transform: translateY(-1px); }
.jm-btn--light { background: #fff; color: var(--jm-blue); }
.jm-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }

.jm-footer {
  padding: 2rem 0; border-top: 1px solid var(--jm-line);
  color: var(--jm-muted); font-size: .9rem;
}
.jm-footer__inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.jm-footer__links { display: flex; gap: 1.2rem; }
.jm-footer__links a:hover { color: var(--jm-blue); }

@media (min-width: 760px) {
  .jm-model { grid-template-columns: repeat(3, 1fr); }
  .jm-model__card { grid-template-columns: 1fr; }
  .jm-earn { grid-template-columns: repeat(3, 1fr); }
  .jm-steps { grid-template-columns: repeat(3, 1fr); }
  .jm-fleet { grid-template-columns: 1.05fr .95fr; }
  .jm-countries { gap: 0; padding: 8px 20px; }
  .jm-country { font-size: 16px; padding: 10px 22px; }
  .jm-heroes h1 { font-size: 72px; line-height: 72px; }
  .jm-hero-badge { font-size: 16px; padding: 8px 24px; }
}

/* Language location modal */
body.jm-lang-modal-open { overflow: hidden; }
.jm-lang-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.jm-lang-modal[hidden] { display: none !important; }
.jm-lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 45, 0.55);
  backdrop-filter: blur(4px);
}
.jm-lang-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 24px 60px rgba(10, 30, 70, 0.28);
  text-align: center;
  animation: jmRise .35s ease both;
}
.jm-lang-modal__flags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.jm-lang-modal__flags img {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.jm-lang-modal__card h3 {
  margin: 0 0 .55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #1b1818;
}
.jm-lang-modal__card p {
  margin: 0 0 1.2rem;
  color: #5c6570;
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 500;
}
.jm-lang-modal__actions {
  display: grid;
  gap: 8px;
}
.jm-lang-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.jm-lang-modal__btn:active { transform: scale(.98); }
.jm-lang-modal__btn--yes {
  background: linear-gradient(135deg, #4d93f0, #307fe2);
  color: #fff;
  box-shadow: 0 10px 22px rgba(48,127,226,.3);
}
.jm-lang-modal__btn--no {
  background: #fff;
  color: #307fe2;
  border: 1.5px solid rgba(48,127,226,.22);
}
