:root {
	--orange: #f47b35;
	--amber: #f2aa3d;
	--green: #166c5f;
	--ink: #1b1b1f;
	--muted: #626670;
	--line: #e6e1da;
	--soft: #f7f4ef;
	--white: #ffffff;
	--shadow: 0 18px 45px rgba(31, 28, 24, .12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

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

a {
	color: inherit;
	text-decoration: none;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	height: 76px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0 clamp(20px, 5vw, 72px);
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(230, 225, 218, .82);
	backdrop-filter: blur(16px);
}

.brand img {
	width: 154px;
	height: auto;
}

.nav {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
	color: #3f4249;
	font-size: 14px;
	font-weight: 700;
}

.nav a {
	padding: 10px 0;
	border-bottom: 2px solid transparent;
}

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

.topbar__cta {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	color: var(--white);
	background: var(--green);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 800;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 8px;
	cursor: pointer;
}

.menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--ink);
}

.hero {
	min-height: calc(92svh - 76px);
	display: flex;
	align-items: center;
	padding: 84px clamp(20px, 7vw, 96px);
	color: var(--white);
	background-position: center;
	background-size: cover;
}

.hero__content {
	width: min(680px, 100%);
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--orange);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: clamp(58px, 11vw, 132px);
	line-height: .88;
	letter-spacing: 0;
}

.hero__lead {
	max-width: 590px;
	margin: 18px 0 0;
	font-size: clamp(18px, 2.3vw, 25px);
	color: rgba(255, 255, 255, .9);
}

.hero__slogan {
	max-width: 620px;
	margin: 24px 0 0;
	padding-left: 18px;
	border-left: 4px solid var(--orange);
	color: #fff4e8;
	font-size: clamp(24px, 4vw, 42px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	text-shadow: 0 3px 18px rgba(0, 0, 0, .22);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 900;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.button--primary {
	color: var(--white);
	background: linear-gradient(135deg, var(--orange), var(--amber));
}

.button--ghost {
	color: var(--white);
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .42);
}

.button--dark {
	color: var(--white);
	background: var(--ink);
}

.metric-band {
	width: min(1180px, calc(100% - 40px));
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin: -42px auto 0;
	position: relative;
	z-index: 3;
	overflow: hidden;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.metric {
	min-height: 112px;
	padding: 24px;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.metric::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 16px;
	width: 42px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--orange), var(--amber));
}

.metric strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.metric span {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.section {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 96px 0;
}

.section__head {
	max-width: 680px;
	margin-bottom: 36px;
}

.section__head h2,
.feature-split h2,
.tracking h2,
.audience h2,
.locations h2,
.contact h2 {
	margin: 0;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1;
	letter-spacing: 0;
}

.section__head p:not(.eyebrow),
.feature-split p,
.tracking p,
.audience p,
.locations p,
.contact p {
	color: var(--muted);
	font-size: 17px;
}

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

.service-card,
.step,
.tracking__panel,
.contact-form,
.faq-list details {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 10px 28px rgba(31, 28, 24, .06);
}

.service-card {
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.service-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--soft);
}

.service-card div {
	padding: 24px;
}

h3 {
	margin: 0 0 10px;
	font-size: 21px;
	line-height: 1.16;
}

.service-card p,
.step p {
	margin: 0;
	color: var(--muted);
}

.operation {
	width: 100%;
	background: var(--soft);
	padding-inline: max(20px, calc((100vw - 1180px) / 2));
}

.timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.step {
	min-height: 250px;
	padding: 20px;
}

.step img {
	width: 84px;
	height: 84px;
	object-fit: contain;
	margin-bottom: 22px;
}

.feature-split {
	display: grid;
	grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
	align-items: center;
	gap: clamp(34px, 7vw, 88px);
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 96px 0;
}

.feature-split__media {
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, rgba(22, 108, 95, .12), rgba(244, 123, 53, .10)),
		var(--soft);
	border-radius: 8px;
	overflow: hidden;
}

.feature-split__media img {
	max-height: 620px;
	object-fit: contain;
}

.feature-split__content .button {
	margin-top: 16px;
}

.tracking {
	width: 100%;
	padding-inline: max(20px, calc((100vw - 1180px) / 2));
	background:
		linear-gradient(135deg, rgba(27, 27, 31, .96), rgba(27, 27, 31, .86)),
		url('../img/pattern-1.png');
}

.tracking__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	padding: clamp(26px, 5vw, 54px);
	background: var(--white);
}

.tracking-form label,
.contact-form label {
	display: block;
	margin-bottom: 8px;
	color: #32343a;
	font-size: 13px;
	font-weight: 900;
}

.tracking-form__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

input,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font: inherit;
}

input {
	height: 48px;
	padding: 0 14px;
}

textarea {
	padding: 12px 14px;
	resize: vertical;
}

.form-note {
	min-height: 24px;
	margin: 12px 0 0;
	color: var(--green);
	font-size: 14px;
	font-weight: 800;
}

.media-section {
	padding-bottom: 48px;
}

.video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #111;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.audience {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 48px 0 96px;
}

.audience__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 42px;
	padding: 42px 0;
	border-top: 1px solid var(--line);
}

.audience__item img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: contain;
	background: var(--soft);
	border-radius: 8px;
}

.audience__item--reverse img {
	order: 2;
}

.locations {
	display: grid;
	grid-template-columns: minmax(300px, .8fr) 1fr;
	align-items: center;
	gap: 44px;
	padding: 86px max(20px, calc((100vw - 1180px) / 2));
	background: #edf5f2;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.chips span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid rgba(22, 108, 95, .2);
	border-radius: 8px;
	background: var(--white);
	color: var(--green);
	font-size: 13px;
	font-weight: 900;
}

.locations__map {
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.locations__map img {
	max-height: 390px;
	object-fit: contain;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	padding: 0 22px;
}

.faq-list summary {
	min-height: 64px;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 900;
}

.faq-list p {
	margin: 0;
	padding: 0 0 22px;
	color: var(--muted);
}

.contact {
	display: grid;
	grid-template-columns: .85fr 1fr;
	gap: 48px;
	padding: 96px max(20px, calc((100vw - 1180px) / 2));
	background: var(--ink);
	color: var(--white);
}

.contact p,
.contact li {
	color: rgba(255, 255, 255, .76);
}

.contact ul {
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.contact li + li {
	margin-top: 10px;
}

.contact-form {
	padding: clamp(22px, 4vw, 34px);
	background: var(--white);
	color: var(--ink);
}

.contact-form input,
.contact-form textarea {
	margin-bottom: 14px;
}

.contact-form button {
	width: 100%;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 34px clamp(20px, 5vw, 72px);
	background: #111;
	color: rgba(255, 255, 255, .68);
}

.footer > img {
	width: 138px;
}

.social {
	display: flex;
	gap: 12px;
}

.social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, .08);
}

.social img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

@media (max-width: 980px) {
	.topbar {
		height: 68px;
	}

	.nav,
	.topbar__cta {
		display: none;
	}

	.menu-toggle {
		display: flex;
		margin-left: auto;
	}

	.topbar.is-open {
		align-items: flex-start;
		height: auto;
		padding-top: 12px;
		padding-bottom: 12px;
		flex-wrap: wrap;
	}

	.topbar.is-open .nav {
		order: 3;
		width: 100%;
		display: grid;
		gap: 4px;
	}

	.topbar.is-open .nav a {
		min-height: 42px;
		display: flex;
		align-items: center;
		border-bottom: 1px solid var(--line);
	}

	.hero {
		min-height: calc(88svh - 68px);
	}

	.metric-band,
	.service-grid,
	.timeline,
	.tracking__panel,
	.feature-split,
	.audience__item,
	.locations,
	.contact {
		grid-template-columns: 1fr;
	}

	.timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-split__media {
		min-height: 420px;
	}

	.audience__item--reverse img {
		order: 0;
	}
}

@media (max-width: 640px) {
	.brand img {
		width: 136px;
	}

	.hero {
		min-height: 82svh;
		padding-block: 58px;
	}

	.hero h1 {
		font-size: clamp(52px, 18vw, 78px);
	}

	.hero__actions,
	.tracking-form__row {
		display: grid;
		grid-template-columns: 1fr;
	}

	.button {
		width: 100%;
	}

	.metric-band {
		grid-template-columns: 1fr;
		margin-top: 0;
		width: 100%;
		border-radius: 0;
		border-inline: 0;
	}

	.section,
	.feature-split,
	.audience {
		width: min(100% - 32px, 1180px);
		padding-block: 64px;
	}

	.timeline {
		grid-template-columns: 1fr;
	}

	.service-grid {
		gap: 14px;
	}

	.section__head h2,
	.feature-split h2,
	.tracking h2,
	.audience h2,
	.locations h2,
	.contact h2 {
		font-size: clamp(32px, 12vw, 44px);
	}

	.locations,
	.contact {
		padding-block: 64px;
	}

	.footer {
		flex-direction: column;
		align-items: flex-start;
	}
}
