/* MallorcaExperts marketing landing (scoped under .me-landing) */

.me-landing {
  --me-bg: #fafaf8;
  --me-card: #fff;
  --me-text: #1f1f1f;
  --me-muted: #5f6b76;
  --me-border: #e8e6e3;
  --me-accent: #ee7300;
  --me-accent-hover: #d96700;
  --me-tint: #fdeee0;
  --me-success: #2f855a;
  --me-error: #d64545;
  --me-dark: #1f1f1f;
  --me-radius: 16px;
  --me-max: 1320px;
  --me-gutter: 48px;
  background: var(--me-bg);
  color: var(--me-text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.me-landing * { box-sizing: border-box; }
.me-landing a { color: var(--me-accent); text-decoration: none; }
.me-landing img { max-width: 100%; height: auto; display: block; }
.me-landing .me-split__media img,
.me-landing .me-cover__img,
.me-landing .me-hero__photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Logo must beat `.me-landing img { height:auto }` (specificity 0,1,1) */
.me-landing .me-nav__logo {
  height: 30px;
  width: auto;
  max-width: 220px;
  max-height: 30px;
  object-fit: contain;
}
.me-landing .me-footer__logo {
  height: 24px;
  width: auto;
  max-width: 180px;
  max-height: 24px;
  object-fit: contain;
}

.me-wrap {
  max-width: var(--me-max);
  margin: 0 auto;
  padding-left: var(--me-gutter);
  padding-right: var(--me-gutter);
  box-sizing: border-box;
}

.me-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--me-border);
  overflow: visible;
}
.admin-bar .me-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .me-nav { top: 46px; }
}
.me-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  overflow: visible;
}
.me-nav__brand { flex-shrink: 0; z-index: 2; }
.me-nav__logo { height: 30px; width: auto; }
.me-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.me-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 2;
}
.me-nav .me-btn-sm { flex-shrink: 0; }
.me-nav__cta-mobile { display: none !important; }
.me-nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--me-border);
  background: #fff;
  color: var(--me-text) !important;
  flex-shrink: 0;
}
.me-nav__login:hover {
  border-color: var(--me-accent);
  color: var(--me-accent) !important;
}
.me-nav__login--mobile { display: none !important; }
.me-nav--dark .me-nav__login {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.me-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--me-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.me-nav__burger,
.me-nav__burger::before,
.me-nav__burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--me-text);
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.me-nav__burger::before,
.me-nav__burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.me-nav__burger::before { top: -6px; }
.me-nav__burger::after { top: 6px; }
.me-nav.is-open .me-nav__burger { background: transparent; }
.me-nav.is-open .me-nav__burger::before {
  top: 0;
  transform: rotate(45deg);
}
.me-nav.is-open .me-nav__burger::after {
  top: 0;
  transform: rotate(-45deg);
}
.me-nav--dark .me-nav__toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.me-nav--dark .me-nav__burger,
.me-nav--dark .me-nav__burger::before,
.me-nav--dark .me-nav__burger::after {
  background: #fff;
}
.me-nav__links a {
  color: var(--me-text) !important;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.me-nav__links a:hover { border-color: var(--me-accent); color: var(--me-text) !important; }
.me-nav__links a.me-btn,
.me-nav__links a.me-btn-primary,
.me-landing a.me-btn-primary,
.me-landing .me-btn-primary {
  color: #fff !important;
  border-bottom-color: transparent !important;
}
.me-landing a.me-btn-primary:hover,
.me-landing .me-btn-primary:hover,
.me-nav__links a.me-btn-primary:hover {
  color: #fff !important;
  background: var(--me-accent-hover);
}
.me-btn-sm {
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
}

.me-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s;
}
.me-btn-primary { background: var(--me-accent); color: #fff !important; }
.me-btn-primary:hover { background: var(--me-accent-hover); color: #fff !important; }
.me-btn-ghost {
  background: #fff;
  color: var(--me-text) !important;
  border: 1px solid var(--me-border);
}
.me-btn-ghost:hover {
  border-color: var(--me-accent);
  color: var(--me-text) !important;
}
.me-btn-sm { padding: 11px 22px; font-size: 15px; border-radius: 8px; }

.me-eyebrow {
  color: var(--me-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.me-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 22px;
}
.me-h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.me-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--me-muted);
  max-width: 520px;
  margin: 0 0 36px;
}
.me-center { text-align: center; }
.me-center .me-lead { margin-left: auto; margin-right: auto; }

.me-hero {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 64px;
}
.me-hero__copy {
  flex: 1 1 320px;
  min-width: 0;
}
.me-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.me-hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.me-hero__stats strong { display: block; font-size: 26px; font-weight: 800; }
.me-hero__stats span { font-size: 13px; color: var(--me-muted); }
.me-hero__media {
  position: relative;
  flex: 1 1 320px;
  height: 480px;
  min-width: 0;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e6e3;
}
.me-hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.me-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
  max-width: none;
}
.me-hero__media.is-ready .me-hero__photo {
  opacity: 1;
}
.me-hero__float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  width: min(320px, calc(100% - 40px));
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: 20px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: 0.15s;
}
.me-hero__media.is-ready .me-hero__float {
  opacity: 1;
  transform: translateY(0);
}
.me-hero__float-title {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--me-text);
}
.me-hero__float-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--me-accent);
  flex: 0 0 auto;
  position: relative;
}
.me-hero__float-check::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.me-hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.me-hero__chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6f5f2;
  border: 1px solid var(--me-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--me-text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: calc(0.4s + (var(--me-hero-i, 0) * 0.1s));
}
.me-hero__media.is-ready .me-hero__chip {
  opacity: 1;
  transform: none;
}
.me-hero__more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--me-muted);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: calc(0.4s + (var(--me-hero-i, 0) * 0.1s));
  white-space: nowrap;
}
.me-hero__media.is-ready .me-hero__more {
  opacity: 1;
  transform: none;
}
.me-hero__copy { min-width: 0; }

/* Design image-slot placeholders (no mockup screenshots) */
.me-cover {
  position: relative;
  overflow: hidden;
  background: #eceae6;
}
.me-cover__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.me-cover__ph {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed #c8c4be;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(238, 115, 0, 0.06), transparent 40%),
    repeating-linear-gradient(
      -45deg,
      #f3f1ed,
      #f3f1ed 8px,
      #eceae6 8px,
      #eceae6 16px
    );
  padding: 16px;
  box-sizing: border-box;
}
.me-cover__ph-label {
  font-size: 13px;
  font-weight: 600;
  color: #5f6b76;
  text-align: center;
  max-width: 220px;
  line-height: 1.4;
}
.me-cover--fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.me-cover--card {
  height: 170px;
  border-radius: 0;
}
.me-article .me-cover--card { height: 160px; }
.me-cover--avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.me-cover--avatar .me-cover__ph {
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  padding: 0;
}
.me-cover--avatar .me-cover__ph-label {
  font-size: 9px;
  max-width: 36px;
}
.me-trust {
  border-top: 1px solid var(--me-border);
  border-bottom: 1px solid var(--me-border);
  background: #fff;
  padding: 36px 0;
}
.me-trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.me-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 15px;
  flex: 1 1 200px;
  min-width: 0;
}
.me-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--me-tint);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--me-accent);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.me-icon__svg {
  display: block;
  width: 22px;
  height: 22px;
}
.me-icon--sm {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}
.me-icon-ring {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid var(--me-accent);
  display: block;
}
.me-lead--center { max-width: 760px; margin: 0 auto; font-size: 17px; }
.me-card .me-icon { margin-bottom: 20px; }

.me-section { padding: 110px 0 90px; }
.me-section--white {
  background: #fff;
  border-top: 0;
  border-bottom: 0;
}
.me-section__head { max-width: 760px; margin: 0 auto 56px; }

.me-grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.me-card {
  flex: 1 1 280px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-sizing: border-box;
}
.me-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
  border-color: var(--me-accent);
}
.me-card h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.me-card p { margin: 0; font-size: 14px; color: var(--me-muted); line-height: 1.6; }
button.me-card--category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
button.me-card--category:focus-visible {
  outline: 2px solid var(--me-accent);
  outline-offset: 2px;
}
.me-card__hint {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--me-accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
button.me-card--category:hover .me-card__hint,
button.me-card--category:focus-visible .me-card__hint {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .me-card__hint {
    opacity: 1;
    transform: none;
  }
}
.me-cat-dialog {
  border: 0;
  padding: 0;
  max-width: 480px;
  width: calc(100% - 32px);
  border-radius: var(--me-radius);
  background: #fff;
  box-shadow: 0 24px 64px rgba(31, 31, 31, 0.2);
}
.me-cat-dialog::backdrop {
  background: rgba(31, 31, 31, 0.45);
}
.me-cat-dialog__inner {
  position: relative;
  padding: 32px 28px 28px;
}
.me-cat-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--me-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.me-cat-dialog__close:hover {
  background: #f3f2f0;
  color: var(--me-text);
}
.me-cat-dialog__title {
  margin: 0 36px 10px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--me-text);
}
.me-cat-dialog__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--me-muted);
}
.me-cat-dialog__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--me-text);
}
.me-cat-dialog__topics {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.me-cat-dialog__topics li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--me-text);
}
.me-cat-dialog__topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--me-accent);
}
.me-cat-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.me-cat-dialog__actions .me-btn {
  flex: 1 1 100%;
  justify-content: center;
  text-align: center;
}
.me-cat-advisor {
  margin-top: 20px;
  padding: 16px;
  background: #f7f6f4;
  border: 1px solid var(--me-border);
  border-radius: 12px;
}
.me-cat-advisor__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--me-accent);
}
.me-cat-advisor__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}
.me-cat-advisor__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e6e3;
}
.me-cat-advisor__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.me-cat-advisor__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--me-text);
}
.me-cat-advisor__role {
  font-size: 13px;
  color: var(--me-muted);
  margin-bottom: 4px;
}
.me-cat-advisor__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--me-text);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.me-cat-advisor__link:hover {
  color: var(--me-accent);
}
.me-cat-dialog__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--me-muted);
}

.me-split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 64px;
  align-items: center;
}
.me-split__media {
  flex: 1 1 46%;
  min-width: 0;
  max-width: 100%;
  border-radius: var(--me-radius);
  overflow: hidden;
  height: 480px;
  background: #e8e6e3;
  position: relative;
}
.me-split__copy {
  flex: 1 1 42%;
  min-width: 0;
  max-width: 100%;
}
.me-split__media img,
.me-split__media .me-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.me-partner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--me-text);
  font-size: 16px;
  line-height: 1.8;
}
.me-partner-list li {
  position: relative;
  padding-left: 22px;
}
.me-partner-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--me-accent);
  font-weight: 700;
}

.me-landing .me-steps {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.me-landing .me-step {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.me-step:last-child { padding-bottom: 0; }
.me-step--line::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 27px;
  width: 2px;
  bottom: 0;
  background: var(--me-border);
  z-index: 0;
}
.me-step__n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--me-accent);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.me-step__body {
  padding-top: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}
.me-step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.me-step p {
  margin: 0;
  font-size: 15px;
  color: var(--me-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.me-compare {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.me-compare__col {
  flex: 1 1 280px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  padding: 36px 32px;
  box-sizing: border-box;
}
.me-compare__col--pro {
  background: #fff9f3;
  border: 2px solid var(--me-accent);
}
.me-compare__col h3 { margin: 0 0 24px; font-size: 17px; color: var(--me-muted); }
.me-compare__col--pro h3 { color: var(--me-accent); font-size: 19px; }
.me-compare__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--me-muted);
}
.me-compare__col--pro .me-compare__row { color: var(--me-text); font-weight: 500; }
.me-x, .me-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2px;
}
.me-x {
  border: 2px solid var(--me-error);
  color: transparent;
  font-size: 0;
}
.me-x::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--me-error);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.me-check {
  background: var(--me-accent);
  color: transparent;
  font-size: 0;
}
.me-check::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.me-partner-intro {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.5;
}
.me-partner-track {
  margin-top: 8px;
  overflow: visible;
}
.me-partner-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.me-partner-card {
  flex: 1 1 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  overflow: hidden;
  box-sizing: border-box;
}
.me-partner-card__img { height: 170px; background: #e8e6e3; }
.me-partner-card__img img { width: 100%; height: 100%; object-fit: cover; }
.me-partner-card__body { padding: 22px; }
.me-partner-card__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.me-partner-card__top strong {
  font-size: 16px;
  flex: 1 1 140px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.me-partner-cta {
  margin-top: 40px;
}
.me-verified {
  background: #eaf5ef;
  color: var(--me-success);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.me-quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.me-quote {
  flex: 1 1 280px;
  max-width: 100%;
  background: var(--me-bg);
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  padding: 32px;
  box-sizing: border-box;
}
.me-quote__stars { color: var(--me-accent); font-weight: 700; margin-bottom: 16px; }
.me-quote__text { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.me-quote__who { display: flex; align-items: center; gap: 12px; }
.me-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8e6e3;
  overflow: hidden;
}
.me-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* CTA band — full-bleed dark (design); soft gradient, no screenshot bg */
.me-cta-band {
  background: var(--me-dark);
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}
.me-cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(238, 115, 0, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(31, 31, 31, 0.92), rgba(31, 31, 31, 1));
  z-index: 1;
  pointer-events: none;
}
.me-cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 24px;
}
.me-cta-band h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-align: center;
}
.me-cta-band .me-cta-sub {
  color: #a9afb6;
  font-size: 17px;
  margin: 0 0 28px;
  text-align: center;
}
.me-cta-band__inner--convert { max-width: 720px; }
.me-cta-trust {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  color: #fafaf8;
  font-size: 14px;
  font-weight: 600;
}
.me-cta-trust li::before {
  content: "✓ ";
  color: var(--me-accent);
}
.me-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.me-cta-panel {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.me-cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.me-cta-form > * { flex: 1 1 100%; }
.me-cta-form > div:not(.me-cta-form__full) { flex: 1 1 240px; }
.me-cta-form__full { flex: 1 1 100%; }
.me-cta-panel .me-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f1f1f;
}
.me-cta-panel .me-select,
.me-cta-panel .me-input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--me-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #1f1f1f;
  resize: vertical;
}
.me-cta-panel .me-btn {
  width: 100%;
  border-radius: 10px;
  padding: 17px;
  font-size: 16px;
}

.me-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.me-feature {
  flex: 1 1 230px;
  max-width: 100%;
  background: var(--me-bg);
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-sizing: border-box;
}
.me-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
  border-color: var(--me-accent);
}
.me-feature h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.me-feature p { margin: 0; font-size: 14px; color: var(--me-muted); line-height: 1.6; }

.me-partner-card__meta { font-size: 13px; color: var(--me-muted); margin-bottom: 10px; }
.me-partner-card__rating { font-size: 14px; font-weight: 700; color: var(--me-text); }
.me-partner-card__rating span { color: var(--me-muted); font-weight: 500; }
.me-quote__loc { font-size: 13px; color: var(--me-muted); }

.me-section--faq { padding: 110px var(--me-gutter); }
.me-faq-wrap { max-width: 800px; margin: 0 auto; }

.me-article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.me-article {
  flex: 1 1 280px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.me-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.1);
}
.me-article__img { height: 160px; background: #e8e6e3; }
.me-article__img img { width: 100%; height: 100%; object-fit: cover; }
.me-article__body { padding: 24px; }
.me-article__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--me-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.me-article h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.me-article p { margin: 0; font-size: 14px; color: var(--me-muted); line-height: 1.6; }

/* Wizard page: continuous CTA look */
.me-wizard {
  min-height: 100vh;
  background: #1f1f1f;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.me-wizard__top {
  position: relative;
  padding: 48px 24px 32px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.me-wizard__top-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.me-wizard__top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.5), rgba(31, 31, 31, 0.92));
}
.me-wizard__top-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.me-wizard__top h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-family: inherit;
}
.me-wizard__top p { color: #a9afb6; font-size: 17px; margin: 0; }
.me-wizard__sheet {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 40px 32px 64px;
  min-height: 60vh;
}
.me-wizard__sheet .me-form-shell {
  max-width: none;
  margin: 0;
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.me-wizard__sheet .me-form-shell h2 { display: none; }
.me-wizard__sheet .me-form-shell > .me-muted { display: none; }

/* Kill theme/Elementor typography bleed on marketing surfaces */
.me-landing h1,
.me-landing h2,
.me-landing h3,
.me-wizard h1,
.me-wizard h2,
.me-wizard h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-style: normal !important;
}
body.me-platform #site-header,
body.me-platform .site-header,
body.me-platform header.site-header,
body.me-platform .site-footer,
body.me-platform #site-footer,
body.me-platform footer.site-footer,
.me-landing .site-header,
.me-wizard ~ #site-header {
  display: none !important;
}

.me-footer {
  border-top: 1px solid var(--me-border);
  background: #fff;
  color: var(--me-muted);
  margin-top: 0;
}
.me-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}
.me-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 32px;
}
.me-footer__brand-col {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.me-footer__brand { flex-shrink: 0; }
.me-footer__logo {
  height: 28px;
  width: auto;
  filter: none;
}
.me-footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--me-muted);
}
.me-footer__social {
  display: flex;
  gap: 10px;
}
.me-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--me-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--me-text) !important;
  background: #fff;
}
.me-footer__social-link:hover {
  border-color: var(--me-accent);
  color: var(--me-accent) !important;
}
.me-footer__col {
  flex: 1 1 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.me-footer__heading {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--me-text);
}
.me-footer__col a {
  color: var(--me-muted) !important;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.me-footer__col a:hover {
  color: var(--me-text) !important;
}
.me-footer__bottom {
  border-top: 1px solid var(--me-border);
  padding-top: 24px;
}
.me-footer__copy {
  margin: 0;
  font-size: 13px;
  color: var(--me-muted);
}

.me-article--link {
  color: inherit !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.me-article--link:hover {
  transform: translateY(-2px);
}
.me-article--link h2,
.me-article--link h3 {
  color: var(--me-text);
}
.me-section--page-hero {
  padding-top: 72px;
  padding-bottom: 24px;
}
.me-section--page-hero .me-h1 {
  margin: 0 0 16px;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.me-section--page-hero .me-lead {
  margin: 0 auto;
  max-width: 640px;
  color: var(--me-muted);
  font-size: 17px;
  line-height: 1.55;
}
.me-empty {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: var(--me-radius);
}
.me-empty strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--me-text);
}
.me-empty p {
  margin: 0;
  color: var(--me-muted);
  line-height: 1.55;
}
.me-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.me-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--me-border);
  color: var(--me-text) !important;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}
.me-pager .page-numbers.current,
.me-pager .page-numbers:hover {
  border-color: var(--me-accent);
  color: var(--me-accent) !important;
}
.me-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--me-muted);
}
.me-breadcrumb a { color: var(--me-muted) !important; }
.me-breadcrumb a:hover { color: var(--me-accent) !important; }
.me-article-page {
  padding: 48px 0 72px;
}
.me-article-page__wrap {
  max-width: 760px;
}
.me-article-page__head { margin-bottom: 28px; }
.me-article-page__title {
  margin: 0 0 14px;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.me-article-page__meta {
  margin: 0 0 16px;
  color: var(--me-muted);
  font-size: 14px;
}
.me-article-page__deck {
  margin: 0;
  color: var(--me-muted);
  font-size: 18px;
  line-height: 1.55;
}
.me-article-page__hero {
  margin: 0 0 32px;
  border-radius: var(--me-radius);
  overflow: hidden;
  background: #eee;
}
.me-article-page__hero img {
  display: block;
  width: 100%;
  height: auto;
}
.me-article-page__content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--me-text);
}
.me-article-page__content h2,
.me-article-page__content h3 {
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.me-article-page__content p { margin: 0 0 18px; }
.me-article-page__content ul,
.me-article-page__content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.me-article-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.me-article-page__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--me-border);
}
.me-prose {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.7;
}
.me-prose p { margin: 0 0 18px; }

@media (max-width: 900px) {
  .me-footer__top { gap: 32px 24px; }
  .me-footer__brand-col,
  .me-footer__col { max-width: none; flex: 1 1 45%; }
  .me-h1,
  .me-article-page__title { font-size: 32px; }
}
.me-nav--dark {
  background: rgba(31, 31, 31, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.me-nav--dark .me-nav__links a {
  color: rgba(250, 250, 248, 0.88) !important;
  border-color: transparent;
}
.me-nav--dark .me-nav__links a:hover {
  color: #fff !important;
  border-color: var(--me-accent);
}

.me-faq__item.is-open .me-faq__q,
.me-faq__q:hover {
  background: transparent;
  color: inherit;
}

.me-faq { max-width: 800px; margin: 0 auto; }
.me-faq__item {
  border-bottom: 0;
  margin-bottom: 8px;
  border-radius: 14px;
  background: #fff;
}
.me-faq__item.is-open {
  background: #fff;
}
.me-faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  color: var(--me-text);
  border-radius: 14px;
}
.me-faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.me-faq__icon::before,
.me-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--me-text);
}
.me-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.me-faq__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: opacity 0.15s;
}
.me-faq__item.is-open .me-faq__icon::after { opacity: 0; }
.me-faq__a {
  display: none;
  padding: 0 18px 20px;
  font-size: 15px;
  color: var(--me-muted);
  line-height: 1.7;
  max-width: none;
}
.me-faq__item.is-open .me-faq__a { display: block; }

.me-page-hero {
  padding-top: 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--me-border);
  background: #fff;
}
.me-page-hero .me-lead { margin-bottom: 0; }

.me-partner-page .me-page-hero {
  border-bottom: 0;
  background: transparent;
  padding-bottom: 48px;
}
.me-partner-page .me-trust {
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

/* Soft CI atmosphere instead of hairline section dividers */
.me-partner-page {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(circle at 92% 18%, rgba(238, 115, 0, 0.10) 0%, rgba(238, 115, 0, 0) 42%),
    radial-gradient(circle at 8% 58%, rgba(238, 115, 0, 0.07) 0%, rgba(238, 115, 0, 0) 38%),
    radial-gradient(circle at 78% 88%, rgba(238, 115, 0, 0.06) 0%, rgba(238, 115, 0, 0) 36%),
    #fafaf8;
}
.me-partner-page::before,
.me-partner-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(238, 115, 0, 0.14);
  pointer-events: none;
  z-index: 0;
}
.me-partner-page::before {
  top: 220px;
  right: -80px;
  width: 260px;
  height: 260px;
  box-shadow: 0 0 0 28px rgba(238, 115, 0, 0.035);
}
.me-partner-page::after {
  bottom: 320px;
  left: -100px;
  width: 320px;
  height: 320px;
  box-shadow: 0 0 0 36px rgba(238, 115, 0, 0.03);
}
.me-partner-page > .me-nav,
.me-partner-page > .me-section,
.me-partner-page > .me-footer {
  position: relative;
  z-index: 1;
}
.me-partner-page .me-section--white {
  background: rgba(255, 255, 255, 0.72);
}
.me-partner-page .me-section#faq {
  background: transparent;
}
.me-partner-page #bewerbung.me-section--white {
  background:
    radial-gradient(circle at 12% 20%, rgba(238, 115, 0, 0.08) 0%, rgba(238, 115, 0, 0) 45%),
    #fff;
}

@media (max-width: 1100px) and (min-width: 961px) {
  .me-nav__links { gap: 18px; }
  .me-nav__links a { font-size: 14px; }
  .me-partner-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 960px) {
  .me-landing {
    --me-gutter: 20px;
  }
  .me-partner-track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
    margin-left: calc(var(--me-gutter, 20px) * -1);
    margin-right: calc(var(--me-gutter, 20px) * -1);
    padding-left: var(--me-gutter, 20px);
    padding-right: 0;
    padding-bottom: 8px;
  }
  .me-partner-cards {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    padding-right: 48px;
    gap: 16px;
  }
  .me-partner-card {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    scroll-snap-align: start;
  }
  .me-nav__cta-desk { display: none !important; }
  .me-nav__login--desk { display: none !important; }
  .me-nav__toggle { display: inline-flex; }
  .me-nav__inner {
    overflow: visible;
  }
  .me-nav__links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: none;
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px var(--me-gutter) 16px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--me-border);
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.1);
    z-index: 100;
  }
  .me-nav.is-open .me-nav__links {
    display: flex !important;
  }
  .me-nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--me-border);
    font-size: 16px;
    font-weight: 600;
  }
  .me-nav__links a:last-child { border-bottom: 0; }
  .me-nav__cta-mobile {
    display: inline-flex !important;
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0 !important;
    color: #fff !important;
  }
  .me-nav__login--mobile {
    display: inline-flex !important;
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 12px 14px;
    justify-content: center;
    gap: 8px;
    border-bottom: 0 !important;
    font-weight: 600;
  }
  .me-nav--dark .me-nav__links {
    background: rgba(31, 31, 31, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .me-nav--dark .me-nav__links a {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .me-hero,
  .me-split,
  .me-compare {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 32px;
  }
  .me-hero__copy,
  .me-hero__media,
  .me-split__media,
  .me-split__copy,
  .me-compare__col,
  .me-card,
  .me-feature,
  .me-quote,
  .me-article {
    flex: 1 1 100% !important;
    width: 100%;
    max-width: 100%;
  }
  .me-cta-form > * {
    flex: 1 1 100%;
  }
  /* Hero image below copy — do NOT use order:-1 */
  .me-hero__media {
    height: 360px;
    order: 0;
  }
  .me-hero__float {
    left: 12px;
    bottom: 12px;
    width: min(260px, calc(100% - 24px));
    padding: 14px 14px 12px;
    border-radius: 16px;
  }
  .me-hero__float-title {
    font-size: 13px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .me-hero__float-check {
    width: 18px;
    height: 18px;
  }
  .me-hero__float-check::before {
    left: 5px;
    top: 3px;
    width: 4px;
    height: 8px;
  }
  .me-hero__chip {
    padding: 6px 10px;
    font-size: 12px;
  }
  .me-hero__more {
    font-size: 12px;
  }
  .me-split__media { height: 280px; order: 0; }
  .me-section { padding: 64px 0; }
  .me-section--faq { padding: 64px var(--me-gutter); }
  .me-cta-band__inner { padding: 64px 20px; }
  .me-cta-panel { padding: 28px 20px; }
  .me-hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .me-h1 { font-size: 32px; }
  .me-h2 { font-size: 26px; }
  .me-cta-band h2 { font-size: 28px; }
  .me-landing > *:not(.me-nav),
  .me-section {
    overflow-x: hidden;
  }
  .me-wrap {
    overflow-x: visible;
  }
  .me-wizard-page__title {
    font-size: 28px;
  }
  .me-wizard-page__sub {
    white-space: normal;
  }
  .me-wizard-trust {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .me-hero__media {
    height: 300px;
  }
  .me-hero__stats {
    gap: 20px;
  }
  .me-hero__stats strong {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .me-footer__brand-col,
  .me-footer__col { flex: 1 1 100%; }
  .me-footer__inner { padding-top: 40px; padding-bottom: 32px; gap: 32px; }
  .me-section--page-hero { padding-top: 48px; }
  .me-article-page__title { font-size: 28px; }
  .me-article-page { padding: 32px 0 56px; }
}

@media (max-width: 600px) {
  .me-landing {
    --me-gutter: 16px;
  }
  .me-nav__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .me-landing .me-nav__logo { height: 26px; max-height: 26px; max-width: 170px; }
  .me-btn-sm { padding: 10px 16px; font-size: 14px; }
  .me-hero__stats { gap: 18px; }
  .me-compare__col { padding: 28px 22px; }
  .me-step { padding-bottom: 28px; }
  .me-step__n { width: 48px; height: 48px; font-size: 18px; }
  .me-step--line::before { left: 23px; top: 48px; }
  .me-h1 { font-size: 28px; }
  .me-h2 { font-size: 24px; }
  .me-hero__media { height: 300px; }
  .me-hero__float {
    left: 10px;
    bottom: 10px;
    width: min(260px, calc(100% - 20px));
    padding: 12px;
  }
  .me-split__media { height: 220px; }
}

/* Hard reset against theme/kit leftovers */
body.me-platform {
  margin: 0;
  background: #fafaf8;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
body.me-platform .me-landing {
  overflow-x: clip;
}
body.me-nav-lock {
  overflow: hidden;
}

/* Design / wizard conversion page */
.me-design-page {
  background: var(--me-bg);
}
.me-wizard-page__intro {
  padding: 56px 0 20px;
  text-align: center;
}
.me-wizard-page__title {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}
.me-wizard-page__sub {
  max-width: 720px;
  margin: 0 auto;
  white-space: normal;
}
@media (min-width: 961px) {
  .me-wizard-page__sub {
    white-space: nowrap;
  }
}
.me-wizard-page__sheet {
  padding: 0 0 28px;
}
.me-wizard-page__trust {
  padding: 0 0 72px;
}
.me-wizard-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--me-text);
}
.me-wizard-trust li::before {
  content: "✓ ";
  color: var(--me-accent);
}
.me-wizard-trust--center {
  justify-content: center;
}
.me-wizard-form__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
}
.me-wizard-form .me-muted {
  margin: 0 0 20px;
  color: var(--me-muted);
  font-size: 15px;
}
.me-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--me-text);
}
.me-consent a {
  color: var(--me-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.me-consent .me-muted {
  display: inline;
  margin: 0;
  font-size: inherit;
}
.me-consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.me-partner-apply-sheet {
  max-width: 720px;
  margin: 0 auto;
}

.me-thanks-page .me-thanks {
  min-height: 50vh;
}
.me-thanks {
  padding: 80px 0;
}
.me-thanks__inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}
.me-thanks__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf5ef;
  color: var(--me-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
}
.me-thanks__ref {
  font-size: 15px;
  color: var(--me-muted);
}

/* Old wizard skin (legacy) */
.me-wizard__sheet .me-form-shell {
  max-width: none;
  margin: 0;
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  .me-hero__photo,
  .me-hero__float,
  .me-hero__chip,
  .me-hero__more {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .me-card,
  .me-feature,
  .me-article,
  .me-article--link {
    transition: none;
  }
  .me-card:hover,
  .me-feature:hover,
  .me-article:hover,
  .me-article--link:hover {
    transform: none;
  }
}
