:root {
	--bg: #090d13;
	--surface: #111822;
	--surface-hover: #171f2b;
	--line: #263140;
	--text: #f6f7f9;
	--muted: #aab3c0;
	--accent: #ff1f2d;
	--accent-dark: #c40d1b;
	--success: #24c875;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background:
		radial-gradient(circle at 50% -10%, rgba(255, 31, 45, 0.12), transparent 32rem),
		var(--bg);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	transform: translateY(-150%);
	background: var(--text);
	color: var(--bg);
	padding: 10px 14px;
	border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }

.site-header { padding: 34px 0 10px; }

.site-header__inner { display: flex; justify-content: center; }

.site-logo { display: inline-flex; }

.site-logo img {
	display: block;
	width: min(620px, 82vw);
	height: auto;
}

.homepage { min-height: calc(100vh - 190px); }

.hero {
	padding: clamp(64px, 9vw, 118px) 0 90px;
	text-align: center;
}

.hero__eyebrow {
	margin: 0 0 15px;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: clamp(2.35rem, 5.4vw, 4.6rem);
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.hero__intro {
	max-width: 650px;
	margin: 22px auto 0;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 1.7;
}

.privacy-promise {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: none;
	margin: 32px auto 0;
	padding: 14px 18px;
	border: 1px solid rgba(36, 200, 117, .28);
	border-radius: 18px;
	background: linear-gradient(110deg, rgba(36, 200, 117, .1), rgba(36, 200, 117, .025) 58%), var(--surface);
	box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
	text-align: left;
}

.privacy-promise__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: rgba(36, 200, 117, .13);
	color: #36d989;
}

.privacy-promise__icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.privacy-promise__content { min-width: 0; }
.privacy-promise__label {
	margin: 0 0 5px;
	color: #55dc98;
	font-size: .67rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.privacy-promise__content strong { display: block; color: #f3f7f5; font-size: 1rem; }
.privacy-promise__content > p:last-child { margin: 5px 0 0; color: #a5b3ac; font-size: .78rem; line-height: 1.5; }
.privacy-promise__facts { display: grid; gap: 7px; }
.privacy-promise__facts span {
	position: relative;
	padding-left: 18px;
	color: #b8c7bf;
	font-size: .72rem;
	font-weight: 750;
	white-space: nowrap;
}
.privacy-promise__facts span::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: 950;
}

@media (min-width: 1100px) {
	.privacy-promise__content > p:last-child { white-space: nowrap; }
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 58px;
	text-align: left;
}

.service-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 210px;
	padding: 36px 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(255,255,255,0.04), transparent 55%), var(--surface);
	box-shadow: var(--shadow);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::after {
	content: "";
	position: absolute;
	right: -65px;
	bottom: -90px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 31, 45, 0.08);
	transition: transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-6px);
	border-color: rgba(255, 31, 45, 0.75);
	background-color: var(--surface-hover);
	outline: none;
}

.service-card:hover::after { transform: scale(1.25); }

.service-card__label {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(255, 31, 45, 0.13);
	color: #ff7580;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin-right: 20px;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--accent), var(--accent-dark));
	box-shadow: 0 14px 32px rgba(255, 31, 45, 0.22);
}

.service-card__icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: white;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-card__content { display: grid; gap: 10px; }

.service-card__content strong {
	font-size: 1.35rem;
	letter-spacing: -0.025em;
}

.service-card__content > span {
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

.service-card__arrow {
	position: relative;
	z-index: 1;
	margin-left: 14px;
	color: var(--accent);
	font-size: 1.55rem;
	transition: transform 180ms ease;
}

.service-card:hover .service-card__arrow { transform: translateX(5px); }

.trust-line {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 38px;
	color: #7f8997;
	font-size: 0.84rem;
}

.trust-line span::before {
	content: "✓";
	margin-right: 8px;
	color: var(--success);
	font-weight: 800;
}

.site-footer {
	border-top: 1px solid rgba(255,255,255,0.06);
	color: #727c89;
	font-size: 0.8rem;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 0;
}

.site-footer p { margin: 0; }

.site-footer__credits,
.site-footer__booster {
	display: inline-flex;
	align-items: center;
}

.site-footer__credits {
	flex-wrap: wrap;
	gap: 5px;
}

.site-footer__booster,
.site-footer__privacy {
	color: inherit;
	text-decoration: none;
}

.site-footer__booster { gap: 9px; }

.site-footer__booster img {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 3px;
}

.site-footer__booster:hover,
.site-footer__booster:focus-visible,
.site-footer__privacy:hover,
.site-footer__privacy:focus-visible {
	color: var(--muted);
	text-decoration: underline;
}

.site-footer__separator {
	margin-inline: 3px;
	color: var(--line);
}

.content-page { min-height: 70vh; padding-block: 80px; }

@media (max-width: 900px) {
	.service-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; margin-top: 46px; }
	.service-card { min-height: 160px; }
}

@media (max-width: 600px) {
	.site-shell { width: min(100% - 28px, 1180px); }
	.site-header { padding-top: 24px; }
	.hero { padding-top: 56px; }
	.service-card { grid-template-columns: auto 1fr; padding: 30px 22px; }
	.service-card__arrow { display: none; }
	.service-card__label { top: 12px; right: 12px; }
	.trust-line { align-items: flex-start; flex-direction: column; gap: 11px; width: max-content; max-width: 100%; margin-inline: auto; }
	.site-footer__inner { flex-direction: column; text-align: center; }
	.privacy-promise { grid-template-columns: auto 1fr; align-items: start; gap: 13px; padding: 17px; }
	.privacy-promise__icon { width: 46px; height: 46px; border-radius: 13px; }
	.privacy-promise__facts { grid-column: 1 / -1; padding-top: 4px; }
	.privacy-promise__facts span { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
