:root {
	--bg: #f5f7fb;
	--surface: #ffffff;
	--ink: #111827;
	--muted: #64748b;
	--line: #e3e8ef;
	--brand: #ef7f1a;
	--brand-dark: #c96710;
	--navy: #0f172a;
	--green: #22c55e;
	--radius: 8px;
	--shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--bg);
}

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

a {
	color: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem;
	min-height: 76px;
	padding: 0 5vw;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(226, 232, 240, 0.9);
	backdrop-filter: blur(18px);
	transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header.is-scrolled {
	min-height: 66px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	min-width: 0;
}

.brand img {
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
}

.brand strong,
.brand small {
	display: block;
	line-height: 1.2;
}

.brand strong {
	font-size: 0.95rem;
	font-weight: 900;
}

.brand small {
	margin-top: 0.15rem;
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 700;
}

.nav {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
}

.nav a {
	color: #334155;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.nav a:hover {
	color: var(--brand);
}

.header-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 1rem;
	color: #fff;
	background: var(--ink);
	border-radius: var(--radius);
	font-weight: 900;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero {
	position: relative;
	min-height: 720px;
	color: #fff;
	background: var(--navy);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(9, 14, 25, 0.98), rgba(15, 23, 42, 0.9) 42%, rgba(15, 23, 42, 0.38) 100%),
		radial-gradient(circle at 18% 26%, rgba(239, 127, 26, 0.34), transparent 34%);
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% 42%;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 3rem;
	align-items: center;
	width: min(1180px, 90vw);
	min-height: 720px;
	margin: 0 auto;
	padding: 5rem 0;
}

.eyebrow {
	margin: 0 0 0.85rem;
	color: var(--brand);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.5rem, 6vw, 5.4rem);
	font-weight: 950;
	line-height: 0.98;
	letter-spacing: 0;
}

.hero-lead {
	max-width: 670px;
	margin: 1.5rem 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1rem;
	line-height: 1.75;
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.8rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius);
	font-weight: 900;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	color: #fff;
	background: var(--brand);
}

.btn-primary:hover {
	background: var(--brand-dark);
}

.btn-secondary {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.hero-points li {
	padding: 0.42rem 0.72rem;
	color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-size: 0.83rem;
	font-weight: 800;
}

.hero-card {
	align-self: end;
	padding: 1.35rem;
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	backdrop-filter: blur(18px);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.status-dot {
	width: 12px;
	height: 12px;
	margin-bottom: 0.8rem;
	background: var(--green);
	border-radius: 50%;
	box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.16);
}

.hero-card p,
.hero-card span {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.hero-card strong {
	display: block;
	margin: 0.3rem 0 0.7rem;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.25;
}

.hero-contact-card .btn {
	width: 100%;
	margin-top: 1.15rem;
}

.hero-contact-card {
	align-self: center;
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: min(1180px, 90vw);
	margin: -54px auto 0;
	position: relative;
	z-index: 2;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.trust-strip div {
	padding: 1.35rem 1.25rem;
	border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
	border-right: 0;
}

.trust-strip strong {
	display: block;
	color: var(--brand);
	font-size: 1.55rem;
	font-weight: 950;
}

.trust-strip span {
	display: block;
	margin-top: 0.25rem;
	color: var(--muted);
	font-size: 0.84rem;
	font-weight: 700;
}

.section {
	width: min(1180px, 90vw);
	margin: 0 auto;
	padding: 6rem 0;
}

.section-head {
	max-width: 780px;
	margin-bottom: 2.25rem;
}

.section h2,
.cta h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 950;
	line-height: 1.05;
	letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.split p,
.cta p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.75;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.service-card {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.service-card img {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
}

.service-card div {
	padding: 1.2rem;
}

.service-card h3,
.process-grid h3 {
	margin: 0 0 0.55rem;
	font-size: 1.1rem;
	font-weight: 950;
}

.service-card p,
.process-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

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

.service-link-card {
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-link-card:hover {
	transform: translateY(-4px);
	border-color: rgba(239, 127, 26, 0.45);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.card-link-text {
	display: inline-flex;
	margin-top: 1rem;
	color: var(--brand);
	font-size: 0.88rem;
	font-weight: 950;
}

.page-hero {
	position: relative;
	min-height: 560px;
	color: #fff;
	background: var(--navy);
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
}

.page-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(102deg, rgba(9, 14, 25, 0.98), rgba(15, 23, 42, 0.9) 46%, rgba(15, 23, 42, 0.42) 100%),
		radial-gradient(circle at 16% 30%, rgba(239, 127, 26, 0.28), transparent 34%);
}

.page-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 54% 42%;
}

.page-hero-tablet .page-hero-bg img {
	object-position: 52% 36%;
}

.page-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 3rem;
	align-items: center;
	width: min(1180px, 90vw);
	min-height: 560px;
	margin: 0 auto;
	padding: 4rem 0 5rem;
}

.page-hero-inner > :not(.hero-contact-card) {
	grid-column: 1;
}

.page-hero-inner > .hero-contact-card {
	grid-column: 2;
	grid-row: 1 / span 5;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1.4rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.84rem;
	font-weight: 800;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #fff;
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.35rem, 5.5vw, 5rem);
	font-weight: 950;
	line-height: 1;
	letter-spacing: 0;
}

.page-hero-inner > p:not(.eyebrow) {
	max-width: 720px;
	margin: 1.35rem 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
	line-height: 1.75;
}

.page-intro {
	padding-top: 5rem;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
	gap: 3rem;
	align-items: start;
}

.content-grid h2 {
	margin-bottom: 1.1rem;
}

.content-grid p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.78;
}

.seo-content {
	padding-top: 5rem;
}

.seo-copy {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 2rem;
	max-width: 1180px;
	margin: 0 auto;
}

.seo-copy p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.82;
}

.info-panel {
	padding: 1.35rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.info-panel strong {
	display: block;
	margin-bottom: 1rem;
	font-size: 1.05rem;
	font-weight: 950;
}

.info-panel ul {
	display: grid;
	gap: 0.7rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-panel li {
	position: relative;
	padding-left: 1.4rem;
	color: #334155;
	font-size: 0.93rem;
	line-height: 1.5;
}

.info-panel li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 7px;
	height: 7px;
	background: var(--brand);
	border-radius: 50%;
}

.muted-section {
	width: 100%;
	max-width: none;
	padding-left: 5vw;
	padding-right: 5vw;
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.muted-section > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.buying-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 1180px;
}

.buying-grid div,
.mini-link-card {
	min-height: 180px;
	padding: 1.35rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.mini-link-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	color: var(--ink);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mini-link-card:hover,
.mini-link-card:focus-visible {
	border-color: rgba(30, 136, 229, 0.38);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.mini-link-card strong {
	font-size: 1.04rem;
	font-weight: 950;
	line-height: 1.35;
}

.mini-link-card span {
	margin-top: 1rem;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.buying-grid h3 {
	margin: 0 0 0.55rem;
	font-size: 1.1rem;
	font-weight: 950;
}

.buying-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.65;
}

.faq-section {
	border-top: 1px solid var(--line);
}

.faq-grid {
	display: grid;
	gap: 0.85rem;
}

.faq-grid details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.faq-grid summary {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.2rem;
	color: var(--ink);
	font-weight: 950;
	cursor: pointer;
	list-style: none;
}

.faq-grid summary::-webkit-details-marker {
	display: none;
}

.faq-grid summary::after {
	content: "+";
	color: var(--brand);
	font-weight: 950;
}

.faq-grid details[open] summary::after {
	content: "-";
}

.faq-grid p {
	margin: 0;
	padding: 0 1.2rem 1.2rem;
	color: var(--muted);
	line-height: 1.72;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
	gap: 3rem;
	align-items: center;
}

.area-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.4rem;
}

.area-tags span {
	padding: 0.48rem 0.7rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #334155;
	font-size: 0.86rem;
	font-weight: 850;
}

.feature-panel {
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.feature-panel img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.feature-panel div {
	padding: 1.3rem;
}

.feature-panel strong {
	font-size: 1rem;
	font-weight: 950;
}

.feature-panel p {
	margin-bottom: 0;
	font-size: 0.92rem;
}

.process {
	border-top: 1px solid var(--line);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.process-grid div {
	min-height: 215px;
	padding: 1.25rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.process-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 1rem;
	color: #fff;
	background: var(--ink);
	border-radius: var(--radius);
	font-weight: 950;
}

.cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	width: min(1180px, 90vw);
	margin: 0 auto 5rem;
	padding: 3rem;
	color: #fff;
	background: linear-gradient(135deg, #111827, #182339);
	border-radius: var(--radius);
}

.cta h2 {
	color: #fff;
	max-width: 720px;
}

.cta p {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 5vw;
	color: #64748b;
	background: #fff;
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 980px) {
	.site-header {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav,
	.header-call {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.site-header.menu-open .nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: grid;
		justify-content: stretch;
		gap: 0;
		padding: 0.8rem 5vw 1rem;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 20px 30px rgba(15, 23, 42, 0.08);
	}

	.site-header.menu-open .nav a {
		padding: 0.85rem 0;
		border-bottom: 1px solid var(--line);
	}

	.hero,
	.hero-inner {
		min-height: 650px;
	}

	.hero-inner,
	.page-hero-inner,
	.split,
	.cta,
	.content-grid,
	.seo-copy {
		grid-template-columns: 1fr;
	}

	.page-hero-inner > .hero-contact-card {
		grid-column: 1;
		grid-row: auto;
	}

	.hero-card {
		align-self: auto;
		max-width: 440px;
	}

	.trust-strip,
	.service-grid,
	.process-grid,
	.buying-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-actions {
		margin-top: 0;
	}
}

@media (max-width: 640px) {
	.brand small {
		display: none;
	}

	.hero,
	.hero-inner {
		min-height: auto;
	}

	.hero-inner {
		padding: 4rem 0 6rem;
	}

	.hero h1 {
		font-size: 2.7rem;
		line-height: 1.02;
	}

	.trust-strip,
	.service-grid,
	.service-grid-two,
	.process-grid,
	.buying-grid {
		grid-template-columns: 1fr;
	}

	.page-hero,
	.page-hero-inner {
		min-height: auto;
	}

	.page-hero-inner {
		padding: 3.5rem 0 4.5rem;
	}

	.page-hero h1 {
		font-size: 2.55rem;
	}

	.trust-strip {
		margin-top: -36px;
	}

	.trust-strip div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.trust-strip div:last-child {
		border-bottom: 0;
	}

	.section {
		padding: 4.25rem 0;
	}

	.cta {
		padding: 2rem 1.2rem;
	}

	.cta-actions,
	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.site-footer {
		display: grid;
	}
}
