:root {
	--mwd-lp-accent: #315efb;
	--mwd-lp-text: #171717;
	--mwd-lp-muted: #646a73;
	--mwd-lp-border: #dde1e8;
	--mwd-lp-selected: #edf1ff;
}

.mwd-wc,
.mwd-wc *,
.mwd-preview,
.mwd-preview * {
	box-sizing: border-box;
}

.mwd-wc button,
.mwd-wc textarea,
.mwd-wc input,
.mwd-preview button {
	font: inherit;
}

.mwd-wc [hidden] {
	display: none !important;
}

.mwd-wc svg,
.mwd-preview svg {
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	vertical-align: middle;
}

/* Elementor landing page helpers */
.mwd-lp-header {
	border-bottom: 1px solid var(--mwd-lp-border);
}

.mwd-lp-brand .elementor-heading-title {
	letter-spacing: .12em;
}

.mwd-lp-nav .elementor-icon-list-items {
	gap: 30px;
}

.mwd-lp-nav .elementor-icon-list-text {
	transition: color .22s ease;
}

.mwd-lp-nav a:hover .elementor-icon-list-text,
.mwd-lp-link a:hover {
	color: var(--mwd-lp-accent) !important;
}

.mwd-lp-hero {
	position: relative;
	overflow: hidden;
}

.mwd-lp-hero:after {
	position: absolute;
	top: 42%;
	left: calc(50% - 72px);
	z-index: 0;
	width: 145px;
	height: 2px;
	background: var(--mwd-lp-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	animation: mwdLineIn .9s .35s cubic-bezier(.22, 1, .36, 1) forwards;
}

.mwd-lp-hero > .e-con-inner,
.mwd-lp-hero > .elementor-element {
	position: relative;
	z-index: 1;
}

.mwd-lp-proof .elementor-icon-list-items {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
}

.mwd-lp-proof .elementor-icon-list-item:not(:last-child):after {
	position: absolute;
	right: -16px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--mwd-lp-accent);
	content: "";
}

.mwd-lp-step {
	position: relative;
	border-top: 1px solid #aeb3bc;
}

.mwd-lp-step:before {
	position: absolute;
	top: -5px;
	left: 0;
	width: 9px;
	height: 9px;
	border: 2px solid var(--mwd-lp-accent);
	border-radius: 50%;
	background: #fff;
	content: "";
}

.mwd-lp-step:first-child {
	border-top-color: var(--mwd-lp-accent);
}

.mwd-lp-mode {
	position: relative;
	transition: background-color .24s ease, transform .24s ease;
}

.mwd-lp-mode:hover {
	background: rgba(255, 255, 255, .045);
	transform: translateY(-2px);
}

.mwd-lp-mode.is-selected:after {
	position: absolute;
	right: 42px;
	bottom: 22px;
	left: 42px;
	height: 2px;
	background: var(--mwd-lp-accent);
	content: "";
}

.mwd-lp-area-row {
	border-bottom: 1px solid var(--mwd-lp-border);
	transition: color .2s ease, transform .2s ease;
}

.mwd-lp-area-row:hover {
	color: var(--mwd-lp-accent);
	transform: translateX(4px);
}

.mwd-lp-price {
	border: 1px solid var(--mwd-lp-border);
	transition: border-color .24s ease, transform .24s ease;
}

.mwd-lp-price:hover {
	border-color: var(--mwd-lp-accent);
	transform: translateY(-4px);
}

.mwd-lp-price.is-plus {
	border-top: 4px solid var(--mwd-lp-accent);
}

.mwd-lp-faq .elementor-accordion-item {
	border-width: 1px 0 0 !important;
}

.mwd-lp-faq .elementor-tab-title {
	padding: 24px 0 !important;
}

.mwd-lp-faq .elementor-tab-content {
	padding: 0 0 26px !important;
	border-top: 0 !important;
}

.mwd-lp-faq .elementor-accordion-icon {
	transition: transform .22s ease;
}

.mwd-lp-faq .elementor-tab-title.elementor-active .elementor-accordion-icon {
	transform: rotate(180deg);
}

.mwd-lp-footer {
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.mwd-lp-native-preview {
	box-shadow: 0 22px 60px rgba(20, 29, 50, .1);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.mwd-lp-native-preview:hover {
	box-shadow: 0 28px 70px rgba(20, 29, 50, .14);
	transform: translateY(-4px);
}

.mwd-lp-preview-progress,
.mwd-lp-preview-progress-fill {
	min-height: 3px;
	height: 3px;
}

.mwd-lp-preview-progress {
	overflow: hidden;
}

@keyframes mwdLineIn {
	to { transform: scaleX(1); }
}

/* Marketing preview widget */
.mwd-preview {
	--mwd-accent: #315efb;
	--mwd-text: #171717;
	--mwd-muted: #686e78;
	--mwd-border: #dde1e8;
	--mwd-selected: #edf1ff;
	width: 100%;
	border: 1px solid var(--mwd-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 22px 60px rgba(20, 29, 50, .1);
	color: var(--mwd-text);
	font-family: Inter, Arial, sans-serif;
	overflow: hidden;
}

.mwd-preview__header {
	display: grid;
	grid-template-columns: auto minmax(100px, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 62px;
	padding: 0 24px;
	border-bottom: 1px solid var(--mwd-border);
}

.mwd-preview__header strong {
	font-size: 13px;
	font-weight: 700;
}

.mwd-preview__header b {
	color: var(--mwd-accent);
	font-size: 12px;
}

.mwd-preview__header-progress,
.mwd-preview__mini-progress {
	height: 3px;
	border-radius: 3px;
	background: #e7e9ed;
	overflow: hidden;
}

.mwd-preview__header-progress span,
.mwd-preview__mini-progress span {
	display: block;
	height: 100%;
	background: var(--mwd-accent);
	transform: scaleX(0);
	transform-origin: left;
	animation: mwdProgressIn .9s .4s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes mwdProgressIn {
	to { transform: scaleX(1); }
}

.mwd-preview__body {
	display: grid;
	grid-template-columns: 165px minmax(0, 1fr);
	min-height: 480px;
}

.mwd-preview__body > aside {
	padding: 28px 18px;
	border-right: 1px solid var(--mwd-border);
	background: #fcfcfd;
}

.mwd-preview__body > aside > span {
	display: block;
	margin-bottom: 7px;
	color: var(--mwd-muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .1em;
}

.mwd-preview__body > aside > strong {
	display: block;
	margin-bottom: 9px;
	font-size: 10px;
}

.mwd-preview__body nav {
	display: grid;
	gap: 7px;
	margin-top: 30px;
}

.mwd-preview__body nav b,
.mwd-preview__body nav span {
	display: block;
	padding: 10px 9px;
	border-radius: 7px;
	font-size: 9px;
	font-style: normal;
	font-weight: 500;
}

.mwd-preview__body nav b {
	background: var(--mwd-selected);
	color: var(--mwd-accent);
}

.mwd-preview__body > main {
	padding: 34px;
}

.mwd-preview__eyeline {
	display: block;
	margin-bottom: 8px;
	color: var(--mwd-accent);
	font-size: 10px;
	font-weight: 700;
}

.mwd-preview h3 {
	margin: 0 0 10px;
	font-size: clamp(20px, 2vw, 29px);
	line-height: 1.12;
}

.mwd-preview main > p {
	max-width: 520px;
	margin: 0 0 24px;
	color: var(--mwd-muted);
	font-size: 11px;
	line-height: 1.55;
}

.mwd-preview__scores {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 24px;
	border: 1px solid var(--mwd-border);
	border-radius: 10px;
	overflow: hidden;
}

.mwd-preview__scores button {
	display: grid;
	place-items: center;
	gap: 4px;
	min-height: 76px;
	padding: 10px 5px;
	border: 0;
	border-right: 1px solid var(--mwd-border);
	background: #fff;
	color: var(--mwd-text);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.mwd-preview__scores button:last-child {
	border-right: 0;
}

.mwd-preview__scores button.is-selected {
	z-index: 1;
	background: var(--mwd-selected);
	box-shadow: inset 0 0 0 1px var(--mwd-accent);
	color: var(--mwd-accent);
}

.mwd-preview__scores strong {
	font-size: 20px;
}

.mwd-preview__scores span {
	font-size: 9px;
}

.mwd-preview__field {
	position: relative;
	min-height: 74px;
	padding: 22px 16px 14px;
	border: 1px solid var(--mwd-accent);
	border-radius: 9px;
}

.mwd-preview__field span {
	position: absolute;
	top: -7px;
	left: 12px;
	padding: 0 5px;
	background: #fff;
	color: var(--mwd-accent);
	font-size: 9px;
}

.mwd-preview__field i {
	font-size: 10px;
	font-style: normal;
}

.mwd-preview__footer {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

.mwd-preview__footer button {
	padding: 11px 16px;
	border: 1px solid var(--mwd-border);
	border-radius: 7px;
	background: #fff;
	font-size: 9px;
	font-weight: 700;
}

.mwd-preview__footer button:last-child {
	border-color: var(--mwd-accent);
	background: var(--mwd-accent);
	color: #fff;
}

/* Interactive check widget */
.mwd-wc {
	--mwd-accent: #315efb;
	--mwd-text: #171717;
	--mwd-muted: #646a73;
	--mwd-surface: #fff;
	--mwd-selected: #edf1ff;
	--mwd-border: #dde1e8;
	--mwd-radius: 16px;
	position: relative;
	width: 100%;
	border: 1px solid var(--mwd-border);
	border-radius: 20px;
	background: var(--mwd-surface);
	box-shadow: 0 18px 56px rgba(20, 29, 50, .08);
	color: var(--mwd-text);
	font-family: Inter, Arial, sans-serif;
	overflow: hidden;
}

.mwd-wc[aria-busy="true"] {
	pointer-events: none;
}

.mwd-wc button {
	color: inherit;
}

.mwd-wc__topbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: 72px;
	padding: 0 28px;
	border-bottom: 1px solid var(--mwd-border);
	background: rgba(255, 255, 255, .96);
}

.mwd-wc__brand {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
}

.mwd-wc__product {
	font-size: 15px;
	font-weight: 750;
}

.mwd-wc__utilities {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.mwd-wc__saved {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--mwd-muted);
	font-size: 12px;
	transition: opacity .25s ease, color .25s ease;
}

.mwd-wc__saved.is-saving {
	opacity: .45;
}

.mwd-wc__saved.is-saved {
	color: var(--mwd-accent);
}

.mwd-wc__saved svg {
	width: 18px;
	height: 18px;
	padding: 2px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.mwd-wc__utility-button {
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid transparent;
	background: transparent;
	color: var(--mwd-accent) !important;
	font-size: 12px;
	font-weight: 650;
	cursor: pointer;
	transition: border-color .2s ease;
}

.mwd-wc__utility-button:hover,
.mwd-wc__utility-button:focus-visible {
	border-color: currentColor;
}

.mwd-wc__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.mwd-wc__start {
	padding: clamp(48px, 8vw, 104px) clamp(24px, 6vw, 88px);
}

.mwd-wc__start-copy {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
	gap: 8vw;
	align-items: end;
	margin-bottom: 58px;
}

.mwd-wc__start-title,
.mwd-wc__results-title {
	max-width: 760px;
	margin: 0;
	font-size: clamp(38px, 5vw, 72px);
	font-weight: 760;
	letter-spacing: -.045em;
	line-height: .99;
}

.mwd-wc__start-copy p {
	margin: 0;
	color: var(--mwd-muted);
	font-size: 16px;
	line-height: 1.65;
}

.mwd-wc__modes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--mwd-border);
	border-radius: var(--mwd-radius);
	overflow: hidden;
}

.mwd-wc__mode {
	position: relative;
	display: flex;
	min-height: 228px;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px;
	border: 0;
	border-right: 1px solid var(--mwd-border);
	background: #fff;
	text-align: left;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.mwd-wc__mode:last-child {
	border-right: 0;
}

.mwd-wc__mode:hover,
.mwd-wc__mode:focus-visible {
	background: #f9faff;
}

.mwd-wc__mode.is-selected {
	background: var(--mwd-selected);
}

.mwd-wc__mode.is-selected:after {
	position: absolute;
	right: 32px;
	bottom: 0;
	left: 32px;
	height: 3px;
	background: var(--mwd-accent);
	content: "";
}

.mwd-wc__mode-number {
	margin-bottom: 34px;
	color: var(--mwd-accent);
	font-size: 14px;
	font-weight: 750;
}

.mwd-wc__mode strong {
	margin-bottom: 8px;
	font-size: 23px;
	letter-spacing: -.025em;
}

.mwd-wc__mode > span:not(.mwd-wc__mode-number) {
	color: var(--mwd-muted);
	font-size: 13px;
}

.mwd-wc__mode em {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--mwd-accent);
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
}

.mwd-wc__mode em svg {
	transition: transform .2s ease;
}

.mwd-wc__mode:hover em svg {
	transform: translateX(4px);
}

.mwd-wc__privacy-note {
	max-width: 720px;
	margin: 24px 0 0;
	color: var(--mwd-muted);
	font-size: 12px;
	line-height: 1.55;
}

.mwd-wc__app {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr) 210px;
	min-height: 760px;
}

.mwd-wc__sidebar {
	border-right: 1px solid var(--mwd-border);
	background: #fcfcfd;
}

.mwd-wc__overall {
	padding: 30px 28px;
	border-bottom: 1px solid var(--mwd-border);
}

.mwd-wc__overall strong {
	display: block;
	margin-bottom: 15px;
	color: var(--mwd-accent);
	font-size: 27px;
	font-weight: 740;
}

.mwd-wc__overall small {
	color: var(--mwd-text);
	font-size: 12px;
	font-weight: 500;
}

.mwd-wc__progress-track {
	height: 4px;
	border-radius: 10px;
	background: #e7e9ed;
	overflow: hidden;
}

.mwd-wc__progress-track span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--mwd-accent);
	transition: width .5s cubic-bezier(.22, 1, .36, 1);
}

.mwd-wc__chapters {
	display: grid;
}

.mwd-wc__chapter {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 14px 24px;
	border: 0;
	border-bottom: 1px solid var(--mwd-border);
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.mwd-wc__chapter:hover,
.mwd-wc__chapter:focus-visible {
	background: #f6f7f9;
}

.mwd-wc__chapter.is-active {
	box-shadow: inset 4px 0 0 var(--mwd-accent);
	background: var(--mwd-selected);
	color: var(--mwd-accent);
}

.mwd-wc__chapter-number {
	font-size: 25px;
	font-weight: 450;
	letter-spacing: -.04em;
}

.mwd-wc__chapter-name {
	font-size: 12px;
	font-weight: 580;
	line-height: 1.3;
}

.mwd-wc__chapter[disabled] {
	opacity: .38;
	cursor: default;
}

.mwd-wc__workspace {
	min-width: 0;
	padding: 52px clamp(34px, 5vw, 74px) 42px;
}

.mwd-wc__mobile-progress {
	display: none;
}

.mwd-wc__question {
	max-width: 920px;
	margin: 0 auto;
	animation: mwdQuestionIn .38s cubic-bezier(.22, 1, .36, 1);
}

@keyframes mwdQuestionIn {
	from { opacity: 0; transform: translateY(9px); }
	to { opacity: 1; transform: translateY(0); }
}

.mwd-wc__eyeline {
	margin: 0 0 15px;
	color: var(--mwd-accent);
	font-size: 13px;
	font-weight: 700;
}

.mwd-wc__question-title {
	max-width: 840px;
	margin: 0 0 20px;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 760;
	letter-spacing: -.045em;
	line-height: 1.04;
}

.mwd-wc__question-intro {
	max-width: 770px;
	margin: 0 0 34px;
	color: var(--mwd-muted);
	font-size: 16px;
	line-height: 1.6;
}

.mwd-wc__score {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 42px;
	border: 1px solid var(--mwd-border);
	border-radius: 12px;
	overflow: hidden;
}

.mwd-wc__score-button {
	position: relative;
	display: grid;
	min-height: 112px;
	place-items: center;
	align-content: center;
	gap: 7px;
	padding: 18px 10px;
	border: 0;
	border-right: 1px solid var(--mwd-border);
	background: #fff;
	cursor: pointer;
	transition: background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.mwd-wc__score-button:last-child {
	border-right: 0;
}

.mwd-wc__score-button:hover,
.mwd-wc__score-button:focus-visible {
	background: #f7f8fb;
}

.mwd-wc__score-button.is-selected {
	z-index: 1;
	background: var(--mwd-selected);
	box-shadow: inset 0 0 0 1.5px var(--mwd-accent);
	color: var(--mwd-accent);
}

.mwd-wc__score-value {
	font-size: 31px;
	font-weight: 750;
	line-height: 1;
}

.mwd-wc__score-label {
	font-size: 12px;
	font-weight: 530;
}

.mwd-wc__field {
	position: relative;
	margin-bottom: 30px;
}

.mwd-wc__field label {
	position: absolute;
	top: -8px;
	left: 14px;
	z-index: 2;
	padding: 0 6px;
	background: var(--mwd-surface);
	color: var(--mwd-muted);
	font-size: 12px;
	font-weight: 550;
	transition: color .2s ease;
}

.mwd-wc__field textarea {
	display: block;
	width: 100%;
	min-height: 142px;
	padding: 24px 18px 28px;
	resize: vertical;
	border: 1px solid var(--mwd-border);
	border-radius: 10px;
	outline: none;
	background: var(--mwd-surface);
	box-shadow: none;
	color: var(--mwd-text);
	font-size: 15px;
	line-height: 1.55;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.mwd-wc__field textarea::placeholder {
	color: #a4a9b2;
}

.mwd-wc__field textarea:focus {
	border-color: var(--mwd-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwd-accent) 12%, transparent);
}

.mwd-wc__field:focus-within label {
	color: var(--mwd-accent);
}

.mwd-wc__counter {
	position: absolute;
	right: 14px;
	bottom: 9px;
	color: #949aa4;
	font-size: 10px;
}

.mwd-wc__checkline {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 30px;
	font-size: 14px;
	cursor: pointer;
}

.mwd-wc__checkline input {
	position: absolute;
	opacity: 0;
}

.mwd-wc__checkbox {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border: 1.5px solid #9ea4ae;
	border-radius: 6px;
	background: #fff;
	color: transparent;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.mwd-wc__checkbox svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.4;
}

.mwd-wc__checkline input:checked + .mwd-wc__checkbox {
	border-color: var(--mwd-accent);
	background: var(--mwd-accent);
	color: #fff;
	transform: scale(1.03);
}

.mwd-wc__checkline input:focus-visible + .mwd-wc__checkbox {
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwd-accent) 18%, transparent);
}

.mwd-wc__help {
	margin-bottom: 42px;
	border: 1px solid var(--mwd-border);
	border-radius: 10px;
	overflow: hidden;
}

.mwd-wc__help-toggle {
	display: flex;
	width: 100%;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 20px;
	border: 0;
	background: #fff;
	font-size: 14px;
	font-weight: 650;
	text-align: left;
	cursor: pointer;
}

.mwd-wc__help-toggle > span {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.mwd-wc__help-toggle > span svg {
	width: 25px;
	height: 25px;
	color: var(--mwd-accent);
}

.mwd-wc__help-toggle > svg {
	transition: transform .24s ease;
}

.mwd-wc__help-toggle[aria-expanded="true"] {
	background: var(--mwd-selected);
	color: var(--mwd-accent);
}

.mwd-wc__help-toggle[aria-expanded="true"] > svg {
	transform: rotate(180deg);
}

.mwd-wc__help-content {
	padding: 26px 26px 30px;
	border-top: 1px solid var(--mwd-border);
	background: #fff;
	color: var(--mwd-text);
	font-size: 14px;
	line-height: 1.65;
}

.mwd-wc__help-content > div:first-child p:first-child,
.mwd-wc__help-content > div:first-child {
	margin-top: 0;
}

.mwd-wc__help-content ol {
	margin: 20px 0 24px;
	padding-left: 23px;
}

.mwd-wc__examples {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.mwd-wc__examples > div {
	padding-top: 16px;
	border-top: 2px solid #c8ccd3;
}

.mwd-wc__examples > div:last-child {
	border-top-color: var(--mwd-accent);
}

.mwd-wc__examples span {
	color: var(--mwd-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.mwd-wc__examples p {
	margin: 8px 0 0;
}

.mwd-wc__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.mwd-wc__button {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 26px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mwd-wc__button--secondary {
	border: 1px solid #9da3ad;
	background: #fff;
}

.mwd-wc__button--secondary:hover,
.mwd-wc__button--secondary:focus-visible {
	border-color: var(--mwd-text);
}

.mwd-wc__button--primary {
	margin-left: auto;
	border: 1px solid var(--mwd-accent);
	background: var(--mwd-accent);
	color: #fff !important;
}

.mwd-wc__button--primary:hover,
.mwd-wc__button--primary:focus-visible {
	transform: translateY(-2px);
}

.mwd-wc__button--primary svg {
	transition: transform .2s ease;
}

.mwd-wc__button--primary:hover svg {
	transform: translateX(3px);
}

.mwd-wc__button[disabled] {
	opacity: .35;
	cursor: default;
	transform: none;
}

.mwd-wc__context {
	padding: 46px 28px;
	border-left: 1px solid var(--mwd-border);
	background: #fcfcfd;
}

.mwd-wc__context > p {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
}

.mwd-wc__context > strong {
	display: block;
	margin-bottom: 30px;
	color: var(--mwd-accent);
	font-size: 34px;
	letter-spacing: -.04em;
}

.mwd-wc__vertical-progress {
	position: relative;
	width: 2px;
	height: 260px;
	margin: 0 0 24px 18px;
	background: #c9cdd4;
}

.mwd-wc__vertical-progress:before,
.mwd-wc__vertical-progress:after {
	position: absolute;
	left: 50%;
	width: 10px;
	height: 10px;
	border: 1px solid #aeb4bd;
	border-radius: 50%;
	background: #fff;
	content: "";
	transform: translateX(-50%);
}

.mwd-wc__vertical-progress:before { top: -5px; }
.mwd-wc__vertical-progress:after { bottom: -5px; }

.mwd-wc__vertical-progress span {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--mwd-accent);
	transition: height .5s cubic-bezier(.22, 1, .36, 1);
}

.mwd-wc__vertical-progress span:before {
	position: absolute;
	top: -6px;
	left: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--mwd-accent);
	content: "";
	transform: translateX(-50%);
}

.mwd-wc__context-label {
	display: block;
	padding-top: 20px;
	border-top: 1px solid var(--mwd-border);
	color: var(--mwd-muted);
	font-size: 11px;
	line-height: 1.4;
}

.mwd-wc__results {
	max-width: 960px;
	margin: 0 auto;
	animation: mwdQuestionIn .4s ease;
}

.mwd-wc__results-title {
	max-width: 760px;
	margin-bottom: 42px;
}

.mwd-wc__result-summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 44px;
	border: 1px solid var(--mwd-border);
	border-radius: 12px;
	overflow: hidden;
}

.mwd-wc__result-stat {
	padding: 25px;
	border-right: 1px solid var(--mwd-border);
}

.mwd-wc__result-stat:last-child { border-right: 0; }

.mwd-wc__result-stat strong {
	display: block;
	margin-bottom: 6px;
	color: var(--mwd-accent);
	font-size: 30px;
}

.mwd-wc__result-stat span {
	color: var(--mwd-muted);
	font-size: 12px;
}

.mwd-wc__result-list {
	margin-bottom: 42px;
}

.mwd-wc__result-item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid var(--mwd-border);
}

.mwd-wc__result-score {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--mwd-border);
	border-radius: 8px;
	font-size: 18px;
	font-weight: 750;
}

.mwd-wc__result-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.mwd-wc__result-item p {
	margin: 5px 0;
	color: var(--mwd-muted);
	font-size: 13px;
	line-height: 1.5;
}

.mwd-wc__actions--results {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.mwd-wc__toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	max-width: 360px;
	padding: 13px 16px;
	border-radius: 8px;
	background: var(--mwd-text);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
	color: #fff;
	font-size: 12px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity .22s ease, transform .22s ease;
}

.mwd-wc__toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.mwd-wc :focus-visible,
.mwd-preview :focus-visible {
	outline: 3px solid color-mix(in srgb, var(--mwd-accent) 26%, transparent);
	outline-offset: 3px;
}

@media (max-width: 1180px) {
	.mwd-wc__topbar {
		grid-template-columns: 1fr auto;
	}

	.mwd-wc__product { display: none; }

	.mwd-wc__app {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.mwd-wc__context { display: none; }

	.mwd-lp-hero:after { display: none; }
}

@media (max-width: 767px) {
	.mwd-wc {
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.mwd-wc__topbar {
		min-height: 68px;
		padding: 0 18px;
	}

	.mwd-wc__brand {
		font-size: 10px;
		letter-spacing: .1em;
	}

	.mwd-wc__saved,
	.mwd-wc__utility-button[data-mwd-import] {
		display: none;
	}

	.mwd-wc__utility-button[data-mwd-export] {
		display: inline-block;
		font-size: 10px;
	}

	.mwd-wc__start {
		padding: 46px 20px 34px;
	}

	.mwd-wc__start-copy {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 34px;
	}

	.mwd-wc__start-title {
		font-size: clamp(38px, 12vw, 54px);
	}

	.mwd-wc__modes {
		grid-template-columns: 1fr;
	}

	.mwd-wc__mode {
		min-height: 170px;
		padding: 24px;
		border-right: 0;
		border-bottom: 1px solid var(--mwd-border);
	}

	.mwd-wc__mode:last-child { border-bottom: 0; }
	.mwd-wc__mode-number { margin-bottom: 18px; }

	.mwd-wc__app {
		display: block;
		min-height: auto;
	}

	.mwd-wc__sidebar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 9998;
		width: min(84vw, 330px);
		overflow-y: auto;
		background: #fff;
		box-shadow: 18px 0 50px rgba(0, 0, 0, .15);
		transform: translateX(-105%);
		transition: transform .3s cubic-bezier(.22, 1, .36, 1);
	}

	.mwd-wc__sidebar.is-open {
		transform: translateX(0);
	}

	.mwd-wc__workspace {
		padding: 20px 20px 0;
	}

	.mwd-wc__mobile-progress {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 14px;
		margin-bottom: 42px;
	}

	.mwd-wc__mobile-progress > span {
		font-size: 13px;
	}

	.mwd-wc__mobile-progress strong {
		color: var(--mwd-accent);
		font-size: 19px;
	}

	.mwd-wc__chapter-toggle {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		padding: 9px 11px;
		border: 1px solid var(--mwd-border);
		border-radius: 8px;
		background: #fff;
		font-size: 12px;
		font-weight: 650;
	}

	.mwd-wc__question-title {
		font-size: clamp(34px, 10vw, 46px);
	}

	.mwd-wc__question-intro {
		font-size: 15px;
	}

	.mwd-wc__score {
		grid-template-columns: 1fr 1fr;
		margin-bottom: 36px;
	}

	.mwd-wc__score-button {
		min-height: 122px;
		border-bottom: 1px solid var(--mwd-border);
	}

	.mwd-wc__score-button:nth-child(2) { border-right: 0; }
	.mwd-wc__score-button:nth-child(n+3) { border-bottom: 0; }

	.mwd-wc__field textarea {
		min-height: 146px;
	}

	.mwd-wc__examples {
		grid-template-columns: 1fr;
	}

	.mwd-wc__actions {
		position: sticky;
		bottom: 0;
		z-index: 20;
		margin: 0 -20px;
		padding: 14px 20px;
		border-top: 1px solid var(--mwd-border);
		background: rgba(255, 255, 255, .96);
		backdrop-filter: blur(12px);
	}

	.mwd-wc__button {
		min-height: 56px;
		padding: 0 18px;
	}

	.mwd-wc__button--primary { flex: 1; }

	.mwd-wc__results-title {
		font-size: 42px;
	}

	.mwd-wc__result-summary {
		grid-template-columns: 1fr;
	}

	.mwd-wc__result-stat {
		border-right: 0;
		border-bottom: 1px solid var(--mwd-border);
	}

	.mwd-wc__result-stat:last-child { border-bottom: 0; }

	.mwd-wc__actions--results {
		position: static;
		margin: 0;
		padding: 20px 0 0;
		border: 0;
	}

	.mwd-wc__actions--results .mwd-wc__button {
		width: 100%;
		margin: 0;
	}

	.mwd-preview__body {
		grid-template-columns: 1fr;
	}

	.mwd-preview__body > aside { display: none; }
	.mwd-preview__body > main { padding: 24px; }
	.mwd-preview__scores { grid-template-columns: repeat(3, 1fr); }
	.mwd-preview__header { grid-template-columns: 1fr auto; }
	.mwd-preview__header-progress { display: none; }

	.mwd-lp-proof .elementor-icon-list-item:not(:last-child):after { display: none; }

	.mwd-lp-native-preview:hover {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mwd-wc *,
	.mwd-preview *,
	.mwd-lp-hero:after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

@media print {
	body * { visibility: hidden !important; }
	.mwd-wc,
	.mwd-wc * { visibility: visible !important; }
	.mwd-wc {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border: 0;
		box-shadow: none;
	}
	.mwd-wc__topbar,
	.mwd-wc__sidebar,
	.mwd-wc__context,
	.mwd-wc__actions,
	.mwd-wc__question,
	.mwd-wc__mobile-progress,
	.mwd-wc__toast { display: none !important; }
	.mwd-wc__app,
	.mwd-wc__workspace,
	.mwd-wc__results { display: block !important; }
	.mwd-wc__workspace { padding: 24px 0; }
	.mwd-wc__results { max-width: none; }
	.mwd-wc__result-item { break-inside: avoid; }
}
