:root {
	--it-ink: #18201e;
	--it-muted: #5d6862;
	--it-paper: #fbfaf6;
	--it-panel: #ffffff;
	--it-line: #dfe5dc;
	--it-teal: #0f766e;
	--it-teal-dark: #0b4f4b;
	--it-coral: #e95f43;
	--it-gold: #d9a441;
	--it-graphite: #202725;
	--it-radius: 8px;
	--it-shadow: 0 18px 48px rgba(24, 32, 30, 0.12);
}

.it-landing {
	background: var(--it-paper);
	color: var(--it-ink);
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	letter-spacing: 0;
}

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

.it-wrap {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.it-hero {
	padding: clamp(56px, 8vw, 104px) 0 48px;
	background:
		linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.92) 46%, rgba(251, 250, 246, 0.52) 100%),
		linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(233, 95, 67, 0.08));
}

.it-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.it-eyebrow {
	margin: 0 0 14px;
	color: var(--it-teal);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.it-hero h1,
.it-section h2 {
	margin: 0;
	color: var(--it-ink);
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: 0;
}

.it-hero h1 {
	max-width: 760px;
	font-size: clamp(2.25rem, 5vw, 4.75rem);
}

.it-hero__lead {
	max-width: 680px;
	margin: 24px 0 0;
	color: var(--it-muted);
	font-size: clamp(1.02rem, 1.5vw, 1.2rem);
	line-height: 1.72;
}

.it-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.it-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.it-button:hover,
.it-button:focus-visible {
	transform: translateY(-1px);
	text-decoration: none;
}

.it-button--primary {
	background: var(--it-teal);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(15, 118, 110, 0.26);
}

.it-button--primary:hover,
.it-button--primary:focus-visible {
	background: var(--it-teal-dark);
	color: #ffffff;
}

.it-button--secondary {
	background: rgba(255, 255, 255, 0.74);
	border-color: var(--it-line);
	color: var(--it-ink);
}

.it-button--accent {
	background: var(--it-coral);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(233, 95, 67, 0.26);
	white-space: nowrap;
}

.it-button--accent:hover,
.it-button--accent:focus-visible {
	background: #c94931;
	color: #ffffff;
}

.it-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.it-proof li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid rgba(15, 118, 110, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--it-graphite);
	font-size: 0.9rem;
	font-weight: 700;
}

.it-proof li::before,
.it-checklist li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--it-gold);
	flex: 0 0 auto;
}

.it-hero__media {
	margin: 0;
}

.it-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--it-radius);
	box-shadow: var(--it-shadow);
}

.it-strip {
	background: var(--it-graphite);
	color: #ffffff;
}

.it-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.it-strip__grid div {
	padding: 22px 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.it-strip__grid div:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.it-strip strong {
	display: block;
	color: #fff5d8;
	font-size: 1.4rem;
	line-height: 1;
}

.it-strip span {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.92rem;
}

.it-section {
	padding: clamp(64px, 8vw, 104px) 0;
	background: var(--it-paper);
}

.it-section--tint {
	background: #eef5ef;
}

.it-section--dark {
	background: var(--it-graphite);
	color: #ffffff;
}

.it-section--dark h2,
.it-section--dark .it-eyebrow {
	color: #ffffff;
}

.it-section--dark p {
	color: rgba(255, 255, 255, 0.78);
}

.it-section__head {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.it-section__head--left {
	margin-inline: 0;
	text-align: left;
}

.it-section h2 {
	font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.it-section__head p:not(.it-eyebrow),
.it-split p,
.it-offer p {
	margin: 16px 0 0;
	color: var(--it-muted);
	font-size: 1.02rem;
	line-height: 1.7;
}

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

.it-card {
	min-height: 210px;
	padding: 24px;
	border: 1px solid var(--it-line);
	border-radius: var(--it-radius);
	background: var(--it-panel);
}

.it-card h3,
.it-steps h3 {
	margin: 0;
	color: var(--it-ink);
	font-size: 1.08rem;
	line-height: 1.3;
}

.it-card p,
.it-steps p {
	margin: 12px 0 0;
	color: var(--it-muted);
	line-height: 1.64;
}

.it-process,
.it-split,
.it-offer {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
}

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

.it-steps li {
	padding: 22px;
	border-radius: var(--it-radius);
	background: #ffffff;
	border: 1px solid rgba(15, 118, 110, 0.16);
}

.it-steps span {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--it-coral);
	font-weight: 900;
}

.it-checklist {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.it-checklist li {
	display: grid;
	grid-template-columns: 10px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 16px 0;
	border-bottom: 1px solid var(--it-line);
	color: var(--it-graphite);
	font-weight: 700;
}

.it-checklist li::before {
	margin-top: 8px;
}

.it-offer {
	align-items: center;
}

.it-offer .it-button {
	justify-self: end;
}

.it-faq {
	max-width: 860px;
}

.it-faq__list {
	display: grid;
	gap: 12px;
}

.it-faq details {
	border: 1px solid var(--it-line);
	border-radius: var(--it-radius);
	background: #ffffff;
}

.it-faq summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--it-ink);
	font-weight: 800;
}

.it-faq details[open] summary {
	border-bottom: 1px solid var(--it-line);
}

.it-faq details p {
	margin: 0;
	padding: 18px 20px 20px;
	color: var(--it-muted);
	line-height: 1.65;
}

@media (max-width: 960px) {
	.it-hero__grid,
	.it-process,
	.it-split,
	.it-offer {
		grid-template-columns: 1fr;
	}

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

	.it-hero__media {
		max-width: 680px;
	}

	.it-offer .it-button {
		justify-self: start;
	}
}

@media (max-width: 720px) {
	.it-wrap {
		width: min(100% - 28px, 1120px);
	}

	.it-hero {
		padding-top: 42px;
	}

	.it-actions,
	.it-button {
		width: 100%;
	}

	.it-card-grid,
	.it-steps,
	.it-strip__grid {
		grid-template-columns: 1fr;
	}

	.it-strip__grid div,
	.it-strip__grid div:last-child {
		border-right: 0;
		border-left: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.it-card {
		min-height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.it-button {
		transition: none;
	}

	.it-button:hover,
	.it-button:focus-visible {
		transform: none;
	}
}
