﻿:root {
	--bg: #000;
	--bg-soft: #121212;
	--bg-card: #1a1a1a;
	--line: #2a2a2a;
	--text: #fff;
	--muted: #a0a0a0;
	--brand: #fff;
	--radius: 14px;
}

* { box-sizing: border-box; }

html,
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	padding-inline: 20px;
}

.skip-link {
	position: absolute;
	top: -48px;
	left: 14px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--brand);
	color: #000;
	text-decoration: none;
	font-weight: 700;
}

.skip-services {
	left: 210px;
}

.skip-link:focus {
	top: 12px;
}

section {
	padding: 78px 0;
}

.eyebrow {
	color: var(--brand);
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-size: .78rem;
	margin-bottom: 8px;
	display: inline-block;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1 {
	font-size: clamp(2rem, 4.2vw, 3.6rem);
	line-height: 1.08;
	margin-bottom: 14px;
	max-width: 880px;
}

.lead {
	color: var(--muted);
	max-width: 780px;
	margin-bottom: 28px;
}

.btn {
	background: var(--brand);
	color: #000;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	border-radius: 9px;
	padding: 10px 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.hero-primary-cta {
	margin-bottom: 12px;
}

.linked-hero-headers {
	border-bottom: 1px solid var(--line);
	background: radial-gradient(circle at 15% 0%, #171717 0%, #080808 48%, #000 100%);
	padding: 78px 0;
}

.linked-hero-title {
	font-size: clamp(36px, 6vw, 62px);
	line-height: 1.1;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.service-nav-tabs {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.service-nav-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #363636;
	background: #121212;
	color: #ddd;
	text-decoration: none;
	font-size: .88rem;
}

.service-nav-tab.active,
.service-nav-tab:hover {
	border-color: #fff;
	color: #fff;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 20px;
	align-items: center;
}

.bullet-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 9px;
	color: #d6d6d6;
}

.bullet-list li::before {
	content: "+ ";
	color: var(--brand);
	font-weight: 700;
}

.hero-images {
	display: grid;
	gap: 14px;
}

.hero-images img,
.faq-image {
	border-radius: 12px;
	border: 1px solid var(--line);
	object-fit: cover;
	width: 100%;
}

.section-head {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: end;
	margin-bottom: 18px;
}

.section-head p {
	color: var(--muted);
	margin: 0;
	max-width: 680px;
}

.workflow-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(180px, 1fr));
	gap: 14px;
}

.step {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
}

.step .num {
	color: var(--brand);
	font-weight: 800;
	font-size: .85rem;
	margin-bottom: 8px;
	display: inline-block;
}

.keyboard-hint {
	color: #b5b5b5;
	font-size: .88rem;
	margin-bottom: 16px;
}

.service-browser {
	border: 1px solid var(--line);
	padding: 18px 0;
	background: #0d0d0d;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	outline: none;
}

.service-grid:focus {
	box-shadow: 0 0 0 2px #3a3a3a inset;
	border-radius: 10px;
}

.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(165deg, rgba(22, 24, 34, 0.96) 0%, rgba(16, 18, 28, 0.96) 100%);
	box-shadow: 0 14px 34px rgba(8, 10, 16, 0.4);
	transform: translateY(0);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	min-height: 480px;
	display: flex;
	flex-direction: column;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, rgba(80, 140, 255, 0.18), rgba(130, 90, 255, 0.1), rgba(0, 0, 0, 0));
	pointer-events: none;
	opacity: 0.8;
	z-index: 1;
}

.service-card > * {
	position: relative;
	z-index: 2;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(122, 152, 255, 0.62);
	box-shadow: 0 22px 44px rgba(10, 12, 20, 0.55);
}

.service-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.02);
	transition: transform 0.45s ease;
}

.service-card:hover img {
	transform: scale(1.04);
}

.service-card-content {
	padding: 24px;
	color: #f3f5ff;
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 10px;
}

.service-card-content h3 {
	font-size: 1.1rem;
	line-height: 1.4;
	margin: 0 0 12px;
	letter-spacing: 0.01em;
}

.service-card-content p {
	color: rgba(230, 235, 255, 0.86);
	line-height: 1.6;
	margin-bottom: 16px;
}

.card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	margin-top: auto;
}

.card-meta span {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #dbe5ff;
	background: rgba(111, 132, 214, 0.2);
	border: 1px solid rgba(162, 179, 246, 0.28);
}

.card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.card-actions a,
.card-actions button {
	min-height: 44px;
	border-radius: 10px;
	border: 1px solid rgba(167, 183, 255, 0.32);
	background: rgba(255, 255, 255, 0.04);
	color: #f8faff;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.28s ease;
	cursor: pointer;
	padding: 0 12px;
}

.card-actions a:hover,
.card-actions button:hover,
.card-actions a:focus-visible,
.card-actions button:focus-visible {
	border-color: rgba(150, 183, 255, 0.85);
	background: rgba(108, 139, 255, 0.2);
	color: #ffffff;
	outline: none;
}

.browser-controls {
	display: none;
}

.trust-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: 12px;
}

.trust {
	background: #131313;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px;
}

.guarantee {
	margin-top: 14px;
	border: 1px solid #394014;
	background: #141805;
	border-radius: 12px;
	padding: 16px;
}

.guarantee ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: #d5d5d5;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.service-detail-card {
	background: #131313;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 16px;
}

.service-detail-card h3 {
	color: var(--brand);
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.faq-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	background: #131313;
	margin-bottom: 16px;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-btn {
	width: 100%;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1rem;
	text-align: left;
	padding: 14px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.faq-btn .icon {
	color: var(--brand);
	font-weight: 900;
	width: 18px;
	text-align: center;
}

.faq-panel {
	padding: 0 14px 14px;
	color: #cbcbcb;
	display: none;
}

.faq-item.active .faq-panel {
	display: block;
}

.trusted-strip {
	background: #fff;
	color: #111;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(100px, 1fr));
	gap: 12px;
	align-items: center;
}

.logo-item {
	border: 1px solid #e4e4e4;
	border-radius: 10px;
	background: #fff;
	min-height: 78px;
	display: grid;
	place-items: center;
	padding: 10px;
}

.logo-item img {
	max-height: 34px;
	width: auto;
	opacity: 1;
	filter: none;
}

.cta {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: radial-gradient(circle at 90% 20%, #1b1f08 0%, #0b0b0b 45%);
}

.cta-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.contact-note {
	width: 100%;
	color: #bdbdbd;
	margin: 0;
}

.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.modal-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .78);
	z-index: 9998;
	opacity: 0;
	transition: opacity .3s ease;
}

.modal-backdrop.active {
	display: block;
	opacity: 1;
}

#quickView {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #343434;
	border-radius: 12px;
	width: min(640px, 92%);
	max-width: 640px;
	background: #101010;
	color: #fff;
	max-height: 85vh;
	overflow-y: auto;
	z-index: 9999;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

#quickView.active {
	display: block;
}

.modal-body {
	padding: 24px;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.modal-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	flex: 1;
	padding-right: 16px;
}

.modal-close {
	background: transparent;
	border: 1px solid #434343;
	color: #fff;
	border-radius: 7px;
	padding: 8px 12px;
	cursor: pointer;
	font-size: .9rem;
}

.modal-close:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.modal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
	padding: 12px;
	background: #0d0d0d;
	border-radius: 8px;
}

.modal-description {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.modal-features {
	margin-bottom: 24px;
}

.modal-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.modal-actions {
	display: flex;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.modal-btn {
	flex: 1;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: .95rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: none;
}

.modal-btn-primary {
	background: var(--brand);
	color: #000;
}

.modal-btn-secondary {
	background: transparent;
	border: 1px solid var(--line);
	color: var(--text);
}

@media (max-width: 1024px) {
	.hero-grid,
	.faq-wrap {
		grid-template-columns: 1fr;
	}

	.workflow-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-detail-grid {
		grid-template-columns: 1fr;
	}

	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.logo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 920px) {
	.service-card img {
		height: 210px;
	}

	.card-actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.workflow-grid,
	.trust-grid,
	.service-grid,
	.logo-grid {
		grid-template-columns: 1fr;
	}

	.skip-services {
		left: 14px;
	}

	.modal-actions {
		flex-direction: column;
	}
}

