.elementor-2556 .elementor-element.elementor-element-2e9943b{--display:flex;}.elementor-2556 .elementor-element.elementor-element-5324f97{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-2556 .elementor-element.elementor-element-74f526d{width:var( --container-widget-width, 80% );max-width:80%;--container-widget-width:80%;--container-widget-flex-grow:0;}.elementor-2556 .elementor-element.elementor-element-74f526d.elementor-element{--align-self:center;}@media(min-width:768px){.elementor-2556 .elementor-element.elementor-element-2e9943b{--content-width:1200px;}}/* Start custom CSS *//* ============================================================
   MLX Landing — design system (paste ONCE into the page Custom CSS)
   TO RECOLOR A NEW SITE: change ONLY the CSS variables in
   `.mlx-landing { --blue ... }` below. Nothing else needs editing.
   Inter font + Tabler icons are loaded by the HTML blocks.
   ============================================================ */
.mlx-landing * { margin: 0; padding: 0; box-sizing: border-box; }
.mlx-landing {
  --blue:       #0050b1;   /* PRIMARY — App Blue */
  --blue-dark:  #003c85;   /* PRIMARY DARK */
  --blue-soft:  #E6EEF9;   /* PRIMARY 8% tint */
  --navy:       #0A1F44;   /* HEADINGS / dark sections — Ink Navy */
  --green:      #f87331;   /* ACCENT (CTA) — Orange */
  --green-dark: #d85f20;   /* ACCENT DARK */
  --green-soft: #FEEFE7;   /* ACCENT tint */
  --success:    #2e7176;   /* Teal dark — trust badges */
  --ink:        #0A1F44;   /* body text */
  --muted:      #6a6c6c;   /* secondary text */
  --line:       #e8e8ec;   /* borders */
  --bg-soft:    #dff0f2;   /* section soft bg — Aqua */
  --white:      #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}
.mlx-landing h1, .mlx-landing h2, .mlx-landing h3, .mlx-landing h4,
.mlx-landing p, .mlx-landing blockquote, .mlx-landing button, .mlx-landing input {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  letter-spacing: normal;
}
.mlx-landing h1, .mlx-landing h2, .mlx-landing h3,
.mlx-landing .mlx-hero-title, .mlx-landing .mlx-section-title,
.mlx-landing .mlx-stat-num, .mlx-landing .mlx-quiz-q,
.mlx-landing .mlx-quiz-result-title, .mlx-landing .ot-card-title,
.mlx-landing .ot-float-price, .mlx-landing .mcn-price {
  font-family: 'Sora', 'Inter', -apple-system, Arial, sans-serif;
}
.mlx-landing > section { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
/* overflow-x: clip, EI hidden — hidden tekee bodystä vierityssäiliön ja rikkoo
   kaksisormivierityksen macOS:n trackpadilla. clip estää vaakavierityksen ilman sitä. */
body { overflow-x: clip; }
@supports not (overflow: clip) { body { overflow-x: hidden; } }
.mlx-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.mlx-section { padding: 72px 0; }
.mlx-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue); margin-bottom: 14px;
}
.mlx-section-tag::before {
  content: ''; display: block; width: 24px; height: 3px;
  background: var(--blue); border-radius: 2px;
}
.mlx-section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  line-height: 1.2; color: var(--navy); margin-bottom: 16px;
}
.mlx-section-desc { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.7; }
/* ── ANIMATIONS ── */
.mlx-fade { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.mlx-fade.visible { opacity: 1; transform: translateY(0); }
/* ── INLINE SVG ICONS (hero block loads no icon font) ── */
.mlx-ic { width: 1.15em; height: 1.15em; flex-shrink: 0; display: inline-block; vertical-align: middle; }
/* ── BUTTONS ── */
.mlx-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: #fff !important; padding: 16px 32px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,0.9); cursor: pointer; font-family: inherit;
  transition: transform 0.2s, background 0.2s;
  box-shadow: none;
}
.mlx-btn-primary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); }
.mlx-btn-green {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f98b55, var(--green));
  color: #ffffff !important; padding: 16px 32px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none !important;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(248,115,49,0.4);
}
.mlx-btn-green:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(248,115,49,0.55); }
.mlx-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff !important; padding: 16px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 600; text-decoration: none !important;
  cursor: pointer; transition: background 0.2s, transform 0.2s; font-family: inherit;
}
.mlx-btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
/* ── HERO ── */
.mlx-hero {
  background: linear-gradient(115deg, #0A1F44 0%, #132E66 60%, #1D4090 100%);
  padding: 105px 0 0;
  min-height: 760px;
  position: relative;
  overflow: hidden;
  overflow: clip;
}
.mlx-hero::after {
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,220,240,0.16) 0%, transparent 70%);
  bottom: -180px; right: -120px; pointer-events: none;
}
.mlx-hero-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 48px; align-items: center; position: relative; z-index: 2;
  padding-bottom: 64px;
  min-height: 655px;
}
.mlx-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #B9C6DE; padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.mlx-hero-badge-dot { width: 8px; height: 8px; background: #5BDCF0; border-radius: 50%; animation: mlx-blink 1.6s ease-in-out infinite; }
@keyframes mlx-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.mlx-landing .mlx-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #5BDCF0; margin-bottom: 16px; line-height: 1.4;
}
.mlx-landing .mlx-hero-kicker::before {
  content: ''; display: block; width: 24px; height: 3px;
  background: #5BDCF0; border-radius: 2px;
}
.mlx-landing .mlx-hero-title {
  font-size: clamp(30px, 4.6vw, 50px); font-weight: 900;
  color: var(--white); line-height: 1.04; margin-bottom: 18px;
}
.mlx-hero-title .mlx-hl { color: #5BDCF0; }
.mlx-hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.82);
  line-height: 1.65; margin-bottom: 28px; max-width: 520px;
}
.mlx-hero-cta { display: inline-flex; flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 28px; }
.mlx-hero-cta .mlx-btn-primary, .mlx-hero-cta .mlx-btn-green { justify-content: center; }
.mlx-hero-trust {
  display: none; background: none; border: none; box-shadow: none;
  padding: 0; margin: 2px 0 16px; font-size: 14px; color: var(--white);
  text-align: left;
}
.mlx-hero-trust > div, .mlx-hero-trust .ti-widget {
  margin-left: 0 !important; margin-right: 0 !important; text-align: left !important;
}
.mlx-hero-chips { display: flex; gap: 14px; flex-wrap: nowrap; }
.mlx-hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  white-space: nowrap;
}
.mlx-hero-chip i { color: #5BDCF0; font-size: 17px; }
.mlx-hero-chip .mlx-ic { color: #5BDCF0; width: 17px; height: 17px; }
.mlx-hero-img-wrap { position: relative; align-self: stretch; }
.mlx-hero-img {
  position: absolute; bottom: -64px; left: 50%; transform: translateX(-50%);
  height: calc((100% + 28px) * 0.9); width: auto; max-width: none; max-height: none; display: block;
  filter: drop-shadow(0 24px 48px rgba(4,12,30,0.5));
}
@media (min-width: 901px){
  .mlx-landing .mlx-hero-img { height: 600px !important; width: auto !important; max-width: none !important; max-height: none !important; }
}
/* ── STATS BAR ── */
.mlx-stats { background: var(--white); border-bottom: 1px solid var(--line); padding: 40px 0; }
.mlx-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.mlx-stat { text-align: center; padding: 8px 20px; border-right: 1px solid var(--line); }
.mlx-stat:last-child { border-right: none; }
.mlx-stat-num {
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--blue);
  line-height: 1.15; display: block; margin-bottom: 6px; white-space: nowrap;
}
.mlx-stat-label { font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.45; }
/* ── QUIZ ── */
.mlx-quiz-section { background: var(--bg-soft); position: relative; }
.mlx-quiz-grid {
  display: grid; grid-template-columns: 400px 1fr;
  gap: 44px; align-items: end; margin-top: 40px;
}
.mlx-quiz-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 24px 28px; box-shadow: 0 10px 40px rgba(10,31,68,0.08);
  min-height: 530px; display: flex; flex-direction: column; position: relative;
}
.mlx-quiz-step { display: flex; flex-direction: column; justify-content: flex-start; flex: 1; }
.mlx-quiz-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 10px; flex-wrap: wrap;
}
.mlx-quiz-step-label { font-size: 13.5px; font-weight: 700; color: var(--blue); letter-spacing: 0.03em; }
.mlx-quiz-tags { display: flex; gap: 8px; }
.mlx-quiz-tag {
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 100px;
}
.mlx-quiz-progress { height: 6px; background: var(--bg-soft); border-radius: 100px; overflow: hidden; margin-bottom: 16px; }
.mlx-quiz-progress-fill {
  height: 100%; width: 20%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 100px; transition: width 0.4s ease;
}
.mlx-quiz-q { font-size: clamp(17px, 2.2vw, 20px); font-weight: 800; color: var(--navy); margin-bottom: 5px; line-height: 1.3; }
.mlx-quiz-hint { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.mlx-quiz-options { display: flex; flex-direction: column; gap: 8px; flex: 1; justify-content: space-evenly; }
.mlx-quiz-opt {
  display: flex; align-items: center; gap: 12px; text-align: left !important;
  background: rgba(255,255,255,0.6) !important; background-image: none !important;
  border: 1.5px solid #cfd6e0 !important; border-radius: 12px !important;
  padding: 10px 14px !important; margin: 0 !important; min-height: 0 !important;
  font-size: 14.5px !important; font-weight: 500; color: var(--ink) !important;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  font-family: 'Inter', -apple-system, Arial, sans-serif !important; width: 100% !important;
  box-shadow: none !important; text-transform: none !important; letter-spacing: normal !important;
  line-height: 1.45 !important; -webkit-appearance: none; appearance: none; outline: none !important;
}
.mlx-quiz-opt:hover, .mlx-quiz-opt:focus, .mlx-quiz-opt:active {
  border-color: var(--blue) !important; background: #eef4fb !important; color: var(--ink) !important;
  outline: none !important; box-shadow: none !important;
}
.mlx-quiz-opt.selected { border-color: var(--blue) !important; background: var(--blue-soft) !important; color: var(--ink) !important; }
.mlx-quiz-opt-ic {
  width: 28px; height: 28px; border-radius: 8px; background: var(--bg-soft);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; transition: background 0.15s, color 0.15s;
}
.mlx-quiz-opt.selected .mlx-quiz-opt-ic { background: var(--blue); color: #fff; }
/* Option label wrap-fix (mobile): labels MUST be wrapped in <span class="mlx-quiz-opt-txt"> */
.mlx-quiz-opt { align-items: flex-start; white-space: normal; }
.mlx-quiz-opt .mlx-quiz-opt-ic { margin-top: 1px; }
.mlx-quiz-opt .mlx-quiz-opt-txt { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.mlx-bmi-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.mlx-bmi-field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.mlx-bmi-field input {
  width: 100% !important; border: 1.5px solid #cfd6e0 !important; border-radius: 12px !important;
  padding: 10px 14px !important; font-size: 16px !important; font-weight: 700; color: var(--navy) !important;
  font-family: 'Inter', -apple-system, Arial, sans-serif !important; outline: none; transition: border-color 0.15s;
  -moz-appearance: textfield; appearance: textfield; background: rgba(255,255,255,0.7) !important;
  box-shadow: none !important; margin: 0 !important; min-height: 0 !important;
}
.mlx-bmi-field input::-webkit-outer-spin-button,
.mlx-bmi-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mlx-bmi-field input:focus { border-color: var(--blue) !important; outline: none !important; box-shadow: none !important; }
.mlx-bmi-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.mlx-bmi-slider {
  width: 100% !important; -webkit-appearance: none; appearance: none;
  height: 6px !important; border-radius: 100px !important; border: none !important;
  background: linear-gradient(90deg, var(--blue), var(--green)) !important;
  outline: none !important; margin: 4px 0 0 !important; padding: 0 !important;
  cursor: pointer; box-shadow: none !important; min-height: 0 !important;
}
.mlx-bmi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 2px 8px rgba(0,80,177,0.35); cursor: pointer;
}
.mlx-bmi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 2px 8px rgba(0,80,177,0.35); cursor: pointer;
}
.mlx-bmi-live {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 12px; min-height: 54px;
}
.mlx-bmi-live-val { font-size: 24px; font-weight: 900; color: var(--blue); min-width: 60px; }
.mlx-bmi-live-txt { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.mlx-bmi-live-txt b { color: var(--navy); }
.mlx-quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; }
.mlx-quiz-brand { position: absolute; left: 26px; bottom: 16px; margin: 0; }
.mlx-quiz-brand img { height: 74px; width: auto; }
.mlx-quiz-back {
  background: none !important; background-image: none !important; border: none !important;
  color: var(--muted) !important; font-size: 14px !important; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Inter', -apple-system, Arial, sans-serif !important;
  padding: 8px 6px !important; margin: 0 !important; visibility: hidden;
  box-shadow: none !important; text-transform: none !important; min-height: 0 !important;
  -webkit-appearance: none; appearance: none; outline: none !important; letter-spacing: normal !important;
}
.mlx-quiz-back.show { visibility: visible; }
.mlx-quiz-back:hover, .mlx-quiz-back:focus { color: var(--blue) !important; background: none !important; outline: none !important; box-shadow: none !important; }
.mlx-quiz-next {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important; border: none !important; border-radius: 12px !important;
  padding: 11px 24px !important; margin: 0 !important; min-height: 0 !important;
  font-size: 14.5px !important; font-weight: 700; cursor: pointer;
  font-family: 'Inter', -apple-system, Arial, sans-serif !important;
  transition: opacity 0.15s, transform 0.15s; box-shadow: 0 6px 20px rgba(0,80,177,0.3) !important;
  text-transform: none !important; letter-spacing: normal !important;
  -webkit-appearance: none; appearance: none; outline: none !important;
}
.mlx-quiz-next:hover, .mlx-quiz-next:focus { transform: translateY(-1px); background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important; color: #fff !important; outline: none !important; }
.mlx-quiz-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none !important; }
.mlx-quiz-result { text-align: center; padding: 8px 0; }
.mlx-quiz-result-ic {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.mlx-quiz-result-ic.good { background: #dff0f2; color: var(--success); }
.mlx-quiz-result-ic.mid  { background: var(--blue-soft); color: var(--blue); }
.mlx-quiz-result-title { font-size: clamp(18px, 2.4vw, 21px); font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.mlx-quiz-result-text { font-size: 14px; color: var(--muted); max-width: 480px; margin: 0 auto 10px; line-height: 1.55; }
.mlx-quiz-result-bmi {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 14px; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.mlx-quiz-result-points {
  display: flex; flex-direction: column; gap: 6px; max-width: 440px;
  margin: 0 auto 12px; text-align: left;
}
.mlx-quiz-result-point { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink); line-height: 1.45; }
.mlx-quiz-result-point i { color: var(--blue); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.mlx-quiz-result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.mlx-quiz-restart {
  background: none; border: none; color: var(--muted); font-size: 13.5px;
  cursor: pointer; text-decoration: underline; font-family: inherit;
}
.mlx-quiz-restart:hover { color: var(--blue); }
.mlx-quiz-disclaimer { font-size: 11.5px; color: #8e8e92; margin-top: 8px; line-height: 1.45; }
.mlx-quiz-figure { align-self: end; display: flex; flex-direction: column; align-items: center; margin-bottom: -72px; }
.mlx-quiz-figure img { width: 100%; max-width: 400px; height: auto; display: block; filter: drop-shadow(0 16px 32px rgba(10,31,68,0.18)); }
.mlx-quiz-bubble {
  position: relative; z-index: 2;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 17px; font-size: 14px; font-weight: 600; color: var(--navy);
  box-shadow: 0 8px 24px rgba(10,31,68,0.14); max-width: 240px; line-height: 1.45;
  margin-bottom: 20px;
}
.mlx-quiz-bubble::before {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 11px solid transparent; border-top-color: var(--line); border-bottom-width: 0;
}
.mlx-quiz-bubble::after {
  content: ''; position: absolute; top: calc(100% - 1.5px); left: 50%; transform: translateX(-50%);
  border: 10px solid transparent; border-top-color: var(--white); border-bottom-width: 0;
}
/* ── WHEN TO SEEK HELP ── */
.mlx-when { background: var(--white); }
.mlx-when-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.mlx-when-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; transition: transform 0.2s, box-shadow 0.2s;
}
.mlx-when-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,31,68,0.1); }
.mlx-when-ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--white);
  border: 1px solid var(--line); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 16px;
}
.mlx-when-card h3 { font-size: 17.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mlx-when-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
/* ── PROCESS ── */
.mlx-process { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%); }
.mlx-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.mlx-process-step {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 22px; position: relative;
}
.mlx-process-num {
  position: absolute; top: -14px; left: 22px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
}
.mlx-process-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0 12px; }
.mlx-process-step i.mlx-process-ic { font-size: 26px; color: var(--blue); display: block; }
.mlx-process-step h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; line-height: 1.35; }
.mlx-process-step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.mlx-process-step .mlx-process-price { display: inline-block; font-size: 13px; font-weight: 700; color: var(--blue); background: var(--blue-soft); border-radius: 100px; padding: 3px 11px; white-space: nowrap; }
/* ── DOCTOR / EXPERT QUOTE ── */
.mlx-doctor { background: var(--navy); position: relative; overflow: hidden; overflow: clip; }
.mlx-doctor::before {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,90,200,0.45) 0%, transparent 70%);
  top: -160px; left: -120px;
}
.mlx-doctor-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.mlx-doctor-img { width: auto; max-width: 100%; max-height: 520px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 20px 44px rgba(0,0,0,0.45)); }
.mlx-doctor-quote { color: var(--white); padding-bottom: 0; }
.mlx-doctor-quote i.mlx-qmark { font-size: 40px; color: #5BDCF0; display: block; margin-bottom: 14px; }
.mlx-doctor-quote blockquote {
  font-size: clamp(18px, 2.6vw, 24px); font-weight: 600; line-height: 1.55; margin-bottom: 22px;
  border: none !important; border-left: 0 !important; border-inline-start: 0 !important;
  padding: 0 !important; padding-left: 0 !important; padding-inline-start: 0 !important;
  margin-left: 0; background: none !important; quotes: none;
}
.mlx-doctor-quote blockquote::before, .mlx-doctor-quote blockquote::after { content: none !important; display: none !important; }
.mlx-doctor-quote .mlx-doctor-name { font-size: 15px; font-weight: 700; color: #5BDCF0; }
.mlx-doctor-quote .mlx-doctor-title { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.mlx-doctor-sign { display: flex; align-items: center; gap: 18px; }
.mlx-doctor-avatar {
  display: none;
  width: 76px !important; height: 76px !important;
  min-width: 76px; max-width: 76px !important; aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  object-fit: cover !important; object-position: 50% 8% !important; flex-shrink: 0;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.35) !important;
  padding: 0 !important; margin: 0 !important; box-shadow: none !important;
}
/* ── PRICING ── */
.mlx-pricing { background: var(--bg-soft); }
.mlx-pricing-note {
  background: var(--green-soft); border: 1px solid #f8d7c4; border-radius: 14px;
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  max-width: 640px; margin-top: 20px; font-size: 15px; color: var(--ink); line-height: 1.6;
}
.mlx-pricing-note i { color: var(--green-dark); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
/* ── HOITO/PROGRAM TIMELINE (interactive, inside pricing) ── */
.ot-wrap{font-family:'Inter',-apple-system,Arial,sans-serif;font-size:16px;padding:2rem 0 0;color:var(--ink);position:relative}
.ot-layout{display:grid;grid-template-columns:1fr 170px;gap:16px;align-items:start}
.ot-timeline{display:flex;flex-direction:column;gap:0}
.ot-phase{display:grid;grid-template-columns:56px 1fr;gap:0 12px}
.ot-phase-inner{padding-bottom:1.75rem}
.ot-phase:last-child .ot-phase-inner{padding-bottom:0}
.ot-axis{display:flex;flex-direction:column;align-items:center}
.ot-dot{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;z-index:2;position:relative}
.ot-dot.p1{background:var(--blue-soft);color:var(--blue);border:2px solid var(--blue)}
.ot-dot.p2{background:#dbe7f5;color:var(--blue-dark);border:2px solid var(--blue-dark)}
.ot-dot.p3{background:var(--green-soft);color:var(--green-dark);border:2px solid var(--green)}
.ot-line{width:2px;flex:1;min-height:20px}
.ot-line.p1{background:linear-gradient(var(--blue),var(--blue-dark))}
.ot-line.p2{background:linear-gradient(var(--blue-dark),var(--green))}
.ot-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:1.1rem;cursor:pointer;transition:border-color 0.2s,box-shadow 0.2s,transform 0.2s}
.ot-card:hover{border-color:var(--blue);box-shadow:0 12px 32px rgba(10,31,68,0.1);transform:translateY(-2px)}
.ot-card.active{border-color:var(--blue);box-shadow:0 12px 32px rgba(0,80,177,0.12);transform:none}
.ot-card-header{display:flex;justify-content:space-between;align-items:flex-start;gap:8px}
.ot-card-header-left{display:flex;flex-direction:column;gap:6px;flex:1;min-width:0}
.ot-card-title{font-size:16px;font-weight:700;color:var(--navy)}
.ot-card-period{font-size:13px;color:var(--muted);background:var(--bg-soft);border:1px solid var(--line);border-radius:100px;padding:3px 10px;white-space:nowrap;align-self:flex-start;font-weight:600}
.ot-card-lead{font-size:15px;color:var(--muted);line-height:1.45;margin-top:4px}
.ot-card-chevron{flex-shrink:0;color:var(--blue);font-size:20px;transition:transform 0.3s ease,color 0.2s;margin-top:2px}
.ot-card.active .ot-card-chevron{transform:rotate(180deg);color:var(--blue)}
.ot-card-body{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.ot-card-body-inner{padding-top:0.85rem}
.ot-steps{display:flex;flex-direction:column;gap:8px;margin-bottom:0.85rem}
.ot-step{display:flex;align-items:flex-start;gap:8px;font-size:16px;line-height:1.5}
.ot-step-icon{width:24px;height:24px;border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.ot-step-icon.teal{background:var(--blue-soft);color:var(--blue)}
.ot-step-icon.blue{background:#dbe7f5;color:var(--blue-dark)}
.ot-step-icon.navy{background:var(--green-soft);color:var(--green-dark)}
.ot-step-text{color:var(--ink)}
.ot-step-muted{color:var(--muted)}
.ot-prices{display:grid;grid-template-columns:repeat(auto-fit,minmax(100px,1fr));gap:7px;margin-top:0.85rem;align-items:stretch}
.ot-price-card{background:var(--bg-soft);border:1px solid var(--line);border-radius:10px;padding:9px 11px;display:flex;flex-direction:column;min-height:76px}
.ot-price-label{font-size:13px;color:var(--muted);margin-bottom:4px}
.ot-price-value{font-size:20px;font-weight:800;line-height:1.2;flex:1;display:flex;align-items:center}
.ot-price-value.teal{color:var(--blue)}
.ot-price-value.blue{color:var(--blue-dark)}
.ot-price-value.navy{color:var(--green-dark)}
.ot-price-note{font-size:12px;color:var(--muted);margin-top:3px;line-height:1.3}
.ot-price-strike{text-decoration:line-through;color:#a8b0bd;font-size:13px;font-weight:400;margin-left:3px}
.ot-anket-row{display:flex;align-items:center;gap:7px;padding:8px 10px;background:var(--bg-soft);border:1px solid var(--line);border-radius:8px;font-size:16px;color:var(--muted);margin-bottom:8px}
.ot-divider{border:none;border-top:1px solid var(--line);margin:10px 0}
.ot-toggle{display:flex;align-items:center;justify-content:center;gap:6px;font-size:13px !important;color:#fff !important;background:linear-gradient(135deg,var(--blue),var(--blue-dark)) !important;cursor:pointer;margin-top:10px;border:none !important;padding:10px 16px !important;border-radius:10px !important;font-family:'Inter',-apple-system,Arial,sans-serif !important;font-weight:600;width:100% !important;box-shadow:0 4px 14px rgba(0,80,177,0.25) !important;text-transform:none !important;letter-spacing:normal !important;-webkit-appearance:none;appearance:none;outline:none !important}
.ot-toggle:hover,.ot-toggle:focus{color:#fff !important;background:linear-gradient(135deg,var(--blue),var(--blue-dark)) !important;outline:none !important;box-shadow:0 6px 18px rgba(0,80,177,0.35) !important}
.ot-toggle i{transition:transform 0.2s}
.ot-toggle.open i{transform:rotate(180deg)}
.ot-details{max-height:0;overflow:hidden;transition:max-height 0.35s ease}
.ot-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:1.75rem;padding-top:1.5rem;border-top:1px solid var(--line)}
.ot-sum-card{background:var(--white);border:1px solid var(--line);border-radius:16px;padding:22px;text-align:left;transition:transform 0.2s,box-shadow 0.2s}
.ot-sum-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(10,31,68,0.1)}
.ot-sum-label{font-size:13.5px;color:var(--muted);margin-bottom:7px;font-weight:500;line-height:1.35}
.ot-sum-value{font-size:20px;font-weight:800;line-height:1.3}
.ot-sticky-col{position:sticky;top:140px;display:flex;flex-direction:column;gap:8px}
.ot-float-card{background:#fff;border:2px solid var(--blue);border-radius:16px;padding:14px 12px;text-align:center}
.ot-float-icon{width:40px;height:40px;border-radius:50%;background:var(--blue-soft);display:flex;align-items:center;justify-content:center;margin:0 auto 10px;color:var(--blue);font-size:20px}
.ot-float-title{font-size:13px;font-weight:700;color:var(--navy);margin-bottom:6px;line-height:1.4}
.ot-float-price{font-size:28px;font-weight:800;color:var(--blue);margin-bottom:2px}
.ot-float-sub{font-size:12px;color:var(--muted);line-height:1.4}
.ot-float-badge{display:inline-block;background:var(--blue-soft);color:var(--blue);border-radius:100px;padding:3px 10px;font-size:12px;margin-top:8px;font-weight:600}
.ot-float-periods{margin-top:10px;display:flex;flex-direction:column;gap:5px}
.ot-float-period{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--muted);justify-content:center}
.ot-float-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}
.chat-ball{display:none;position:absolute;width:34px;height:34px;border-radius:50%;background:var(--navy);color:#fff;font-size:8px;font-weight:700;letter-spacing:0.3px;align-items:center;justify-content:center;z-index:20;pointer-events:none;opacity:0;box-shadow:0 2px 10px rgba(10,31,68,0.4);will-change:top,opacity;left:14px;transform:translate(-50%,-50%)}
#lineExt{display:none;position:absolute;left:13px;width:2px;background:linear-gradient(var(--green),var(--blue));pointer-events:none;z-index:1}
.mobile-chat-note{display:none;background:var(--blue-soft);border:1px solid #B9C6DE;border-radius:16px;padding:16px;margin-top:1.5rem;text-align:center}
.mcn-icon{width:44px;height:44px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 10px;color:var(--blue);font-size:22px;border:1px solid #B9C6DE}
.mcn-title{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:4px}
.mcn-price{font-size:30px;font-weight:800;color:var(--blue)}
.mcn-sub{font-size:14px;color:var(--muted);margin-top:6px;line-height:1.5}
.mcn-periods{display:flex;justify-content:center;gap:12px;margin-top:10px;flex-wrap:wrap}
.mcn-period{display:flex;align-items:center;gap:4px;font-size:13px;color:var(--muted)}
.mcn-dot{width:7px;height:7px;border-radius:50%}
/* ── REVIEWS (heading only; Trustindex shortcode goes in a separate block after) ── */
.mlx-reviews { background: var(--white); padding-bottom: 24px; }
/* ── FAQ ── */
.mlx-faq { background: var(--bg-soft); }
.mlx-faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.mlx-faq-item { background: rgba(255,255,255,0.45); border: 1.5px solid #cfd6e0; border-radius: 14px; overflow: hidden; }
.mlx-faq-item.open { background: rgba(255,255,255,0.7); border-color: var(--blue); }
.mlx-faq-btn {
  width: 100% !important; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: transparent !important; background-image: none !important; border: none !important;
  padding: 19px 22px !important; cursor: pointer; margin: 0 !important; min-height: 0 !important;
  font-size: 16px !important; font-weight: 700; color: var(--navy) !important; text-align: left !important;
  font-family: 'Inter', -apple-system, Arial, sans-serif !important;
  box-shadow: none !important; text-transform: none !important; line-height: 1.4 !important;
  letter-spacing: normal !important; white-space: normal; border-radius: 14px !important;
  -webkit-appearance: none; appearance: none; outline: none !important;
}
.mlx-faq-btn:focus, .mlx-faq-btn:focus-visible, .mlx-faq-btn:active, .mlx-faq-btn:hover {
  background: transparent !important; color: var(--navy) !important;
  outline: none !important; box-shadow: none !important; border: none !important;
}
.mlx-faq-item.open .mlx-faq-btn:focus, .mlx-faq-item.open .mlx-faq-btn:hover { color: var(--blue) !important; }
.mlx-faq-item.open .mlx-faq-btn { color: var(--blue) !important; }
.mlx-faq-btn i { color: var(--blue); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.mlx-faq-item.open .mlx-faq-btn i { transform: rotate(180deg); }
.mlx-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mlx-faq-body-inner { padding: 0 22px 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.mlx-faq-body-inner p { margin-bottom: 10px; }
.mlx-faq-body-inner ul { margin: 0 0 10px 20px; }
/* ── FINAL CTA ── */
.mlx-final {
  background: linear-gradient(115deg, #0A1F44 0%, #132E66 65%, #1D4090 100%);
  text-align: center; position: relative; overflow: hidden; overflow: clip;
  padding-bottom: 140px;
}
.mlx-final::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,220,240,0.16) 0%, transparent 70%);
  bottom: -200px; left: 50%; transform: translateX(-50%);
}
.mlx-final-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.mlx-final h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.mlx-final p { max-width: 640px; margin-left: auto; margin-right: auto; font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 30px; line-height: 1.65; }
.mlx-final-cta { display: flex; flex-direction: row; justify-content: center; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.mlx-final-cta .mlx-btn-primary, .mlx-final-cta .mlx-btn-green { justify-content: center; min-width: 296px; }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mlx-hero-img { max-width: 100%; object-fit: contain; object-position: bottom center; }
  .mlx-process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .mlx-quiz-grid { grid-template-columns: 1fr; }
  .mlx-quiz-figure { display: none; }
  .ot-layout{grid-template-columns:1fr}
  .ot-sticky-col{display:none}
}
@media (max-width: 640px) {
  .mlx-hero { padding: 80px 0 0; min-height: 0; }
  .mlx-hero-cta { width: 100%; }
  .mlx-hero-trust { display: block; margin: 0 0 12px; text-align: center; border: none; background: none; box-shadow: none; width: 100%; }
  .mlx-hero-trust > div, .mlx-hero-trust .ti-widget { margin: 0 auto !important; text-align: center !important; }
  .mlx-hero-chips { justify-content: center; flex-wrap: wrap; gap: 12px 18px; }
  .mlx-final-cta { flex-direction: column; align-items: center; }
  .mlx-final-cta .mlx-btn-primary, .mlx-final-cta .mlx-btn-green { width: 100%; max-width: 360px; min-width: 0; }
  .mlx-final { padding-bottom: 160px; }
  .mlx-quiz-brand { display: none; }
  .mlx-quiz-card { min-height: 570px; }
  #mlxStep1 { justify-content: space-evenly; }
  .mlx-hero-grid { display: flex; flex-direction: column; gap: 0; padding-bottom: 24px; min-height: 0; }
  .mlx-hero-img-wrap { order: 1; width: 100%; max-width: none; margin: 0; display: flex; justify-content: center; align-items: flex-end; padding-right: 0; align-self: auto; }
  .mlx-hero-img { position: static; transform: none; height: auto; max-height: 405px; max-width: 100%; margin-right: 0; }
  .mlx-hero-badge { display: none; }
  .mlx-landing .mlx-hero-kicker { color: var(--blue); }
  .mlx-landing .mlx-hero-kicker::before { background: var(--blue); }
  .mlx-doctor-grid { grid-template-columns: 1fr; gap: 0; }
  .mlx-doctor-img { display: none; }
  .mlx-doctor-avatar { display: block; }
  .mlx-doctor-quote { padding-bottom: 0; }
  .mlx-hero-text {
    order: 2; background: var(--white); border-radius: 20px;
    padding: 26px 20px; margin: -84px calc(50% - 50vw + 5px) 0; position: relative; z-index: 2;
    box-shadow: 0 14px 44px rgba(4,12,30,0.22);
  }
  .mlx-landing .mlx-hero-title { color: var(--navy); }
  .mlx-hero-title .mlx-hl { color: var(--blue); }
  .mlx-hero-sub { color: var(--muted); }
  .mlx-hero-chip { color: var(--ink); }
  .mlx-hero-chip i { color: var(--success); }
  .mlx-hero-chip .mlx-ic { color: var(--success); }
  .mlx-hero-text .mlx-btn-primary { border-color: var(--blue); color: var(--blue) !important; }
  .mlx-hero-text .mlx-btn-primary:hover { background: var(--blue-soft); }
  .ot-layout{grid-template-columns:1fr}
  .ot-sticky-col{display:none}
  .chat-ball{display:flex}
  .mobile-chat-note{display:block}
  #lineExt{display:block}
  .ot-phase{grid-template-columns:28px 1fr;gap:0 8px}
  .ot-dot{width:30px;height:30px;font-size:14px}
  .ot-card{padding:0.85rem}
  .ot-prices{grid-template-columns:1fr 1fr}
  .ot-price-card{min-height:76px;padding:8px 9px}
  .ot-phase-inner{padding-bottom:1.25rem}
  .ot-summary{grid-template-columns:1fr 1fr}
  .ot-sum-value{font-size:16px}
}
@media (max-width: 560px) {
  .mlx-section { padding: 52px 0; }
  .mlx-final { padding-bottom: 160px; }
  .mlx-stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .mlx-stat:nth-child(2) { border-right: none; }
  .mlx-when-grid { grid-template-columns: 1fr; }
  .mlx-process-grid { grid-template-columns: 1fr; }
  .mlx-quiz-card { padding: 24px 16px; margin: 0 calc(50% - 50vw + 5px); }
  .mlx-quiz-nav { gap: 8px; }
  .mlx-quiz-back { font-size: 13px; padding: 8px 2px; }
  .mlx-quiz-next { padding: 13px 20px; font-size: 14.5px; }
  .mlx-faq .mlx-container { padding: 0 10px; }
  .mlx-faq-btn { padding: 17px 14px; font-size: 15px; }
  .mlx-faq-body-inner { padding: 0 14px 18px; }
  .mlx-bmi-inputs { grid-template-columns: 1fr; }
  .mlx-btn-primary, .mlx-btn-outline { width: 100%; justify-content: center; }
}/* End custom CSS */