:root {
	--navy: #0a2540;
	--navy-deep: #06182c;
	--ink: #1a2230;
	--steel: #5d6470;
	--steel-light: #8a93a1;
	--rule: #d9dde3;
	--rule-strong: #c1c8d2;
	--bg: #f5f7fa;
	--bg-soft: #eef1f5;
	--green: #1ea36b;
	--green-ink: #0e6a45;
	--green-soft: #e7f5ee;
	--white: #ffffff;
	--font-sans:
		"Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;
	--shadow-card: 0 1px 0 rgba(10, 37, 64, 0.04);
}
* {
	box-sizing: border-box;
}
body,
html {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
h1,
h2,
h3,
h4 {
	font-family: var(--font-sans);
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0;
}
h1 {
	font-size: clamp(40px, 5.2vw, 64px);
	line-height: 1.05;
}
h2 {
	font-size: clamp(30px, 3.6vw, 44px);
	line-height: 1.1;
}
h3 {
	font-size: 22px;
	line-height: 1.25;
}
p {
	margin: 0;
}
.mono {
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
}
.eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green);
}
.eyebrow.eyebrow-steel {
	color: var(--steel);
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 22px;
	font: 600 15px/1 var(--font-sans);
	cursor: pointer;
	border-radius: 2px;
	border: 0;
	text-decoration: none;
	transition:
		background 0.15s,
		border-color 0.15s,
		color 0.15s;
}
.btn svg {
	flex: 0 0 auto;
}
.btn-primary {
	background: var(--green);
	color: #fff;
}
.btn-primary:hover {
	background: var(--green-ink);
}
.btn-ghost {
	background: 0 0;
	color: var(--navy);
	border: 1px solid var(--navy);
	padding: 15px 22px;
}
.btn-ghost:hover {
	background: var(--navy);
	color: #fff;
}
.btn-light {
	background: #fff;
	color: var(--navy);
	border: 1px solid var(--rule);
	padding: 15px 22px;
}
.btn-light:hover {
	border-color: var(--navy);
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green);
}
.pill::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--green);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(30, 163, 107, 0.18);
}
.utility {
	background: var(--navy-deep);
	color: #aab4c2;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.utility .container {
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.utility .utility-right {
	display: flex;
	gap: 24px;
}
.utility-ticker {
	display: none;
}

.cta-phone-top {
	display: flex;
	flex-direction: row;
	gap: 64px;
	align-items: center;
	margin-bottom: 48px;
}

@media (max-width: 720px) {
	.utility .container {
		display: none;
	}
	.utility-ticker {
		display: block;
		overflow: hidden;
		padding: 10px 20px;
		position: relative;
	}
	.utility-ticker-track {
		display: flex;
		transition: transform 0.4s ease;
	}
	.utility-ticker-slide {
		flex: 0 0 100vw;
		width: 100vw;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		text-align: center;
	}
}
.utility .utility-mail {
	color: #fff;
}
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--rule);
	position: sticky;
	top: 0;
	z-index: 50;
}
.site-header .container {
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 40px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.brand img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}
.brand-name {
	font-weight: 700;
	font-size: 20px;
	color: var(--navy);
	letter-spacing: -0.01em;
}
.brand-name span {
	color: var(--steel);
	font-weight: 500;
}
.site-nav {
	display: flex;
	gap: 32px;
	margin-left: 24px;
}
.site-nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
}
.site-nav a:hover {
	color: var(--navy);
}
.site-nav a.active {
	font-weight: 600;
	color: var(--navy);
	border-bottom-color: var(--green);
}
.header-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 16px;
}
.header-phone {
	text-align: right;
}
.header-phone-label {
	font-size: 11px;
	color: var(--steel);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.header-phone-email {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	display: block;
	margin-top: 2px;
	text-decoration: none;
}
.header-phone-email:hover {
	color: var(--green);
}
section {
	position: relative;
}
.section-padding {
	padding: 120px 0;
}
.section-padding-sm {
	padding: 80px 0;
}
.section-rule-top {
	border-top: 1px solid var(--rule);
}
.section-rule-bottom {
	border-bottom: 1px solid var(--rule);
}
.bg-white {
	background: #fff;
}
.bg-soft {
	background: var(--bg);
}
.bg-navy {
	background: var(--navy);
	color: #fff;
}
.bg-navy-deep {
	background: var(--navy-deep);
	color: #fff;
}
.bg-navy h2,
.bg-navy h3,
.bg-navy-deep h2,
.bg-navy-deep h3 {
	color: #fff;
}
.section-head {
	margin-bottom: 64px;
	max-width: 880px;
}
.section-head .eyebrow {
	display: block;
	margin-bottom: 20px;
}
.section-head p {
	color: var(--steel);
	font-size: 17px;
	margin-top: 20px;
	max-width: 640px;
}
.placeholder {
	background: repeating-linear-gradient(
		135deg,
		#e2e7ed 0 10px,
		#d4dae2 10px 20px
	);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
}
.placeholder .placeholder-label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
	background: rgba(255, 255, 255, 0.9);
	padding: 6px 10px;
	border: 1px solid rgba(10, 37, 64, 0.18);
}
.placeholder-soft {
	background: repeating-linear-gradient(
		135deg,
		#eef1f5 0 10px,
		#e3e8ee 10px 20px
	);
}
.hero {
	padding: 96px 0 88px;
	background: var(--bg);
	position: relative;
	overflow: hidden;
}
.hero .container {
	display: grid;
	gap: 64px;
}
.hero h1 {
	margin-bottom: 28px;
}
.hero h1 .alt {
	color: var(--steel);
}
.hero p.lead {
	font-size: 19px;
	color: var(--steel);
	max-width: 540px;
	margin-bottom: 40px;
}
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.hero-trust {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--rule);
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
.hero-trust .item .mono {
	color: var(--steel);
}
.hero-trust .item .value {
	font-size: 14px;
	color: var(--navy);
	margin-top: 6px;
	font-weight: 600;
}
.site-footer {
	background: #fff;
	border-top: 1px solid var(--rule);
	padding: 64px 0 32px;
}
.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px;
}
.site-footer .footer-brand p {
	color: var(--steel);
	font-size: 14px;
	max-width: 340px;
	margin-top: 20px;
}
.site-footer .footer-col h4 {
	font-size: 14px;
	color: var(--navy);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.site-footer .footer-col a {
	display: block;
	color: var(--steel);
	font-size: 14px;
	padding: 6px 0;
}
.site-footer .footer-col a:hover {
	color: var(--navy);
}
.site-footer .footer-bottom {
	padding-top: 24px;
	border-top: 1px solid var(--rule);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: var(--steel);
}
.site-footer .footer-bottom .mono {
	font-size: 11px;
	color: var(--steel-light);
}
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
	background: #fff;
}
.service-card {
	padding: 24px 22px;
	background: #fff;
	min-height: 160px;
}
.service-card:not(:nth-child(4n)) {
	border-right: 1px solid var(--rule);
}
.service-card:nth-child(-n + 4) {
	border-bottom: 1px solid var(--rule);
}
.service-card:nth-child(n + 5):not(:nth-last-child(-n + 4)) {
	border-bottom: 1px solid var(--rule);
}
.service-card-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
}
.service-card-num {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--steel);
}
.service-card-code {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--steel);
	background: var(--bg);
	padding: 4px 8px;
	border: 1px solid var(--rule);
}
.service-card h3 {
	margin-bottom: 8px;
	font-size: 15px;
}
.service-card p {
	color: var(--steel);
	font-size: 13.5px;
	line-height: 1.5;
}
.service-card-link {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--navy);
	font-size: 13px;
	font-weight: 600;
}
.promise-strip {
	background: var(--navy);
	color: #fff;
}
.promise-strip .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0;
}
.promise-strip .item {
	padding: 48px 32px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.promise-strip .item + .item {
	border-left: 1px solid #1d3654;
}
.promise-strip .num {
	font-size: 56px;
	font-weight: 700;
	color: var(--green);
	line-height: 1;
	font-feature-settings: "tnum";
}
.promise-strip .label {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
}
.promise-strip .sub {
	font-size: 14px;
	color: #aab4c2;
}
.method-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}
.method-step .step-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 2px solid var(--navy);
}
.method-step .step-num {
	font-family: var(--font-mono);
	font-size: 14px;
	color: var(--navy);
	font-weight: 600;
}
.method-step h3 {
	font-size: 26px;
	margin-bottom: 14px;
}
.method-step p {
	color: var(--steel);
	font-size: 15.5px;
	line-height: 1.6;
}
.faq-item {
	border-top: 1px solid var(--rule);
	padding: 0;
}
.faq-item:first-child {
	border-top: 2px solid var(--navy);
}
.faq-question {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 28px 0;
	cursor: pointer;
	user-select: none;
	background: 0 0;
	border: 0;
	width: 100%;
	text-align: left;
	font: inherit;
	color: inherit;
}
.faq-question .num {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--steel);
	padding-top: 4px;
}
.faq-question h3 {
	font-size: 19px;
	flex: 1;
	margin: 0;
}
.faq-question .toggle {
	width: 20px;
	height: 20px;
	position: relative;
	flex: 0 0 auto;
	margin-top: 4px;
}
.faq-question .toggle::after,
.faq-question .toggle::before {
	content: "";
	position: absolute;
	background: var(--steel);
	transition: transform 0.25s;
}
.faq-question .toggle::before {
	left: 0;
	right: 0;
	top: 9px;
	height: 2px;
}
.faq-question .toggle::after {
	top: 0;
	bottom: 0;
	left: 9px;
	width: 2px;
}
.faq-item.open .faq-question .toggle::after {
	transform: scaleY(0);
}
.faq-item.open .faq-question .toggle::before {
	background: var(--navy);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.35s ease,
		padding 0.35s ease;
}
.faq-item.open .faq-answer {
	max-height: 480px;
	padding: 0 0 28px 56px;
}
.faq-answer p {
	color: var(--steel);
	font-size: 15px;
	line-height: 1.65;
	max-width: 760px;
}
.faq-answer p + p {
	margin-top: 12px;
}
.cta-phone {
	background: var(--navy-deep);
	color: #fff;
	padding: 96px 0;
	overflow: hidden;
}
.cta-phone .container {
	display: block;
}
.cta-phone h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 48px;
}
.cta-phone-top p {
	font-size: 18px;
	color: #aab4c2;
	max-width: 560px;
}
.cta-phone .phone-card {
	border: 1px solid #1d3654;
	padding: 40px;
	min-width: 360px;
	text-align: center;
}
.cta-phone .phone-card-btn {
	font-size: 20px;
	white-space: nowrap;
	margin: 16px 0 20px;
}
.cta-phone .btn-primary {
	width: 100%;
	justify-content: center;
}
.phone-card-email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #aab4c2;
	font-size: 14px;
	text-decoration: none;
}
.phone-card-email:hover {
	color: var(--green);
}
.page-head {
	background: var(--bg);
	padding: 80px 0 56px;
	border-bottom: 1px solid var(--rule);
}
.page-head .breadcrumb {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--steel);
	margin-bottom: 16px;
	display: flex;
	gap: 8px;
	align-items: center;
}
.page-head .breadcrumb a {
	color: var(--steel);
}
.page-head .breadcrumb a:hover {
	color: var(--navy);
}
.page-head .breadcrumb .sep {
	color: var(--rule-strong);
}
.page-head h1 {
	font-size: clamp(36px, 4.4vw, 56px);
	max-width: 880px;
}
.page-head p.intro {
	font-size: 18px;
	color: var(--steel);
	max-width: 720px;
	margin-top: 20px;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.grid-2-narrow {
	display: grid;
	grid-template-columns: 480px 1fr;
	gap: 80px;
	align-items: center;
}
.split-text {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 96px;
}
.checks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 24px;
}
.check-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.check-mark {
	width: 22px;
	height: 22px;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin-top: 2px;
}
.check-row .k {
	font-weight: 600;
	color: var(--navy);
	font-size: 15px;
}
.check-row .v {
	font-size: 14px;
	color: var(--steel);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 520px;
	align-items: center;
	gap: 64px;
}
.hero-visual {
	position: relative;
}
.hero-img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	display: block;
}
.hero-badge {
	position: absolute;
	left: -32px;
	bottom: -50px;
	background: #fff;
	border: 1px solid var(--rule);
	padding: 20px 24px;
	width: 260px;
}
.hero-badge-label {
	color: var(--green);
	display: block;
}
.hero-badge-sub {
	font-size: 14px;
	color: var(--steel);
	margin-top: 10px;
}
.hero-badge-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	margin-top: 4px;
}
.hero-badge-footer {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--rule);
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}
.hero-badge-footer-text {
	color: var(--steel);
}
.hero-badge-footer-tag {
	color: var(--green);
}
.section-head-split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 48px;
	max-width: none;
}
.section-head-aside {
	max-width: 380px;
	color: var(--steel);
	font-size: 16px;
}
.mt-0 {
	margin-top: 0;
}
.mt-20 {
	margin-top: 20px;
}
.mt-24 {
	margin-top: 24px;
}
.mb-16 {
	margin-bottom: 16px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mt-32 {
	margin-top: 32px;
}
.mb-24 {
	margin-bottom: 24px;
}
.mb-28 {
	margin-bottom: 28px;
}
.mb-32 {
	margin-bottom: 32px;
}
.mb-36 {
	margin-bottom: 36px;
}
.mb-40 {
	margin-bottom: 40px;
}
.max-480 {
	max-width: 480px;
}
.max-640 {
	max-width: 640px;
}
.max-520 {
	max-width: 520px;
}
.max-760 {
	max-width: 760px;
}
.text-navy {
	color: var(--navy);
}
.text-white {
	color: #fff;
}
.body-lg {
	color: var(--steel);
	font-size: 17px;
	line-height: 1.65;
}
.body-muted {
	color: #aab4c2;
}
.section-lead {
	color: var(--steel);
	font-size: 16px;
}
.cover-img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}
.checks-start {
	align-content: start;
}
.eyebrow-light {
	color: #aab4c2;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.btn-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.mono-green {
	color: var(--green);
}
.footer-logo {
	width: 40px;
	height: 40px;
}
.footer-brand-name {
	font-size: 18px;
}

@media (max-width: 1100px) {
	.container {
		padding: 0 32px;
	}
	.site-header .container {
		flex-wrap: wrap;
	}
	.grid-2,
	.grid-2-narrow,
	.hero .container,
	.hero-grid,
	.split-text {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.section-head-split {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.section-head-aside {
		max-width: 100%;
	}
	.service-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.service-card:not(:nth-child(4n)) {
		border-right: 1px solid var(--rule);
	}
	.service-card:not(:nth-child(3n)) {
		border-right: 1px solid var(--rule);
	}
	.service-card:nth-child(3n) {
		border-right: none;
	}
	.service-card {
		border-bottom: 1px solid var(--rule);
	}
	.method-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.site-footer .footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.cta-phone .phone-card {
		min-width: 0;
	}
	.promise-strip .container {
		grid-template-columns: 1fr;
	}
	.promise-strip .item + .item {
		border-left: 0;
		border-top: 1px solid #1d3654;
	}
}

@media (max-width: 720px) {
	.container {
		padding: 0 20px;
	}
	.hero-badge {
		position: static;
		width: 100%;
		margin-top: 16px;
		left: auto;
	}
	.hero-img {
		height: 260px;
	}
	.cover-img {
		height: 280px;
	}
	.utility .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.utility .utility-right {
		gap: 12px;
		flex-wrap: wrap;
	}
	.utility .utility-mail {
		display: none;
	}
	.site-header .container {
		flex-wrap: wrap;
		gap: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.site-nav {
		order: 4;
		width: 100%;
		margin-left: 0;
		gap: 0;
		overflow-x: auto;
		display: flex;
	}
	.site-nav a {
		padding: 8px 12px;
		border-bottom: 0;
		font-size: 14px;
		white-space: nowrap;
		flex-shrink: 0;
	}
	.header-right .header-phone {
		display: none;
	}
	.header-right {
		margin-left: auto;
	}
	.section-padding {
		padding: 56px 0;
	}
	.service-grid {
		grid-template-columns: 1fr;
	}
	.service-card {
		border-right: none !important;
		border-bottom: 1px solid var(--rule);
	}
	.checks {
		grid-template-columns: 1fr;
	}
	h1 {
		font-size: 34px;
	}
	h2 {
		font-size: 26px;
	}
	.hero-trust {
		gap: 24px;
		margin-top: 36px;
		padding-top: 24px;
	}
	.hero-trust .item .value {
		font-size: 13px;
	}
	.promise-strip .num {
		font-size: 40px;
	}
	.promise-strip .item {
		padding: 32px 20px;
		gap: 16px;
	}
	.split-text {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.grid-2-narrow {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.cta-phone {
		padding: 64px 0;
	}
	.cta-phone h2 {
		font-size: 30px;
	}
	.cta-phone .phone-card {
		padding: 24px;
		min-width: 0;
		width: 100%;
	}
	.cta-phone .phone-card-btn {
		font-size: 17px;
	}
	.cta-phone-top p {
		font-size: 16px;
	}
	.cta-phone-top {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}
	.site-footer {
		padding: 40px 0 24px;
	}
	.site-footer .footer-grid {
		grid-template-columns: 1fr !important;
		gap: 0;
		margin-bottom: 0;
	}
	.site-footer .footer-brand {
		padding-bottom: 28px;
		margin-bottom: 4px;
	}
	.site-footer .footer-brand p {
		max-width: none;
	}
	.site-footer .footer-col {
		padding: 20px 0;
		border-top: 1px solid var(--rule);
	}
	.site-footer .footer-col a,
	.site-footer .footer-col span[style] {
		padding: 9px 0;
	}
	.site-footer .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding-top: 20px;
		margin-top: 24px;
		font-size: 12px;
	}
	.hero p.lead {
		font-size: 17px;
	}
	.hero-actions {
		flex-direction: column;
	}
	.hero-actions .btn {
		width: 100%;
		justify-content: center;
	}
	.method-grid {
		gap: 24px;
	}
}
.prestation-layout {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 80px;
	align-items: center;
}
.prestation-layout-reverse {
	grid-template-columns: 480px 1fr;
}
.prestation-layout-reverse .prestation-content {
	order: 2;
}
.prestation-layout-reverse .prestation-visual {
	order: 1;
}
.prestation-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.prestation-code {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--steel);
	background: var(--bg-soft);
	padding: 5px 10px;
	border: 1px solid var(--rule);
}
.prestation-content h2 {
	margin-bottom: 20px;
}
.prestation-intro {
	font-size: 17px;
	color: var(--steel);
	line-height: 1.65;
	max-width: 560px;
	margin-bottom: 40px;
}
.prestation-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 40px;
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--rule);
}
.bg-white .prestation-details {
	background: var(--bg);
}
.detail-block h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--navy);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--navy);
}
.detail-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.detail-list li {
	font-size: 14px;
	color: var(--steel);
	padding: 6px 0 6px 18px;
	position: relative;
	border-bottom: 1px solid var(--rule);
	line-height: 1.45;
}
.detail-list li:last-child {
	border-bottom: 0;
}
.detail-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	background: var(--green);
}
.prestation-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.prestation-cta-main {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.reg-tag {
	font-size: 14px;
	color: var(--steel);
	display: flex;
	gap: 8px;
	align-items: center;
}
.reg-tag .mono {
	color: var(--steel-light);
}
.prestation-visual img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}
.rapport-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.rapport-features {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-top: 8px;
}
.rapport-feature {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.rapport-icon {
	width: 44px;
	height: 44px;
	background: rgba(30, 163, 107, 0.12);
	border: 1px solid rgba(30, 163, 107, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--green);
}
.rapport-feature-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 4px;
}
.rapport-feature-sub {
	font-size: 14px;
	color: #aab4c2;
	line-height: 1.5;
}
.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
	margin-top: 40px;
}
.about-stat {
	padding: 24px 20px;
	text-align: center;
}
.about-stat + .about-stat {
	border-left: 1px solid var(--rule);
}
.about-stat-value {
	font-size: 36px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 8px;
	font-feature-settings: "tnum";
}
.about-stat-label {
	font-size: 12px;
	color: var(--steel);
	line-height: 1.4;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
}
.value-card {
	padding: 40px 32px;
	border-right: 1px solid var(--rule);
}
.value-card:last-child {
	border-right: 0;
}
.value-num {
	color: var(--green);
	font-size: 11px;
	margin-bottom: 20px;
	display: block;
}
.value-card h3 {
	font-size: 20px;
	margin-bottom: 14px;
}
.value-card p {
	color: var(--steel);
	font-size: 14.5px;
	line-height: 1.6;
}
.zone-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
	background: #fff;
}
.zone-card {
	padding: 40px 32px;
	border-right: 1px solid var(--rule);
}
.zone-card:last-child {
	border-right: 0;
}
.zone-card-primary {
	background: var(--navy);
}
.zone-card-primary h3 {
	color: #fff;
}
.zone-card-primary p {
	color: #aab4c2;
}
.zone-card-primary .zone-card-label {
	color: var(--green);
}
.zone-card-primary .zone-cities li {
	color: #d0d8e4;
	border-bottom-color: #1d3654;
}
.zone-card-primary .zone-cities li .mono {
	color: #6a8aaa;
}
.zone-card-contact {
	background: var(--bg);
}
.zone-card-label {
	font-size: 10px;
	letter-spacing: 0.1em;
	color: var(--steel-light);
	text-transform: uppercase;
	display: block;
	margin-bottom: 12px;
}
.zone-card h3 {
	font-size: 22px;
	margin-bottom: 14px;
}
.zone-card p {
	font-size: 14.5px;
	color: var(--steel);
	line-height: 1.6;
	margin-bottom: 20px;
}
.zone-cities {
	list-style: none;
	margin: 0;
	padding: 0;
}
.zone-cities li {
	font-size: 14px;
	color: var(--steel);
	padding: 7px 0;
	border-bottom: 1px solid var(--rule);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.zone-cities li:last-child {
	border-bottom: 0;
}
.zone-city-link {
	color: inherit;
	text-decoration: none;
}
.zone-city-link:hover {
	color: var(--green);
	text-decoration: underline;
}
.guarantees-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--rule);
}
.contact-info-item {
	padding: 24px 28px;
	border-right: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}
.contact-info-item:nth-child(2n) {
	border-right: 0;
}
.contact-info-item:nth-last-child(-n + 2) {
	border-bottom: 0;
}
.contact-info-label {
	display: block;
	color: var(--steel-light);
	font-size: 10px;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.contact-info-value {
	font-size: 17px;
	font-weight: 600;
	color: var(--navy);
	display: block;
	line-height: 1.4;
	text-decoration: none;
}
a.contact-info-value:hover {
	color: var(--green);
}
.faq-page-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 80px;
	align-items: start;
}
.faq-sidebar {
	position: sticky;
	top: 96px;
}
.faq-nav {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--rule);
	background: #fff;
	margin-bottom: 24px;
}
.faq-nav-item {
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--steel);
	border-bottom: 1px solid var(--rule);
	transition:
		color 0.15s,
		background 0.15s;
	text-decoration: none;
}
.faq-nav-item:last-child {
	border-bottom: 0;
}
.faq-nav-item:hover {
	color: var(--navy);
	background: var(--bg);
}
.faq-nav-item.active {
	color: var(--navy);
	font-weight: 600;
	border-left: 3px solid var(--green);
	background: var(--bg);
}
.faq-sidebar-cta {
	padding: 20px;
	border: 1px solid var(--rule);
	background: #fff;
	text-align: center;
}
.faq-sidebar-cta p {
	font-size: 13px;
	color: var(--steel);
	margin-bottom: 14px;
	line-height: 1.4;
}
.faq-content {
	display: flex;
	flex-direction: column;
	gap: 56px;
}
.faq-group-title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--navy);
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--navy);
}
.still-questions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.contact-strip {
	border: 1px solid var(--rule);
	display: flex;
}
.contact-strip-item {
	flex: 1;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.contact-strip-divider {
	width: 1px;
	background: var(--rule);
	flex: 0 0 auto;
}
.contact-strip-label {
	font-size: 10px;
	letter-spacing: 0.1em;
	color: var(--steel-light);
	text-transform: uppercase;
}
.contact-strip-value {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
}
a.contact-strip-value:hover {
	color: var(--green);
}
.contact-strip-sub {
	font-size: 13px;
	color: var(--steel);
}

@media (max-width: 1100px) {
	.prestation-layout,
	.prestation-layout-reverse {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.prestation-layout-reverse .prestation-content {
		order: 1;
	}
	.prestation-layout-reverse .prestation-visual {
		order: 2;
	}
	.rapport-block {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.value-card:nth-child(2) {
		border-right: 0;
	}
	.value-card:first-child,
	.value-card:nth-child(2) {
		border-bottom: 1px solid var(--rule);
	}
	.zone-grid {
		grid-template-columns: 1fr;
	}
	.zone-card {
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}
	.guarantees-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.about-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	.faq-page-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.faq-sidebar {
		position: static;
	}
	.faq-nav {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.faq-nav-item {
		flex: 1 1 auto;
		border-bottom: 0;
		border-right: 1px solid var(--rule);
		text-align: center;
	}
	.faq-nav-item:last-child {
		border-right: 0;
	}
	.faq-nav-item.active {
		border-left: 0;
		border-bottom: 3px solid var(--green);
	}
	.still-questions {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 720px) {
	.prestation-details {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px;
	}
	.prestation-visual img {
		height: 280px;
	}
	.values-grid {
		grid-template-columns: 1fr;
	}
	.value-card {
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}
	.about-stats {
		grid-template-columns: 1fr;
	}
	.about-stat + .about-stat {
		border-left: 0;
		border-top: 1px solid var(--rule);
	}
	.contact-info-grid {
		grid-template-columns: 1fr;
	}
	.contact-info-item {
		border-right: 0;
	}
	.contact-info-item:nth-last-child(-n + 2) {
		border-bottom: 1px solid var(--rule);
	}
	.contact-info-item:last-child {
		border-bottom: 0;
	}
	.faq-nav {
		flex-direction: column;
	}
	.faq-nav-item {
		border-right: 0;
		border-bottom: 1px solid var(--rule);
		text-align: left;
	}
	.faq-nav-item.active {
		border-left: 3px solid var(--green);
		border-bottom: 1px solid var(--rule);
	}
	.contact-strip {
		flex-direction: column;
	}
	.contact-strip-divider {
		width: auto;
		height: 1px;
	}
}
.about-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	cursor: grab;
	user-select: none;
}
.about-slider.is-grabbing {
	cursor: grabbing;
}
.about-slider-track {
	display: flex;
	transition: transform 0.5s ease;
}
.about-slider-track .cover-img {
	flex: 0 0 100%;
	width: 100%;
}
.about-slider-dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.about-dot {
	width: 6px;
	height: 6px;
	border-radius: 4px;
	border: none;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
	transition:
		width 0.3s ease,
		background 0.3s ease;
}
.about-dot.active {
	width: 20px;
	background: #fff;
}
.container--narrow {
	max-width: 760px;
	margin-inline: auto;
}
.page-header {
	padding: 48px 0 40px;
	border-bottom: 1px solid var(--rule);
}
.page-header h1 {
	margin: 12px 0 8px;
	font-size: clamp(28px, 4vw, 40px);
}
.page-header .lead {
	color: var(--steel);
	margin: 0;
}
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: var(--steel);
	margin-bottom: 16px;
}
.breadcrumb a {
	color: var(--green);
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.legal-content {
	padding: 60px 0 80px;
}
.legal-block {
	margin-bottom: 48px;
}
.legal-block h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--rule);
}
.legal-block p {
	color: var(--ink);
	line-height: 1.75;
	margin-bottom: 12px;
}
.legal-block p:last-child {
	margin-bottom: 0;
}
.legal-block a {
	color: var(--green);
}
.legal-block a:hover {
	text-decoration: underline;
}
.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.925rem;
}
.legal-table td,
.legal-table th {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--rule);
	vertical-align: top;
}
.legal-table th {
	width: 42%;
	font-weight: 500;
	color: var(--steel);
	background: var(--bg-soft);
}
.legal-table td a {
	color: var(--green);
	text-decoration: none;
}
.legal-table td a:hover {
	text-decoration: underline;
}
.legal-update {
	font-size: 0.85rem;
	color: var(--steel-light);
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--rule);
}
.promise-tagline {
	text-align: center;
	color: var(--green);
	font-size: clamp(22px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	padding: 40px 48px 48px;
	border-top: 1px solid #1d3654;
	margin: 0;
}
.method-tagline {
	text-align: center;
	color: var(--green);
	font-size: clamp(20px, 2.4vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-top: 56px;
	padding-top: 48px;
	border-top: 2px solid var(--navy);
}
.page-head-tagline {
	color: var(--green);
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--rule);
}
.prestation-visual .about-slider {
	border-radius: 0;
}
.prestation-visual .cover-img {
	object-fit: contain;
	background: var(--bg-soft);
}
.prestation-visual img:not(.cover-img) {
	height: 480px;
	object-fit: contain;
	background: var(--bg-soft);
}

@media (max-width: 720px) {
	.prestation-visual img:not(.cover-img) {
		height: 280px;
	}
}
.cta-tagline {
	text-align: center;
	color: var(--green);
	font-size: clamp(18px, 2.2vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	padding-top: 40px;
	margin: 0;
	border-top: 1px solid #1d3654;
}
.email-toast {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--navy);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 16px;
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(10, 37, 64, 0.24);
	white-space: nowrap;
	opacity: 0;
	transform: translate(-50%, calc(-100% - 14px));
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	z-index: 999;
	pointer-events: none;
}
.email-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, calc(-100% - 6px));
}
