:root {
	--color-primary: #fdb713;
	--color-ink: #15120b;
	--color-line: #ece7dc;
	--color-muted: #625f57;
	--color-navy: #0f172a;
	--color-soft: #fffaf0;
	--radius-card: 24px;
	--shadow-card: 0 18px 48px rgba(21, 18, 11, 0.08);
	--shadow-card-hover: 0 24px 64px rgba(21, 18, 11, 0.13);
}

* {
	box-sizing: border-box;
	font-family: inherit;
}

html {
	scroll-padding-top: 86px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-ink);
	background: #fff;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	letter-spacing: -0.01em;
	line-height: 1.6;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

img {
	max-width: 100%;
	height: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	border-bottom: 1px solid rgba(226, 232, 240, 0.86);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
	backdrop-filter: blur(18px);
	transition: min-height 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
	border-color: rgba(226, 232, 240, 1);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 40px, 1280px);
	min-height: 78px;
	margin: 0 auto;
	padding: 0;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 12px;
	min-width: 0;
	color: var(--color-navy);
	text-decoration: none;
}

.site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #0f172a;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.site-header__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
}

.site-header__brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
	line-height: 1.12;
}

.site-header__brand-text strong {
	color: #0f172a;
	font-size: clamp(0.86rem, 1.2vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-header__brand-text small {
	color: #64748b;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-nav {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	left: 0;
	display: none;
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.nav-open .site-nav {
	display: grid;
}

.site-nav__links,
.site-nav__actions {
	display: grid;
	gap: 6px;
}

.site-nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0 16px;
	border-radius: 14px;
	color: #0f172a;
	font-size: 0.95rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
	color: #8a6500;
	background: rgba(253, 183, 19, 0.14);
}

.site-nav__hotline {
	display: inline-flex;
	gap: 8px;
	color: #0f172a;
	font-size: 0.9rem;
	font-weight: 650;
	white-space: nowrap;
}

.site-nav__hotline svg {
	width: 18px;
	height: 18px;
	color: var(--color-primary);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.site-nav .site-nav__cta {
	justify-content: center;
	min-height: 46px;
	margin-top: 0;
	padding: 0 20px;
	color: #0f172a;
	background: var(--color-primary);
	box-shadow: 0 14px 30px rgba(253, 183, 19, 0.28);
	font-weight: 750;
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus-visible {
	color: #0f172a;
	background: var(--color-primary);
	box-shadow: 0 18px 38px rgba(253, 183, 19, 0.38);
	transform: translateY(-1px);
}

.site-header__toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(226, 232, 240, 0.96);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
	border-color: rgba(253, 183, 19, 0.5);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.site-header__toggle span {
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: var(--color-ink);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: auto;
	overflow: hidden;
	padding: 72px 20px;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(12, 10, 6, 0.82) 0%, rgba(12, 10, 6, 0.58) 48%, rgba(12, 10, 6, 0.16) 100%),
		linear-gradient(180deg, rgba(12, 10, 6, 0.28), rgba(12, 10, 6, 0.58)),
		var(--hero-bg-image, url("../images/hero-visa-run.webp")) center / cover no-repeat,
		#211d16;
}

.hero__inner {
	width: min(100%, 1160px);
	margin: 0 auto;
}

.hero__content {
	max-width: 920px;
}

.hero__eyebrow {
	margin: 0 0 14px;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: clamp(2.5rem, 13vw, 5.4rem);
	line-height: 0.95;
	letter-spacing: 0;
	text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.hero__subheadline {
	max-width: 590px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.08rem;
	line-height: 1.7;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.button:hover,
.button:focus-visible {
	filter: brightness(1.03);
	transform: translateY(-2px);
}

.button--primary {
	color: var(--color-ink);
	background: var(--color-primary);
	box-shadow: 0 14px 30px rgba(253, 183, 19, 0.34);
}

.button--primary:hover,
.button--primary:focus-visible {
	box-shadow: 0 18px 38px rgba(253, 183, 19, 0.42);
}

.button--secondary {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(10px);
}

.hero__badges {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	max-width: 520px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.hero__badges li {
	position: relative;
	padding: 14px 14px 14px 38px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(12px);
	font-weight: 700;
}

.hero__badges li::before {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 5px rgba(253, 183, 19, 0.18);
	content: "";
}

.section {
	padding: 72px 20px;
}

.section--soft {
	background:
		linear-gradient(135deg, rgba(253, 183, 19, 0.1), rgba(255, 255, 255, 0) 42%),
		#fffaf0;
}

.section__inner {
	width: min(100%, 1160px);
	margin: 0 auto;
}

.section__header {
	max-width: 720px;
	margin-bottom: 34px;
}

.section__header--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section__header--center h2 {
	margin-right: auto;
	margin-left: auto;
}

.section__eyebrow {
	margin: 0 0 12px;
	color: #8a6500;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section h2 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(2rem, 8vw, 3.6rem);
	line-height: 1;
	letter-spacing: 0;
}

.section p {
	color: #625f57;
	font-size: 1.04rem;
	line-height: 1.72;
}

.section__header p {
	margin: 18px 0 0;
}

.pain-grid {
	display: grid;
	gap: 18px;
}

.pain-card {
	padding: 24px;
	border: 1px solid rgba(236, 231, 220, 0.9);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 48px rgba(21, 18, 11, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.pain-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	border-radius: 16px;
	color: var(--color-ink);
	background: var(--color-primary);
	box-shadow: 0 12px 28px rgba(253, 183, 19, 0.28);
}

.pain-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.pain-card h3 {
	margin: 0;
	font-size: 1.18rem;
}

.pain-card p {
	margin: 10px 0 0;
	font-size: 0.98rem;
}

.service-overview {
	background: #fff;
}

.service-overview__inner {
	display: grid;
	gap: 34px;
	align-items: center;
}

.service-overview__media {
	min-height: 320px;
	overflow: hidden;
	border-radius: 28px;
	background:
		linear-gradient(145deg, rgba(253, 183, 19, 0.22), rgba(255, 255, 255, 0.3)),
		#fffaf0;
	box-shadow: 0 24px 70px rgba(21, 18, 11, 0.12);
}

.service-overview__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.service-overview__content > p:not(.section__eyebrow):not(.service-note) {
	margin: 18px 0 0;
	max-width: 620px;
}

.service-list {
	display: grid;
	gap: 13px;
	margin: 28px 0;
	padding: 0;
	list-style: none;
}

.service-list li {
	position: relative;
	padding-left: 30px;
	color: #2f2b24;
	font-weight: 700;
	line-height: 1.5;
}

.service-list li::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 6px rgba(253, 183, 19, 0.16);
	content: "";
}

.service-note {
	max-width: 620px;
	margin: 20px 0 0;
	padding: 16px 18px;
	border-left: 4px solid var(--color-primary);
	border-radius: 14px;
	background: #fff8e6;
	font-size: 0.94rem;
}

.vehicle-grid {
	display: grid;
	gap: 22px;
}

.vehicle-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(236, 231, 220, 0.9);
	border-radius: 20px;
	background: linear-gradient(180deg, #fff, #fffdf8);
	box-shadow: 0 18px 48px rgba(21, 18, 11, 0.09);
	transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.vehicle-card:hover {
	border-color: rgba(253, 183, 19, 0.42);
}

.vehicle-card__media {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(253, 183, 19, 0.18), rgba(255, 255, 255, 0.3)),
		#fffaf0;
}

.vehicle-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0));
	pointer-events: none;
}

.vehicle-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 350ms ease;
}

.vehicle-card:hover img {
	transform: scale(1.03);
}

.vehicle-card__label {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	color: #0f172a;
	background: rgba(253, 183, 19, 0.94);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	font-size: 0.76rem;
	font-weight: 800;
}

.vehicle-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.vehicle-card__type {
	display: flex;
	align-items: center;
	gap: 10px;
}

.vehicle-card__type svg,
.vehicle-card__badge svg {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	color: var(--color-primary);
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.vehicle-card__type svg {
	width: 21px;
	height: 21px;
}

.vehicle-card h3 {
	margin: 0;
	font-size: clamp(1.08rem, 1vw, 1.22rem);
	font-weight: 750;
	letter-spacing: -0.02em;
}

.vehicle-card p {
	margin: 8px 0 0;
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

.vehicle-card__divider {
	width: 100%;
	height: 1px;
	margin: auto 0 14px;
	padding-top: 16px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.vehicle-card__badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	min-height: 34px;
	padding: 6px 12px;
	border-radius: 999px;
	color: #0f172a;
	background: #fff3d1;
	font-size: 0.86rem;
	font-weight: 750;
}

.section__cta {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.pricing {
	background: #fff;
}

.pricing-grid {
	display: grid;
	gap: 18px;
}

.pricing-card,
.custom-package {
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 54px rgba(21, 18, 11, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
}

.pricing-card--featured {
	border-color: rgba(253, 183, 19, 0.52);
	box-shadow: 0 24px 64px rgba(253, 183, 19, 0.16);
}

.pricing-card h3,
.custom-package h3 {
	margin: 0;
	font-size: 1.35rem;
}

.pricing-card__price {
	margin: 16px 0 0;
	color: #9a7000;
	font-size: clamp(1.55rem, 8vw, 2.25rem);
	font-weight: 900;
	line-height: 1.08;
}

.pricing-list {
	display: grid;
	gap: 12px;
	margin: 26px 0;
	padding: 0;
	list-style: none;
}

.pricing-list li {
	position: relative;
	padding-left: 28px;
	color: #2f2b24;
	font-weight: 700;
	line-height: 1.45;
}

.pricing-list li::before {
	position: absolute;
	top: 0.35em;
	left: 0;
	width: 9px;
	height: 14px;
	border-right: 3px solid var(--color-primary);
	border-bottom: 3px solid var(--color-primary);
	transform: rotate(45deg);
	content: "";
}

.pricing-card__note {
	margin: auto 0 22px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff8e6;
	font-size: 0.94rem;
}

.custom-package {
	display: grid;
	gap: 22px;
	align-items: center;
	margin-top: 18px;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(253, 183, 19, 0.14), rgba(255, 255, 255, 0) 46%),
		#fffaf0;
}

.custom-package p {
	max-width: 720px;
	margin: 10px 0 0;
}

.pricing-disclaimer {
	max-width: 760px;
	margin: 24px auto 0;
	padding: 16px 18px;
	border-left: 4px solid var(--color-primary);
	border-radius: 14px;
	background: #fff8e6;
	text-align: left;
	font-size: 0.94rem;
}

.process-grid {
	display: grid;
	gap: 18px;
}

.process-card {
	position: relative;
	padding: 28px;
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 20px 54px rgba(21, 18, 11, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 24px;
	border-radius: 18px;
	color: var(--color-ink);
	background: var(--color-primary);
	box-shadow: 0 12px 28px rgba(253, 183, 19, 0.28);
	font-size: 1.05rem;
	font-weight: 900;
}

.process-card h3 {
	margin: 0;
	font-size: 1.25rem;
}

.process-card p {
	margin: 12px 0 0;
}

.included {
	background: #fff;
}

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

.included-list li {
	position: relative;
	padding: 18px 18px 18px 54px;
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(21, 18, 11, 0.06);
	color: #2f2b24;
	font-weight: 800;
	line-height: 1.45;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.included-list li::before {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--color-primary);
	content: "";
}

.included-list li::after {
	position: absolute;
	top: 22px;
	left: 26px;
	width: 5px;
	height: 10px;
	border-right: 2px solid var(--color-ink);
	border-bottom: 2px solid var(--color-ink);
	transform: rotate(45deg);
	content: "";
}

.included-note {
	max-width: 760px;
	margin: 24px auto 0;
	padding: 16px 18px;
	border-left: 4px solid var(--color-primary);
	border-radius: 14px;
	background: #fff8e6;
	font-size: 0.94rem;
}

.trip-experience {
	background:
		linear-gradient(180deg, #fffaf0, #ffffff 58%),
		#fffaf0;
}

.experience-grid {
	display: grid;
	gap: 18px;
}

.experience-card {
	position: relative;
	min-height: 260px;
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(236, 231, 220, 0.92);
	border-radius: 24px;
	background: #15120b;
	box-shadow: var(--shadow-card);
	transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.experience-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.62));
	pointer-events: none;
}

.experience-card img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform 420ms ease;
}

.experience-card figcaption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: calc(100% - 32px);
	min-height: 36px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.25;
	backdrop-filter: blur(12px);
}

.experience-card:hover {
	border-color: rgba(253, 183, 19, 0.45);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}

.experience-card:hover img {
	transform: scale(1.035);
}

.feature-grid {
	display: grid;
	gap: 18px;
}

.feature-card {
	padding: 24px;
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 48px rgba(21, 18, 11, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.pain-card:hover,
.vehicle-card:hover,
.pricing-card:hover,
.custom-package:hover,
.process-card:hover,
.included-list li:hover,
.feature-card:hover {
	box-shadow: 0 24px 64px rgba(21, 18, 11, 0.12);
	transform: translateY(-4px);
}

.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 22px;
	border-radius: 16px;
	color: var(--color-ink);
	background: var(--color-primary);
	box-shadow: 0 12px 28px rgba(253, 183, 19, 0.28);
}

.feature-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.feature-card h3 {
	margin: 0;
	font-size: 1.18rem;
}

.feature-card p {
	margin: 10px 0 0;
	font-size: 0.98rem;
}

.faq {
	background: #fff;
}

.faq-list {
	display: grid;
	gap: 14px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-list details {
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(21, 18, 11, 0.06);
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-list details[open] {
	border-color: rgba(253, 183, 19, 0.5);
	box-shadow: 0 18px 44px rgba(21, 18, 11, 0.1);
}

.faq-list summary {
	position: relative;
	padding: 20px 56px 20px 22px;
	cursor: pointer;
	color: var(--color-ink);
	font-size: 1.05rem;
	font-weight: 900;
	list-style: none;
}

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

.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-ink);
	content: "+";
	display: grid;
	place-items: center;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

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

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

.faq-list details[open] p {
	animation: faqFade 260ms ease-out;
}

@keyframes faqFade {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact {
	color: #fff;
	background:
		linear-gradient(135deg, rgba(253, 183, 19, 0.14), rgba(255, 255, 255, 0) 38%),
		linear-gradient(90deg, rgba(21, 18, 11, 0.96), rgba(21, 18, 11, 0.78)),
		var(--contact-bg-image, none) right center / cover no-repeat,
		#15120b;
}

.contact__inner {
	display: grid;
	gap: 28px;
	align-items: start;
}

.contact h2 {
	color: #fff;
}

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

.contact .section__eyebrow {
	color: var(--color-primary);
}

.contact__content > p:not(.section__eyebrow):not(.contact__response):not(.contact__note) {
	max-width: 620px;
	margin: 18px 0 0;
}

.contact-info {
	display: grid;
	gap: 18px;
	margin: 30px 0;
}

.contact-info__row {
	display: grid;
	gap: 14px;
}

.contact-info__row--channels {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	min-height: 84px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-info__card:hover,
.contact-info__card:focus-visible {
	border-color: rgba(253, 183, 19, 0.42);
	background: rgba(255, 255, 255, 0.11);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(253, 183, 19, 0.1);
	transform: translateY(-2px);
}

.contact-info__card--wide {
	min-height: 78px;
}

.contact-info span {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contact-info strong {
	color: var(--color-primary);
	font-size: 1.08rem;
	line-height: 1.35;
}

.contact__response {
	margin: 20px 0 0;
	font-weight: 800;
}

.contact__note {
	max-width: 620px;
	margin: 22px 0 0;
	padding: 16px 18px;
	border-left: 4px solid var(--color-primary);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.94rem;
}

.contact-form-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(12px);
}

.contact-placeholder {
	display: grid;
	gap: 16px;
}

.contact-placeholder label {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, 0.76);
	font-weight: 800;
}

.contact-placeholder input,
.contact-placeholder textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-ink);
	font: inherit;
	padding: 14px 16px;
}

.contact-placeholder textarea {
	resize: vertical;
}

.legal-page {
	background: #fffaf0;
}

.legal-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(78px, 9vw, 116px) 0 clamp(54px, 7vw, 82px);
	color: #fff;
	background:
		radial-gradient(circle at 82% 20%, rgba(253, 183, 19, 0.18), transparent 30%),
		linear-gradient(135deg, #0f172a 0%, #111827 54%, #080a0f 100%);
}

.legal-hero::after {
	position: absolute;
	right: 8%;
	bottom: -90px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(253, 183, 19, 0.2);
	border-radius: 50%;
	content: "";
}

.legal-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 980px);
	margin: 0 auto;
}

.legal-hero .section__eyebrow {
	color: var(--color-primary);
}

.legal-hero h1 {
	max-width: 760px;
	margin: 12px 0 0;
	color: #fff;
	font-size: clamp(2.65rem, 7vw, 5rem);
	line-height: 1;
}

.legal-hero p:not(.section__eyebrow) {
	max-width: 680px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.8vw, 1.22rem);
	line-height: 1.7;
}

.legal-content {
	padding: clamp(58px, 7vw, 92px) 0;
}

.legal-content__inner {
	display: grid;
	gap: 24px;
	width: min(100% - 40px, 920px);
	margin: 0 auto;
}

.legal-content section,
.legal-note {
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(236, 231, 220, 0.96);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(21, 18, 11, 0.07);
}

.legal-content h2 {
	margin: 0 0 12px;
	color: var(--color-navy);
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	line-height: 1.2;
}

.legal-content p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.legal-content ul {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.legal-content li {
	position: relative;
	padding-left: 22px;
	color: var(--color-muted);
	line-height: 1.6;
}

.legal-content li::before {
	position: absolute;
	top: 0.74em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	content: "";
	transform: translateY(-50%);
}

.legal-note {
	border-color: rgba(253, 183, 19, 0.26);
	background: #fff7dd;
	box-shadow: 0 18px 48px rgba(253, 183, 19, 0.11);
}

.legal-note--soft {
	padding: 18px 22px;
}

.legal-note p {
	color: #5c4300;
	font-weight: 650;
}

.legal-contact {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.legal-contact a,
.legal-contact span {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid rgba(236, 231, 220, 0.96);
	border-radius: 14px;
	background: #fffaf0;
	color: var(--color-navy);
	font-weight: 650;
	text-decoration: none;
}

.legal-contact a:hover,
.legal-contact a:focus-visible {
	border-color: rgba(253, 183, 19, 0.5);
	color: #8a6500;
}

.site-footer {
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	background:
		radial-gradient(circle at 14% 0%, rgba(253, 183, 19, 0.16), transparent 30%),
		linear-gradient(135deg, #0f172a 0%, #0b1120 52%, #05070d 100%);
}

.site-footer::before {
	position: absolute;
	inset: 0;
	border-top: 1px solid rgba(253, 183, 19, 0.18);
	content: "";
	pointer-events: none;
}

.site-footer__inner {
	position: relative;
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: clamp(58px, 7vw, 86px) 0 28px;
}

.site-footer__grid {
	display: grid;
	gap: 34px;
}

.site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: #fff;
	text-decoration: none;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	color: #0f172a;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.site-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 52px;
	max-height: 52px;
	object-fit: contain;
}

.site-footer__brand-link strong {
	display: block;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.15;
	text-transform: uppercase;
}

.site-footer__brand-link small {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.84rem;
	font-weight: 500;
	line-height: 1.25;
}

.site-footer__brand p {
	max-width: 360px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.96rem;
	line-height: 1.7;
}

.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 20px;
}

.site-footer__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 11px;
	border: 1px solid rgba(253, 183, 19, 0.26);
	border-radius: 999px;
	background: rgba(253, 183, 19, 0.1);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.8rem;
	font-weight: 650;
}

.site-footer h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-footer__links,
.site-footer__contact {
	display: grid;
	gap: 10px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-primary);
}

.site-footer__links a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	font-size: 0.95rem;
	font-weight: 550;
}

.site-footer__contact a,
.site-footer__address {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	min-height: 46px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
	transform: translateX(2px);
}

.site-footer__contact svg,
.site-footer__address svg {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin-top: 3px;
	color: var(--color-primary);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.site-footer__contact span,
.site-footer__address span {
	display: grid;
	gap: 2px;
	min-width: 0;
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.35;
}

.site-footer__contact small,
.site-footer__address small {
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.74rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer__service-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__service-list li {
	position: relative;
	padding-left: 19px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
	line-height: 1.45;
}

.site-footer__service-list li::before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-primary);
	content: "";
	transform: translateY(-50%);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: clamp(38px, 5vw, 58px);
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.88rem;
}

.site-footer__bottom div {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer__bottom a {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.88rem;
	font-weight: 600;
}

.sticky-cta {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.sticky-cta__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 152px;
	min-height: 50px;
	padding: 0 18px;
	border: 1px solid rgba(236, 231, 220, 0.95);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 38px rgba(21, 18, 11, 0.18);
	color: var(--color-ink);
	font-size: 0.95rem;
	font-weight: 900;
	text-decoration: none;
	backdrop-filter: blur(12px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px) scale(0.96);
	transition: opacity 220ms ease, transform 220ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.sticky-cta__link svg,
.sticky-cta__toggle svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sticky-cta__icon-img {
	width: 22px;
	height: 22px;
	display: block;
	flex: 0 0 22px;
	border-radius: 6px;
}

.sticky-cta__menu {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.sticky-cta:hover .sticky-cta__link,
.sticky-cta.is-open .sticky-cta__link,
.sticky-cta:focus-within .sticky-cta__link {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.sticky-cta__link:nth-child(2) {
	transition-delay: 35ms;
}

.sticky-cta__link:nth-child(1) {
	transition-delay: 70ms;
}

.sticky-cta__link:hover,
.sticky-cta__link:focus-visible {
	filter: brightness(1.03);
	box-shadow: 0 20px 46px rgba(21, 18, 11, 0.24);
	transform: translateY(-2px) scale(1.02);
}

.sticky-cta__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 22px;
	border: 1px solid rgba(253, 183, 19, 0.78);
	border-radius: 999px;
	background: var(--color-primary);
	box-shadow: 0 18px 44px rgba(253, 183, 19, 0.32), 0 12px 24px rgba(21, 18, 11, 0.18);
	color: #0f172a;
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.sticky-cta__toggle:hover,
.sticky-cta__toggle:focus-visible,
.sticky-cta.is-open .sticky-cta__toggle {
	filter: brightness(1.03);
	box-shadow: 0 22px 52px rgba(253, 183, 19, 0.4), 0 14px 28px rgba(21, 18, 11, 0.2);
	transform: translateY(-2px) scale(1.02);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms ease-out, transform 620ms ease-out;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.site-header__inner {
	width: min(100% - 40px, 1280px);
	padding-right: 0;
	padding-left: 0;
}

.site-header__brand {
	letter-spacing: 0;
}

.hero {
	padding-top: clamp(76px, 10vw, 118px);
	padding-bottom: clamp(76px, 10vw, 118px);
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(2.6rem, 8.8vw, 5.25rem);
	line-height: 1;
}

.hero__subheadline {
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.03rem, 2vw, 1.16rem);
	line-height: 1.68;
}

.section {
	padding-top: clamp(68px, 8vw, 104px);
	padding-bottom: clamp(68px, 8vw, 104px);
}

.section__inner {
	width: min(100% - 40px, 1160px);
}

.section__header {
	margin-bottom: clamp(32px, 5vw, 46px);
}

.section h2 {
	font-size: clamp(2rem, 5.4vw, 3.45rem);
	line-height: 1.06;
}

.section p {
	color: var(--color-muted);
	line-height: 1.68;
}

.pain-grid,
.vehicle-grid,
.pricing-grid,
.process-grid,
.feature-grid,
.included-list {
	gap: 20px;
}

.vehicle-grid {
	gap: 22px;
}

.pain-card,
.vehicle-card,
.pricing-card,
.custom-package,
.process-card,
.feature-card,
.included-list li,
.faq-list details {
	border-color: rgba(236, 231, 220, 0.92);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.vehicle-card {
	border-radius: 20px;
}

.pain-card,
.pricing-card,
.process-card,
.feature-card {
	padding: 26px;
}

.pain-card h3,
.vehicle-card h3,
.pricing-card h3,
.custom-package h3,
.process-card h3,
.feature-card h3 {
	color: var(--color-ink);
	line-height: 1.18;
}

.pain-card:hover,
.vehicle-card:hover,
.pricing-card:hover,
.custom-package:hover,
.process-card:hover,
.included-list li:hover,
.feature-card:hover {
	box-shadow: var(--shadow-card-hover);
}

.button {
	min-height: 54px;
	padding-right: 24px;
	padding-left: 24px;
	color: var(--color-navy);
	font-size: 0.98rem;
}

.button--secondary {
	color: #fff;
}

.button:focus-visible,
.site-nav a:focus-visible,
.sticky-cta__link:focus-visible,
.sticky-cta__toggle:focus-visible,
.contact-info__card:focus-visible,
.faq-list summary:focus-visible {
	outline: 3px solid rgba(253, 183, 19, 0.45);
	outline-offset: 3px;
}

.service-overview__media,
.contact-form-card {
	border-radius: 28px;
}

.service-list,
.pricing-list {
	gap: 14px;
}

.pricing-card__price {
	color: #8a6500;
	letter-spacing: 0;
}

.contact {
	background:
		linear-gradient(135deg, rgba(253, 183, 19, 0.13), rgba(255, 255, 255, 0) 36%),
		linear-gradient(90deg, rgba(24, 20, 12, 0.98), rgba(15, 23, 42, 0.86)),
		var(--contact-bg-image, none) right center / cover no-repeat,
		linear-gradient(180deg, #18140c, #0f172a);
}

.contact-info__card {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.09);
}

.contact-placeholder input,
.contact-placeholder textarea {
	min-height: 52px;
	border-color: rgba(255, 255, 255, 0.24);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-placeholder input:focus,
.contact-placeholder textarea:focus {
	border-color: rgba(253, 183, 19, 0.72);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(253, 183, 19, 0.16);
	outline: 0;
}

.sticky-cta {
	filter: drop-shadow(0 12px 22px rgba(21, 18, 11, 0.16));
}

.hero {
	background:
		linear-gradient(90deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.68) 38%, rgba(7, 9, 13, 0.18) 64%, rgba(7, 9, 13, 0.02) 100%),
		linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.34)),
		var(--hero-bg-image, url("../images/hero-visa-run.webp")) 72% center / cover no-repeat,
		#080a0f;
}

.hero__top-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 8px 12px;
	border: 1px solid rgba(253, 183, 19, 0.26);
	border-radius: 999px;
	background: rgba(253, 183, 19, 0.1);
	color: var(--color-primary);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__top-badge svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.hero h1 {
	letter-spacing: -0.02em;
	line-height: 1;
}

.hero h1 span {
	display: block;
	color: #fff;
	font-weight: 700;
}

.hero h1 mark {
	padding: 0;
	color: var(--color-primary);
	background: transparent;
}

.hero__subheadline {
	max-width: 500px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.74);
}

.hero__actions {
	gap: 14px;
	margin-top: 22px;
}

.hero__button {
	gap: 10px;
}

.button__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 180ms ease;
}

.hero__button:hover .button__icon--right,
.hero__button:focus-visible .button__icon--right {
	transform: translateX(3px);
}

.hero .button--primary {
	color: #0f172a;
	box-shadow: 0 16px 34px rgba(253, 183, 19, 0.32), 0 0 0 8px rgba(253, 183, 19, 0.07);
}

.hero .button--primary:hover,
.hero .button--primary:focus-visible {
	box-shadow: 0 22px 44px rgba(253, 183, 19, 0.44), 0 0 0 10px rgba(253, 183, 19, 0.1);
}

.hero .button--secondary:hover,
.hero .button--secondary:focus-visible {
	border-color: rgba(253, 183, 19, 0.58);
	background: rgba(255, 255, 255, 0.2);
}

.hero__badges {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	max-width: 920px;
	margin-top: 26px;
}

.hero__badges li {
	display: flex;
	align-items: center;
	min-height: 66px;
	gap: 11px;
	padding: 12px 14px;
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
	line-height: 1.15;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero__badges li::before {
	display: none;
}

.hero__badges li svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	color: var(--color-primary);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hero__badges li span {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.hero__badges li strong {
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.hero__badges li small {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0;
}

.hero__badges li:hover {
	border-color: rgba(253, 183, 19, 0.34);
	background: rgba(255, 255, 255, 0.075);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(253, 183, 19, 0.1);
	transform: translateY(-2px);
}

@media (max-width: 520px) {
	body {
		padding-bottom: 0;
	}

	.hero {
		background-position: 58% center;
	}

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

	.contact-info__row--channels {
		grid-template-columns: 1fr;
	}

	.button {
		width: 100%;
	}

	.pricing-card,
	.custom-package,
	.process-card,
	.feature-card,
	.contact-form-card {
		padding: 22px;
	}
}

@media (min-width: 640px) {
	.vehicle-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

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

@media (min-width: 860px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr) max-content;
		width: min(100% - 48px, 1280px);
		min-height: 78px;
		gap: 24px;
		padding: 0;
	}

	.site-header.is-scrolled .site-header__inner {
		min-height: 72px;
	}

	.site-header__toggle {
		display: none;
	}

	.site-nav {
		position: static;
		display: contents;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-nav__links {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: clamp(10px, 1.55vw, 26px);
		min-width: 0;
	}

	.site-nav__actions {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 10px;
		min-width: 0;
	}

	.site-nav a {
		min-height: 40px;
		padding: 0;
		border-radius: 0;
		background: transparent;
		font-size: clamp(0.86rem, 0.9vw, 0.94rem);
	}

	.site-nav__links a::after {
		position: absolute;
		right: 0;
		bottom: 3px;
		left: 0;
		height: 2px;
		border-radius: 999px;
		background: var(--color-primary);
		content: "";
		opacity: 0;
		transform: scaleX(0.45);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.site-nav__links a:hover,
	.site-nav__links a:focus-visible,
	.site-nav__links a.is-active {
		color: #8a6500;
		background: transparent;
	}

	.site-nav__links a:hover::after,
	.site-nav__links a:focus-visible::after,
	.site-nav__links a.is-active::after {
		opacity: 1;
		transform: scaleX(1);
	}

	.site-nav__hotline {
		min-height: 42px;
		padding: 0 12px;
		border: 0;
		border-radius: 999px;
		background: rgba(248, 250, 252, 0.92);
	}

	.site-nav .site-nav__cta {
		min-height: 44px;
		padding: 0 18px;
		border-radius: 999px;
	}

	.vehicle-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hero {
		min-height: 86vh;
		padding: 92px 32px;
	}

	.hero__inner {
		padding-right: 42%;
	}

	.section {
		padding: 104px 32px;
	}

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

	.service-overview__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 64px;
	}

	.service-overview__media,
	.service-overview__media img {
		min-height: 520px;
	}

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

	.custom-package {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.process-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.experience-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.experience-card {
		min-height: 250px;
	}

	.experience-card--1,
	.experience-card--2 {
		grid-column: span 3;
		min-height: 360px;
	}

	.experience-card--3,
	.experience-card--4,
	.experience-card--5 {
		grid-column: span 2;
	}

	.feature-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
		gap: 64px;
	}

	.site-footer__grid {
		grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.7fr) minmax(260px, 1fr) minmax(190px, 0.8fr);
		gap: 42px;
	}

}

@media (min-width: 860px) and (max-width: 1080px) {
	.site-header__brand-text strong {
		font-size: 0.82rem;
		letter-spacing: 0.04em;
	}

	.site-header__brand-text small {
		font-size: 0.72rem;
	}

	.site-nav__hotline span {
		display: none;
	}

	.site-nav__hotline {
		width: 42px;
		justify-content: center;
		padding: 0;
	}
}

@media (min-width: 641px) and (max-width: 1080px) {
	.hero__badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 620px;
	}
}

@media (max-width: 520px) {
	.sticky-cta {
		right: 18px;
		bottom: 18px;
	}

	.sticky-cta__link {
		min-width: 148px;
		min-height: 50px;
		padding: 0 18px;
	}
}

@media (min-width: 1180px) {
	.vehicle-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.site-header__inner,
	.section__inner {
		width: min(100% - 32px, 1160px);
	}

	.legal-hero__inner,
	.legal-content__inner {
		width: min(100% - 32px, 920px);
	}

	.legal-content section,
	.legal-note {
		border-radius: 20px;
	}

	.site-footer__inner {
		width: min(100% - 32px, 1280px);
	}

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

	.site-footer__links a,
	.site-footer__contact a,
	.site-footer__address {
		min-height: 44px;
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-header__brand {
		gap: 10px;
		min-width: 0;
	}

	.site-header__logo {
		width: auto;
		height: auto;
		border-radius: 0;
	}

	.site-header__logo img {
		max-width: 48px;
		max-height: 48px;
	}

	.site-header__brand-text strong {
		font-size: 0.78rem;
		letter-spacing: 0.04em;
		white-space: normal;
	}

	.site-header__brand-text small {
		font-size: 0.7rem;
		white-space: normal;
	}

	.site-nav {
		right: 0;
		left: 0;
	}

	.hero {
		padding-top: 74px;
		padding-bottom: 74px;
		background-position: 58% center;
	}

	.hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.7rem);
		line-height: 1.02;
	}

	.hero h1 span {
		margin-top: 4px;
	}

	.hero__subheadline {
		margin-top: 18px;
	}

	.hero__actions,
	.hero__badges {
		margin-top: 26px;
	}

	.hero__button {
		width: 100%;
	}

	.hero__badges {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.hero__badges li {
		min-height: 72px;
	}

	.hero__subheadline,
	.section p {
		font-size: 1rem;
	}

	.section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.section h2 {
		font-size: clamp(1.9rem, 9vw, 2.65rem);
	}

	.pain-card,
	.pricing-card,
	.process-card,
	.feature-card,
	.vehicle-card__body,
	.contact-form-card {
		padding: 22px;
	}

	.sticky-cta {
		right: 18px;
		bottom: 18px;
		gap: 10px;
	}

	.sticky-cta__link {
		min-width: 148px;
		min-height: 50px;
		padding: 0 18px;
		font-size: 0.92rem;
	}
}

.hero {
	padding-right: 0;
	padding-left: 0;
}

.hero__inner {
	width: min(100% - 48px, 1240px);
}

.hero__content {
	max-width: 820px;
}

.hero h1 {
	max-width: 820px;
	font-size: clamp(48px, 5.2vw, 72px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.hero__subheadline {
	max-width: 620px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 1.55vw, 21px);
	line-height: 1.6;
}

.hero__actions {
	gap: 16px;
	margin-top: 30px;
}

.hero__button {
	min-height: 58px;
	gap: 10px;
	padding-right: 30px;
	padding-left: 30px;
}

.hero__button .button__icon {
	width: 20px;
	height: 20px;
}

.hero__contact {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	font-weight: 500;
}

.hero__contact a {
	color: var(--primary);
	font-weight: 700;
	text-decoration: none;
}

.hero__badges {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: 860px;
	margin-top: 34px;
}

.hero__badges li {
	min-height: 72px;
	gap: 12px;
	padding: 14px 16px;
}

.hero__badges li svg {
	width: 24px;
	height: 24px;
}

.hero__badges li strong {
	font-size: 15px;
	line-height: 1.15;
	white-space: nowrap;
}

.hero__badges li small {
	font-size: 12px;
	line-height: 1.25;
}

@media (min-width: 860px) {
	.hero {
		padding-top: 104px;
		padding-bottom: 104px;
	}

	.hero__inner {
		padding-right: 30%;
	}
}

@media (min-width: 641px) and (max-width: 1080px) {
	.hero__inner {
		width: min(100% - 40px, 1180px);
		padding-right: 18%;
	}

	.hero h1 {
		font-size: clamp(44px, 6.2vw, 58px);
	}

	.hero__badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 640px;
	}
}

@media (max-width: 640px) {
	.hero__inner {
		width: min(100% - 40px, 1180px);
	}

	.hero__content {
		max-width: 100%;
	}

	.hero h1 {
		font-size: clamp(38px, 11vw, 46px);
		line-height: 1.03;
	}

	.hero__subheadline {
		max-width: 100%;
		font-size: 17px;
	}

	.hero__actions {
		gap: 12px;
		margin-top: 28px;
	}

	.hero__button {
		min-height: 56px;
		padding-right: 24px;
		padding-left: 24px;
	}

	.hero__badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		max-width: none;
		margin-top: 30px;
	}

	.hero__badges li {
		min-height: 70px;
		padding: 12px;
	}

	.hero__badges li strong {
		font-size: 14px;
		white-space: normal;
	}

	.hero__badges li small {
		font-size: 12px;
	}
}

@media (max-width: 420px) {
	.site-header__brand-text strong {
		font-size: 0.72rem;
	}

	.site-header__brand-text small {
		font-size: 0.66rem;
	}

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

.site-footer__parent-site {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.9rem;
	font-weight: 600;
}

.site-footer__parent-site a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.24);
	text-underline-offset: 4px;
}

.site-footer__parent-site a:hover,
.site-footer__parent-site a:focus-visible {
	color: rgba(255, 255, 255, 0.82);
	text-decoration-color: rgba(253, 183, 19, 0.62);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
