:root {
  --fmo-ink: #121827;
  --fmo-muted: #5b6577;
  --fmo-line: #dfe6ef;
  --fmo-soft: #f5f8fb;
  --fmo-blue: #335fd6;
  --fmo-blue-dark: #2446a6;
  --fmo-teal: #0f766e;
  --fmo-green: #17845b;
  --fmo-amber: #a15c07;
  --fmo-rose: #9f1239;
  --fmo-dark: #161c2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#fit,
#tasks,
#benefits,
#team,
#system,
#process,
#price,
#industries,
#why,
#faq {
  scroll-margin-top: 92px;
}

body.fmo-lp {
  margin: 0;
  color: var(--fmo-ink);
  background: #ffffff;
  font-family: var(--he-font-family, FuturaPT, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif);
  font-size: 17px;
  line-height: 1.55;
}

body.fmo-menu-open {
  overflow: hidden;
}

body.fmo-lp a {
  color: inherit;
}

body.fmo-lp button,
body.fmo-lp input,
body.fmo-lp textarea {
  font: inherit;
}

.fmo-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.fmo-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  backdrop-filter: blur(14px);
}

.fmo-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.fmo-logo {
  display: grid;
  align-content: center;
  width: 196px;
  flex: 0 0 auto;
  text-decoration: none;
}

.fmo-logo > span,
.fmo-footer__logo {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  color: var(--fmo-ink);
}

.fmo-logo > span span,
.fmo-footer__logo span {
  color: #7b75f0;
}

.fmo-logo small {
  display: block;
  margin-top: 6px;
  color: var(--fmo-muted);
  font-size: 11px;
  line-height: 1.15;
}

.fmo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 15px;
  color: #2d3548;
}

.fmo-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.fmo-nav a:hover {
  color: var(--fmo-blue);
}

.fmo-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.fmo-header__login {
  color: var(--fmo-muted);
  font-size: 15px;
  text-decoration: none;
}

.fmo-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fmo-line);
  background: #ffffff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.fmo-menu span {
  width: 20px;
  height: 2px;
  background: var(--fmo-ink);
}

.fmo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--fmo-blue);
  border-radius: 8px;
  background: var(--fmo-blue);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.fmo-btn:hover {
  background: var(--fmo-blue-dark);
  border-color: var(--fmo-blue-dark);
  transform: translateY(-1px);
}

.fmo-btn--secondary {
  background: #ffffff;
  color: var(--fmo-ink);
  border-color: var(--fmo-line);
}

.fmo-btn--secondary:hover {
  color: #ffffff;
  border-color: var(--fmo-blue-dark);
}

.fmo-btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.fmo-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.99), rgba(255,255,255,0.92) 58%, rgba(245,248,251,0.86)),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.fmo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 95, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.fmo-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 82px;
}

.fmo-eyebrow {
  margin: 0 0 14px;
  color: var(--fmo-blue);
  font-size: 14px;
  font-weight: 700;
}

.fmo-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 750;
}

.fmo-hero__lead {
  max-width: 720px;
  margin: 0 0 16px;
  color: #263044;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 600;
}

.fmo-hero__text {
  max-width: 720px;
  margin: 0 0 22px;
  color: #3a4357;
}

.fmo-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
}

.fmo-hero__points div {
  padding: 16px;
  border: 1px solid var(--fmo-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(27, 34, 51, 0.06);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.fmo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fmo-hero__note {
  margin: 18px 0 0;
  color: var(--fmo-muted);
  font-size: 15px;
}

.fmo-hero__offer {
  display: grid;
  gap: 14px;
}

.fmo-sheet,
.fmo-hero-card,
.fmo-fit-grid li,
.fmo-task-grid article,
.fmo-benefit,
.fmo-system__box,
.fmo-steps li,
.fmo-price-factors article,
.fmo-price-table,
.fmo-price-includes,
.fmo-faq details,
.fmo-final__panel {
  border: 1px solid var(--fmo-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(27, 34, 51, 0.1);
}

.fmo-sheet {
  padding: 18px;
  overflow: hidden;
}

.fmo-sheet__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--fmo-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.fmo-sheet__top strong {
  color: var(--fmo-ink);
}

.fmo-sheet__tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.fmo-sheet__tabs span {
  padding: 7px 10px;
  border-radius: 6px 6px 0 0;
  background: #e8f3ef;
  color: #13533d;
  font-size: 13px;
  font-weight: 700;
}

.fmo-sheet__table {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 0.8fr);
  border-top: 1px solid #c7d5e7;
  border-left: 1px solid #c7d5e7;
  background: #ffffff;
}

.fmo-sheet__table > * {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-right: 1px solid #c7d5e7;
  border-bottom: 1px solid #c7d5e7;
  color: #273348;
  font-size: 13px;
  font-style: normal;
  line-height: 1.2;
}

.fmo-sheet__table b {
  background: #f1f5fb;
  font-weight: 700;
}

.fmo-sheet__table i {
  background: #ffffff;
}

.fmo-sheet__table em {
  background: #e9f7f0;
  color: #13734f;
  font-weight: 700;
}

.fmo-hero-card {
  padding: 24px 26px;
  border-top: 5px solid var(--fmo-green);
}

.fmo-hero-card strong {
  display: block;
  color: var(--fmo-green);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.fmo-hero-card p {
  margin: 10px 0 0;
  color: var(--fmo-muted);
}

.fmo-section {
  padding: 86px 0;
}

.fmo-section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.fmo-section__head h2,
.fmo-team h2,
.fmo-system h2,
.fmo-final h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.13;
}

.fmo-section--fit {
  padding-top: 70px;
}

.fmo-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fmo-fit-grid li {
  padding: 22px 24px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.fmo-section--soft {
  background: var(--fmo-soft);
}

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

.fmo-task-grid article {
  padding: 24px;
}

.fmo-task-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--fmo-teal);
  font-weight: 750;
}

.fmo-task-grid article:nth-child(2) span {
  color: var(--fmo-blue);
}

.fmo-task-grid article:nth-child(3) span {
  color: var(--fmo-amber);
}

.fmo-task-grid article:nth-child(4) span {
  color: var(--fmo-rose);
}

.fmo-task-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.fmo-task-grid ul,
.fmo-benefit ul,
.fmo-team__list ul,
.fmo-system ul,
.fmo-system__box ul {
  margin: 0;
  padding-left: 20px;
  color: #3a4357;
}

.fmo-task-grid li,
.fmo-benefit li,
.fmo-team__list li,
.fmo-system li,
.fmo-system__box li {
  margin-bottom: 7px;
}

.fmo-benefit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 40px;
  padding: 32px 34px;
  margin-bottom: 18px;
}

.fmo-benefit h3 {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.15;
}

.fmo-benefit p {
  margin: 0 0 10px;
  color: #3a4357;
}

.fmo-benefit__highlight {
  align-self: center;
  padding: 22px 24px;
  border-left: 4px solid var(--fmo-green);
  border-radius: 6px;
  background: #f2faf6;
}

.fmo-benefit__highlight p {
  margin: 0 0 10px;
  color: #1f3b30;
}

.fmo-benefit__highlight p:last-child {
  margin-bottom: 0;
}

.fmo-section--dark {
  color: #ffffff;
  background: var(--fmo-dark);
}

.fmo-section--dark .fmo-eyebrow {
  color: #94d5cf;
}

.fmo-team {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.fmo-team__closing {
  margin: 26px 0 0;
  font-size: 21px;
  line-height: 1.4;
}

.fmo-team__list {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.fmo-team__list p {
  margin: 0 0 12px;
  font-weight: 700;
}

.fmo-team__list ul {
  color: #cdd6e4;
}

.fmo-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.fmo-system p {
  margin: 0 0 12px;
  color: #3a4357;
}

.fmo-system h2 {
  margin-bottom: 18px;
}

.fmo-system ul {
  margin-bottom: 16px;
}

.fmo-system__box {
  padding: 28px 30px;
  border-top: 5px solid var(--fmo-blue);
}

.fmo-system__box p {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--fmo-ink);
}

.fmo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.fmo-steps li {
  padding: 22px 24px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.fmo-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--fmo-blue);
  font-weight: 750;
}

.fmo-price__intro {
  margin: 14px 0 0;
  color: #3a4357;
}

.fmo-price-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.fmo-price-factors article {
  padding: 24px;
}

.fmo-price-factors h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.fmo-price-factors p {
  margin: 0;
  color: #3a4357;
}

.fmo-price-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.fmo-price-table,
.fmo-price-includes {
  padding: 28px 30px;
}

.fmo-price-table {
  border-top: 5px solid var(--fmo-green);
}

.fmo-price-table h3,
.fmo-price-includes h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.fmo-price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.fmo-price-table th,
.fmo-price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--fmo-line);
  text-align: left;
}

.fmo-price-table th {
  color: var(--fmo-muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fmo-price-table td:last-child {
  font-weight: 750;
  white-space: nowrap;
}

.fmo-price-table__note {
  margin: 0 0 18px;
  color: var(--fmo-muted);
  font-size: 15px;
}

.fmo-price-table .fmo-btn {
  width: 100%;
}

.fmo-price-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fmo-price-includes li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--fmo-line);
}

.fmo-price-includes li:last-child {
  border-bottom: 0;
}

.fmo-price-includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--fmo-green);
  font-weight: 800;
}

.fmo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fmo-chips li {
  padding: 12px 20px;
  border: 1px solid var(--fmo-line);
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(27, 34, 51, 0.06);
  font-size: 16px;
  font-weight: 600;
}

.fmo-section--why {
  padding-top: 0;
}

.fmo-why__text {
  max-width: 820px;
}

.fmo-why__text p {
  margin: 0 0 14px;
  color: #3a4357;
  font-size: 19px;
  line-height: 1.5;
}

.fmo-faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.fmo-faq details {
  padding: 0 26px;
}

.fmo-faq summary {
  padding: 20px 30px 20px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.fmo-faq summary::-webkit-details-marker {
  display: none;
}

.fmo-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fmo-blue);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.fmo-faq details[open] summary::after {
  content: "−";
}

.fmo-faq details p {
  margin: 0 0 20px;
  color: #3a4357;
}

.fmo-section--final {
  background: #f9f5ee;
}

.fmo-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
}

.fmo-final h2 {
  margin-bottom: 18px;
}

.fmo-final p {
  margin: 0 0 14px;
  color: #3a4357;
}

.fmo-final__panel {
  padding: 26px;
  border-top: 5px solid var(--fmo-green);
}

.fmo-final__panel > strong {
  display: block;
  color: var(--fmo-green);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.fmo-final__panel p {
  margin: 12px 0 20px;
  color: var(--fmo-muted);
}

.fmo-final__panel .fmo-btn {
  width: 100%;
}

.fmo-footer {
  padding: 52px 0 28px;
  color: #d8dfeb;
  background: #121722;
}

.fmo-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.fmo-footer__logo {
  color: #ffffff;
}

.fmo-footer p {
  margin: 18px 0 0;
  color: #aeb8ca;
}

.fmo-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.fmo-footer a {
  color: #d8dfeb;
  text-decoration: none;
}

.fmo-footer a:hover {
  color: #ffffff;
}

.fmo-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #9da8bb;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .fmo-nav {
    gap: 16px;
    font-size: 14px;
  }

  .fmo-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
    gap: 30px;
  }

  .fmo-hero h1 {
    font-size: 38px;
  }

  .fmo-fit-grid,
  .fmo-task-grid,
  .fmo-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fmo-container {
    width: min(100% - 28px, 720px);
  }

  .fmo-header__inner {
    min-height: 70px;
  }

  .fmo-logo {
    width: 178px;
  }

  .fmo-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--fmo-line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(27, 34, 51, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .fmo-nav.is-open {
    display: flex;
  }

  .fmo-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--fmo-line);
  }

  .fmo-nav a:last-child {
    border-bottom: 0;
  }

  .fmo-header__actions {
    margin-left: auto;
  }

  .fmo-header__actions .fmo-btn {
    display: none;
  }

  .fmo-menu {
    display: inline-flex;
  }

  .fmo-hero__grid,
  .fmo-benefit,
  .fmo-team,
  .fmo-system,
  .fmo-price-wrap,
  .fmo-final,
  .fmo-footer__grid {
    grid-template-columns: 1fr;
  }

  .fmo-hero__grid {
    padding: 52px 0 62px;
  }

  .fmo-hero h1,
  .fmo-section__head h2,
  .fmo-team h2,
  .fmo-system h2,
  .fmo-final h2 {
    font-size: 34px;
  }

  .fmo-hero__lead {
    font-size: 20px;
  }

  .fmo-section {
    padding: 64px 0;
  }

  .fmo-team {
    gap: 30px;
  }

  .fmo-system {
    gap: 30px;
  }

  .fmo-final {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  body.fmo-lp {
    font-size: 16px;
  }

  .fmo-header__login {
    display: none;
  }

  .fmo-logo {
    width: 158px;
  }

  .fmo-logo > span {
    font-size: 22px;
  }

  .fmo-hero__grid {
    padding: 40px 0 50px;
  }

  .fmo-hero h1 {
    max-width: 100%;
    font-size: 30px;
  }

  .fmo-hero__lead {
    font-size: 18px;
  }

  .fmo-hero__points,
  .fmo-fit-grid,
  .fmo-task-grid,
  .fmo-steps,
  .fmo-price-factors {
    grid-template-columns: 1fr;
  }

  .fmo-actions {
    align-items: stretch;
    width: 100%;
  }

  .fmo-btn {
    width: 100%;
    min-height: 50px;
    white-space: normal;
  }

  .fmo-sheet {
    padding: 12px;
  }

  .fmo-sheet__top {
    display: grid;
    gap: 4px;
  }

  .fmo-sheet__tabs {
    overflow: auto;
    padding-bottom: 2px;
  }

  .fmo-sheet__table > * {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .fmo-section__head h2,
  .fmo-team h2,
  .fmo-system h2,
  .fmo-final h2 {
    font-size: 28px;
  }

  .fmo-benefit {
    padding: 22px;
    gap: 20px;
  }

  .fmo-price-table,
  .fmo-price-includes,
  .fmo-team__list,
  .fmo-system__box {
    padding: 20px;
  }

  .fmo-price-table td:last-child {
    white-space: normal;
  }

  .fmo-faq details {
    padding: 0 18px;
  }

  .fmo-faq summary {
    font-size: 17px;
  }

  .fmo-final__panel > strong {
    font-size: 34px;
  }

  .fmo-footer__bottom {
    flex-direction: column;
  }
}
