@font-face {
	font-family: "Vazirmatn";
	font-style: normal;
	font-display: swap;
	font-weight: 100 900;
	src: url("../fonts/vazirmatn-arabic.woff2") format("woff2-variations");
}

:root {
	--color-navy: #10233f;
	--color-navy-soft: #1d3659;
	--color-green: #11865d;
	--color-green-dark: #0c6949;
	--color-green-light: #eaf6f1;
	--color-amber: #f2a81d;
	--color-text: #263548;
	--color-muted: #687487;
	--color-border: #e2e8ef;
	--color-bg: #f7f9fb;
	--color-white: #ffffff;
	--shadow-soft: 0 22px 60px rgba(16, 35, 63, 0.09);
	--shadow-button: 0 12px 28px rgba(17, 134, 93, 0.2);
	--radius: 12px;
	--container: 1240px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	direction: rtl;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.9;
	text-align: right;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: var(--color-green-dark);
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover {
	color: var(--color-navy);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(242, 168, 29, 0.65);
	outline-offset: 4px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

.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;
}

.skip-link:focus {
	top: 12px;
	right: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	z-index: 1000;
	background: var(--color-white);
	color: var(--color-navy);
	border: 2px solid var(--color-green);
	border-radius: 8px;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.narrow-content {
	max-width: 920px;
	margin-inline: auto;
}

.section {
	padding: 104px 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(226, 232, 239, 0.9);
	backdrop-filter: blur(14px);
}

.header-container {
	min-height: 96px;
	display: grid;
	grid-template-columns: 230px 1fr 150px;
	align-items: center;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	color: var(--color-navy);
	justify-self: start;
}

.site-logo img {
	width: auto;
	max-width: 190px;
	max-height: 68px;
	object-fit: contain;
}

.site-identity {
	display: grid;
	line-height: 1.3;
}

.site-title {
	font-size: 34px;
	font-weight: 900;
	letter-spacing: -1.5px;
	color: var(--color-navy);
}

.site-description {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-muted);
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.menu,
.footer-menu,
.footer-list,
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 12px;
	color: var(--color-navy);
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}

.primary-menu a::after {
	position: absolute;
	right: 14px;
	bottom: 0;
	left: 14px;
	height: 2px;
	border-radius: 99px;
	background: var(--color-green);
	transform: scaleX(0);
	transition: transform 160ms ease;
	content: "";
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--color-green-dark);
}

.primary-menu a:hover::after,
.primary-menu a:focus::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	transform: scaleX(1);
}

.header-cta,
.cta-button,
.secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 10px 22px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-weight: 750;
	line-height: 1.4;
}

.header-cta {
	justify-self: end;
	min-height: 48px;
	padding-inline: 20px;
	background: var(--color-green);
	color: var(--color-white);
	box-shadow: var(--shadow-button);
	font-size: 14px;
}

.header-cta:hover,
.header-cta:focus,
.cta-button:hover,
.cta-button:focus {
	background: var(--color-green-dark);
	color: var(--color-white);
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-navy);
	cursor: pointer;
}

.menu-toggle .bi {
	font-size: 26px;
	line-height: 1;
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 34px 0 72px;
	background:
		radial-gradient(circle at 74% 32%, rgba(17, 134, 93, 0.045), transparent 30%),
		var(--color-white);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
	gap: clamp(48px, 6vw, 86px);
	align-items: center;
}

.hero-content {
	padding-block: 70px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--color-green);
	font-size: 15px;
	font-weight: 800;
}

.hero-content h1 {
	max-width: 720px;
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 850;
	line-height: 1.45;
	letter-spacing: -1.9px;
}

.hero-subtitle {
	max-width: 700px;
	margin: 24px 0 0;
	color: var(--color-muted);
	font-size: 17px;
	line-height: 2.05;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.cta-button {
	background: var(--color-green);
	color: var(--color-white);
	box-shadow: var(--shadow-button);
}

.secondary-button {
	border-color: var(--color-navy);
	background: transparent;
	color: var(--color-navy);
}

.secondary-button:hover,
.secondary-button:focus {
	border-color: var(--color-green);
	background: var(--color-green-light);
	color: var(--color-green-dark);
	transform: translateY(-1px);
}

.hero-contact-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 30px 0 0;
	color: var(--color-muted);
	font-size: 14px;
}

.hero-contact-line .bi {
	color: var(--color-navy);
	font-size: 22px;
}

.hero-contact-line a {
	color: var(--color-navy);
	font-weight: 750;
}

.hero-media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 0 20px 20px 0;
	background: #e8edf0;
	box-shadow: 0 26px 70px rgba(16, 35, 63, 0.12);
}

.hero-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(10, 25, 43, 0.22));
	pointer-events: none;
	content: "";
}

.hero-media img {
	width: 100%;
	aspect-ratio: 0.79;
	object-fit: cover;
	object-position: 50% 48%;
}

.hero-media figcaption {
	position: absolute;
	right: 24px;
	bottom: 22px;
	left: 24px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.91);
	color: var(--color-navy);
	font-size: 13px;
	font-weight: 700;
	backdrop-filter: blur(8px);
}

.hero-media figcaption .bi {
	color: var(--color-green);
}

.trust-section {
	border-block: 1px solid var(--color-border);
	background: #fcfdfd;
}

.trust-title {
	position: relative;
	z-index: 2;
	width: max-content;
	max-width: 100%;
	margin: -16px auto 0;
	padding: 0 28px;
	background: #fcfdfd;
	color: var(--color-muted);
	font-size: 14px;
	text-align: center;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 34px 0 38px;
}

.trust-item {
	min-height: 100px;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 14px;
	padding: 8px 26px;
	text-align: center;
}

.trust-item + .trust-item {
	border-right: 1px solid var(--color-border);
}

.trust-item .bi {
	color: var(--color-green);
	font-size: 34px;
}

.trust-item p {
	margin: 0;
	color: var(--color-text);
	font-size: 13px;
	line-height: 1.7;
}

.section-heading {
	margin-bottom: 44px;
}

.section-heading h2,
.legal-heading h2,
.about-copy h2,
.contact-copy h2 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(30px, 3.6vw, 45px);
	font-weight: 800;
	line-height: 1.55;
	letter-spacing: -0.7px;
}

.section-heading > p:last-child {
	max-width: 760px;
	margin: 16px 0 0;
	color: var(--color-muted);
}

.centered-heading {
	max-width: 840px;
	margin-inline: auto;
	text-align: center;
}

.centered-heading::after {
	display: block;
	width: 86px;
	height: 3px;
	margin: 24px auto 0;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--color-green) 0 68%, var(--color-amber) 68%);
	content: "";
}

.services-section {
	background: var(--color-white);
}

.services-list {
	max-width: 1060px;
	margin-inline: auto;
	border-top: 1px solid var(--color-border);
}

.services-list > a.service-row,
.service-row-expandable > summary {
	min-height: 108px;
	display: grid;
	grid-template-columns: 54px 62px minmax(0, 1fr) 36px;
	align-items: center;
	gap: 18px;
	padding: 18px 12px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-navy);
}

a.service-row:hover,
a.service-row:focus {
	padding-inline: 22px;
	background: linear-gradient(90deg, transparent, rgba(234, 246, 241, 0.7));
	color: var(--color-navy);
}

.service-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-bg);
	color: var(--color-muted);
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	direction: ltr;
}

.service-icon {
	color: var(--color-green);
	font-size: 39px;
}

.service-copy {
	display: grid;
	gap: 5px;
}

.service-copy strong {
	font-size: 19px;
	font-weight: 780;
	line-height: 1.65;
}

.service-copy small {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.75;
}

.service-link-icon,
.service-toggle-icon {
	color: var(--color-navy);
	font-size: 17px;
	transition: transform 160ms ease;
}

.service-row-expandable {
	display: block;
	border-bottom: 1px solid var(--color-border);
}

.service-row-expandable > summary {
	border-bottom: 0;
	cursor: pointer;
	list-style: none;
}

.service-row-expandable > summary::-webkit-details-marker {
	display: none;
}

.service-row-expandable[open] {
	background: var(--color-bg);
}

.service-row-expandable[open] .service-toggle-icon {
	transform: rotate(180deg);
}

.subservices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 6px 146px 30px 42px;
	list-style: none;
}

.subservices li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--color-text);
	font-size: 14px;
}

.subservices .bi {
	color: var(--color-green);
}

.services-footer {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.home-editor-section {
	border-top: 1px solid var(--color-border);
	background: var(--color-bg);
}

.legal-section {
	border-block: 1px solid var(--color-border);
	background: var(--color-bg);
}

.legal-grid,
.about-grid,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(48px, 8vw, 110px);
	align-items: start;
}

.legal-copy > p:first-child,
.about-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
	margin: 0;
	color: var(--color-muted);
	font-size: 17px;
}

.legal-note {
	display: flex;
	gap: 12px;
	margin: 24px 0;
	padding: 18px 20px;
	border-right: 3px solid var(--color-amber);
	background: #fffaf0;
	color: #56451b;
}

.legal-note .bi {
	flex: 0 0 auto;
	margin-top: 4px;
	color: #b97600;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--color-green-dark);
	font-weight: 750;
}

.text-link:hover .bi,
.text-link:focus .bi {
	transform: translateX(-4px);
}

.text-link .bi {
	transition: transform 160ms ease;
}

.about-section {
	background: var(--color-white);
}

.about-grid {
	align-items: center;
}

.about-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.about-proof > div {
	display: grid;
	align-content: center;
	min-height: 190px;
	padding: 24px 18px;
	text-align: center;
}

.about-proof > div + div {
	border-right: 1px solid var(--color-border);
}

.about-proof span,
.about-proof small {
	color: var(--color-muted);
	font-size: 12px;
}

.about-proof strong {
	margin: 8px 0;
	color: var(--color-navy);
	font-size: 34px;
	line-height: 1.2;
}

.about-proof .national-id {
	font-size: 22px;
}

.about-copy > p:not(.eyebrow) {
	margin-top: 22px;
}

.process-section {
	background: var(--color-navy);
	color: var(--color-white);
}

.process-section .eyebrow {
	color: #72d4ae;
}

.process-section .section-heading h2 {
	color: var(--color-white);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

.process-grid li {
	position: relative;
	min-height: 150px;
	padding: 22px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid li + li {
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #8ce0bd;
	font-weight: 800;
}

.process-grid p {
	margin: 20px 0 0;
	color: #e0e8f1;
	font-size: 15px;
	line-height: 1.75;
}

.section-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

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

.article-card,
.content-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 16px 45px rgba(16, 35, 63, 0.06);
}

.article-card {
	padding: 24px;
}

.article-thumb {
	display: block;
	overflow: hidden;
	margin: -24px -24px 22px;
	border-radius: var(--radius) var(--radius) 0 0;
}

.article-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.article-meta {
	margin: 0 0 8px;
	color: var(--color-muted);
	font-size: 12px;
}

.article-card h2,
.article-card h3 {
	margin: 0 0 12px;
	color: var(--color-navy);
	font-size: 20px;
	line-height: 1.6;
}

.article-card h2 a,
.article-card h3 a {
	color: inherit;
}

.article-card > p:not(.article-meta) {
	margin: 0;
	color: var(--color-muted);
	font-size: 14px;
}

.article-placeholder {
	grid-column: 1 / -1;
	max-width: 650px;
	margin-inline: auto;
	text-align: center;
}

.article-placeholder > .bi {
	color: var(--color-green);
	font-size: 40px;
}

.contact-cta {
	padding: 82px 0;
	background: linear-gradient(125deg, #0d2039, var(--color-navy-soft));
	color: var(--color-white);
}

.contact-grid {
	align-items: center;
}

.contact-copy .eyebrow {
	color: #79dcb4;
}

.contact-copy h2 {
	color: var(--color-white);
	font-size: clamp(29px, 3vw, 41px);
}

.contact-copy > p:not(.eyebrow) {
	margin-top: 18px;
	color: #d4deea;
}

.light-button {
	background: var(--color-green);
}

.dark-outline {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--color-white);
}

.dark-outline:hover,
.dark-outline:focus {
	border-color: var(--color-white);
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
}

.contact-card {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.07);
	font-style: normal;
}

.contact-card p {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	color: #e8edf4;
}

.contact-card .bi {
	flex: 0 0 auto;
	margin-top: 4px;
	color: #79dcb4;
}

.contact-card a {
	color: var(--color-white);
}

.page-main {
	min-height: 60vh;
	padding: 72px 0 100px;
	background:
		linear-gradient(180deg, var(--color-bg), var(--color-white) 260px);
}

.content-container {
	display: grid;
	gap: 28px;
}

.content-card {
	max-width: 980px;
	width: 100%;
	margin-inline: auto;
	padding: clamp(28px, 5vw, 58px);
}

.entry-header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.entry-header h1,
.archive-header h1 {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.45;
}

.entry-meta,
.archive-description {
	color: var(--color-muted);
}

.entry-content {
	color: var(--color-text);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 38px;
	color: var(--color-navy);
	line-height: 1.55;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: 20px;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 18px 22px;
	border-right: 4px solid var(--color-green);
	border-radius: 6px;
	background: var(--color-green-light);
}

.fallback-intro {
	margin-bottom: 38px;
	padding: 22px 24px;
	border-right: 4px solid var(--color-green);
	background: var(--color-green-light);
}

.fallback-intro p {
	margin: 0;
	font-size: 17px;
}

.fallback-service-list {
	border-top: 1px solid var(--color-border);
}

.fallback-service {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid var(--color-border);
	scroll-margin-top: 120px;
}

.fallback-service > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-bg);
	color: var(--color-muted);
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	direction: ltr;
}

.fallback-service h2,
.fallback-section h2,
.fallback-callout h2,
.fallback-notice h2,
.fallback-contact-grid h2 {
	margin: 0 0 10px;
	color: var(--color-navy);
	font-size: 23px;
}

.fallback-service p,
.fallback-section p,
.fallback-callout p,
.fallback-notice p {
	margin: 0;
	color: var(--color-muted);
}

.fallback-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 22px;
	padding: 0;
	list-style: none;
}

.fallback-check-list li {
	position: relative;
	padding-right: 24px;
}

.fallback-check-list li::before {
	position: absolute;
	top: 0.72em;
	right: 2px;
	width: 8px;
	height: 8px;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	content: "";
}

.fallback-callout,
.fallback-notice {
	margin-top: 38px;
	padding: 26px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-bg);
}

.fallback-callout .cta-button {
	margin-top: 20px;
	text-decoration: none;
}

.fallback-section {
	padding: 10px 0 28px;
}

.fallback-notice {
	border-right: 4px solid var(--color-amber);
	background: #fffaf0;
}

.fallback-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 38px;
}

.fallback-facts > div {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-bg);
}

.fallback-facts span {
	color: var(--color-muted);
	font-size: 12px;
}

.fallback-facts strong {
	color: var(--color-navy);
}

.fallback-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.fallback-contact-grid > section {
	padding: 24px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.fallback-contact-grid ul {
	display: grid;
	gap: 14px;
	padding: 0;
	list-style: none;
}

.fallback-contact-grid li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.fallback-contact-grid .bi {
	flex: 0 0 auto;
	margin-top: 5px;
	color: var(--color-green);
}

.featured-image {
	overflow: hidden;
	margin: 0 0 28px;
	border-radius: var(--radius);
}

.archive-header,
.pagination,
.post-navigation {
	max-width: 980px;
	width: 100%;
	margin-inline: auto;
}

.archive-header {
	margin-bottom: 30px;
}

.pagination,
.post-navigation {
	margin-top: 30px;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.post-tags a,
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 6px 13px;
	margin: 4px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: var(--color-white);
}

.site-footer {
	background: #09192d;
	color: #dbe5ee;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.7fr 0.9fr 1.25fr;
	gap: 42px;
	padding: 64px 0 54px;
}

.footer-column h2 {
	margin: 0 0 18px;
	color: var(--color-white);
	font-size: 16px;
}

.footer-column p,
.footer-column li {
	color: #b9c7d5;
	font-size: 13px;
	line-height: 1.85;
}

.footer-wordmark {
	margin: 0 0 12px !important;
	color: var(--color-white) !important;
	font-size: 30px !important;
	font-weight: 900;
}

.registration-note {
	color: #7ed8b4 !important;
}

.footer-column a {
	color: #dbe5ee;
}

.footer-column a:hover,
.footer-column a:focus {
	color: #8ce0bd;
}

.footer-menu,
.footer-list,
.contact-list {
	display: grid;
	gap: 8px;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.contact-list .bi {
	flex: 0 0 auto;
	margin-top: 5px;
	color: #63c89f;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.footer-bottom p {
	margin: 0;
	color: #94a5b7;
	font-size: 12px;
}

@media (max-width: 1100px) {
	.header-container {
		grid-template-columns: 200px 1fr 135px;
		gap: 14px;
	}

	.primary-menu a {
		padding-inline: 8px;
		font-size: 13px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
		gap: 42px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.container {
		width: min(100% - 36px, var(--container));
	}

	.section {
		padding: 78px 0;
	}

	.header-container {
		min-height: 78px;
		grid-template-columns: 1fr auto;
	}

	.site-title {
		font-size: 28px;
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.menu-toggle[aria-expanded="true"] .bi::before {
		content: "\f62a";
	}

	.header-cta {
		display: none;
	}

	.main-navigation {
		position: fixed;
		top: 78px;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 99;
		display: none;
		align-items: start;
		justify-content: stretch;
		overflow-y: auto;
		padding: 14px 18px 30px;
		background: rgba(255, 255, 255, 0.99);
	}

	.main-navigation.is-open {
		display: block;
	}

	.primary-menu {
		width: 100%;
		display: grid;
		gap: 0;
	}

	.primary-menu > li {
		border-bottom: 1px solid var(--color-border);
	}

	.primary-menu a {
		width: 100%;
		min-height: 58px;
		padding: 12px 6px;
		font-size: 15px;
	}

	.primary-menu a::after {
		display: none;
	}

	.hero-section {
		padding: 24px 0 62px;
	}

	.hero-grid,
	.legal-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-content {
		padding: 36px 0 4px;
	}

	.hero-content h1 {
		max-width: 760px;
	}

	.hero-media {
		max-width: 620px;
		border-radius: 16px;
	}

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

	.trust-item + .trust-item {
		border-right: 0;
	}

	.trust-item:nth-child(even) {
		border-right: 1px solid var(--color-border);
	}

	.trust-item:nth-child(n + 3) {
		border-top: 1px solid var(--color-border);
	}

	.about-proof {
		order: 2;
	}

	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid li:nth-child(3) {
		border-right: 0;
	}

	.process-grid li:nth-child(n + 3) {
		border-top: 0;
	}

	.article-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.container {
		width: min(100% - 28px, var(--container));
	}

	.section {
		padding: 62px 0;
	}

	.site-description {
		font-size: 11px;
	}

	.hero-section {
		padding-bottom: 48px;
	}

	.hero-grid {
		gap: 34px;
	}

	.hero-content {
		padding-top: 24px;
	}

	.hero-content h1 {
		font-size: clamp(34px, 11vw, 46px);
		letter-spacing: -1px;
	}

	.hero-subtitle {
		margin-top: 18px;
		font-size: 15px;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 26px;
	}

	.cta-button,
	.secondary-button {
		width: 100%;
	}

	.hero-contact-line {
		margin-top: 24px;
	}

	.hero-media figcaption {
		right: 12px;
		bottom: 12px;
		left: 12px;
		padding: 10px 12px;
		font-size: 11px;
	}

	.trust-title {
		padding-inline: 12px;
		font-size: 12px;
	}

	.trust-grid {
		padding-bottom: 24px;
	}

	.trust-item {
		min-height: 128px;
		padding-inline: 12px;
	}

	.trust-item .bi {
		font-size: 29px;
	}

	.trust-item p {
		font-size: 11px;
	}

	.section-heading h2,
	.legal-heading h2,
	.about-copy h2,
	.contact-copy h2 {
		font-size: 29px;
	}

	.services-list > a.service-row,
	.service-row-expandable > summary {
		min-height: 96px;
		grid-template-columns: 42px 44px minmax(0, 1fr) 24px;
		gap: 10px;
		padding-inline: 4px;
	}

	a.service-row:hover,
	a.service-row:focus {
		padding-inline: 8px;
	}

	.service-number {
		width: 36px;
		height: 36px;
		font-size: 11px;
	}

	.service-icon {
		font-size: 30px;
	}

	.service-copy strong {
		font-size: 15px;
	}

	.service-copy small {
		display: none;
	}

	.subservices {
		grid-template-columns: 1fr;
		padding: 6px 52px 26px 12px;
	}

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

	.about-proof > div {
		min-height: 135px;
	}

	.about-proof > div + div {
		border-top: 1px solid var(--color-border);
		border-right: 0;
	}

	.process-grid,
	.article-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.process-grid li + li {
		border-top: 0;
		border-right: 0;
	}

	.section-heading-row,
	.footer-bottom-inner,
	.post-navigation {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-card {
		padding: 22px;
	}

	.content-card {
		padding: 24px 20px;
	}

	.fallback-check-list,
	.fallback-facts,
	.fallback-contact-grid {
		grid-template-columns: 1fr;
	}

	.fallback-service {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 12px;
	}

	.footer-grid {
		gap: 30px;
		padding-block: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
