:root {
  --mtw-bg: #f4f7f6;
  --mtw-text: #06201c;
  --mtw-muted: #5b6b68;
  --mtw-line: rgba(6, 32, 28, 0.1);
  --mtw-brand: #00bfa6;
  --mtw-brand-strong: #009e88;
  --mtw-brand-2: #7ff5e4;
  --mtw-accent: #00bfa6;
  --mtw-violet: #00a894;
  --mtw-purple: #00d4bc;
  --mtw-card: #ffffff;
  --mtw-dark: #020224;
  --mtw-hero: #020224;
  --mtw-grad-text: linear-gradient(92deg, #ffffff 0%, #b8fff3 42%, #00bfa6 100%);
  --mtw-grad-title: linear-gradient(92deg, #06201c 0%, #00bfa6 52%, #007a6e 100%);
  --mtw-radius: 22px;
  --mtw-h4-font: "Mona Sans", "Inter", "Tajawal", system-ui, sans-serif;
}

html.mtw-land-root,
.mtw-land-root body {
  font-family: var(--mtw-h4-font);
  background: var(--mtw-bg);
  color: var(--mtw-text);
  max-width: 100%;
  overflow-x: clip;
}

[dir="rtl"] body {
  font-family: "Tajawal", "Mona Sans", "Inter", system-ui, sans-serif;
}

.mtw-land-body {
  position: relative;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--mtw-bg);
}

.mtw-land-body::before,
.mtw-land-body::after {
  display: none;
}

.mtw-land-body .container {
  max-width: 1240px;
}

/* Buttons */
.mtw-h4-btn {
  --btn-h: 56px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  padding: 0 2px;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.mtw-h4-btn--sm {
  --btn-h: 44px;
  font-size: 0.88rem;
}

.mtw-h4-btn__border {
  display: block;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, #7ff5e4, #00bfa6 45%, #007a6e);
}

.mtw-h4-btn__noise {
  display: block;
  border-radius: inherit;
  background: #111018;
  overflow: hidden;
}

.mtw-h4-btn__text {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0.85rem 1.55rem;
  line-height: 1.2;
  color: #fff;
}

.mtw-h4-btn__text::after {
  content: attr(data-back);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.mtw-h4-btn:hover .mtw-h4-btn__text {
  color: transparent;
}

.mtw-h4-btn:hover .mtw-h4-btn__text::after {
  transform: translateY(0);
  color: #fff;
}

.mtw-h4-btn--ghost {
  min-height: 52px;
  padding: 0 1.4rem;
  border: 1px solid rgba(16, 8, 38, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--mtw-text);
  backdrop-filter: blur(10px);
}

.mtw-h4-btn--ghost .mtw-h4-btn__text {
  padding: 0;
  color: inherit;
}

.mtw-h4-btn--ghost .mtw-h4-btn__text::after {
  display: none;
}

.mtw-h4-btn--ghost:hover {
  border-color: var(--mtw-accent);
  background: #fff;
  color: var(--mtw-accent);
}

.mtw-h4-btn--on-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mtw-h4-btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.mtw-h4-btn--on-dark:hover .mtw-h4-btn__text {
  color: #fff;
}

/* Header */
.mtw-h4-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 2, 36, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mtw-h4-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mtw-h4-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.mtw-h4-logo__img {
  max-height: 56px;
  width: auto;
}

.mtw-h4-logo__text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--mtw-brand);
}

.mtw-h4-header__menu {
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: min(582px, 52vw);
  padding: 0.35rem 1.4rem;
}

.mtw-h4-header__glow {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  opacity: 0.55;
}

.mtw-h4-nav__list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mtw-h4-nav__list > li {
  position: relative;
}

.mtw-h4-nav__list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mtw-h4-nav__list a:hover {
  color: var(--mtw-brand);
}

.mtw-h4-nav__list .submenu,
.mtw-h4-nav__list ul {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 220px;
  margin: 0.4rem 0 0;
  padding: 0.6rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mtw-line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16, 8, 38, 0.12);
  z-index: 20;
}

.mtw-h4-nav__list > li:hover > .submenu,
.mtw-h4-nav__list > li:hover > ul {
  display: block;
}

.mtw-h4-nav__list .submenu a,
.mtw-h4-nav__list ul a {
  display: block;
  padding: 0.45rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.mtw-h4-header__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mtw-h4-login {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
}

.mtw-h4-login:hover {
  color: var(--mtw-brand);
}

.mtw-h4-header .mtw-land-lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 2, 36, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mtw-h4-header .mtw-land-lang-flag {
  min-width: 40px;
  height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mtw-h4-header .mtw-land-lang-flag:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mtw-h4-header .mtw-land-lang-flag.is-active {
  color: #06201c;
  background: linear-gradient(120deg, #7ff5e4, #00bfa6);
  box-shadow: 0 4px 14px rgba(0, 191, 166, 0.35);
}

.mtw-land-lang-flags--drawer {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 1rem;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(6, 32, 28, 0.12);
  border-radius: 999px;
  background: #f4f7f6;
}

.mtw-land-lang-flags--drawer .mtw-land-lang-flag {
  flex: 1;
  min-width: 0;
  height: 34px;
  color: #5b6b68;
  background: transparent;
}

.mtw-land-lang-flags--drawer .mtw-land-lang-flag:hover {
  color: var(--mtw-brand-strong);
  background: rgba(0, 191, 166, 0.1);
}

.mtw-land-lang-flags--drawer .mtw-land-lang-flag.is-active {
  color: #fff;
  background: linear-gradient(120deg, #00bfa6, #007a6e);
}

/* Hero — dark like Home 04 */
.mtw-h4-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 90px;
  text-align: center;
  background: var(--mtw-hero);
  color: #fff;
}

.mtw-h4-hero__glow {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.mtw-h4-hero__glow--1 {
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.38), transparent 70%);
}

.mtw-h4-hero__glow--2 {
  top: -6%;
  right: -12%;
  background: radial-gradient(circle, rgba(127, 245, 228, 0.22), transparent 70%);
}

.mtw-h4-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.mtw-h4-hero__rainbow {
  position: absolute;
  left: 0;
  bottom: -180px;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.mtw-h4-hero__rainbow svg {
  width: 100%;
  height: auto;
  display: block;
}

.mtw-h4-hero__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.45), transparent);
  z-index: 1;
}

.mtw-h4-hero .container {
  position: relative;
  z-index: 2;
}

.mtw-h4-hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 340px;
  margin: 0 auto 1.6rem;
  max-width: 920px;
}

.mtw-h4-hero__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ccc9e4;
  opacity: 0.28;
  border: 28px solid #00bfa6;
  filter: blur(64px);
  z-index: 0;
}

.mtw-h4-hero__ring,
.mtw-h4-hero__ring--2 {
  position: absolute;
  border: 1px dashed rgba(127, 245, 228, 0.35);
  border-radius: 50%;
  z-index: 0;
  animation: mtw-h4-spin 28s linear infinite;
}

.mtw-h4-hero__ring {
  width: 430px;
  height: 430px;
}

.mtw-h4-hero__ring--2 {
  width: 510px;
  height: 510px;
  animation-duration: 40s;
  animation-direction: reverse;
  border-style: dotted;
  opacity: 0.5;
}

.mtw-h4-hero__bot {
  position: relative;
  z-index: 1;
  max-width: min(480px, 78vw);
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(0, 191, 166, 0.28));
  animation: mtw-h4-float 5.5s ease-in-out infinite;
}

.mtw-h4-hero__bot-fallback {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 28%),
    linear-gradient(160deg, #00bfa6, #007a6e);
  box-shadow: 0 30px 60px rgba(0, 191, 166, 0.35);
}

.mtw-h4-hero__bot-shadow {
  position: absolute;
  bottom: 18px;
  width: 220px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(10px);
}

.mtw-h4-hero__bubble {
  position: absolute;
  z-index: 2;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  text-align: start;
  box-shadow: 0 24px 40px rgba(0, 191, 166, 0.18);
}

.mtw-h4-hero__bubble p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.mtw-h4-hero__bubble--left {
  top: 12%;
  left: 0;
}

.mtw-h4-hero__bubble--right {
  top: 48%;
  right: 0;
}

.mtw-h4-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 3.2rem;
}

.mtw-h4-grad {
  background: var(--mtw-grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.mtw-h4-grad--light {
  background: var(--mtw-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.mtw-h4-hero__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.28rem 0.45rem;
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.07;
  color: #fff;
}

.mtw-h4-hero__title .mtw-h4-grad {
  background: var(--mtw-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.mtw-h4-hero__title .mtw-h4-mark {
  width: 42px;
  height: 32px;
  filter: drop-shadow(0 0 12px rgba(0, 191, 166, 0.55));
}

.mtw-h4-hero__lead {
  margin: 0 auto 1.8rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.mtw-h4-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
}

.mtw-h4-hero__partners {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.mtw-h4-hero__partners::before,
.mtw-h4-hero__partners::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.mtw-h4-hero__partners::before {
  left: 0;
  background: linear-gradient(90deg, #020224, transparent);
}

.mtw-h4-hero__partners::after {
  right: 0;
  background: linear-gradient(-90deg, #020224, transparent);
}

.mtw-h4-hero .mtw-h4-marquee__chip,
.mtw-h4-hero .mtw-h4-marquee__item {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
}

.mtw-h4-marquee {
  overflow: hidden;
}

.mtw-h4-marquee__track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: mtw-h4-marquee 28s linear infinite;
}

.mtw-h4-marquee--reverse .mtw-h4-marquee__track {
  animation-direction: reverse;
}

.mtw-h4-marquee__chip,
.mtw-h4-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--mtw-text);
  font-weight: 700;
  white-space: nowrap;
}

.mtw-h4-marquee__item img {
  max-height: 28px;
  width: auto;
}

/* Section heads */
.mtw-h4-sec-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.6rem;
}

.mtw-h4-eyebrow {
  margin: 0 0 0.9rem;
}

.mtw-h4-eyebrow span {
  display: inline-flex;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.12);
  color: var(--mtw-brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.mtw-h4-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--mtw-text);
}

.mtw-h4-lead {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--mtw-muted);
}

.mtw-h4-mark {
  display: inline-block;
  width: 34px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.mtw-h4-sec-head--light .mtw-h4-title {
  color: #fff;
}

.mtw-h4-sec-head--light .mtw-h4-grad {
  background: var(--mtw-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.mtw-h4-sec-head--light .mtw-h4-lead {
  color: rgba(255, 255, 255, 0.78);
}

.mtw-h4-sec-head--light .mtw-h4-eyebrow span {
  background: rgba(255, 255, 255, 0.1);
  color: #b8fff3;
}

/* Choose */
.mtw-h4-choose {
  position: relative;
  padding: 6.5rem 0 5rem;
}

.mtw-h4-choose__stage {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.mtw-h4-choose__instant {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  min-height: 280px;
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(226, 255, 248, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(0, 191, 166, 0.2), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.mtw-h4-choose__instant-copy {
  max-width: 36ch;
  align-self: center;
}

.mtw-h4-choose__instant h3 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  font-weight: 800;
}

.mtw-h4-choose__instant p {
  margin: 0;
  color: var(--mtw-muted);
}

.mtw-h4-choose__robot {
  justify-self: end;
  align-self: end;
  max-width: 280px;
  width: 100%;
  height: auto;
}

.mtw-h4-choose__composer {
  padding: 1rem 1.1rem 0.9rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--mtw-line);
  box-shadow: 0 16px 40px rgba(16, 8, 38, 0.06);
}

.mtw-h4-choose__input {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #f6f4fb;
}

.mtw-h4-choose__input p {
  margin: 0;
  color: var(--mtw-muted);
}

.mtw-h4-choose__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mtw-accent);
  box-shadow: 0 0 0 6px rgba(99, 66, 245, 0.15);
}

.mtw-h4-choose__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
}

.mtw-h4-choose__tools span {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: #f3f0fa;
  font-size: 0.85rem;
  font-weight: 600;
}

.mtw-h4-choose__send {
  margin-inline-start: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--mtw-text);
  color: #fff;
}

.mtw-h4-choose__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mtw-h4-choose-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 24px;
  color: #fff;
  min-height: 210px;
}

.mtw-h4-choose-card h3 {
  margin: 1.1rem 0 0.5rem;
  font-size: 1.2rem;
}

.mtw-h4-choose-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.mtw-h4-choose-card--1 { background: linear-gradient(160deg, #1ec8d4, #0ea5b5); }
.mtw-h4-choose-card--2 { background: linear-gradient(160deg, #ff8a5b, #f97316); }
.mtw-h4-choose-card--3 { background: linear-gradient(160deg, #ff5d8f, #e11d74); }

.mtw-h4-choose-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* Features */
.mtw-h4-features {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
}

.mtw-h4-features__burst {
  position: absolute;
  inset: 8% 10% auto;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(0, 191, 166, 0.22), transparent 62%);
  pointer-events: none;
}

.mtw-h4-features__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  --scroll-zoom: 1;
  transform: scale(var(--scroll-zoom));
  transform-origin: center;
  will-change: transform;
}

.mtw-h4-feature-card {
  position: relative;
  padding: 1.55rem 1.4rem 1.5rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(6, 32, 28, 0.08);
  box-shadow: 0 16px 36px rgba(6, 32, 28, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mtw-h4-feature-card[data-mtw-reveal] {
  transform: translateY(40px) scale(0.9);
}

.mtw-h4-feature-card[data-mtw-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.mtw-h4-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 191, 166, 0.35);
  box-shadow: 0 22px 44px rgba(0, 191, 166, 0.12);
}

.mtw-h4-feature-card:hover .mtw-h4-feature-card__icon {
  animation: mtw-h4-spin 0.7s ease;
}

.mtw-h4-feature-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(0, 191, 166, 0.08), #fff 42%),
    #fff;
}

.mtw-h4-feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.05rem;
}

.mtw-h4-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--mtw-brand);
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.16), rgba(0, 122, 110, 0.1));
}

.mtw-h4-feature-card__icon svg {
  display: block;
}

.mtw-h4-feature-card__num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(0, 158, 136, 0.7);
}

.mtw-h4-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
}

.mtw-h4-feature-card p {
  margin: 0;
  color: var(--mtw-muted);
}

/* Pricing */
.mtw-h4-pricing {
  padding: 6.5rem 0;
}

.mtw-h4-price-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.mtw-h4-price-toggle__label {
  font-weight: 700;
  color: var(--mtw-muted);
}

.mtw-h4-price-toggle__label.is-active {
  color: var(--mtw-text);
}

.mtw-h4-price-toggle__btn {
  width: 58px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #00bfa6, #007a6e);
  position: relative;
}

.mtw-h4-price-toggle__btn::after {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s ease;
}

.mtw-h4-price-toggle.is-yearly .mtw-h4-price-toggle__btn::after {
  transform: translateX(28px);
}

[dir="rtl"] .mtw-h4-price-toggle.is-yearly .mtw-h4-price-toggle__btn::after {
  transform: translateX(-28px);
}

.mtw-h4-price-toggle__save {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.14);
  color: var(--mtw-brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.mtw-price-country {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  flex-wrap: wrap;
}

.mtw-h4-sec-head--country-only {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mtw-h4-sec-head--country-only .mtw-price-country {
  margin-top: 0;
}

.mtw-price-country__label {
  margin: 0;
  color: var(--mtw-muted, #5b6b7a);
  font-size: 0.92rem;
  font-weight: 600;
}

.mtw-price-country__select {
  min-width: 12.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(15, 40, 60, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--mtw-ink, #0f283c);
  font: inherit;
  font-weight: 600;
}

.mtw-h4-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  --scroll-zoom: 1;
  transform: scale(var(--scroll-zoom));
  transform-origin: center top;
  will-change: transform;
}

.mtw-h4-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.5rem 1.6rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--mtw-line);
  box-shadow: 0 18px 40px rgba(6, 32, 28, 0.05);
}

.mtw-h4-price-card[data-mtw-reveal] {
  transform: translateY(56px) scale(0.88);
}

.mtw-h4-price-card[data-mtw-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.mtw-h4-price-card.is-popular {
  border-color: rgba(0, 191, 166, 0.55);
  box-shadow: 0 24px 50px rgba(0, 191, 166, 0.16);
  background:
    linear-gradient(180deg, rgba(0, 191, 166, 0.08), #fff 28%),
    #fff;
}

.mtw-h4-price-card.is-popular[data-mtw-reveal].is-visible {
  transform: translateY(-12px) scale(1.03);
  animation: mtw-h4-price-float 3.4s ease-in-out 0.9s infinite;
}

.mtw-h4-price-card.is-visible:hover {
  transform: translateY(-14px) scale(1.03);
}

.mtw-h4-price-card__cta {
  margin-top: auto;
  padding-top: 1.25rem;
}

.mtw-h4-price-card__tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.14);
  color: var(--mtw-brand-strong);
  font-size: 0.75rem;
  font-weight: 800;
}

.mtw-h4-price-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.mtw-h4-price-card__amount {
  margin: 0 0 0.45rem;
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mtw-h4-price-card__amount span {
  display: inline-block;
  margin-inline-start: 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mtw-muted);
}

.mtw-h4-price-card__disc,
.mtw-h4-price-card ul {
  color: var(--mtw-muted);
}

.mtw-h4-price-card__included {
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
}

.mtw-h4-price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mtw-h4-price-card li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.35rem;
  border-bottom: 1px solid var(--mtw-line);
}

.mtw-h4-price-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mtw-brand);
}

.mtw-h4-pricing__trial {
  margin: 1.8rem 0 0;
  text-align: center;
  color: var(--mtw-muted);
}

.mtw-h4-pricing__trial span {
  color: var(--mtw-accent);
  font-weight: 700;
}

.mtw-h4-pricing__trial a {
  display: inline-block;
  margin-inline-start: 0.55rem;
  color: var(--mtw-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.mtw-h4-pricing__trial a:hover {
  text-decoration: underline;
}

.mtw-h4-btn.w-100 {
  width: 100%;
}

.mtw-h4-btn.w-100 .mtw-h4-btn__border,
.mtw-h4-btn.w-100 .mtw-h4-btn__noise {
  width: 100%;
}

.mtw-h4-btn.w-100 .mtw-h4-btn__text {
  width: 100%;
  text-align: center;
}

/* Integrations */
.mtw-h4-apps {
  padding: 4.5rem 0 6.5rem;
  overflow: hidden;
}

.mtw-h4-apps__wrap {
  --orbit-scroll: 0deg;
  --orbit-scale: 0.84;
  --orbit-r: 240px;
  position: relative;
  display: grid;
  place-items: center;
}

.mtw-h4-apps__glow {
  position: absolute;
  width: min(640px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.16), transparent 68%);
  pointer-events: none;
}

.mtw-h4-apps__stage {
  position: relative;
  width: min(680px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.mtw-h4-apps__orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: rotate(var(--orbit-scroll)) scale(var(--orbit-scale));
  transform-origin: center;
  will-change: transform;
}

.mtw-h4-apps__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 191, 166, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mtw-h4-apps__ring--a {
  width: calc(var(--orbit-r) * 2 + 72px);
  height: calc(var(--orbit-r) * 2 + 72px);
}

.mtw-h4-apps__ring--b {
  width: calc(var(--orbit-r) * 1.35);
  height: calc(var(--orbit-r) * 1.35);
  opacity: 0.55;
  border-color: rgba(0, 191, 166, 0.2);
}

.mtw-h4-btn.w-100 {
  width: 100%;
}

.mtw-h4-btn.w-100 .mtw-h4-btn__border,
.mtw-h4-btn.w-100 .mtw-h4-btn__noise {
  width: 100%;
}

.mtw-h4-btn.w-100 .mtw-h4-btn__text {
  width: 100%;
  text-align: center;
}

.mtw-h4-apps__logo {
  --i: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  pointer-events: auto;
  transform: rotate(calc(var(--i) * 30deg)) translateY(calc(var(--orbit-r) * -1));
}

.mtw-h4-apps__logo-face {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform: rotate(calc((var(--i) * -30deg) - var(--orbit-scroll)));
}

.mtw-h4-apps__logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--mtw-line);
  box-shadow: 0 12px 28px rgba(6, 32, 28, 0.08);
  color: var(--mtw-brand);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mtw-h4-apps__logo-card:hover {
  transform: scale(1.08);
  border-color: rgba(0, 191, 166, 0.45);
  box-shadow: 0 16px 32px rgba(0, 191, 166, 0.18);
}

.mtw-h4-apps__logo-card svg {
  display: block;
}

.mtw-h4-apps__center {
  position: relative;
  z-index: 1;
  max-width: 360px;
  text-align: center;
  padding: 1.6rem 1.2rem;
  background: radial-gradient(circle, rgba(244, 247, 246, 0.96) 42%, rgba(244, 247, 246, 0.7) 68%, transparent 78%);
}

.mtw-h4-apps__center p {
  margin: 0 0 1.1rem;
  color: var(--mtw-muted);
}

/* Process */
.mtw-h4-process {
  position: relative;
  padding: 6.5rem 0 5rem;
  background:
    radial-gradient(circle at 50% 80%, rgba(0, 191, 166, 0.32), transparent 42%),
    linear-gradient(180deg, #06201c 0%, #020224 100%);
  overflow: hidden;
}

.mtw-h4-process__wrap {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.mtw-h4-process__col {
  display: grid;
  gap: 1rem;
}

.mtw-h4-process-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mtw-h4-process-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.mtw-h4-process-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.mtw-h4-process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.mtw-h4-process__robot {
  display: grid;
  place-items: center;
}

.mtw-h4-process__robot img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 191, 166, 0.4));
}

.mtw-h4-process__orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #00bfa6 45%, #007a6e);
}

/* FAQ */
.mtw-h4-faq {
  padding: 6.5rem 0;
}

.mtw-h4-faq__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
  align-items: start;
}

.mtw-h4-faq__left .mtw-h4-title,
.mtw-h4-faq__left .mtw-h4-lead {
  justify-content: flex-start;
  text-align: start;
  margin-inline: 0;
}

.mtw-h4-faq__help {
  margin-top: 1.8rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--mtw-line);
}

.mtw-h4-faq__help h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.mtw-h4-faq__help p {
  margin: 0 0 1rem;
  color: var(--mtw-muted);
}

.mtw-h4-accordion__item {
  margin-bottom: 0.7rem;
  border: 1px solid var(--mtw-line) !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: #fff;
}

.mtw-h4-accordion .accordion-button {
  background: transparent;
  color: var(--mtw-text);
  font-weight: 700;
  box-shadow: none !important;
  padding: 1rem 1.1rem;
}

.mtw-h4-accordion .accordion-button:not(.collapsed) {
  color: var(--mtw-accent);
  background: rgba(99, 66, 245, 0.06);
}

.mtw-h4-accordion .accordion-body {
  color: var(--mtw-muted);
}

/* Testimonials */
.mtw-h4-testimonials {
  padding: 2rem 0 5.5rem;
}

.mtw-h4-testimonials__rows {
  display: grid;
  gap: 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mtw-h4-quote {
  width: min(360px, 78vw);
  margin: 0;
  padding: 1.2rem 1.15rem 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--mtw-line);
  box-shadow: 0 12px 28px rgba(16, 8, 38, 0.05);
}

.mtw-h4-quote__stars {
  color: #f5b301;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
}

.mtw-h4-quote p {
  margin: 0 0 0.9rem;
  color: var(--mtw-text);
}

.mtw-h4-quote footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mtw-h4-quote img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.mtw-h4-quote cite {
  font-style: normal;
  font-weight: 700;
}

.mtw-h4-quote cite span {
  display: block;
  font-weight: 500;
  color: var(--mtw-muted);
  font-size: 0.82rem;
}

.mtw-h4-testimonials__join {
  margin: 1.6rem 0 0;
  text-align: center;
  font-weight: 700;
}

/* CTA */
.mtw-h4-cta {
  padding: 0 0 5rem;
}

.mtw-h4-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 1.5rem;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 191, 166, 0.5), transparent 55%),
    linear-gradient(180deg, #06201c, #020224);
}

.mtw-h4-cta__panel h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mtw-h4-cta__panel p {
  margin: 0 auto 1.4rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
}

.mtw-h4-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* Footer */
.mtw-h4-footer {
  --mtw-foot-ink: #e8fffb;
  --mtw-foot-mute: rgba(232, 255, 251, 0.62);
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 0;
  background:
    radial-gradient(56% 70% at 12% 0%, rgba(0, 191, 166, 0.34), transparent 58%),
    radial-gradient(42% 55% at 92% 18%, rgba(127, 245, 228, 0.12), transparent 62%),
    linear-gradient(180deg, #041816 0%, #020224 62%, #010114 100%);
  color: var(--mtw-foot-mute);
}

.mtw-h4-footer__glow {
  position: absolute;
  inset: auto 10% -18% 10%;
  height: 42%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.22), transparent 68%);
  filter: blur(8px);
}

.mtw-h4-footer .container {
  position: relative;
  z-index: 1;
}

.mtw-h4-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.4rem 2rem;
  align-items: start;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mtw-h4-footer__brand {
  max-width: 28rem;
}

.mtw-h4-footer__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.mtw-h4-footer__logo .mtw-h4-logo__img {
  height: 34px;
  width: auto;
}

.mtw-h4-footer__tagline {
  margin: 0;
  color: var(--mtw-foot-ink);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.mtw-h4-footer__cta {
  margin-top: 1.25rem;
}

.mtw-h4-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mtw-h4-footer h4 {
  margin: 0 0 0.95rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mtw-h4-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mtw-h4-footer li {
  margin: 0;
}

.mtw-h4-footer li + li {
  margin-top: 0.55rem;
}

.mtw-h4-footer a {
  color: var(--mtw-foot-mute);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mtw-h4-footer a:hover {
  color: #fff;
}

.mtw-h4-footer__col a {
  display: inline-block;
}

.mtw-h4-footer__col a:hover {
  transform: translateX(3px);
}

[dir="rtl"] .mtw-h4-footer__col a:hover {
  transform: translateX(-3px);
}

.mtw-h4-footer .mtw-h4-logo__text {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mtw-h4-logo__img--light {
  filter: brightness(0) invert(1);
}

.mtw-h4-footer__news {
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(0, 191, 166, 0.16), rgba(255, 255, 255, 0.04) 55%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.mtw-h4-footer__news p {
  margin: 0;
  color: var(--mtw-foot-mute);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mtw-h4-footer__form {
  display: flex;
  gap: 0.45rem;
  margin-top: 1rem;
}

.mtw-h4-footer__form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(2, 2, 36, 0.45);
  color: #fff;
  padding: 0 1.05rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mtw-h4-footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.mtw-h4-footer__form input:focus {
  border-color: rgba(0, 191, 166, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.18);
}

.mtw-h4-footer__form button {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ff5e4, #00bfa6 55%, #009e88);
  color: #04201d;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.mtw-h4-footer__form button:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

[dir="rtl"] .mtw-h4-footer__form button span {
  display: inline-block;
  transform: scaleX(-1);
}

.mtw-h4-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.mtw-h4-footer__bottom p {
  margin: 0;
}

.mtw-h4-footer__lang-select {
  min-width: 7.5rem;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 0.9rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.mtw-h4-footer__wordmark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.08em;
  margin-top: 0.6rem;
  font-size: clamp(4.4rem, 15vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0 0.15rem;
  user-select: none;
  animation: mtw-h4-foot-mark 8s ease-in-out infinite;
}

.mtw-h4-footer__wordmark .is-accent {
  color: rgba(0, 191, 166, 0.22);
}

.mtw-h4-footer__robot {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: min(150px, 18vw);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  animation: mtw-h4-foot-bot 4.8s ease-in-out infinite;
}

@keyframes mtw-h4-foot-mark {
  0%, 100% { opacity: 0.85; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

@keyframes mtw-h4-foot-bot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .mtw-h4-footer__wordmark,
  .mtw-h4-footer__robot {
    animation: none;
  }
}

/* Inner pages */
.mtw-h4-page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.2rem;
  background:
    radial-gradient(42% 70% at 18% 20%, rgba(0, 191, 166, 0.28), transparent 70%),
    radial-gradient(38% 60% at 88% 10%, rgba(127, 245, 228, 0.14), transparent 72%),
    #020224;
  text-align: center;
}

.mtw-h4-page-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mtw-h4-page-hero .container {
  position: relative;
  z-index: 1;
}

.mtw-h4-page-hero .mtw-h4-eyebrow {
  justify-content: center;
  margin-bottom: 0.85rem;
}

.mtw-h4-page-hero .mtw-h4-eyebrow span {
  background: rgba(255, 255, 255, 0.1);
  color: #b8fff3;
}

.mtw-h4-hero--page .mtw-h4-eyebrow {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.mtw-h4-eyebrow--on-dark span {
  background: rgba(255, 255, 255, 0.1);
  color: #b8fff3;
}

.mtw-h4-about-stats {
  padding: 5rem 0 4rem;
}

.mtw-h4-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 991px) {
  .mtw-h4-about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .mtw-h4-about-stats__grid {
    grid-template-columns: 1fr;
  }
}

.mtw-h4-page-hero__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto 0.85rem;
  max-width: 18em;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.mtw-h4-page-hero__title .mtw-h4-mark {
  filter: drop-shadow(0 0 12px rgba(0, 191, 166, 0.55));
}

.mtw-h4-page-hero__lead {
  margin: 0 auto;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.mtw-h4-page {
  padding: 3.2rem 0 4.5rem;
}

.mtw-h4-page .mtw-h4-sec-head {
  margin-bottom: 2rem;
}

.mtw-inner-hero {
  display: none;
}

.mtw-panel,
.mtw-sidebar-card,
.mtw-post-card,
.mtw-info-card {
  border: 1px solid var(--mtw-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(2, 2, 36, 0.06);
  padding: 1.35rem 1.4rem;
  color: var(--mtw-text);
}

.mtw-panel-title,
.mtw-info-card h3,
.mtw-post-card__title,
.mtw-post-card__title a {
  color: var(--mtw-text);
  text-decoration: none;
}

.mtw-copy,
.mtw-info-card p,
.mtw-post-meta,
.mtw-richtext,
.mtw-richtext p,
.mtw-richtext li {
  color: var(--mtw-muted);
}

.mtw-richtext h1,
.mtw-richtext h2,
.mtw-richtext h3,
.mtw-richtext h4 {
  color: var(--mtw-text);
  margin: 1.6rem 0 0.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mtw-legal__updated {
  margin: 0 0 1.1rem;
  color: var(--mtw-muted);
  font-size: 0.9rem;
}

.mtw-legal .mtw-richtext h2:first-child {
  margin-top: 0;
}

.mtw-legal .mtw-richtext ul {
  margin: 0.4rem 0 1rem;
  padding-inline-start: 1.2rem;
}

.mtw-legal .mtw-richtext li + li {
  margin-top: 0.35rem;
}

.mtw-media {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--mtw-line);
  object-fit: cover;
}

.mtw-stat-card {
  height: 100%;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--mtw-line);
  background: #fff;
}

.mtw-stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--mtw-brand);
}

.mtw-stat-card span {
  font-size: 0.9rem;
  color: var(--mtw-muted);
}

.mtw-check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mtw-check-list li::before {
  content: "✓";
  margin-inline-end: 0.45rem;
  color: var(--mtw-brand);
  font-weight: 700;
}

.mtw-info-card a,
.mtw-mini-post,
.mtw-pill-list a {
  color: var(--mtw-brand-strong);
  text-decoration: none;
}

.mtw-search {
  display: flex;
  border: 1px solid var(--mtw-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mtw-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--mtw-text);
  padding: 0.7rem 0.85rem;
}

.mtw-search button {
  border: 0;
  background: var(--mtw-dark);
  color: #fff;
  font-weight: 700;
  padding: 0 0.95rem;
}

.mtw-mini-post {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.7rem;
  color: var(--mtw-text);
}

.mtw-mini-post img {
  width: 66px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.mtw-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mtw-pill-list a {
  border: 1px solid var(--mtw-line);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.mtw-h4-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mtw-h4-form__span {
  grid-column: 1 / -1;
}

.mtw-h4-field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  color: var(--mtw-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.mtw-h4-field input,
.mtw-h4-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--mtw-line);
  border-radius: 14px;
  background: #f7fbfa;
  color: var(--mtw-text);
  font-size: 1rem;
  outline: none;
}

.mtw-h4-field textarea {
  min-height: 140px;
  resize: vertical;
}

.mtw-h4-field input:focus,
.mtw-h4-field textarea:focus {
  border-color: var(--mtw-brand);
  box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.16);
}

.mtw-h4-empty {
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--mtw-muted);
}

.mtw-h4-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mtw-h4-team-card {
  text-align: center;
  padding: 1.2rem 1rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--mtw-line);
  background: #fff;
}

.mtw-h4-team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.85rem;
}

.mtw-h4-team-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.mtw-h4-team-card span {
  color: var(--mtw-muted);
  font-size: 0.9rem;
}

.mtw-h4-team-card__social {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.mtw-h4-team-card__social a {
  color: var(--mtw-brand-strong);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.82rem;
}

.mtw-land-feature-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--mtw-line);
  background: #fff;
}

.mtw-land-feature-card__title,
.mtw-land-feature-card__title a {
  color: var(--mtw-text);
  text-decoration: none;
}

.mtw-land-feature-card__text {
  color: var(--mtw-muted);
}

.mtw-land-feature-card__link {
  color: var(--mtw-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 991px) {
  .mtw-h4-form,
  .mtw-h4-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .mtw-h4-form,
  .mtw-h4-team-grid {
    grid-template-columns: 1fr;
  }
}

/* Drawer tweaks on light header */
.mtw-land-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mtw-land-menu-toggle__bar {
  background: #fff;
}

@keyframes mtw-h4-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes mtw-h4-price-float {
  0%, 100% { transform: translateY(-12px) scale(1.03); }
  50% { transform: translateY(-22px) scale(1.03); }
}

@keyframes mtw-h4-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[dir="rtl"] .mtw-h4-marquee__track {
  animation-name: mtw-h4-marquee-rtl;
}

@keyframes mtw-h4-marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

[dir="rtl"] .mtw-h4-footer__robot {
  right: auto;
  left: 6%;
}

[dir="rtl"] .mtw-h4-faq__left .mtw-h4-title {
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .mtw-h4-apps__wrap {
    --orbit-r: 196px;
  }
}

@media (max-width: 991px) {
  .mtw-h4-hero__bubble {
    display: none;
  }

  .mtw-h4-hero__ring {
    width: 300px;
    height: 300px;
  }

  .mtw-h4-hero__ring--2 {
    width: 360px;
    height: 360px;
  }

  .mtw-h4-choose__instant,
  .mtw-h4-choose__cards,
  .mtw-h4-features__grid,
  .mtw-h4-pricing__grid,
  .mtw-h4-process__wrap,
  .mtw-h4-faq__wrap,
  .mtw-h4-footer__top {
    grid-template-columns: 1fr;
  }

  .mtw-h4-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .mtw-h4-footer__brand {
    max-width: none;
  }

  .mtw-h4-choose__robot {
    justify-self: center;
    max-width: 200px;
  }

  .mtw-h4-price-card.is-popular {
    transform: none;
    animation: none;
  }

  .mtw-h4-apps__wrap {
    --orbit-r: 148px;
  }

  .mtw-h4-apps__logo,
  .mtw-h4-apps__logo-card {
    width: 54px;
    height: 54px;
  }

  .mtw-h4-apps__logo {
    margin: -27px 0 0 -27px;
  }

  .mtw-h4-apps__center {
    max-width: 240px;
    padding: 1rem 0.6rem;
  }

  .mtw-h4-apps__center p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .mtw-h4-apps__wrap {
    --orbit-r: 118px;
  }

  .mtw-h4-hero__title {
    font-size: 2rem;
  }

  .mtw-h4-features__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtw-h4-hero__bot,
  .mtw-h4-hero__ring,
  .mtw-h4-hero__ring--2,
  .mtw-h4-marquee__track,
  .mtw-h4-price-card.is-popular[data-mtw-reveal].is-visible {
    animation: none;
  }

  .mtw-h4-apps__wrap {
    --orbit-scroll: 0deg;
    --orbit-scale: 1;
  }

  .mtw-h4-apps__orbit,
  .mtw-h4-apps__logo-face {
    transform: none;
  }

  .mtw-h4-apps__logo {
    transform: rotate(calc(var(--i) * 30deg)) translateY(calc(var(--orbit-r) * -1)) rotate(calc(var(--i) * -30deg));
  }
}
