.mtd-page,
.mtd-page * {
	box-sizing: border-box;
}

.mtd-page {
	--mtd-bg: #ffffff;
	--mtd-panel: rgba(0, 0, 0, 0.02);
	--mtd-panel-strong: #f8fafc;
	--mtd-text: #1e293b;
	--mtd-muted: #64748b;
	--mtd-dim: #94a3b8;
	--mtd-line: rgba(0, 0, 0, 0.08);
	--mtd-accent: #2563eb;
	--mtd-accent-hover: #1d4ed8;
	--mtd-danger: #ef4444;
	min-height: 100vh;
	margin: 0;
	color: var(--mtd-text);
	background: var(--mtd-bg);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

.mtd-page a {
	color: inherit;
	text-decoration: none;
}

.mtd-page button,
.mtd-page input {
	font: inherit;
}

.mtd-page svg {
	display: block;
	width: 1.1rem;
	height: 1.1rem;
	fill: currentColor;
	flex: 0 0 auto;
}

.mtd-page svg.mtd-stroke-icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mtd-shell,
.mtd-page .container {
	width: min(1200px, 100%);
	margin: 0 auto;
	padding-right: 16px;
	padding-left: 16px;
}

.mtd-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	color: #1e293b;
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mtd-header-inner,
.mtd-page .header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 69px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.mtd-brand,
.mtd-page .header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: max-content;
	min-width: 71px;
	line-height: 1;
}

.mtd-page .mtd-brand-logo {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: 45px;
	object-fit: contain;
}

.mtd-page .mtd-brand-name {
	display: block;
	max-width: 240px;
	overflow: hidden;
	color: #1e293b;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mtd-page .header-logo-line1,
.mtd-page .header-logo-line2,
.mtd-page .header-logo-line3 {
	display: block;
	letter-spacing: 0;
	white-space: nowrap;
}

.mtd-page .header-logo-line1 {
	color: #64748b;
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
}

.mtd-page .header-logo-line2 {
	color: var(--mtd-accent);
	font-size: 18px;
	font-weight: 700;
}

.mtd-page .header-logo-line3 {
	color: #1e293b;
	font-size: 18px;
	font-weight: 600;
}

.mtd-main-nav,
.mtd-page .header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mtd-language-switcher,
.mtd-tools-switcher,
.mtd-page .lang-dropdown,
.mtd-page .tools-dropdown {
	position: relative;
}

.mtd-language-trigger,
.mtd-tools-trigger,
.mtd-page .lang-toggle,
.mtd-page .tools-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 33px;
	padding: 8px;
	color: #1e293b;
	background: transparent;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: none;
}

.mtd-language-trigger:hover,
.mtd-language-trigger:focus-visible,
.mtd-tools-trigger:hover,
.mtd-tools-trigger:focus-visible {
	background: rgba(37, 99, 235, 0.06);
	outline: 0;
}

.mtd-chevron {
	width: 14px !important;
	height: 14px !important;
}

.mtd-tools-menu,
.mtd-language-menu,
.mtd-page .tools-menu,
.mtd-page .lang-menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 70;
	display: none;
	min-width: 190px;
	padding: 8px 0;
	color: #1e293b;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mtd-language-menu,
.mtd-page .lang-menu {
	width: min(360px, calc(100vw - 24px));
	padding: 10px;
	grid-template-columns: repeat(2, minmax(130px, 1fr));
	gap: 2px 8px;
}

.mtd-tools-switcher:hover .mtd-tools-menu,
.mtd-tools-switcher:focus-within .mtd-tools-menu,
.mtd-tools-switcher.is-open .mtd-tools-menu {
	display: block;
}

.mtd-language-switcher:hover .mtd-language-menu,
.mtd-language-switcher:focus-within .mtd-language-menu,
.mtd-language-switcher.is-open .mtd-language-menu {
	display: grid;
}

.mtd-tools-menu a,
.mtd-language-menu a {
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.mtd-language-menu a {
	padding: 8px 10px;
}

.mtd-tools-menu a:hover,
.mtd-tools-menu a:focus-visible,
.mtd-tools-menu a.is-current,
.mtd-language-menu a:hover,
.mtd-language-menu a:focus-visible,
.mtd-language-menu a.is-current {
	color: #1e40af;
	background: #eff6ff;
	outline: 0;
}

.mtd-hero,
.mtd-page .hero {
	position: relative;
	overflow: hidden;
	padding: 30px 0 36px;
	color: #1e293b;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.96)),
		#f4f8ff;
}

.mtd-hero-content {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
	text-align: center;
}

.mtd-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
	margin: 0 auto 22px;
	padding: 8px 18px;
	color: #475569;
	background: rgba(239, 246, 255, 0.92);
	border: 1px solid rgba(219, 234, 254, 0.95);
	border-radius: 999px;
	box-shadow: 0 10px 28px rgba(37, 99, 235, 0.08);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.mtd-hero-eyebrow-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.mtd-hero-eyebrow-item:first-child {
	color: #2563eb;
	font-weight: 700;
}

.mtd-hero-eyebrow svg {
	width: 22px;
	height: 22px;
}

.mtd-hero-eyebrow-dot {
	color: #94a3b8;
}

.mtd-hero h1 {
	display: grid;
	gap: 2px;
	max-width: 980px;
	margin: 0 auto 24px;
	color: #0f172a;
	font-size: clamp(54px, 7vw, 82px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: 0;
	text-align: center;
}

.mtd-hero-title-main,
.mtd-hero-title-accent {
	display: block;
}

.mtd-hero-title-accent {
	color: #2563eb;
	background: linear-gradient(90deg, #1d7df2 0%, #2f64f0 48%, #9b38ca 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mtd-subtitle,
.mtd-page .hero-subtitle {
	max-width: 760px;
	margin: 0 auto 24px;
	color: #64748b;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
}

.mtd-hero-stats {
	margin: 0 0 20px;
}

.mtd-page .hero-stats-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.mtd-page .hero-stats-primary {
	margin-bottom: 4px;
	color: var(--mtd-accent);
	font-size: 20px;
	font-weight: 600;
}

.mtd-page .hero-stats-secondary {
	color: #64748b;
	font-size: 16px;
}

.mtd-page .hero-stats-divider {
	color: #cbd5e1;
}

.mtd-hero-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 16px;
	margin: 0 auto 24px;
}

.mtd-hero-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 20px;
	color: #475569;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #dbe5f2;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.mtd-hero-pill-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #2563eb;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.mtd-hero-pill-icon svg {
	width: 22px;
	height: 22px;
}

.mtd-hero-pill-icon span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 4px;
}

.mtd-hero-form-card {
	width: min(1056px, 100%);
	margin: 0 auto 24px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
}

.mtd-download-form,
.mtd-page .search-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	margin: 0;
}

.mtd-input-row,
.mtd-page .search-input-wrap {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 14px;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mtd-url-field {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	min-height: 57px;
	padding: 0;
	background: transparent;
	border: 0;
}

.mtd-input-leading-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	min-width: 62px;
	height: 62px;
	color: #2563eb;
	background: #f8fbff;
	border: 1px solid #dbe5f2;
	border-radius: 10px;
}

.mtd-input-leading-icon svg {
	width: 24px;
	height: 24px;
}

.mtd-url-field input,
.mtd-page .search-input {
	display: block;
	width: 100%;
	height: 62px;
	min-width: 0;
	padding: 18px 140px 18px 22px;
	color: #1e293b;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 9px;
	outline: 0;
	font-size: 18px;
	font-weight: 400;
}

.mtd-url-field input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.mtd-url-field input::placeholder {
	color: #777;
	opacity: 1;
}

.mtd-paste-button,
.mtd-page .btn-paste {
	position: absolute;
	top: 50%;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 44px;
	padding: 10px 18px;
	color: #fff;
	background: var(--mtd-accent);
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	transform: translateY(-50%);
}

.mtd-submit-button,
.mtd-page .btn-download {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 55px;
	padding: 16px;
	color: #fff;
	background: linear-gradient(90deg, #1d7df2 0%, #2f63ee 100%);
	border: 0;
	border-radius: 9px;
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
}

.mtd-paste-button:hover,
.mtd-paste-button:focus-visible,
.mtd-submit-button:hover,
.mtd-submit-button:focus-visible {
	background: var(--mtd-accent-hover);
	outline: 0;
}

.mtd-submit-button:disabled,
.mtd-paste-button:disabled {
	cursor: progress;
	opacity: 0.7;
}

.mtd-hero-security-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.4;
}

.mtd-hero-security-note svg {
	width: 18px;
	height: 18px;
	color: #10b981;
}

.mtd-hero-security-note strong {
	color: #2563eb;
	font-weight: 700;
}

.mtd-results {
	width: 100%;
	margin: 16px auto 0;
	text-align: left;
}

.mtd-hero-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	width: min(1018px, 100%);
	margin: 0 auto;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.54);
	border: 1px solid #dbe5f2;
	border-radius: 12px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.mtd-hero-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 86px;
	padding: 16px;
	color: #334155;
	text-align: left;
}

.mtd-hero-trust-item + .mtd-hero-trust-item {
	border-left: 1px solid #dbe5f2;
}

.mtd-hero-trust-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #2563eb;
}

.mtd-hero-trust-icon svg {
	width: 34px;
	height: 34px;
}

.mtd-hero-trust-item strong,
.mtd-hero-trust-item small {
	display: block;
}

.mtd-hero-trust-item strong {
	color: #334155;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
}

.mtd-hero-trust-item small {
	margin-top: 2px;
	color: #64748b;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}

.mtd-result-card,
.mtd-message {
	color: #1e293b;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mtd-result-card {
	overflow: hidden;
	padding: 0;
}

.mtd-result-card h2 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 20px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.mtd-result-layout {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	min-height: 230px;
}

.mtd-result-layout.without-thumbnail {
	display: block;
	min-height: 0;
}

.mtd-result-layout.is-gallery {
	display: block;
	min-height: 0;
}

.mtd-result-media {
	position: relative;
	min-height: 230px;
	overflow: hidden;
	background: #f1f5f9;
}

.mtd-result-thumbnail {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 230px;
	object-fit: cover;
}

.mtd-result-duration {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 4px 7px;
	color: #fff;
	background: rgba(0, 0, 0, 0.82);
	border-radius: 5px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.mtd-result-content {
	display: flex;
	min-width: 0;
	padding: 22px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.mtd-result-content.is-gallery {
	align-items: stretch;
	justify-content: flex-start;
}

.mtd-result-metadata {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	margin-top: 9px;
	color: var(--mtd-muted);
	font-size: 14px;
	line-height: 1.4;
}

.mtd-result-duration-text {
	font-variant-numeric: tabular-nums;
}

.mtd-result-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.mtd-result-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	color: #fff;
	background: var(--mtd-accent);
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.mtd-result-gallery {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.mtd-result-image-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 8px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mtd-result-image-card:hover {
	border-color: rgba(37, 99, 235, 0.28);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
	transform: translateY(-1px);
}

.mtd-result-gallery-frame {
	position: relative;
	overflow: hidden;
	background: #e2e8f0;
	border-radius: 6px;
}

.mtd-result-gallery-frame::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 44%;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.48));
	content: "";
	pointer-events: none;
}

.mtd-result-gallery-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #e2e8f0;
	transition: transform 220ms ease;
}

.mtd-result-image-card:hover .mtd-result-gallery-image {
	transform: scale(1.025);
}

.mtd-result-image-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	color: #ffffff;
	background: rgba(15, 23, 42, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.mtd-page .mtd-result-gallery-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 8px;
	padding: 8px 10px;
	color: #ffffff;
	background: var(--mtd-accent);
	border-radius: 6px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mtd-page .mtd-result-gallery-download:hover,
.mtd-page .mtd-result-gallery-download:focus-visible {
	color: #ffffff;
	background: var(--mtd-accent-hover);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
	transform: translateY(-1px);
}

.mtd-result-image-card.without-preview .mtd-result-gallery-download {
	min-height: 54px;
	margin-top: 0;
}

.mtd-message {
	padding: 14px 16px;
}

.mtd-message.is-error {
	color: var(--mtd-danger);
	border-color: rgba(239, 68, 68, 0.3);
}

.mtd-features,
.mtd-page .features {
	padding: 40px 0;
	background: #ffffff;
}

.mtd-feature-grid,
.mtd-page .feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mtd-feature,
.mtd-page .feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 240px;
	padding: 32px;
	color: #1e293b;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.mtd-feature-icon,
.mtd-page .feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 0 16px;
	color: var(--mtd-accent);
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.15);
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
}

.mtd-feature h2,
.mtd-feature h3,
.mtd-page .feature-content h2,
.mtd-page .feature-content h3 {
	margin: 0 0 8px;
	color: #0f172a;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.mtd-page .feature-icon svg {
	width: 24px;
	height: 24px;
}

.mtd-feature p,
.mtd-page .feature-content p {
	margin: 0;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.5;
}

.mtd-content-section,
.mtd-page .description {
	padding: 40px 0;
	color: #1e293b;
	background: #ffffff;
}

.mtd-content-layout,
.mtd-page .description-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: min(700px, 100%);
	max-width: 700px;
	margin: 0 auto;
}

.mtd-page .mtd-localized-home-content .mtd-content {
	margin-right: auto;
	margin-left: auto;
}

.mtd-content,
.mtd-page .description-card {
	width: 100%;
	max-width: 700px;
	padding: 16px;
	color: #1e293b;
	background: #f8fafc;
	border-left: 3px solid var(--mtd-accent);
	border-radius: 0 6px 6px 0;
}

.mtd-content > :first-child {
	margin-top: 0;
}

.mtd-content > :last-child {
	margin-bottom: 0;
}

.mtd-content h2 {
	margin: 30px 0 10px;
	color: #0f172a;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

.mtd-content h3 {
	margin: 22px 0 7px;
	color: #0f172a;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

.mtd-content p,
.mtd-content li {
	color: var(--mtd-muted);
}

.mtd-page .description-card p {
	margin: 0;
	color: var(--mtd-muted);
	font-size: 16px;
	line-height: 1.6;
}

.mtd-content p {
	margin: 0 0 14px;
}

.mtd-content ol,
.mtd-content ul {
	padding-left: 22px;
}

.mtd-how,
.mtd-page .how-to {
	padding: 56px 0;
	color: #1e293b;
	background: #f8fafc;
}

.mtd-section-heading {
	margin: 0 auto 24px;
	text-align: center;
}

.mtd-section-heading h2,
.mtd-page .how-to h2,
.mtd-page .additional-features h2,
.mtd-page .faq h2 {
	margin: 0 0 24px;
	color: #0f172a;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
}

.mtd-section-heading p {
	width: min(700px, 100%);
	margin: -12px auto 0;
	color: var(--mtd-muted);
	font-size: 15px;
}

.mtd-page .how-to-subtitle {
	color: var(--mtd-muted);
	font-size: 18px;
	font-weight: 500;
}

.mtd-step-grid,
.mtd-page .steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: min(1000px, 100%);
	margin: 0 auto;
}

.mtd-step,
.mtd-page .step {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 48px;
	padding: 10px 12px;
	color: #1e293b;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.mtd-step span,
.mtd-page .step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	color: #fff;
	background: var(--mtd-accent);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
}

.mtd-step p {
	margin: 1px 0 0;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.7;
}

.mtd-page .how-to-devices {
	padding: 56px 0;
	color: #1e293b;
	background: #ffffff;
}

.mtd-page .mtd-guide-hero {
	padding: 60px 0 68px;
	color: #1e293b;
	background: #f8fafc;
	border-bottom: 1px solid var(--mtd-line);
	text-align: center;
}

.mtd-page .mtd-guide-hero h1 {
	width: min(1080px, 100%);
	margin: 0 auto 20px;
	color: #0f172a;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
}

.mtd-page .mtd-guide-hero p {
	width: min(1080px, 100%);
	margin: 0 auto 14px;
	color: var(--mtd-muted);
	font-size: 18px;
	line-height: 1.55;
}

.mtd-page .mtd-guide-hero p:last-child {
	margin-bottom: 0;
}

.mtd-page .mtd-guide-steps {
	padding: 56px 0 38px;
}

.mtd-page .mtd-guide-tip-section {
	padding: 34px 0 32px;
	background: #ffffff;
}

.mtd-page .mtd-guide-tip-card {
	display: flex;
	align-items: center;
	gap: 14px;
	width: min(700px, 100%);
	min-height: 76px;
	margin: 0 auto;
	padding: 18px 22px;
	color: #1e293b;
	background: rgba(37, 99, 235, 0.04);
	border-left: 3px solid var(--mtd-accent);
	border-radius: 8px;
}

.mtd-page .mtd-guide-tip-icon,
.mtd-page .mtd-guide-device-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	color: var(--mtd-accent);
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.15);
	border-radius: 50%;
}

.mtd-page .mtd-guide-tip-card p {
	margin: 0;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.6;
}

.mtd-page .mtd-guide-device-section {
	padding: 32px 0 56px;
	background: #ffffff;
}

.mtd-page .mtd-guide-device-card {
	width: min(700px, 100%);
	margin: 0 auto;
	overflow: hidden;
	background: #f8fafc;
	border-left: 3px solid var(--mtd-accent);
	border-radius: 8px;
}

.mtd-page .mtd-guide-device-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	background: rgba(37, 99, 235, 0.04);
	border-bottom: 1px solid var(--mtd-line);
}

.mtd-page .mtd-guide-device-icon {
	border-radius: 9px;
}

.mtd-page .mtd-guide-device-header h2 {
	margin: 0;
	color: #0f172a;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

.mtd-page .mtd-guide-device-body {
	padding: 20px 22px 22px;
}

.mtd-page .mtd-guide-device-body p {
	margin: 0 0 14px;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.7;
}

.mtd-page .mtd-guide-device-body p:last-child {
	margin-bottom: 0;
}

.mtd-page .mtd-guide-cta {
	padding: 56px 0 64px;
	background: #f8fafc;
	border-top: 1px solid var(--mtd-line);
	text-align: center;
}

.mtd-page .mtd-guide-cta h2 {
	margin: 0 0 24px;
	color: #0f172a;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0;
}

.mtd-page .mtd-guide-cta .mtd-download-form {
	margin-bottom: 18px;
}

.mtd-page .mtd-guide-home-link {
	margin: 18px 0 0;
	color: var(--mtd-muted);
	font-size: 15px;
}

.mtd-page .mtd-guide-home-link a {
	color: var(--mtd-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mtd-page .how-to-devices h2,
.mtd-page .benefits h2 {
	margin: 0 0 24px;
	color: #0f172a;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
}

.mtd-page .device-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	width: min(900px, 100%);
	margin: 0 auto;
}

.mtd-page .device-card {
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

.mtd-page .device-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-bottom: 1px solid #e2e8f0;
}

.mtd-page .device-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	color: var(--mtd-accent);
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.15);
	border-radius: 8px;
}

.mtd-page .device-icon svg {
	width: 20px;
	height: 20px;
}

.mtd-page .device-header h3 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

.mtd-page .device-content {
	padding: 18px;
}

.mtd-page .device-content p {
	margin: 0 0 10px;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.65;
}

.mtd-page .device-content p:last-child {
	margin-bottom: 0;
}

.mtd-page .mtd-quick-guide {
	padding: 64px 0 54px;
	color: #111827;
	background: #ffffff;
}

.mtd-page .mtd-quick-guide-heading {
	width: min(860px, 100%);
	margin: 0 auto 30px;
	text-align: center;
}

.mtd-page .mtd-quick-guide-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	margin-bottom: 12px;
	padding: 0 14px;
	color: #7c3aed;
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.12);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.mtd-page .mtd-quick-guide-eyebrow svg {
	width: 17px;
	height: 17px;
}

.mtd-page .mtd-quick-guide h2 {
	margin: 0;
	color: #0f172a;
	font-size: 52px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
	text-align: center;
}

.mtd-page .mtd-quick-guide h2 span,
.mtd-page .mtd-quick-guide h2 strong {
	display: block;
}

.mtd-page .mtd-quick-guide h2 strong {
	color: #2563eb;
	background: linear-gradient(90deg, #2563eb 0%, #7c3aed 78%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mtd-page .mtd-quick-guide-heading p {
	width: min(620px, 100%);
	margin: 16px auto 0;
	color: #64748b;
	font-size: 18px;
	line-height: 1.55;
}

.mtd-page .mtd-quick-guide-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.mtd-page .mtd-quick-step,
.mtd-page .mtd-quick-tips {
	position: relative;
	min-width: 0;
	min-height: 238px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

.mtd-page .mtd-quick-step {
	padding: 28px 22px 24px;
	text-align: center;
}

.mtd-page .mtd-quick-step-number {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #ffffff;
	background: linear-gradient(135deg, #9333ea, #2563eb);
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.mtd-page .mtd-quick-step:nth-child(5) .mtd-quick-step-number {
	background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.mtd-page .mtd-quick-step:nth-child(6) .mtd-quick-step-number {
	background: linear-gradient(135deg, #10b981, #059669);
}

.mtd-page .mtd-quick-step:nth-child(7) .mtd-quick-step-number {
	background: linear-gradient(135deg, #f59e0b, #f97316);
}

.mtd-page .mtd-quick-step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin: 0 auto 18px;
	color: var(--mtd-accent);
	background: #f3f4f6;
	border-radius: 999px;
}

.mtd-page .mtd-quick-step:nth-child(5) .mtd-quick-step-icon,
.mtd-page .mtd-quick-step:nth-child(6) .mtd-quick-step-icon {
	color: #10b981;
	background: rgba(16, 185, 129, 0.09);
}

.mtd-page .mtd-quick-step:nth-child(7) .mtd-quick-step-icon {
	color: #f59e0b;
	background: rgba(245, 158, 11, 0.1);
}

.mtd-page .mtd-quick-step-icon svg {
	width: 34px;
	height: 34px;
}

.mtd-page .mtd-quick-step h3,
.mtd-page .mtd-quick-tips h3 {
	margin: 0;
	color: #111827;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0;
}

.mtd-page .mtd-quick-step p {
	margin: 14px 0 0;
	color: #4b5563;
	font-size: 15px;
	line-height: 1.55;
}

.mtd-page .mtd-quick-tips {
	padding: 26px 24px;
	background: #ecfdf5;
	border-color: #ccefe1;
	box-shadow: 0 3px 12px rgba(16, 185, 129, 0.08);
}

.mtd-page .mtd-quick-tips h3 {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #059669;
	font-size: 16px;
}

.mtd-page .mtd-quick-tips h3 svg {
	width: 21px;
	height: 21px;
}

.mtd-page .mtd-quick-tips ul {
	display: grid;
	gap: 16px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.mtd-page .mtd-quick-tips li {
	position: relative;
	margin: 0;
	padding-left: 27px;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

.mtd-page .mtd-quick-tips li::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #ffffff;
	background: #10b981;
	border-radius: 999px;
	content: "\2713";
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.mtd-page .mtd-quick-devices {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 28px;
	padding: 20px 24px;
	background: #f8fbff;
	border: 1px solid #dbeafe;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(37, 99, 235, 0.06);
}

.mtd-page .mtd-quick-devices-copy {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-width: 0;
}

.mtd-page .mtd-quick-devices-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	color: var(--mtd-accent);
}

.mtd-page .mtd-quick-devices-icon svg {
	width: 30px;
	height: 30px;
}

.mtd-page .mtd-quick-devices-copy strong {
	display: block;
	color: #2563eb;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.mtd-page .mtd-quick-devices-copy small {
	display: block;
	margin-top: 4px;
	color: #475569;
	font-size: 14px;
	line-height: 1.45;
}

.mtd-page .mtd-quick-device-icons {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.mtd-page .mtd-quick-device-icons span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 66px;
	height: 46px;
	padding: 0 12px;
	color: #334155;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.mtd-benefits {
	padding: 40px 0;
	color: #1e293b;
	background: #ffffff;
}

.mtd-page .additional-features {
	padding: 72px 0 74px;
	color: #0f172a;
	background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.mtd-page .mtd-main-features-heading {
	width: min(760px, 100%);
	margin: 0 auto 32px;
	text-align: center;
}

.mtd-page .mtd-main-features-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 34px;
	margin-bottom: 16px;
	padding: 0 17px;
	color: #2563eb;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #dbe6f5;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.mtd-page .mtd-main-features-eyebrow svg {
	width: 17px;
	height: 17px;
}

.mtd-page .mtd-main-features-heading h2 {
	margin: 0;
	color: #0f172a;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-align: center;
}

.mtd-page .mtd-gradient-brand {
	display: inline-block;
	color: transparent;
	background: linear-gradient(90deg, #0b84ff 0%, #2563eb 44%, #4f46e5 70%, #a78bfa 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mtd-page .mtd-main-features-heading p {
	width: min(620px, 100%);
	margin: 18px auto 0;
	color: #536174;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.45;
}

.mtd-benefit-list,
.mtd-page .af-grid,
.mtd-page .mtd-main-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	width: min(1080px, 100%);
	margin: 0 auto;
}

.mtd-page .af-item,
.mtd-page .mtd-main-feature-card {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 294px;
	padding: 30px 28px 34px;
	flex-direction: column;
	overflow: hidden;
	color: #0f172a;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #dfe7f2;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07), 0 1px 2px rgba(15, 23, 42, 0.04);
	text-align: center;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mtd-page .mtd-main-feature-card:hover {
	border-color: rgba(37, 99, 235, 0.25);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11), 0 1px 2px rgba(15, 23, 42, 0.05);
	transform: translateY(-2px);
}

.mtd-page .af-icon,
.mtd-page .mtd-main-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	margin: 0 0 20px;
	flex: 0 0 92px;
	color: var(--mtd-feature-color, #2563eb);
	background: var(--mtd-feature-bg, #eef4ff);
	border: 0;
	border-radius: 50%;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.mtd-page .mtd-main-feature-icon svg {
	width: 42px;
	height: 42px;
}

.mtd-page .mtd-main-feature-icon span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 30px;
	border: 3px solid currentColor;
	border-radius: 4px;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: 0;
}

.mtd-page .mtd-main-feature-card h3 {
	margin: 0;
	color: #0f172a;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
}

.mtd-page .af-item p,
.mtd-page .mtd-main-feature-card p {
	width: min(250px, 100%);
	margin: 14px auto 0;
	color: #596679;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.52;
}

.mtd-page .mtd-main-feature-rule {
	display: block;
	width: 42px;
	height: 3px;
	margin-top: auto;
	border-radius: 999px;
	background: var(--mtd-feature-color, #2563eb);
}

.mtd-page .mtd-main-feature-card--blue {
	--mtd-feature-color: #2563eb;
	--mtd-feature-bg: #edf3ff;
}

.mtd-page .mtd-main-feature-card--green {
	--mtd-feature-color: #22c55e;
	--mtd-feature-bg: #eafbef;
}

.mtd-page .mtd-main-feature-card--amber {
	--mtd-feature-color: #f6b21a;
	--mtd-feature-bg: #fff6dd;
}

.mtd-page .mtd-main-feature-card--purple {
	--mtd-feature-color: #7c3aed;
	--mtd-feature-bg: #f1eafe;
}

.mtd-page .mtd-main-feature-card--pink {
	--mtd-feature-color: #ec4899;
	--mtd-feature-bg: #fdeaf3;
}

.mtd-page .benefits {
	padding: 56px 0;
	color: #1e293b;
	background: #f8fafc;
}

.mtd-page .benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	width: min(1000px, 100%);
	margin: 0 auto;
}

.mtd-page .benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 54px;
	padding: 12px 14px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

.mtd-page .benefit-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	color: #fff;
	background: var(--mtd-accent);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
}

.mtd-page .benefit-item p {
	margin: 2px 0 0;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.6;
}

.mtd-faq-section,
.mtd-page .faq {
	padding: 56px 0;
	color: #1e293b;
	background: #ffffff;
}

.mtd-faq,
.mtd-page .faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: min(1100px, 100%);
	margin: 0 auto;
}

.mtd-page .faq-item {
	padding: 0;
	background: #f8fafc;
	border: 0;
	border-radius: 8px;
}

.mtd-page .faq-q {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 18px 18px 8px;
}

.mtd-page .faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	color: #fff;
	background: var(--mtd-accent);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
}

.mtd-faq h3,
.mtd-page .faq-q h3 {
	margin: 1px 0 0;
	color: #0f172a;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0;
}

.mtd-faq p,
.mtd-page .faq-a p {
	margin: 0;
	padding: 0 18px 18px 54px;
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.55;
}

.mtd-page[dir="rtl"] .mtd-content {
	border-right: 3px solid var(--mtd-accent);
	border-left: 0;
	border-radius: 6px 0 0 6px;
}

.mtd-page[dir="rtl"] .mtd-content ol,
.mtd-page[dir="rtl"] .mtd-content ul {
	padding-right: 22px;
	padding-left: 0;
}

.mtd-page[dir="rtl"] .mtd-paste-button {
	right: auto;
	left: 5px;
}

.mtd-page[dir="rtl"] .mtd-url-field input {
	padding-right: 20px;
	padding-left: 112px;
}

.mtd-footer {
	padding: 32px 0 16px;
	color: #1e293b;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.mtd-footer-grid,
.mtd-page .footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 24px;
}

.mtd-footer h3,
.mtd-page .footer-col h3 {
	margin: 0 0 12px;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0;
}

.mtd-footer a,
.mtd-page .footer-col-links a {
	display: block;
	margin: 0 0 8px;
	color: #475569;
	font-size: 14px;
}

.mtd-footer a:hover,
.mtd-footer a:focus-visible {
	color: var(--mtd-accent);
	outline: 0;
}

.mtd-footer-bottom,
.mtd-page .footer-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 16px 0;
	color: #94a3b8;
	border-top: 1px solid #e2e8f0;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

.mtd-page .footer-trust-sep {
	color: #cbd5e1;
}

.mtd-page .footer-disclaimer {
	width: min(700px, 100%);
	margin: 16px auto;
	color: #94a3b8;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.mtd-page .copyright {
	margin: 0;
	color: #94a3b8;
	font-size: 12px;
	text-align: center;
}

.mtd-page.mtd-utility-page {
	min-height: 100vh;
	background: #ffffff;
}

.mtd-page .mtd-utility-hero {
	padding: 48px 0 24px;
	text-align: center;
}

.mtd-page .mtd-utility-hero h1 {
	margin: 0 0 14px;
	color: #0f172a;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.mtd-page .mtd-utility-hero p {
	width: min(720px, 100%);
	margin: 0 auto;
	color: var(--mtd-muted);
	font-size: 17px;
	line-height: 1.65;
}

.mtd-page .mtd-policy-section {
	padding: 20px 0 72px;
}

.mtd-page .mtd-policy-content {
	width: min(900px, 100%);
	margin: 0 auto;
	counter-reset: policy-section;
}

.mtd-page .mtd-policy-content > p,
.mtd-page .mtd-policy-content li {
	color: var(--mtd-muted);
	font-size: 16px;
	line-height: 1.75;
}

.mtd-page .mtd-policy-content > p {
	margin: 0 0 18px;
}

.mtd-page .mtd-policy-content ul,
.mtd-page .mtd-policy-content ol {
	margin: 0 0 24px;
	padding-left: 24px;
}

.mtd-page .mtd-policy-content h2 {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin: 34px 0 12px;
	color: #0f172a;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: uppercase;
	counter-increment: policy-section;
}

.mtd-page .mtd-policy-content h2::before {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #fff;
	background: var(--mtd-accent);
	border-radius: 6px;
	content: counter(policy-section);
	font-size: 13px;
	font-weight: 800;
}

.mtd-page .mtd-policy-content a,
.mtd-page .mtd-contact-copy a {
	color: var(--mtd-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mtd-page .mtd-contact-section {
	padding: 20px 0 72px;
}

.mtd-page .mtd-contact-card {
	width: min(500px, 100%);
	margin: 0 auto;
	overflow: hidden;
	background: #f1f5f9;
	border-left: 3px solid var(--mtd-accent);
	border-radius: 10px;
}

.mtd-page .mtd-contact-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	background: rgba(37, 99, 235, 0.04);
	border-bottom: 1px solid #e2e8f0;
}

.mtd-page .mtd-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--mtd-accent);
	background: rgba(37, 99, 235, 0.08);
	border-radius: 50%;
}

.mtd-page .mtd-contact-icon svg {
	width: 22px;
	height: 22px;
}

.mtd-page .mtd-contact-card-header h2 {
	margin: 0;
	color: #0f172a;
	font-size: 17px;
	font-weight: 650;
	letter-spacing: 0;
}

.mtd-page .mtd-contact-card-body {
	padding: 24px;
}

.mtd-page .mtd-contact-email-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.mtd-page .mtd-contact-email-row input {
	width: 100%;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	color: #1e293b;
	background: #fff;
	border: 0;
	border-radius: 7px;
	font-size: 15px;
	outline: 0;
}

.mtd-page .mtd-contact-email-row input:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.mtd-page .mtd-contact-email-row button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 104px;
	height: 46px;
	padding: 0 16px;
	color: #fff;
	background: var(--mtd-accent);
	border: 0;
	border-radius: 7px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
}

.mtd-page .mtd-contact-email-row button:hover,
.mtd-page .mtd-contact-email-row button:focus-visible {
	background: var(--mtd-accent-hover);
	outline: 0;
}

.mtd-page .mtd-contact-card-body > p {
	margin: 14px 0 0;
	color: var(--mtd-dim);
	font-size: 13px;
	line-height: 1.55;
}

.mtd-page .mtd-contact-copy {
	width: min(700px, 100%);
	margin: 80px auto 0;
	padding-top: 34px;
	color: var(--mtd-muted);
	border-top: 1px solid #e2e8f0;
	text-align: center;
}

.mtd-page .mtd-contact-copy p,
.mtd-page .mtd-contact-copy li {
	color: var(--mtd-muted);
	font-size: 15px;
	line-height: 1.75;
}

.mtd-page .mtd-contact-copy h2 {
	margin: 34px 0 10px;
	color: #0f172a;
	font-size: 20px;
	letter-spacing: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 860px) {
	.mtd-hero-eyebrow {
		flex-wrap: wrap;
		border-radius: 18px;
		font-size: 14px;
	}

	.mtd-hero h1 {
		font-size: 48px;
	}

	.mtd-page .hero-subtitle {
		font-size: 18px;
	}

	.mtd-hero-form-card {
		padding: 16px;
	}

	.mtd-hero-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mtd-hero-trust-item:nth-child(3) {
		border-left: 0;
		border-top: 1px solid #dbe5f2;
	}

	.mtd-hero-trust-item:nth-child(4) {
		border-top: 1px solid #dbe5f2;
	}

	.mtd-page .mtd-guide-hero h1 {
		font-size: 44px;
	}

	.mtd-feature-grid,
	.mtd-page .feature-grid {
		grid-template-columns: 1fr;
	}

	.mtd-page .additional-features {
		padding: 58px 0 60px;
	}

	.mtd-page .mtd-main-features-heading h2 {
		font-size: 42px;
		line-height: 1.12;
	}

	.mtd-page .mtd-main-features-heading p {
		font-size: 18px;
	}

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

	.mtd-page .mtd-main-feature-card {
		min-height: 280px;
	}

	.mtd-feature,
	.mtd-page .feature-card {
		min-height: 0;
	}

	.mtd-step-grid,
	.mtd-page .steps,
	.mtd-page .benefits-grid,
	.mtd-faq,
	.mtd-page .faq-list {
		grid-template-columns: 1fr;
	}

	.mtd-page .mtd-quick-guide h2 {
		font-size: 42px;
	}

	.mtd-page .mtd-quick-guide-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.mtd-page .mtd-quick-devices {
		align-items: flex-start;
		flex-direction: column;
	}

	.mtd-page .mtd-quick-device-icons {
		flex-wrap: wrap;
		width: 100%;
	}

	.mtd-page .mtd-quick-device-icons span {
		flex: 1 1 120px;
	}
}

@media (max-width: 560px) {
	.mtd-page {
		font-size: 16px;
	}

	.mtd-header-inner,
	.mtd-page .header-nav {
		min-height: 61px;
	}

	.mtd-main-nav,
	.mtd-page .header-actions {
		gap: 4px;
	}

	.mtd-brand,
	.mtd-page .header-logo {
		max-width: calc(100% - 130px);
		min-width: 0;
		overflow: hidden;
	}

	.mtd-page .mtd-brand-logo,
	.mtd-page .mtd-brand-name {
		max-width: 100%;
	}

	.mtd-language-trigger,
	.mtd-tools-trigger {
		padding: 8px 5px;
	}

	.mtd-language-menu,
	.mtd-page .lang-menu {
		grid-template-columns: 1fr;
		width: min(260px, calc(100vw - 24px));
	}

	.mtd-tools-menu {
		right: 0;
		left: auto;
	}

	.mtd-hero,
	.mtd-page .hero {
		padding: 28px 0 30px;
	}

	.mtd-hero-eyebrow {
		gap: 8px;
		width: 100%;
		padding: 8px 12px;
	}

	.mtd-hero-eyebrow-dot {
		display: none;
	}

	.mtd-hero h1 {
		font-size: 40px;
		line-height: 1.15;
	}

	.mtd-subtitle,
	.mtd-page .hero-subtitle {
		font-size: 16px;
	}

	.mtd-page .hero-stats-primary {
		font-size: 18px;
	}

	.mtd-page .hero-stats-secondary {
		font-size: 14px;
	}

	.mtd-hero-pills {
		gap: 8px;
	}

	.mtd-hero-pill {
		min-height: 42px;
		padding: 0 13px;
		font-size: 14px;
	}

	.mtd-hero-form-card {
		padding: 12px;
		border-radius: 12px;
	}

	.mtd-input-row,
	.mtd-page .search-input-wrap {
		gap: 8px;
	}

	.mtd-input-leading-icon {
		width: 52px;
		min-width: 52px;
		height: 58px;
	}

	.mtd-url-field input,
	.mtd-page .search-input {
		height: 58px;
		padding-right: 102px;
		padding-left: 14px;
		font-size: 16px;
	}

	.mtd-paste-button,
	.mtd-page .btn-paste {
		padding-right: 12px;
		padding-left: 12px;
		font-size: 14px;
	}

	.mtd-submit-button,
	.mtd-page .btn-download {
		font-size: 18px;
	}

	.mtd-hero-security-note {
		align-items: flex-start;
		font-size: 13px;
		text-align: left;
	}

	.mtd-hero-trust-strip {
		grid-template-columns: 1fr;
	}

	.mtd-hero-trust-item {
		justify-content: flex-start;
		min-height: 74px;
	}

	.mtd-hero-trust-item + .mtd-hero-trust-item,
	.mtd-hero-trust-item:nth-child(3),
	.mtd-hero-trust-item:nth-child(4) {
		border-top: 1px solid #dbe5f2;
		border-left: 0;
	}

	.mtd-result-layout {
		grid-template-columns: 108px minmax(0, 1fr);
		min-height: 180px;
	}

	.mtd-result-media,
	.mtd-result-thumbnail {
		min-height: 180px;
	}

	.mtd-result-content {
		padding: 14px;
	}

	.mtd-result-content.is-gallery {
		padding: 16px;
	}

	.mtd-result-card h2 {
		font-size: 16px;
		-webkit-line-clamp: 4;
	}

	.mtd-result-metadata {
		font-size: 13px;
	}

	.mtd-result-links {
		width: 100%;
		margin-top: 14px;
	}

	.mtd-result-links a {
		width: 100%;
		padding: 8px 10px;
		font-size: 14px;
	}

	.mtd-result-gallery {
		grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
		gap: 10px;
		margin-top: 14px;
	}

	.mtd-result-image-card {
		padding: 6px;
	}

	.mtd-result-image-badge {
		top: 7px;
		left: 7px;
		min-height: 24px;
		padding: 0 8px;
		font-size: 11px;
	}

	.mtd-page .mtd-result-gallery-download {
		min-height: 40px;
		padding: 8px;
		font-size: 13px;
	}

	.mtd-feature,
	.mtd-page .feature-card {
		padding: 24px;
	}

	.mtd-page .additional-features {
		padding: 44px 0 46px;
	}

	.mtd-page .mtd-main-features-heading {
		margin-bottom: 22px;
	}

	.mtd-page .mtd-main-features-eyebrow {
		min-height: 32px;
		margin-bottom: 12px;
		padding: 0 13px;
		font-size: 12px;
	}

	.mtd-page .mtd-main-features-heading h2 {
		font-size: 34px;
		line-height: 1.14;
	}

	.mtd-page .mtd-main-features-heading p {
		margin-top: 12px;
		font-size: 15px;
	}

	.mtd-page .mtd-main-feature-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mtd-page .mtd-main-feature-card {
		min-height: 0;
		padding: 24px 18px 26px;
	}

	.mtd-page .mtd-main-feature-icon {
		width: 74px;
		height: 74px;
		margin-bottom: 16px;
		flex-basis: 74px;
	}

	.mtd-page .mtd-main-feature-icon svg {
		width: 34px;
		height: 34px;
	}

	.mtd-page .mtd-main-feature-card h3 {
		font-size: 20px;
	}

	.mtd-page .mtd-main-feature-card p {
		font-size: 15px;
	}

	.mtd-page .how-to-devices,
	.mtd-page .benefits {
		padding: 42px 0;
	}

	.mtd-page .mtd-guide-hero {
		padding: 42px 0 48px;
	}

	.mtd-page .mtd-guide-hero h1 {
		font-size: 34px;
		line-height: 1.18;
	}

	.mtd-page .mtd-guide-hero p {
		font-size: 16px;
	}

	.mtd-page .mtd-guide-steps,
	.mtd-page .mtd-guide-cta {
		padding: 42px 0;
	}

	.mtd-page .mtd-guide-tip-section {
		padding: 24px 0;
	}

	.mtd-page .mtd-guide-tip-card,
	.mtd-page .mtd-guide-device-header,
	.mtd-page .mtd-guide-device-body {
		padding-right: 16px;
		padding-left: 16px;
	}

	.mtd-page .mtd-quick-guide {
		padding: 44px 0 38px;
	}

	.mtd-page .mtd-quick-guide-heading {
		margin-bottom: 22px;
	}

	.mtd-page .mtd-quick-guide-eyebrow {
		min-height: 32px;
		font-size: 12px;
	}

	.mtd-page .mtd-quick-guide h2 {
		font-size: 34px;
		line-height: 1.12;
	}

	.mtd-page .mtd-quick-guide-heading p {
		margin-top: 12px;
		font-size: 15px;
	}

	.mtd-page .mtd-quick-guide-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mtd-page .mtd-quick-step,
	.mtd-page .mtd-quick-tips {
		min-height: 0;
	}

	.mtd-page .mtd-quick-step {
		padding: 24px 18px 20px;
	}

	.mtd-page .mtd-quick-step-icon {
		width: 62px;
		height: 62px;
		margin-bottom: 14px;
	}

	.mtd-page .mtd-quick-step-icon svg {
		width: 30px;
		height: 30px;
	}

	.mtd-page .mtd-quick-step p {
		font-size: 14px;
	}

	.mtd-page .mtd-quick-devices {
		gap: 16px;
		margin-top: 16px;
		padding: 16px;
	}

	.mtd-page .mtd-guide-device-section {
		padding: 24px 0 42px;
	}

	.mtd-page .device-header,
	.mtd-page .device-content {
		padding-right: 14px;
		padding-left: 14px;
	}

	.mtd-page .mtd-utility-hero {
		padding-top: 38px;
	}

	.mtd-page .mtd-utility-hero h1 {
		font-size: 29px;
	}

	.mtd-page .mtd-contact-email-row {
		grid-template-columns: 1fr;
	}

	.mtd-page .mtd-contact-email-row button {
		width: 100%;
	}

	.mtd-page .mtd-contact-card-header,
	.mtd-page .mtd-contact-card-body {
		padding-right: 18px;
		padding-left: 18px;
	}

	.mtd-page .mtd-contact-copy {
		margin-top: 52px;
	}

	.mtd-footer-grid,
	.mtd-page .footer-links {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.mtd-page .footer-trust-sep {
		display: none;
	}

	.mtd-page .footer-trust span:not(.footer-trust-sep) {
		width: 100%;
	}
}
