@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --mf-bg: #071225;
  --mf-bg-soft: #0a1d38;
  --mf-surface: #f4f8ff;
  --mf-card: #ffffff;
  --mf-ink: #0b1628;
  --mf-ink-soft: #5a6b86;
  --mf-primary: #0699ef;
  --mf-primary-deep: #0b4f83;
  --mf-accent: #19d5ff;
  --mf-line: #d6e4fa;
  --mf-radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--mf-ink);
  background: #eef5ff;
  min-height: 100%;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.mf-page {
  position: relative;
  overflow-x: clip;
  background: linear-gradient(180deg, #061429 0%, #0a2f50 18%, #eef5ff 18.5%, #f4f8ff 100%);
}

.mf-page::before,
.mf-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.mf-page::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(25, 207, 255, 0.22), rgba(25, 207, 255, 0));
  top: 9%;
  left: -120px;
}

.mf-page::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 153, 239, 0.2), rgba(6, 153, 239, 0));
  top: 34%;
  right: -160px;
}

.mf-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mf-header-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 10px;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(7, 18, 37, 0.85) 0%, rgba(7, 18, 37, 0.64) 100%);
  border-bottom: 1px solid rgba(130, 182, 230, 0.22);
}

.mf-header {
  min-height: 96px;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.mf-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mf-logo img {
  width: min(100%, 300px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(3, 14, 27, 0.35));
}

@supports (padding-top: max(10px, env(safe-area-inset-top))) {
  .mf-header-wrap {
    padding-top: max(10px, env(safe-area-inset-top));
  }
}

.mf-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mf-nav-link {
  color: #ddedff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.mf-nav-link:hover {
  color: #ffffff;
}

.mf-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mf-actions .mf-btn {
  white-space: nowrap;
}

.mf-btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mf-btn:hover {
  transform: translateY(-1px);
}

.mf-btn-primary {
  padding: 14px 22px;
  color: #ffffff;
  background: linear-gradient(90deg, #058ce6 0%, #0a5392 100%);
  box-shadow: 0 12px 28px rgba(7, 56, 100, 0.34);
}

.mf-btn-primary:hover {
  box-shadow: 0 14px 36px rgba(7, 56, 100, 0.46);
}

.mf-btn-ghost {
  padding: 14px 22px;
  color: #cce8ff;
  border: 1px solid rgba(156, 206, 255, 0.4);
  background: rgba(16, 47, 84, 0.32);
}

.mf-btn-account {
  padding: 14px 22px;
  color: #f3fbff;
  border: 1px solid rgba(187, 227, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 28px rgba(5, 22, 45, 0.24);
}

.mf-btn-meeting {
  padding: 14px 22px;
  color: #05213c;
  background: linear-gradient(90deg, #e7f6ff 0%, #bfeaff 100%);
  box-shadow: 0 14px 32px rgba(86, 202, 255, 0.2);
}

.mf-btn-meeting:hover {
  box-shadow: 0 16px 38px rgba(86, 202, 255, 0.3);
}

.mf-btn-register {
  padding: 14px 24px;
  color: #04172b;
  background: linear-gradient(90deg, #8ef0bd 0%, #19d5ff 100%);
  box-shadow: 0 14px 32px rgba(19, 210, 194, 0.34);
}

.mf-btn-register:hover {
  box-shadow: 0 16px 38px rgba(19, 210, 194, 0.46);
}

.mf-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(185, 219, 255, 0.36);
  flex-direction: column;
  gap: 5px;
}

.mf-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  display: block;
  background: #e7f5ff;
  margin: 0;
}

.mf-hero {
  padding: 68px 0 58px;
  background: radial-gradient(1080px 460px at 15% -14%, rgba(19, 171, 255, 0.34), rgba(19, 171, 255, 0)),
    radial-gradient(900px 420px at 90% 6%, rgba(23, 212, 255, 0.24), rgba(23, 212, 255, 0)),
    linear-gradient(166deg, #061327 0%, #0b2a49 46%, #0a416b 100%);
  border-bottom: 1px solid rgba(146, 196, 236, 0.42);
}

.mf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.mf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px;
  color: #c4ecff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(130, 196, 246, 0.32);
  background: rgba(9, 38, 72, 0.72);
}

.mf-hero h1 {
  margin: 18px 0 14px;
  color: #f6fbff;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5.1vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mf-hero h1 .mf-highlight {
  background: linear-gradient(90deg, #9ae6ff 0%, #2cb6ff 44%, #8ae8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mf-hero-description {
  margin: 0;
  color: #c1d9f4;
  font-size: 18px;
  line-height: 1.72;
  max-width: 640px;
}

.mf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.mf-segments {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mf-pill {
  border-radius: 999px;
  border: 1px solid rgba(163, 208, 248, 0.34);
  background: rgba(11, 43, 78, 0.64);
  color: #cde8ff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
}

.mf-hero-panel {
  border-radius: calc(var(--mf-radius) + 6px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 248, 255, 0.92) 100%);
  border: 1px solid rgba(181, 213, 242, 0.8);
  box-shadow: 0 32px 68px rgba(6, 28, 54, 0.46);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.mf-hero-panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 153, 239, 0.24), rgba(6, 153, 239, 0));
  top: -94px;
  right: -84px;
}

.mf-panel-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #0b2342;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #9ec9ec;
  background: linear-gradient(180deg, #edf6ff 0%, #d7ebff 100%);
  box-shadow: 0 8px 20px rgba(11, 79, 131, 0.14);
  position: relative;
  z-index: 1;
}

.mf-panel-title {
  margin: 10px 0 18px;
  font-size: 26px;
  line-height: 1.22;
  font-family: "Sora", sans-serif;
  color: #0d1e35;
}

.mf-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mf-kpi {
  display: block;
  background: #ffffff;
  border: 1px solid #d7e7f8;
  border-radius: 16px;
  padding: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mf-kpi:hover,
.mf-kpi:focus-visible {
  transform: translateY(-2px);
  border-color: #9ecdf5;
  box-shadow: 0 14px 28px rgba(11, 79, 131, 0.14);
  outline: none;
}

.mf-kpi strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  color: #072343;
}

.mf-kpi > span {
  font-size: 12px;
  color: #5f7390;
  font-weight: 700;
}

.mf-nowrap {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.mf-section {
  padding: 64px 0;
  background: var(--mf-surface);
  scroll-margin-top: 116px;
}

.mf-section-light {
  background: #edf5ff;
}

.mf-title-block {
  max-width: 760px;
  margin-bottom: 30px;
}

.mf-title-block .mf-overline {
  margin: 0;
  color: #1e72ab;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.mf-title-block h2 {
  margin: 12px 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: var(--mf-ink);
}

.mf-title-block p {
  margin: 0;
  color: var(--mf-ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.mf-title-block-spaced {
  margin-top: 34px;
}

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

.mf-shot-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mf-shot-card {
  background: #ffffff;
  border-radius: calc(var(--mf-radius) - 2px);
  border: 1px solid #d4e6fa;
  box-shadow: 0 14px 30px rgba(16, 61, 108, 0.12);
  overflow: hidden;
}

.mf-shot-card-main {
  grid-column: 1 / -1;
}

.mf-shot-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #dcecff;
}

.mf-shot-meta {
  padding: 14px 16px 15px;
}

.mf-shot-meta strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: #0b2240;
  font-size: 18px;
}

.mf-shot-meta span {
  display: block;
  margin-top: 4px;
  color: #556b87;
  font-size: 14px;
  line-height: 1.56;
  font-weight: 600;
}

.mf-feature {
  background: #ffffff;
  border-radius: var(--mf-radius);
  padding: 24px;
  border: 1px solid var(--mf-line);
  box-shadow: 0 14px 28px rgba(23, 64, 110, 0.08);
}

.mf-feature-wide {
  grid-column: 1 / -1;
}

.mf-feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mf-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ecf8ff 0%, #d8f1ff 100%);
  color: #0b4f83;
  font-size: 22px;
}

.mf-feature h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  color: #0c2038;
}

.mf-feature p {
  margin: 0;
  color: #546985;
  font-size: 16px;
  line-height: 1.65;
}

.mf-feature ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mf-feature li {
  font-size: 15px;
  color: #344a67;
  padding-left: 22px;
  position: relative;
}

.mf-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b4f83 0%, #0fa9ff 100%);
}

.mf-differential-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
  border-radius: 28px;
  padding: 34px;
  color: #e8fff8;
  background: linear-gradient(135deg, #071225 0%, #0c3859 48%, #0a6a58 100%);
  border: 1px solid rgba(151, 243, 216, 0.34);
  box-shadow: 0 28px 60px rgba(5, 36, 54, 0.28);
}

.mf-spotlight-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: #d7fff3;
  color: #065342;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mf-differential-spotlight h3 {
  margin: 14px 0 12px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.14;
}

.mf-differential-spotlight p {
  margin: 0;
  color: #caeee8;
  font-size: 17px;
  line-height: 1.72;
}

.mf-spotlight-points {
  display: grid;
  gap: 10px;
}

.mf-spotlight-points article {
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(207, 250, 241, 0.22);
}

.mf-spotlight-points strong {
  display: block;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.mf-spotlight-points span {
  display: block;
  margin-top: 4px;
  color: #c2e5df;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.mf-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.mf-process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10a4f3 0%, #19d5ff 48%, #8ef0bd 100%);
  box-shadow: 0 10px 22px rgba(16, 164, 243, 0.24);
}

.mf-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffff;
  color: var(--mf-ink);
  border: 1px solid var(--mf-line);
  box-shadow: 0 16px 34px rgba(16, 61, 108, 0.12);
  padding: 54px 14px 18px;
  min-height: 235px;
  text-align: center;
}

.mf-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -7px;
  right: -15px;
  width: 16px;
  height: 16px;
  border-top: 5px solid #19d5ff;
  border-right: 5px solid #19d5ff;
  border-radius: 2px;
  transform: rotate(45deg);
  filter: drop-shadow(0 4px 8px rgba(16, 164, 243, 0.22));
}

.mf-step strong {
  position: absolute;
  z-index: 4;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(130deg, #0f9bf2 0%, #1dd8ff 100%);
  color: #001425;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  box-shadow: 0 0 0 10px #f4f8ff, 0 16px 28px rgba(10, 83, 146, 0.24);
}

.mf-step h4 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.22;
  font-family: "Sora", sans-serif;
  color: #0b1628;
}

.mf-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #5a6b86;
}

.mf-split-wrap {
  border-radius: 28px;
  background: linear-gradient(140deg, #0c1f3a 0%, #0f355b 48%, #0d4a77 100%);
  padding: 34px;
  color: #d5ecff;
  border: 1px solid rgba(137, 201, 247, 0.24);
  box-shadow: 0 26px 56px rgba(6, 27, 52, 0.33);
}

.mf-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
}

.mf-split-wrap h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.14;
  color: #f4fcff;
}

.mf-split-wrap p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #c0ddf9;
}

.mf-split-cards {
  display: grid;
  gap: 10px;
}

.mf-split-card {
  border-radius: 14px;
  border: 1px solid rgba(136, 197, 245, 0.26);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 15px;
}

.mf-split-card strong {
  display: block;
  color: #f2fbff;
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.mf-split-card span {
  color: #b8d7f3;
  font-size: 14px;
  font-weight: 600;
}

.mf-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mf-proof {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d7e8fb;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(25, 67, 114, 0.09);
}

.mf-proof strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: #082649;
  font-size: clamp(30px, 5vw, 42px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}

.mf-proof span {
  display: block;
  color: #5d728f;
  font-size: 15px;
  margin-top: 5px;
  font-weight: 700;
}

.mf-testimonials {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mf-quote {
  border-radius: 20px;
  border: 1px solid #d4e4f6;
  background: #ffffff;
  padding: 22px;
}

.mf-quote p {
  margin: 0;
  color: #334d6c;
  font-size: 17px;
  line-height: 1.66;
}

.mf-quote footer {
  margin-top: 15px;
  color: #092847;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mf-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mf-plan-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d3e5f8;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(16, 61, 108, 0.1);
}

.mf-plan-card-featured {
  border-color: #18bffc;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbff 100%);
  box-shadow: 0 0 0 3px rgba(24, 191, 252, 0.22), 0 24px 52px rgba(9, 96, 154, 0.22);
}

.mf-plan-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(24, 191, 252, 0.74);
  pointer-events: none;
}

.mf-plan-head {
  padding-top: 2px;
}

.mf-plan-head span {
  display: block;
  color: #0d5f9d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mf-plan-head h3 {
  margin: 12px 0 2px;
  color: #0b213d;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
}

.mf-plan-head p {
  margin: 0;
  color: #5a708e;
  font-size: 14px;
  font-weight: 800;
}

.mf-plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mf-plan-card li {
  position: relative;
  padding-left: 24px;
  color: #415a78;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.mf-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6baa 0%, #18c7f5 100%);
  box-shadow: 0 0 0 4px rgba(24, 199, 245, 0.12);
}

.mf-plan-card li.mf-plan-unavailable {
  color: #7d8ea4;
}

.mf-plan-card li.mf-plan-unavailable::before {
  content: "×";
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #d43d51;
  box-shadow: 0 0 0 4px rgba(212, 61, 81, 0.12);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.mf-plan-action {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b4f83;
  border: 1px solid #afd7f5;
  background: #edf8ff;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mf-plan-action:hover,
.mf-plan-action:focus-visible {
  transform: translateY(-1px);
  background: #dff3ff;
  box-shadow: 0 12px 24px rgba(11, 79, 131, 0.16);
  outline: none;
}

.mf-plan-action-featured {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(90deg, #058ce6 0%, #0a5392 100%);
}

.mf-plan-action-featured:hover,
.mf-plan-action-featured:focus-visible {
  background: linear-gradient(90deg, #0499f5 0%, #0b5f9e 100%);
}

.mf-price-table-wrap {
  margin-top: 24px;
  border-radius: 22px;
  border: 1px solid #cde4f8;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 61, 108, 0.1);
  overflow: hidden;
}

.mf-price-table-head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid #d9e9f8;
  background: linear-gradient(180deg, #f7fcff 0%, #edf7ff 100%);
}

.mf-price-table-head h3 {
  margin: 0;
  color: #0b213d;
  font-family: "Sora", sans-serif;
  font-size: 24px;
}

.mf-price-table-head p {
  margin: 6px 0 0;
  color: #5a708e;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.mf-price-table-scroll {
  overflow-x: auto;
}

.mf-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.mf-price-table th,
.mf-price-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid #e2eef9;
  color: #0d2746;
  font-size: 14px;
}

.mf-price-table th {
  background: #f3f9ff;
  color: #0b4f83;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mf-price-table td {
  font-weight: 800;
}

.mf-price-table td:first-child {
  font-family: "Sora", sans-serif;
}

.mf-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.mf-integration-box {
  margin: 0 22px 22px;
  border-radius: 18px;
  border: 1px solid #cfe4f8;
  background: linear-gradient(135deg, #f7fcff 0%, #f0fff8 100%);
  padding: 18px 20px;
}

.mf-integration-box-standalone {
  margin: 24px 0 0;
  box-shadow: 0 16px 34px rgba(16, 61, 108, 0.1);
}

.mf-integration-box strong {
  display: block;
  color: #0b213d;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.mf-integration-box ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
}

.mf-integration-box li {
  position: relative;
  padding-left: 30px;
  color: #405977;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.mf-integration-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6baa 0%, #18c7f5 100%);
  box-shadow: 0 0 0 4px rgba(24, 199, 245, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.mf-faq {
  display: grid;
  gap: 12px;
}

.mf-faq details {
  border-radius: 16px;
  border: 1px solid #d1e2f4;
  background: #ffffff;
  padding: 16px 18px;
}

.mf-faq summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  color: #0d2746;
  font-size: 18px;
  font-weight: 700;
}

.mf-faq p {
  margin: 10px 0 0;
  color: #506784;
  line-height: 1.65;
  font-size: 15px;
}

.mf-cta {
  padding: 68px 0 74px;
}

.mf-cta-panel {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(140deg, #05162f 0%, #0d3c68 50%, #0f6eb2 100%);
  border: 1px solid rgba(129, 199, 247, 0.3);
  box-shadow: 0 26px 52px rgba(5, 29, 55, 0.38);
}

.mf-cta-panel h3 {
  margin: 0;
  color: #f5fcff;
  font-size: clamp(30px, 5vw, 48px);
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

.mf-cta-panel p {
  margin: 14px 0 0;
  color: #c0e2ff;
  font-size: 18px;
  line-height: 1.66;
  max-width: 780px;
}

.mf-cta-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mf-booking-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #061429 0%, #0a2f50 20%, #eef5ff 20.5%, #f4f8ff 100%);
}

.mf-header-simple {
  min-height: 90px;
}

.mf-booking-main {
  padding: 48px 0 70px;
}

.mf-booking-section {
  position: relative;
  z-index: 2;
}

.mf-booking-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.mf-booking-copy {
  border-radius: 26px;
  background: linear-gradient(155deg, #09213e 0%, #0d385f 48%, #0f5f95 100%);
  border: 1px solid rgba(140, 205, 255, 0.28);
  color: #d7edff;
  padding: 28px;
  box-shadow: 0 22px 46px rgba(4, 28, 54, 0.34);
}

.mf-booking-copy h1 {
  margin: 8px 0 12px;
  color: #f4fbff;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

.mf-booking-copy p {
  margin: 0;
  color: #c2ddf6;
  font-size: 17px;
  line-height: 1.68;
}

.mf-booking-alert {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid rgba(171, 218, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.mf-booking-alert strong {
  color: #f2fbff;
  font-size: 16px;
  font-family: "Sora", sans-serif;
}

.mf-booking-alert span {
  color: #bfddf8;
  font-size: 14px;
  line-height: 1.58;
}

.mf-booking-checks {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mf-booking-checks li {
  position: relative;
  padding-left: 26px;
  color: #d8edff;
  font-size: 15px;
  line-height: 1.56;
}

.mf-booking-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(140deg, #12a2fb 0%, #1fe1ff 100%);
  box-shadow: 0 0 0 4px rgba(25, 181, 255, 0.18);
}

.mf-booking-card {
  border-radius: 26px;
  border: 1px solid #cfe2f7;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(14, 58, 101, 0.14);
}

.mf-booking-kicker {
  margin: 0 0 14px;
  color: #0f3a63;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-form-errors {
  margin-bottom: 14px;
  border: 1px solid #f8c7cb;
  background: #fff1f3;
  color: #8b1122;
  border-radius: 14px;
  padding: 12px 14px;
}

.mf-form-errors strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.mf-form-errors ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
}

.mf-form-errors li {
  font-size: 13px;
  line-height: 1.44;
}

.mf-demo-form {
  display: grid;
  gap: 14px;
}

.mf-trial-card-form [hidden] {
  display: none !important;
}

.mf-progress {
  border-radius: 14px;
  border: 1px solid #cde1f5;
  background: #f2f9ff;
  padding: 12px;
}

.mf-progress-head {
  display: grid;
  gap: 3px;
}

.mf-progress-head strong {
  color: #0c2f53;
  font-size: 14px;
  font-family: "Sora", sans-serif;
}

.mf-progress-head span {
  color: #527091;
  font-size: 12px;
  font-weight: 700;
}

.mf-progress-track {
  margin-top: 8px;
  border-radius: 999px;
  background: #dcecfb;
  height: 9px;
  overflow: hidden;
}

.mf-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e88de 0%, #0c4f86 100%);
  transition: width 0.25s ease;
}

.mf-trial-stepper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mf-trial-step {
  border: 1px solid #cfe1f4;
  border-radius: 14px;
  background: #f8fcff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a7491;
}

.mf-trial-step span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e8f4ff;
  color: #0c4f86;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.mf-trial-step strong {
  color: inherit;
  font-size: 13px;
  font-family: "Sora", sans-serif;
}

.mf-trial-step.is-active {
  border-color: #6bc4ff;
  background: #f0f9ff;
  color: #0c3157;
  box-shadow: 0 10px 24px rgba(14, 136, 222, 0.12);
}

.mf-trial-step.is-active span,
.mf-trial-step.is-complete span {
  background: linear-gradient(135deg, #36baf0 0%, #0f7bcc 100%);
  color: #071d35;
}

.mf-trial-step.is-complete {
  border-color: #9edaf7;
  color: #0c4f86;
}

.mf-selected-plan {
  border-radius: 14px;
  border: 1px solid #9dd8ff;
  background: linear-gradient(135deg, #eef8ff 0%, #e9fff6 100%);
  padding: 12px 14px;
  display: grid;
  gap: 3px;
}

.mf-selected-plan span {
  color: #4f6a86;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mf-selected-plan strong {
  color: #0a3158;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.mf-trial-billing-notice {
  border-radius: 16px;
  border: 1px solid #b8d9ff;
  background: #f5fbff;
  padding: 14px;
  display: grid;
  gap: 8px;
  box-shadow: inset 4px 0 0 #28a5ee;
}

.mf-trial-billing-notice strong {
  color: #0b3157;
  font-family: "Sora", sans-serif;
  font-size: 15px;
}

.mf-trial-billing-notice p {
  margin: 0;
  color: #3f5c7a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.mf-trial-success-billing {
  margin: 12px 0 0;
  text-align: left;
}

.mf-form-section {
  margin: 0;
  border: 1px solid #d5e6f8;
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.mf-form-section legend {
  padding: 0 8px;
  color: #0f3256;
  font-size: 15px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
}

.mf-form-grid {
  display: grid;
  gap: 10px;
}

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

.mf-identity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mf-field-span-2 {
  grid-column: span 2;
}

.mf-trial-plan-section,
.mf-credit-card-section {
  background: #fbfdff;
}

.mf-credit-card-section .mf-field-help {
  margin: 0;
}

.mf-checkbox-ack {
  border: 1px solid #cfe2f6;
  background: #f6fbff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2e4a67;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.mf-checkbox-ack input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: #0d72b8;
}

.mf-step-validation-message {
  margin: 0;
  border: 1px solid #ffc8d3;
  border-radius: 12px;
  background: #fff5f7;
  color: #a51639;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.mf-field {
  display: grid;
  gap: 5px;
}

.mf-field span {
  color: #12385d;
  font-size: 13px;
  font-weight: 800;
}

.mf-field-help {
  color: #4e6d8c;
  font-size: 13px;
  font-weight: 700;
}

.mf-field span.mf-field-help {
  color: #4e6d8c;
  font-weight: 700;
}

.mf-field input,
.mf-field select,
.mf-field textarea {
  width: 100%;
  border: 1px solid #b7d3ef;
  border-radius: 12px;
  background: #f8fcff;
  color: #0c223f;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mf-field textarea {
  min-height: 108px;
  resize: vertical;
}

.mf-field input:focus,
.mf-field select:focus,
.mf-field textarea:focus {
  border-color: #1289dd;
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 137, 221, 0.18);
}

.mf-field.is-invalid input,
.mf-field.is-invalid select,
.mf-field.is-invalid textarea,
.mf-checkbox-ack.is-invalid {
  border-color: #ef476f;
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.14);
}

.mf-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.mf-radio-stack {
  display: grid;
  gap: 8px;
}

.mf-radio {
  border: 1px solid #cadef4;
  background: #f7fbff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-height: 46px;
}

.mf-radio input {
  accent-color: #0d5f9d;
}

.mf-radio span {
  color: #13385d;
  font-size: 14px;
  font-weight: 700;
}

.mf-system-name-field {
  margin-top: 10px;
}

.mf-system-name-field:not(.is-visible) {
  display: none;
}

.mf-range-grid {
  display: grid;
  gap: 10px;
}

.mf-range-field {
  border: 1px solid #cadef4;
  background: #f7fbff;
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 9px;
}

.mf-range-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.mf-range-label span {
  color: #12385d;
  font-size: 13px;
  font-weight: 800;
}

.mf-range-label strong {
  color: #0d4f86;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  white-space: nowrap;
}

.mf-range-input {
  width: 100%;
  accent-color: #0d72b8;
}

.mf-range-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 6px;
}

.mf-range-steps span {
  color: #67819d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.mf-range-steps span.is-active {
  color: #0d5f9d;
}

.mf-range-field small {
  color: #5c7898;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.mf-submit-btn {
  margin-top: 4px;
  min-height: 50px;
  font-size: 15px;
}

.mf-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mf-step-actions .mf-btn {
  min-height: 48px;
}

.mf-step-actions .mf-btn-primary {
  margin-left: auto;
}

.mf-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.mf-submit-note {
  margin: 0;
  color: #5c7390;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.mf-trial-validation-active {
  overflow: hidden;
}

.mf-trial-validation-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(180deg, rgba(5, 32, 61, 0.84), rgba(8, 49, 86, 0.72));
  backdrop-filter: blur(10px);
}

.mf-trial-validation-screen[hidden] {
  display: none;
}

.mf-trial-validation-card {
  width: min(620px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(191, 219, 254, 0.82);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(5, 26, 48, 0.34);
  padding: 34px;
  text-align: center;
}

.mf-trial-validation-orbit {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 3px solid #d9fbe6;
  background: #f0fdf4;
}

.mf-trial-validation-orbit::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: inherit;
  background: #16a34a;
  box-shadow: inset 0 0 0 8px #dcfce7;
}

.mf-trial-validation-orbit span {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-top-color: #16a34a;
  animation: mfTrialSpin 1.1s linear infinite;
}

.mf-trial-validation-orbit span + span {
  inset: 8px;
  border-top-color: #38bdf8;
  animation-duration: 1.55s;
  animation-direction: reverse;
}

.mf-trial-validation-card h2 {
  margin: 10px 0 10px;
  font-family: "Sora", sans-serif;
  color: #0a2442;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
}

.mf-trial-validation-card p {
  margin: 0 auto;
  max-width: 460px;
  color: #526b86;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 800;
}

.mf-trial-validation-track {
  width: min(420px, 100%);
  height: 10px;
  margin: 24px auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f0fb;
}

.mf-trial-validation-track span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16a34a, #38bdf8);
  animation: mfTrialProgress 1.35s ease-in-out infinite;
}

.mf-trial-validation-card small {
  display: block;
  color: #5c7390;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

@keyframes mfTrialSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mfTrialProgress {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(245%);
  }
}

.mf-booking-success {
  position: relative;
  border-radius: 28px;
  border: 1px solid #cde2f7;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(12, 54, 96, 0.16);
  padding: 38px 34px 34px;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.mf-license-stamp {
  position: absolute;
  top: 26px;
  right: 30px;
  display: inline-grid;
  place-items: center;
  min-width: 118px;
  min-height: 72px;
  padding: 10px 18px;
  border: 3px solid #16a34a;
  border-radius: 18px;
  color: #13833b;
  background: rgba(240, 253, 244, 0.82);
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.16), inset 0 0 0 1px rgba(22, 163, 74, 0.18);
  font-family: "Sora", sans-serif;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.mf-license-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(22, 163, 74, 0.72);
  border-radius: 12px;
}

.mf-license-stamp span,
.mf-license-stamp strong {
  position: relative;
  z-index: 1;
}

.mf-license-stamp span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.mf-license-stamp strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.mf-booking-success h1 {
  max-width: calc(100% - 172px);
  margin: 10px 0 14px;
  font-family: "Sora", sans-serif;
  color: #0a2442;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}

.mf-booking-success p {
  margin: 0;
  color: #526b86;
  font-size: 17px;
  line-height: 1.68;
}

.mf-booking-success strong {
  color: #0a2442;
  font-weight: 800;
}

.mf-license-created-highlight {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #b8daf8;
  border-radius: 18px;
  background: #eef7ff;
  color: #0a2442 !important;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(20, 114, 201, 0.12);
}

.mf-booking-success p + p {
  margin-top: 10px;
}

.mf-booking-success .mf-hero-actions {
  margin-top: 22px;
}

@media (max-width: 760px) {
  .mf-booking-success h1 {
    max-width: none;
  }

  .mf-license-stamp {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 0 18px;
    min-width: 104px;
    min-height: 64px;
    transform: rotate(-3deg);
  }
}

.mf-footer {
  background: linear-gradient(180deg, #072143 0%, #0a2d58 100%);
  border-top: 1px solid rgba(176, 210, 243, 0.34);
  padding: 20px 0 30px;
}

.mf-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #c9e5ff;
  font-size: 13px;
  font-weight: 700;
}

.mf-footer small {
  opacity: 0.86;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="stagger"] .mf-feature,
[data-reveal="stagger"] .mf-shot-card,
[data-reveal="stagger"] .mf-plan-card,
[data-reveal="stagger"] .mf-proof,
[data-reveal="stagger"] .mf-step,
[data-reveal="stagger"] .mf-quote {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal="stagger"].is-visible .mf-feature,
[data-reveal="stagger"].is-visible .mf-shot-card,
[data-reveal="stagger"].is-visible .mf-plan-card,
[data-reveal="stagger"].is-visible .mf-proof,
[data-reveal="stagger"].is-visible .mf-step,
[data-reveal="stagger"].is-visible .mf-quote {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="stagger"].is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}

[data-reveal="stagger"].is-visible > *:nth-child(3) {
  transition-delay: 0.16s;
}

[data-reveal="stagger"].is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  .mf-header {
    min-height: 80px;
    padding-bottom: 4px;
  }

  .mf-nav,
  .mf-actions {
    display: none;
  }

  .mf-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 8px;
  }

  .mf-header-simple .mf-actions {
    display: flex;
  }

  .mf-header.menu-open .mf-nav {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(320px, 100%);
    background: rgba(10, 24, 47, 0.98);
    border: 1px solid rgba(136, 191, 240, 0.35);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .mf-header.menu-open .mf-actions {
    display: flex;
    position: absolute;
    top: calc(100% + 240px);
    left: 0;
    width: min(320px, 100%);
    padding: 12px;
    background: rgba(10, 24, 47, 0.98);
    border: 1px solid rgba(136, 191, 240, 0.35);
    border-top: 0;
    border-radius: 0 0 16px 16px;
  }

  .mf-hero-grid,
  .mf-split-grid,
  .mf-differential-spotlight,
  .mf-booking-grid {
    grid-template-columns: 1fr;
  }

  .mf-feature-grid,
  .mf-plan-grid,
  .mf-shot-layout,
  .mf-proof-grid,
  .mf-testimonials {
    grid-template-columns: 1fr;
  }

  .mf-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .mf-process-grid::before,
  .mf-step::after {
    display: none;
  }

  .mf-step {
    min-height: 0;
    padding: 20px;
    text-align: left;
  }

  .mf-step strong {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-size: 18px;
    box-shadow: none;
  }

  .mf-hero {
    padding-top: 48px;
  }

  .mf-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .mf-trial-stepper {
    grid-template-columns: 1fr;
  }

  .mf-field-span-2 {
    grid-column: span 1;
  }

  .mf-booking-main {
    padding-top: 32px;
  }
}

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

  .mf-identity-grid {
    grid-template-columns: 1fr;
  }

  .mf-logo img {
    width: 246px;
  }

  .mf-hero h1 {
    font-size: clamp(29px, 8.8vw, 46px);
  }

  .mf-hero-description,
  .mf-title-block p,
  .mf-split-wrap p,
  .mf-cta-panel p {
    font-size: 16px;
  }

  .mf-hero-panel,
  .mf-feature,
  .mf-step,
  .mf-split-wrap,
  .mf-differential-spotlight,
  .mf-proof,
  .mf-quote,
  .mf-cta-panel,
  .mf-booking-copy,
  .mf-booking-card,
  .mf-booking-success {
    padding: 20px;
  }

  .mf-process-grid,
  .mf-kpi-grid {
    grid-template-columns: 1fr;
  }

  .mf-integration-box ul {
    grid-template-columns: 1fr;
  }

  .mf-step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .mf-step-actions .mf-btn {
    width: 100%;
  }

  .mf-cta {
    padding: 56px 0;
  }

  .mf-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
