.ml-terms-page {
	--ml-bg: var(--bg, #f7fafc);
	--ml-surface: var(--surface, #fff);
	--ml-border: var(--br, #e2e8f0);
	--ml-accent: var(--acc, #0f2a56);
	--ml-muted: var(--muted, #6b7c93);
	--ml-radius: var(--r, 12px);
	--ml-shadow: 0 14px 36px rgba(15, 42, 86, 0.08);
	--ml-shadow-soft: 0 10px 24px rgba(15, 42, 86, 0.06);
	--ml-ink: var(--ink, #102341);
	max-width: min(1180px, 100%);
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1rem, 3vw, 1.85rem) clamp(2rem, 4vw, 3rem);
	color: inherit;
	direction: rtl;
	text-align: right;
	line-height: 1.85;
	word-break: break-word;
}

.ml-terms-shell {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(0.8rem, 2vw, 1.25rem);
}

.ml-terms-hero {
	background: linear-gradient(135deg, var(--ml-bg), #ffffff);
	border: 1px solid var(--ml-border);
	border-radius: calc(var(--ml-radius) + 6px);
	padding: clamp(1.6rem, 3vw, 2.2rem);
	box-shadow: var(--ml-shadow);
	margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
	position: relative;
	overflow: hidden;
}

.ml-terms-eyebrow {
	margin: 0 0 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.88rem;
	color: var(--ml-muted);
	font-weight: 700;
}

.ml-terms-page h1 {
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	margin: 0 0 0.6rem;
}

.ml-terms-page h2 {
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	margin: 0 0 0.65rem;
	padding-bottom: 0.2rem;
	display: inline-block;
	border-bottom: 3px solid rgba(15, 42, 86, 0.16);
}

.ml-terms-page h3 {
	font-size: clamp(1rem, 1.7vw, 1.15rem);
	margin: 0.35rem 0 0.45rem;
}

.ml-terms-updated {
	margin: 0 0 1.1rem;
	color: var(--ml-muted);
	font-weight: 600;
}

.ml-terms-lead {
	color: var(--ml-muted);
	margin: 0;
	line-height: 1.7;
}

.ml-terms-hero-bullets {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.65rem;
}

.ml-terms-hero-bullets li {
	background: rgba(15, 42, 86, 0.05);
	border: 1px solid var(--ml-border);
	border-radius: 10px;
	padding: 0.75rem 0.9rem;
	color: var(--ml-ink);
	box-shadow: 0 10px 22px rgba(16, 35, 65, 0.05);
	transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.ml-terms-hero-bullets li:hover,
.ml-terms-hero-bullets li:focus-within {
	border-color: rgba(15, 42, 86, 0.18);
	box-shadow: 0 16px 30px rgba(16, 35, 65, 0.08);
	transform: translateY(-2px);
}

.ml-terms-hero-bullets strong {
	color: var(--ml-accent);
}

.ml-terms-toc {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	background: var(--ml-surface);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1rem 1.1rem;
	box-shadow: var(--ml-shadow-soft);
}

.ml-terms-toc__title {
	font-weight: 700;
	color: var(--ml-ink);
}

.ml-terms-toc ol {
	margin: 0;
	padding-inline-start: 1.2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.25rem 0.8rem;
	counter-reset: toc;
}

.ml-terms-toc a {
	color: var(--ml-ink);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ml-terms-toc a:hover,
.ml-terms-toc a:focus {
	color: var(--ml-accent);
	border-color: var(--ml-accent);
	text-decoration: underline;
}

.ml-terms-section {
	background: var(--ml-surface);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1.35rem 1.15rem;
	box-shadow: var(--ml-shadow-soft);
	margin-bottom: 1.35rem;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.ml-terms-section:last-of-type {
	margin-bottom: 0;
}

.ml-terms-section__title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.35rem;
	color: var(--ml-ink);
}

.ml-terms-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-inline-size: 32px;
	min-block-size: 32px;
	padding: 0 0.65rem;
	border-radius: 999px;
	background: rgba(15, 42, 86, 0.07);
	color: var(--ml-accent);
	font-weight: 800;
	font-size: 0.95rem;
}

.ml-terms-section__title h2 {
	color: var(--ml-ink);
}

.ml-terms-section::before {
	content: "";
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: 3px;
	background: rgba(15, 42, 86, 0.14);
	transition: background 0.18s ease, width 0.18s ease;
}

.ml-terms-section:hover,
.ml-terms-section:focus-within {
	box-shadow: 0 18px 32px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.18);
}

.ml-terms-section:hover::before,
.ml-terms-section:focus-within::before {
	background: var(--ml-accent);
	width: 4px;
}

.ml-terms-body {
	line-height: 1.85;
}

.ml-terms-body p {
	margin: 0 0 0.65rem;
}

.ml-terms-body ul {
	margin: 0.35rem 0 0.8rem 0;
	padding-inline-start: 1.2rem;
	line-height: 1.7;
	list-style: disc;
	list-style-position: inside;
}

.ml-terms-body li {
	margin-bottom: 0.35rem;
}

.ml-terms-highlight {
	font-weight: 700;
	color: var(--ml-accent);
}

.ml-terms-note {
	background: rgba(15, 42, 86, 0.03);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.75rem 0.85rem;
	margin: 0.2rem 0 0.8rem;
}

/* Back to top */
.ml-terms-backtotop {
	position: fixed;
	inset-inline-end: 18px;
	inset-block-end: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ml-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(15, 42, 86, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ml-terms-backtotop:hover,
.ml-terms-backtotop:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(15, 42, 86, 0.3);
}

.ml-terms-backtotop:active {
	transform: translateY(0);
}

/* Sticky TOC on wide screens */
@media (min-width: 960px) {
	.ml-terms-toc {
		position: sticky;
		top: 110px;
	}
}

@media (max-width: 720px) {
	.ml-terms-page {
		padding: 1.25rem 1rem 2.1rem;
		line-height: 1.7;
	}

	.ml-terms-section {
		padding: 1.05rem 1rem;
	}

	.ml-terms-hero-bullets {
		grid-template-columns: 1fr;
	}

	.ml-terms-toc ol {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.ml-terms-backtotop {
		inset-inline-end: 14px;
		inset-block-end: 14px;
	}
}

@media print {
	.ml-terms-page {
		box-shadow: none;
		padding: 0;
		color: #000;
	}

	.ml-terms-hero,
	.ml-terms-section,
	.ml-terms-toc {
		border: none;
		box-shadow: none;
		background: transparent;
	}

	.ml-terms-section::before,
	.ml-terms-backtotop {
		display: none;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}

/* Shipping policy page */
.ml-shipping-page {
	--ml-bg: var(--bg, #f7fafc);
	--ml-surface: var(--surface, #fff);
	--ml-border: var(--br, #e2e8f0);
	--ml-accent: var(--acc, #0f2a56);
	--ml-muted: var(--muted, #6b7c93);
	--ml-radius: var(--r, 12px);
	--ml-shadow: 0 14px 36px rgba(15, 42, 86, 0.08);
	--ml-shadow-soft: 0 10px 24px rgba(15, 42, 86, 0.06);
	--ml-ink: var(--ink, #102341);
	max-width: min(1180px, 100%);
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1rem, 3vw, 1.85rem) clamp(2rem, 4vw, 3rem);
	color: inherit;
	direction: rtl;
	text-align: right;
	line-height: 1.85;
	word-break: break-word;
}

.ml-shipping-shell {
	display: flex;
	flex-direction: column;
	gap: clamp(0.8rem, 2vw, 1.25rem);
}

.ml-shipping-hero {
	background: linear-gradient(135deg, var(--ml-bg), #ffffff);
	border: 1px solid var(--ml-border);
	border-radius: calc(var(--ml-radius) + 6px);
	padding: clamp(1.6rem, 3vw, 2.2rem);
	box-shadow: var(--ml-shadow);
	margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
	position: relative;
	overflow: hidden;
}

.ml-shipping-eyebrow {
	margin: 0 0 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.88rem;
	color: var(--ml-muted);
	font-weight: 700;
}

.ml-shipping-page h1 {
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	margin: 0 0 0.6rem;
}

.ml-shipping-page h2 {
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	margin: 0 0 0.65rem;
	padding-bottom: 0.2rem;
	display: inline-block;
	border-bottom: 3px solid rgba(15, 42, 86, 0.16);
}

.ml-shipping-page h3 {
	font-size: clamp(1rem, 1.7vw, 1.15rem);
	margin: 0.35rem 0 0.45rem;
}

.ml-shipping-updated {
	margin: 0 0 1.1rem;
	color: var(--ml-muted);
	font-weight: 600;
}

.ml-shipping-lead {
	color: var(--ml-muted);
	margin: 0;
	line-height: 1.7;
}

.ml-shipping-highlights {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.75rem;
}

.ml-shipping-highlight {
	background: var(--ml-surface);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.9rem 1rem;
	box-shadow: var(--ml-shadow-soft);
	line-height: 1.7;
}

.ml-shipping-section {
	background: var(--ml-surface);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1.35rem 1.15rem;
	box-shadow: var(--ml-shadow-soft);
	margin-bottom: 1.35rem;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.ml-shipping-section:last-of-type {
	margin-bottom: 0;
}

.ml-shipping-section__title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.35rem;
	color: var(--ml-ink);
}

.ml-shipping-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-inline-size: 32px;
	min-block-size: 32px;
	padding: 0 0.65rem;
	border-radius: 999px;
	background: rgba(15, 42, 86, 0.07);
	color: var(--ml-accent);
	font-weight: 800;
	font-size: 0.95rem;
}

.ml-shipping-section::before {
	content: "";
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: 3px;
	background: rgba(15, 42, 86, 0.14);
	transition: background 0.18s ease, width 0.18s ease;
}

.ml-shipping-section:hover,
.ml-shipping-section:focus-within {
	box-shadow: 0 18px 32px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.18);
}

.ml-shipping-section:hover::before,
.ml-shipping-section:focus-within::before {
	background: var(--ml-accent);
	width: 4px;
}

.ml-shipping-body {
	line-height: 1.85;
}

.ml-shipping-body p {
	margin: 0 0 0.65rem;
}

.ml-shipping-body ul {
	margin: 0.35rem 0 0.8rem 0;
	padding-inline-start: 1.2rem;
	line-height: 1.7;
	list-style: disc;
	list-style-position: inside;
}

.ml-shipping-body li {
	margin-bottom: 0.35rem;
}

.ml-shipping-note {
	background: rgba(15, 42, 86, 0.03);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.75rem 0.85rem;
	margin: 0.2rem 0 0.8rem;
}

.ml-shipping-toc {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	background: var(--ml-surface);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1rem 1.1rem;
	box-shadow: var(--ml-shadow-soft);
	margin-bottom: 1.35rem;
}

.ml-shipping-toc h2 {
	margin: 0;
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	color: var(--ml-ink);
}

.ml-shipping-toc ol {
	margin: 0;
	padding-inline-start: 1.2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.25rem 0.8rem;
	counter-reset: toc;
}

.ml-shipping-toc a {
	color: var(--ml-ink);
	text-decoration: none;
	border-bottom: 1px dashed transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ml-shipping-toc a:hover,
.ml-shipping-toc a:focus {
	color: var(--ml-accent);
	border-color: var(--ml-accent);
	text-decoration: underline;
}

.ml-shipping-backtotop {
	position: fixed;
	inset-inline-end: 18px;
	inset-block-end: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ml-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(15, 42, 86, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ml-shipping-backtotop:hover,
.ml-shipping-backtotop:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(15, 42, 86, 0.3);
}

.ml-shipping-backtotop:active {
	transform: translateY(0);
}

.ml-shipping-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.35rem 0 0;
}

.ml-shipping-table th,
.ml-shipping-table td {
	border: 1px solid var(--ml-border);
	padding: 0.65rem 0.75rem;
	text-align: right;
}

.ml-shipping-table th {
	background: rgba(15, 42, 86, 0.05);
	font-weight: 700;
}

@media (max-width: 720px) {
	.ml-shipping-page {
		padding: 1.25rem 1rem 2.1rem;
		line-height: 1.7;
	}

	.ml-shipping-section {
		padding: 1.05rem 1rem;
	}

	.ml-shipping-highlights {
		grid-template-columns: 1fr;
	}

	.ml-shipping-toc ol {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.ml-shipping-backtotop {
		inset-inline-end: 14px;
		inset-block-end: 14px;
	}
}

/* About page */
.ml-about-page {
	--ml-bg: var(--bg, #f7fafc);
	--ml-surface: var(--surface, #fff);
	--ml-border: var(--br, #e2e8f0);
	--ml-accent: var(--acc, #0f2a56);
	--ml-muted: var(--muted, #6b7c93);
	--ml-radius: var(--r, 12px);
	--ml-shadow: 0 14px 36px rgba(15, 42, 86, 0.08);
	--ml-shadow-soft: 0 10px 24px rgba(15, 42, 86, 0.06);
	--ml-ink: var(--ink, #102341);
	max-width: min(1100px, 100%);
	margin: 0 auto;
	padding: clamp(1.25rem, 2.4vw, 2.25rem) clamp(1rem, 2.5vw, 1.6rem) clamp(1.6rem, 3vw, 2.3rem);
	color: inherit;
	direction: rtl;
	text-align: right;
	line-height: 1.8;
	word-break: break-word;
	background: radial-gradient(circle at 15% 20%, rgba(15, 42, 86, 0.05), transparent 32%), radial-gradient(circle at 80% 0%, rgba(15, 42, 86, 0.04), transparent 28%), #fdfefe;
}

.ml-about-shell {
	display: flex;
	flex-direction: column;
	gap: clamp(0.8rem, 2vw, 1.25rem);
}

@media (min-width: 960px) {
	.ml-about-shell {
		display: grid;
		grid-template-columns: repeat(2, minmax(280px, 1fr));
		grid-auto-rows: auto;
		gap: 0.85rem 0.9rem;
		align-items: start;
	}

	.ml-about-hero,
	.ml-about-cta-bar {
		grid-column: 1 / -1;
	}
}

.ml-about-hero {
	background: linear-gradient(135deg, var(--ml-bg), #ffffff);
	border: 1px solid var(--ml-border);
	border-radius: calc(var(--ml-radius) + 6px);
	padding: clamp(1.35rem, 2.6vw, 1.9rem);
	box-shadow: var(--ml-shadow);
	margin-bottom: clamp(1.3rem, 2.6vw, 2rem);
	position: relative;
	overflow: hidden;
}

.ml-about-hero::before,
.ml-about-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(18px);
}

.ml-about-hero::before,
.ml-about-hero::after {
	content: "";
	position: absolute;
	inset: -40% auto auto -15%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 30% 30%, rgba(15, 42, 86, 0.12), transparent 50%);
	opacity: 0.7;
	pointer-events: none;
}

.ml-about-hero::after {
	inset: auto -25% -40% auto;
	background: radial-gradient(circle at 70% 70%, rgba(15, 42, 86, 0.08), transparent 55%);
}

.ml-about-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.05rem;
	align-items: start;
}

.ml-about-eyebrow {
	margin: 0 0 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	color: var(--ml-muted);
	font-weight: 700;
}

.ml-about-page h1 {
	font-size: clamp(1.9rem, 3vw, 2.45rem);
	margin: 0 0 0.65rem;
	color: var(--ml-ink);
	max-width: 840px;
}

.ml-about-lead {
	color: var(--ml-muted);
	margin: 0 0 1rem;
	line-height: 1.7;
	max-width: 720px;
}

.ml-about-hero-panel {
	background: #fff;
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1.1rem 1.15rem;
	box-shadow: 0 18px 36px rgba(15, 42, 86, 0.1);
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

.ml-about-hero-panel h3 {
	margin: 0 0 0.35rem;
}

.ml-about-hero-panel p {
	margin: 0 0 0.75rem;
	color: var(--ml-muted);
	line-height: 1.7;
}

.ml-about-pills {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0.15rem 0 0.65rem;
}

.ml-about-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(15, 42, 86, 0.15);
	background: rgba(15, 42, 86, 0.06);
	color: var(--ml-ink);
	font-weight: 700;
	font-size: 0.9rem;
	box-shadow: 0 8px 18px rgba(15, 42, 86, 0.06);
}

.ml-about-hero-panel::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(15, 42, 86, 0.75), rgba(15, 42, 86, 0.1));
}

.ml-about-highlight-grid {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0.5rem;
}

.ml-about-highlight {
	background: rgba(15, 42, 86, 0.04);
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.75rem 0.95rem;
	line-height: 1.6;
	box-shadow: var(--ml-shadow-soft);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	position: relative;
	overflow: hidden;
}

.ml-about-highlight:hover,
.ml-about-highlight:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.16);
}

.ml-about-highlight strong {
	color: var(--ml-accent);
}

.ml-about-highlight::after {
	content: "";
	position: absolute;
	inset-inline-start: -12px;
	top: 18px;
	width: 6px;
	height: 24px;
	border-radius: 3px;
	background: rgba(15, 42, 86, 0.18);
}

.ml-about-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.ml-about-stats li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.6rem;
	align-items: baseline;
	border: 1px dashed rgba(15, 42, 86, 0.15);
	border-radius: 10px;
	padding: 0.6rem 0.75rem;
	background: rgba(15, 42, 86, 0.04);
}

.ml-about-stat__number {
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--ml-accent);
}

.ml-about-stat__label {
	color: var(--ml-muted);
	line-height: 1.5;
}

.ml-about-cta {
	margin-top: 1.1rem;
}

.ml-about-section {
	background: linear-gradient(135deg, #ffffff, rgba(15, 42, 86, 0.03));
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.95rem 1rem;
	box-shadow: var(--ml-shadow-soft);
	margin-bottom: 0.85rem;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.ml-about-section:last-of-type {
	margin-bottom: 0;
}

.ml-about-section:nth-of-type(even) {
	background: linear-gradient(135deg, rgba(15, 42, 86, 0.02), #ffffff);
}

.ml-about-section__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.45rem;
	position: relative;
	padding-inline-end: 1rem;
}

.ml-about-section__header::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	inset-inline-end: 0;
	bottom: -4px;
	height: 2px;
	background: linear-gradient(90deg, rgba(15, 42, 86, 0.14), rgba(15, 42, 86, 0));
}

.ml-about-badge {
	min-inline-size: 40px;
	min-block-size: 40px;
	border-radius: 50%;
	background: rgba(15, 42, 86, 0.08);
	color: var(--ml-accent);
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ml-about-kicker {
	margin: 0;
	color: var(--ml-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 0.9rem;
}

.ml-about-section h2 {
	margin: 0.1rem 0 0;
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	color: var(--ml-ink);
}

.ml-about-section:hover,
.ml-about-section:focus-within {
	box-shadow: 0 18px 32px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.18);
}

.ml-about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0.85rem;
}

.ml-about-grid--three {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ml-about-card,
.ml-about-tile {
	border: 1px solid transparent;
	border-radius: var(--ml-radius);
	padding: 0.95rem 1rem;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, rgba(15, 42, 86, 0.2), rgba(15, 42, 86, 0.06)) border-box;
	box-shadow: 0 10px 22px rgba(16, 35, 65, 0.07);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ml-about-card:hover,
.ml-about-card:focus-within,
.ml-about-tile:hover,
.ml-about-tile:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.16);
}

.ml-about-card h3,
.ml-about-tile h3 {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	color: var(--ml-ink);
}

.ml-about-card p,
.ml-about-tile p {
	margin: 0;
	line-height: 1.7;
	color: var(--ml-muted);
}

.ml-about-list {
	margin: 0.2rem 0 0;
	padding-inline-start: 1.2rem;
	line-height: 1.65;
	color: var(--ml-muted);
}

.ml-about-list li {
	margin-bottom: 0.35rem;
}

.ml-about-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.75rem;
}

.ml-about-steps--line {
	position: relative;
	grid-template-columns: 1fr;
}

.ml-about-steps--line .ml-about-step {
	position: relative;
}

.ml-about-steps--line .ml-about-step::before {
	content: "";
	position: absolute;
	inset-inline-start: 18px;
	top: 24px;
	bottom: -12px;
	width: 2px;
	background: linear-gradient(to bottom, rgba(15, 42, 86, 0.08), rgba(15, 42, 86, 0.18));
}

.ml-about-steps--line .ml-about-step:last-child::before {
	display: none;
}

.ml-about-step {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	border: 1px solid transparent;
	border-radius: var(--ml-radius);
	padding: 0.9rem 1rem;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, rgba(15, 42, 86, 0.2), rgba(15, 42, 86, 0.06)) border-box;
	box-shadow: 0 10px 22px rgba(16, 35, 65, 0.07);
	transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
	position: relative;
	padding-inline-start: 2.4rem;
}

.ml-about-step:hover,
.ml-about-step:focus-within {
	box-shadow: 0 14px 30px rgba(16, 35, 65, 0.08);
	border-color: rgba(15, 42, 86, 0.16);
	transform: translateY(-2px);
}

.ml-about-step::before {
	content: "";
	position: absolute;
	inset-inline-start: 0.9rem;
	top: 1.15rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ml-accent);
	box-shadow: 0 0 0 6px rgba(15, 42, 86, 0.08);
}

.ml-about-step h3 {
	margin: 0 0 0.2rem;
	font-size: 1.05rem;
}

.ml-about-step p {
	margin: 0;
	color: var(--ml-muted);
	line-height: 1.65;
}

.ml-about-cta-body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0.85rem;
	align-items: center;
}

.ml-about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.ml-about-backtotop {
	position: fixed;
	inset-inline-end: 18px;
	inset-block-end: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ml-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(15, 42, 86, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ml-about-backtotop:hover,
.ml-about-backtotop:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(15, 42, 86, 0.3);
}

.ml-about-backtotop:active {
	transform: translateY(0);
}

/* New about elements */
.ml-about-dual-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.75rem;
	align-items: start;
}

.ml-about-textblock {
	background: #fff;
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 0.9rem 1rem;
	box-shadow: 0 8px 20px rgba(16, 35, 65, 0.05);
	color: var(--ml-muted);
	line-height: 1.7;
}

.ml-about-quote {
	border: 1px solid var(--ml-border);
	border-radius: var(--ml-radius);
	padding: 1rem 1.1rem;
	background: linear-gradient(145deg, rgba(15, 42, 86, 0.04), rgba(15, 42, 86, 0.08));
	box-shadow: 0 10px 24px rgba(16, 35, 65, 0.08);
	color: var(--ml-ink);
	font-weight: 700;
	line-height: 1.7;
	position: relative;
}

.ml-about-quote::before {
	content: "“";
	position: absolute;
	font-size: 2.6rem;
	color: rgba(15, 42, 86, 0.25);
	inset-inline-start: 12px;
	top: 4px;
}

.ml-about-list {
	margin: 0.2rem 0 0;
	padding-inline-start: 1.2rem;
	line-height: 1.65;
	color: var(--ml-muted);
}

.ml-about-list li {
	margin-bottom: 0.35rem;
}

.ml-about-cta-bar {
	background: linear-gradient(135deg, rgba(15, 42, 86, 0.9), rgba(15, 42, 86, 0.75));
	border: 1px solid rgba(15, 42, 86, 0.18);
	color: #fff;
}

.ml-about-cta-bar h2,
.ml-about-cta-bar p {
	color: #fff;
}

.ml-about-cta-bar .sl-btn {
	border-color: #fff;
	color: #fff;
}

.ml-about-cta-bar .sl-btn--primary {
	background: #fff;
	color: var(--ml-accent);
}

@media (max-width: 720px) {
	.ml-about-page {
		padding: 1.25rem 1rem 2.1rem;
		line-height: 1.7;
	}

	.ml-about-section {
		padding: 1.05rem 1rem;
	}

	.ml-about-highlight-grid {
		grid-template-columns: 1fr;
	}

	.ml-about-hero-panel {
		order: -1;
	}

	.ml-about-dual-grid {
		grid-template-columns: 1fr;
	}

	.ml-about-steps {
		grid-template-columns: 1fr;
	}

	.ml-about-cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ml-about-backtotop {
		inset-inline-end: 14px;
		inset-block-end: 14px;
	}
}
