:root {
	--bg: #020611;
	--bg-deep: #01040c;
	--surface: #070c19;
	--surface-2: #0a1020;
	--surface-3: #0d1427;
	--line: rgba(118, 148, 204, 0.17);
	--line-bright: rgba(63, 126, 255, 0.58);
	--text: #f5f7ff;
	--muted: #a6afc3;
	--subtle: #69748c;
	--blue: #2388ff;
	--blue-light: #53b5ff;
	--purple: #9746ff;
	--green: #3ee6ad;
	--yellow: #ffd92f;
	--gradient: linear-gradient(100deg, #238cff 0%, #5368ff 48%, #9945ef 100%);
	--shell: 1220px;
	--radius: 7px;
	--header-height: 84px;
	--shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 78% 5%, rgba(31, 55, 132, 0.12), transparent 24rem),
		radial-gradient(circle at 12% 46%, rgba(29, 67, 175, 0.08), transparent 26rem),
		var(--bg);
	color: var(--text);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	position: fixed;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(47, 91, 172, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(47, 91, 172, 0.025) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
	pointer-events: none;
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.16;
}

h2 {
	margin-bottom: 0;
	font-size: clamp(1.8rem, 2.5vw, 2.35rem);
}

h3 {
	font-size: 1.08rem;
}

p {
	color: var(--muted);
}

::selection {
	background: rgba(66, 116, 255, 0.5);
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--blue-light);
	outline-offset: 4px;
}

.site-shell {
	width: min(calc(100% - 48px), var(--shell));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: #fff;
	clip: auto;
	color: #000;
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.section-grid {
	position: relative;
}

.section-grid::before,
.section-grid::after {
	position: absolute;
	width: 34px;
	height: 34px;
	border-color: rgba(39, 107, 255, 0.28);
	content: "";
	pointer-events: none;
}

.section-grid::before {
	top: 26px;
	left: max(0px, calc(50% - 680px));
	border-top: 1px solid;
	border-left: 1px solid;
}

.section-grid::after {
	right: max(0px, calc(50% - 680px));
	bottom: 8px;
	border-right: 1px solid;
	border-bottom: 1px solid;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--blue-light);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 16px;
	height: 1px;
	background: var(--blue);
	box-shadow: -8px 0 0 rgba(35, 136, 255, 0.3);
	content: "";
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button .icon {
	width: 15px;
	height: 15px;
}

.button-primary {
	background: var(--gradient);
	box-shadow: 0 10px 30px rgba(70, 91, 255, 0.2);
}

.button-primary:hover {
	box-shadow: 0 14px 38px rgba(70, 91, 255, 0.34);
	filter: brightness(1.12);
}

.button-secondary {
	border-color: transparent;
	background:
		linear-gradient(var(--bg), var(--bg)) padding-box,
		var(--gradient) border-box;
}

.button-secondary:hover {
	background:
		linear-gradient(#091126, #091126) padding-box,
		var(--gradient) border-box;
}

.button-small {
	min-height: 42px;
	padding-inline: 20px;
	font-size: 0.69rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--blue-light);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.text-link .icon {
	width: 13px;
	transition: transform 160ms ease;
}

.text-link:hover .icon {
	transform: translateX(4px);
}

.glass-panel,
.glass-card {
	border: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(14, 22, 42, 0.88), rgba(4, 8, 18, 0.93));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.018), var(--shadow);
	backdrop-filter: blur(13px);
}

.glass-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.glass-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 35%, rgba(73, 122, 255, 0.045), transparent 68%);
	content: "";
	pointer-events: none;
	transform: translateX(-100%);
	transition: transform 500ms ease;
}

.glass-card:hover {
	border-color: rgba(63, 126, 255, 0.35);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 30px rgba(33, 85, 255, 0.06);
	transform: translateY(-4px);
}

.glass-card:hover::after {
	transform: translateX(100%);
}

.reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Header */
.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
	border-color: rgba(100, 130, 185, 0.11);
	background: rgba(2, 6, 17, 0.82);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: grid;
	height: 100%;
	grid-template-columns: 190px 1fr 190px;
	align-items: center;
}

.brand {
	display: inline-flex;
	width: max-content;
	flex-direction: column;
	align-items: center;
	color: #fff;
	line-height: 1;
}

.brand-mark {
	font-family: "Segoe UI", sans-serif;
	font-size: 1.45rem;
	font-weight: 650;
	letter-spacing: -0.055em;
}

.brand-sub {
	margin-top: 5px;
	font-size: 0.48rem;
	font-weight: 600;
	letter-spacing: 0.55em;
	transform: translateX(0.25em);
}

.site-navigation {
	justify-self: center;
}

.site-navigation .menu {
	display: flex;
	align-items: center;
	gap: 38px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation a {
	position: relative;
	display: block;
	padding: 31px 0 27px;
	color: #c7cddb;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.site-navigation a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 2px;
	background: var(--blue);
	content: "";
	transition: right 160ms ease, left 160ms ease;
}

.site-navigation a:hover {
	color: #fff;
}

.site-navigation a:hover::after {
	right: 0;
	left: 0;
}

.site-navigation .current-menu-item > a,
.site-navigation .current_page_item > a {
	color: #fff;
}

.site-navigation .current-menu-item > a::after,
.site-navigation .current_page_item > a::after {
	right: 0;
	left: 0;
}

.header-cta {
	justify-self: end;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4389ff;
	box-shadow: 0 0 10px #4389ff;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: 160ms ease;
}

.mobile-drawer,
.mobile-drawer-overlay {
	display: none;
}

/* Hero */
.hero {
	overflow: hidden;
	min-height: 590px;
	padding-top: calc(var(--header-height) + 55px);
	border-bottom: 1px solid rgba(92, 123, 180, 0.08);
}

.hero::before {
	top: 160px;
	left: 0;
	width: 140px;
	height: 150px;
	border-color: rgba(42, 103, 255, 0.32);
	border-right: 0;
	border-bottom: 0;
	background:
		linear-gradient(90deg, transparent 24px, rgba(36, 97, 230, 0.2) 25px, transparent 26px) 0 38px / 100% 1px no-repeat;
}

.hero-inner {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	align-items: center;
	gap: 25px;
}

.hero-copy {
	position: relative;
	z-index: 2;
	padding: 45px 0 60px 20px;
}

.hero h1 {
	max-width: 650px;
	margin-bottom: 22px;
	font-size: clamp(2.55rem, 4.2vw, 4.05rem);
	font-weight: 550;
	letter-spacing: -0.038em;
	line-height: 1.16;
	text-transform: uppercase;
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-intro {
	max-width: 550px;
	margin-bottom: 30px;
	font-size: 0.98rem;
	line-height: 1.85;
}

.hero-actions {
	display: flex;
	gap: 16px;
}

.availability {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 27px 0 0;
	color: #8e9ab0;
	font-size: 0.65rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.availability span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3ae58e;
	box-shadow: 0 0 12px rgba(58, 229, 142, 0.65);
}

.hero-visual {
	position: relative;
	min-height: 455px;
	align-self: end;
}

.hero-visual > img {
	position: absolute;
	top: -12px;
	right: -74px;
	width: min(720px, 62vw);
	max-width: none;
	filter: drop-shadow(0 0 30px rgba(28, 88, 255, 0.08));
}

.data-label {
	position: absolute;
	z-index: 3;
	display: flex;
	width: 185px;
	flex-direction: column;
	padding: 13px 16px;
	border: 1px solid rgba(54, 125, 255, 0.45);
	border-radius: 4px;
	background: rgba(3, 9, 23, 0.86);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.data-label::before,
.data-label::after {
	position: absolute;
	width: 8px;
	height: 8px;
	border-color: var(--blue);
	content: "";
}

.data-label::before {
	top: -1px;
	left: -1px;
	border-top: 1px solid;
	border-left: 1px solid;
}

.data-label::after {
	right: -1px;
	bottom: -1px;
	border-right: 1px solid;
	border-bottom: 1px solid;
}

.data-label strong {
	color: var(--blue-light);
	font-size: 0.7rem;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.data-label span {
	margin-top: 4px;
	color: #c1c8d8;
	font-size: 0.56rem;
	line-height: 1.45;
}

.data-label-seo {
	top: 25px;
	right: -2px;
}

.data-label-web {
	top: 225px;
	right: -2px;
}

.data-label-strategy {
	bottom: 40px;
	left: 20px;
}

/* Stats */
.stats-section {
	position: relative;
	z-index: 4;
	margin-top: -22px;
}

.stats-grid {
	display: grid;
	min-height: 108px;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	border-radius: var(--radius);
}

.stat {
	display: flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 17px;
	padding: 0 28px;
	border-right: 1px solid var(--line);
}

.stat:last-child {
	border: 0;
}

.stat > .icon {
	width: 34px;
	height: 34px;
	color: #3989ff;
	filter: drop-shadow(0 0 7px rgba(56, 125, 255, 0.42));
}

.stat div {
	display: flex;
	flex-direction: column;
}

.stat strong {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.15;
	white-space: nowrap;
}

.stat span {
	margin-top: 4px;
	color: #8791a7;
	font-size: 0.58rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

/* Sections */
.content-section {
	padding: 76px 0 10px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 33px;
}

.section-heading .eyebrow {
	margin-bottom: 8px;
}

.compact-heading {
	margin-bottom: 23px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.service-card {
	display: flex;
	min-height: 365px;
	flex-direction: column;
	padding: 28px 23px 22px;
}

.card-icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border: 1px solid rgba(55, 121, 255, 0.4);
	background: rgba(13, 26, 57, 0.75);
	color: #3e86ff;
	place-items: center;
}

.card-icon .icon {
	width: 25px;
	height: 25px;
}

.service-card h3 {
	margin-bottom: 12px;
	font-size: 1.06rem;
}

.service-card > p {
	min-height: 64px;
	margin-bottom: 16px;
	font-size: 0.73rem;
	line-height: 1.65;
}

.service-card ul {
	display: grid;
	gap: 7px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.service-card li {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #aeb7c9;
	font-size: 0.66rem;
}

.service-card li .icon {
	width: 10px;
	height: 10px;
	color: var(--blue);
}

.service-card .text-link {
	margin-top: auto;
}

.mobile-section-action {
	display: none;
}

/* Trusted projects + featured results */
.projects-showcase {
	padding-top: 85px;
}

.projects-trust-panel,
.featured-results-panel {
	position: relative;
	overflow: hidden;
	padding: 34px 30px 28px;
	border: 1px solid rgba(68, 108, 190, 0.25);
	border-radius: 14px;
	background:
		radial-gradient(circle at 88% 12%, rgba(44, 71, 171, 0.09), transparent 25rem),
		linear-gradient(145deg, rgba(6, 13, 29, 0.9), rgba(2, 7, 17, 0.95));
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.016);
}

.projects-trust-panel::after,
.featured-results-panel::after {
	position: absolute;
	right: -30px;
	bottom: -70px;
	width: 270px;
	height: 180px;
	background:
		radial-gradient(circle, rgba(59, 56, 255, 0.12) 0 1px, transparent 1.5px) 0 0 / 11px 11px;
	content: "";
	opacity: 0.48;
	pointer-events: none;
	transform: rotate(-12deg);
}

.featured-results-panel {
	margin-top: 24px;
}

.projects-heading {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 25px;
}

.projects-heading > div {
	max-width: 580px;
}

.projects-heading .eyebrow {
	margin-bottom: 8px;
}

.projects-heading h2 {
	margin-bottom: 8px;
}

.projects-heading p:not(.eyebrow) {
	max-width: 540px;
	margin-bottom: 0;
	font-size: 0.82rem;
	line-height: 1.65;
}

.projects-heading .button {
	min-width: 215px;
}

.trusted-project-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.trusted-project-card {
	position: relative;
	display: grid;
	min-width: 0;
	min-height: 360px;
	grid-template-columns: 1fr 48px;
	grid-template-rows: auto 158px auto;
	gap: 14px;
	padding: 23px 18px 18px;
	border: 1px solid rgba(66, 110, 198, 0.35);
	border-radius: 12px;
	background:
		linear-gradient(145deg, rgba(9, 18, 38, 0.92), rgba(3, 8, 19, 0.98));
	box-shadow: inset 0 0 35px rgba(47, 77, 171, 0.045);
	transition: 180ms ease;
}

.trusted-project-card:hover {
	border-color: rgba(126, 69, 255, 0.7);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 26px rgba(62, 74, 255, 0.08);
	transform: translateY(-4px);
}

.trusted-project-brand {
	min-width: 0;
	grid-column: 1 / -1;
}

.trusted-project-brand img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 88px;
	object-fit: contain;
	object-position: left center;
}

.trusted-project-image {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(70, 117, 212, 0.42);
	border-radius: 8px;
	grid-column: 1 / -1;
}

.trusted-project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 420ms ease;
}

.trusted-project-card:hover .trusted-project-image img {
	transform: scale(1.035);
}

.trusted-project-result {
	display: flex;
	align-self: center;
	flex-direction: column;
}

.trusted-project-result strong {
	color: #32dec1;
	font-size: 1.48rem;
	font-weight: 500;
}

.trusted-project-result span {
	color: #c2cada;
	font-size: 0.75rem;
}

.trusted-project-arrow {
	display: grid;
	width: 47px;
	height: 47px;
	align-self: center;
	border: 1px solid transparent;
	border-radius: 50%;
	background:
		linear-gradient(#071021, #071021) padding-box,
		linear-gradient(135deg, #087fff, #a441ff) border-box;
	color: #c55cff;
	place-items: center;
	transition: 170ms ease;
}

.trusted-project-arrow:hover {
	background:
		linear-gradient(#111938, #111938) padding-box,
		linear-gradient(135deg, #087fff, #d04cff) border-box;
	box-shadow: 0 0 22px rgba(113, 55, 255, 0.2);
	transform: translateX(3px);
}

.trusted-project-arrow .icon {
	width: 21px;
	height: 21px;
}

.featured-result-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.featured-result-card {
	display: flex;
	min-height: 140px;
	align-items: center;
	gap: 22px;
	padding: 20px;
	border: 1px solid rgba(60, 105, 190, 0.34);
	border-radius: 11px;
	background: linear-gradient(145deg, rgba(8, 18, 38, 0.92), rgba(3, 8, 19, 0.97));
	transition: 180ms ease;
}

.featured-result-card:hover {
	border-color: rgba(115, 71, 255, 0.62);
	transform: translateY(-3px);
}

.featured-result-icon {
	display: grid;
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	border: 3px solid #168cff;
	border-right-color: #a449ff;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(51, 67, 181, 0.16), transparent 70%);
	color: #6b70ff;
	box-shadow: inset 0 0 20px rgba(25, 101, 255, 0.08), 0 0 17px rgba(62, 60, 255, 0.08);
	place-items: center;
}

.featured-result-icon .icon {
	width: 40px;
	height: 40px;
	stroke-width: 2;
}

.featured-result-card strong {
	font-size: 1.65rem;
	font-weight: 550;
}

.featured-result-card h3 {
	margin: 2px 0 0;
	font-size: 0.8rem;
}

.featured-result-card p {
	margin: 2px 0 0;
	color: #98a3b8;
	font-size: 0.66rem;
}

/* Tools */
.tools-section {
	padding-top: 78px;
}

.tools-grid {
	display: grid;
	min-height: 96px;
	grid-template-columns: repeat(7, 1fr);
	align-items: center;
	gap: 22px;
	padding: 5px 15px;
}

.tool {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 9px;
}

.tool strong {
	color: #f0f5ff;
	font-size: 0.95rem;
	letter-spacing: -0.03em;
}

.tool > span {
	display: flex;
	flex-direction: column;
	color: #eef3ff;
	font-size: 0.72rem;
	line-height: 1.2;
}

.tool small {
	color: #758096;
	font-size: 0.58rem;
}

.tool-gsc strong,
.tool-psi strong {
	display: grid;
	width: 35px;
	height: 40px;
	border-radius: 5px 5px 3px 3px;
	background: linear-gradient(#e9f2ff 0 27%, #8bb8ff 27% 38%, #f1f6ff 38%);
	box-shadow: inset 0 0 0 2px #9dbcf4;
	color: #306bd4;
	font-size: 0.53rem;
	place-items: center;
}

.tool-ga4 strong {
	color: #ff9d1f;
	font-size: 0.86rem;
	letter-spacing: -0.15em;
}

.tool-semrush strong {
	color: #f3f4ff;
}

.tool-semrush strong::first-letter {
	color: #ff6500;
}

.tool-ahrefs strong {
	color: #54a5ff;
	font-size: 1.12rem;
}

.tool-frog strong {
	display: grid;
	width: 34px;
	height: 34px;
	border: 2px solid #8ad928;
	border-radius: 50%;
	color: #8ad928;
	font-size: 0.6rem;
	place-items: center;
}

.tool-gtmetrix strong {
	color: #79c9ff;
	font-size: 1.08rem;
	text-decoration: underline;
	text-decoration-color: #3d668e;
}

/* Process */
.process-section {
	padding-top: 62px;
}

.process-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	margin: 38px 0 0;
	padding: 0;
	list-style: none;
}

.process-list::before {
	position: absolute;
	top: 24px;
	right: 9%;
	left: 9%;
	border-top: 1px dashed rgba(43, 122, 255, 0.72);
	content: "";
}

.process-list li {
	position: relative;
	z-index: 1;
	padding: 0 14px;
}

.process-number {
	display: grid;
	width: 49px;
	height: 49px;
	margin-bottom: 18px;
	border: 1px solid #2e8bff;
	border-radius: 50%;
	background: var(--bg);
	color: #70afff;
	font-size: 0.88rem;
	place-items: center;
}

.process-list h3 {
	margin-bottom: 10px;
	font-size: 0.76rem;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.process-list p {
	max-width: 200px;
	margin-bottom: 0;
	font-size: 0.7rem;
	line-height: 1.7;
}

/* Testimonials */
.testimonial-section {
	padding-top: 84px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-card {
	min-height: 225px;
	margin: 0;
	padding: 30px 28px 24px 58px;
}

.quote-icon {
	position: absolute;
	top: 33px;
	left: 24px;
	width: 23px;
	height: 23px;
	color: #4a8cff;
	stroke-width: 2.4;
}

.testimonial-card blockquote {
	min-height: 90px;
	margin-bottom: 18px;
	color: #b9c2d4;
	font-size: 0.77rem;
	line-height: 1.75;
}

.testimonial-card figcaption {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	align-items: center;
	gap: 10px;
}

.avatar {
	display: grid;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: linear-gradient(145deg, #2557a0, #1a2238);
	color: #dfe9ff;
	font-weight: 700;
	place-items: center;
}

.testimonial-card figcaption > span:nth-child(2) {
	display: flex;
	flex-direction: column;
}

.testimonial-card figcaption strong {
	font-size: 0.7rem;
	font-weight: 600;
}

.testimonial-card figcaption small {
	color: #7f899d;
	font-size: 0.58rem;
}

.stars {
	color: var(--yellow);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
}

/* CTA */
.cta-section {
	padding: 80px 0 38px;
}

.cta-card {
	position: relative;
	display: grid;
	min-height: 122px;
	grid-template-columns: 1.05fr 0.72fr auto;
	align-items: center;
	gap: 45px;
	overflow: hidden;
	padding: 26px 30px;
	border: 1px solid transparent;
	border-radius: 5px;
	background:
		linear-gradient(100deg, rgba(3, 8, 20, 0.98), rgba(10, 9, 28, 0.96)) padding-box,
		var(--gradient) border-box;
}

.cta-card::after {
	position: absolute;
	top: -100px;
	right: 50px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(71, 61, 255, 0.08);
	filter: blur(40px);
	content: "";
	pointer-events: none;
}

.cta-card h2 {
	max-width: 455px;
	font-size: 1.7rem;
	font-weight: 500;
	text-transform: uppercase;
}

.cta-card p {
	margin: 0;
	font-size: 0.76rem;
	line-height: 1.7;
}

.cta-card .button {
	position: relative;
	z-index: 2;
	min-width: 230px;
}

/* Footer */
.site-footer {
	padding: 22px 0 18px;
	background: linear-gradient(to bottom, transparent, rgba(0, 2, 9, 0.9));
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 80px;
	padding: 16px 6px 32px;
}

.footer-brand p {
	max-width: 220px;
	margin: 20px 0 0;
	font-size: 0.7rem;
	line-height: 1.65;
}

.footer-title {
	margin: 2px 0 16px;
	color: var(--blue-light);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a,
.footer-contact {
	color: #939db1;
	font-size: 0.7rem;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: #fff;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-contact .icon {
	width: 15px;
	height: 15px;
	color: #b7c4dc;
}

.social-links {
	display: flex;
	gap: 9px;
	margin-top: 17px;
}

.social-links a {
	display: grid;
	width: 29px;
	height: 29px;
	border-radius: 50%;
	background: #91addf;
	color: #071022;
	font-size: 0.59rem;
	font-weight: 800;
	place-items: center;
	transition: 160ms ease;
}

.social-links a:hover {
	background: #fff;
	transform: translateY(-2px);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 6px 0;
	border-top: 1px solid rgba(110, 135, 180, 0.1);
}

.footer-bottom p,
.footer-bottom a {
	margin: 0;
	color: #747f94;
	font-size: 0.62rem;
}

.footer-bottom nav {
	display: flex;
	gap: 30px;
}

/* Generic content */
.content-main {
	min-height: 70vh;
	padding-top: calc(var(--header-height) + 60px);
	padding-bottom: 80px;
}

.content-card {
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.content-card h1 {
	font-size: clamp(2rem, 5vw, 4rem);
}

.breadcrumbs {
	margin-bottom: 28px;
}

.breadcrumbs ol {
	display: flex;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	color: var(--subtle);
	font-size: 0.7rem;
}

.breadcrumbs li:not(:last-child)::after {
	margin-left: 9px;
	content: "/";
}

.breadcrumbs a {
	color: var(--blue-light);
}

.error-page {
	display: flex;
	min-height: 75vh;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-top: var(--header-height);
}

.error-page h1 {
	max-width: 780px;
	margin-bottom: 18px;
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	text-transform: uppercase;
}

.error-page p:not(.eyebrow) {
	margin-bottom: 28px;
}

@media (max-width: 1120px) {
	:root {
		--shell: 980px;
	}

	.site-navigation .menu {
		gap: 22px;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-card {
		min-height: 350px;
	}

	.trusted-project-grid,
	.featured-result-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tools-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.footer-grid {
		gap: 35px;
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 72px;
	}

	body.menu-open {
		overflow: hidden;
	}

	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-navigation {
		display: none;
	}

	.mobile-drawer-overlay {
		position: fixed;
		z-index: 1180;
		inset: 0;
		display: block;
		padding: 0;
		border: 0;
		background: rgba(0, 3, 12, 0.7);
		backdrop-filter: blur(7px);
		cursor: pointer;
		opacity: 0;
		pointer-events: none;
		transition: opacity 260ms ease, visibility 260ms ease;
		visibility: hidden;
	}

	.mobile-drawer-overlay.is-open {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.mobile-drawer {
		position: fixed;
		z-index: 1200;
		top: 0;
		bottom: 0;
		right: 0;
		display: block;
		width: min(85vw, 360px);
		overflow-x: hidden;
		overflow-y: auto;
		border-left: 1px solid rgba(75, 105, 171, 0.3);
		border-radius: 22px 0 0 22px;
		background:
			radial-gradient(circle at 20% 10%, rgba(37, 96, 255, 0.12), transparent 18rem),
			linear-gradient(155deg, rgba(4, 11, 27, 0.985), rgba(1, 5, 15, 0.995));
		box-shadow: -30px 0 85px rgba(0, 0, 0, 0.58), inset 1px 0 rgba(122, 71, 255, 0.08);
		overscroll-behavior: contain;
		transform: translateX(104%);
		transition: transform 320ms cubic-bezier(0.22, 0.82, 0.25, 1), visibility 320ms ease;
		visibility: hidden;
	}

	.mobile-drawer::before {
		position: absolute;
		inset: 0;
		background:
			linear-gradient(rgba(44, 87, 162, 0.025) 1px, transparent 1px),
			linear-gradient(90deg, rgba(44, 87, 162, 0.025) 1px, transparent 1px);
		background-size: 38px 38px;
		content: "";
		mask-image: linear-gradient(to bottom, #000, transparent 82%);
		pointer-events: none;
	}

	.mobile-drawer.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.mobile-drawer-inner {
		position: relative;
		display: flex;
		min-height: 100dvh;
		flex-direction: column;
		padding: 21px 17px 18px;
	}

	.mobile-drawer-top {
		display: grid;
		grid-template-columns: 1fr auto auto;
		align-items: center;
		gap: 14px;
		min-height: 76px;
		padding: 7px 9px 18px;
	}

	.mobile-drawer-brand {
		display: inline-flex;
		width: max-content;
		flex-direction: column;
		align-items: center;
		color: #f8f9ff;
		line-height: 1;
	}

	.mobile-drawer-brand > span {
		font-size: 1.6rem;
		font-weight: 560;
		letter-spacing: 0.06em;
	}

	.mobile-drawer-brand small {
		margin-top: 7px;
		color: #a4aec2;
		font-size: 0.47rem;
		font-weight: 650;
		letter-spacing: 0.55em;
		transform: translateX(0.25em);
	}

	.mobile-drawer-orb {
		width: 17px;
		height: 17px;
		border: 1px solid #183cf0;
		border-radius: 50%;
		background: linear-gradient(135deg, #1547ff, #7125b8);
		box-shadow: 0 0 0 9px rgba(28, 64, 207, 0.06), 0 0 24px rgba(69, 44, 255, 0.35);
	}

	.mobile-drawer-close {
		position: relative;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid rgba(80, 103, 158, 0.25);
		border-radius: 10px;
		background: rgba(7, 13, 29, 0.85);
		color: #dce2ef;
		cursor: pointer;
	}

	.mobile-drawer-close span {
		position: absolute;
		top: 18px;
		left: 10px;
		width: 17px;
		height: 1.5px;
		background: currentColor;
	}

	.mobile-drawer-close span:first-child {
		transform: rotate(45deg);
	}

	.mobile-drawer-close span:last-child {
		transform: rotate(-45deg);
	}

	.mobile-drawer-navigation {
		padding-top: 4px;
	}

	.mobile-drawer-label {
		margin: 20px 13px 8px;
		color: #69768f;
		font-size: 0.61rem;
		font-weight: 650;
		letter-spacing: 0.09em;
		text-transform: uppercase;
	}

	.mobile-drawer-navigation ul {
		display: grid;
		gap: 3px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-drawer-link {
		position: relative;
		display: flex;
		min-height: 49px;
		align-items: center;
		gap: 14px;
		padding: 10px 14px;
		border: 1px solid transparent;
		border-radius: 11px;
		color: #bdc5d5;
		font-size: 0.88rem;
		transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
	}

	.mobile-drawer-link .icon {
		width: 21px;
		height: 21px;
		color: #a8b4c9;
		transition: color 160ms ease;
	}

	.mobile-drawer-link:hover,
	.mobile-drawer-link:focus-visible {
		border-color: rgba(65, 100, 186, 0.3);
		background: rgba(13, 24, 48, 0.72);
		color: #fff;
		transform: translateX(-2px);
	}

	.mobile-drawer-link.is-active {
		border-color: transparent;
		background:
			linear-gradient(110deg, rgba(31, 61, 185, 0.47), rgba(57, 28, 101, 0.6)) padding-box,
			linear-gradient(110deg, #315aff, #c238e9) border-box;
		box-shadow: 0 0 28px rgba(55, 66, 255, 0.18);
		color: #fff;
	}

	.mobile-drawer-link.is-active::after {
		position: absolute;
		left: 0;
		width: 2px;
		height: 27px;
		border-radius: 0 4px 4px 0;
		background: #278dff;
		box-shadow: 0 0 15px #325dff;
		content: "";
	}

	.mobile-drawer-link.is-active .icon {
		color: #6f79ff;
	}

	.mobile-drawer-cta {
		display: grid;
		grid-template-columns: 35px 1fr;
		gap: 6px 12px;
		margin-top: 38px;
		padding: 18px 15px 14px;
		border: 1px solid rgba(101, 53, 156, 0.45);
		border-radius: 12px;
		background: linear-gradient(145deg, rgba(7, 17, 43, 0.88), rgba(26, 9, 43, 0.83));
		box-shadow: inset 0 0 34px rgba(60, 39, 160, 0.06);
	}

	.mobile-drawer-cta-icon {
		display: grid;
		width: 35px;
		height: 35px;
		color: #3a7bff;
		place-items: center;
	}

	.mobile-drawer-cta-icon .icon {
		width: 25px;
		height: 25px;
	}

	.mobile-drawer-cta p {
		align-self: center;
		margin: 0;
		color: #f3f5fa;
		font-size: 0.83rem;
		line-height: 1.45;
	}

	.mobile-drawer-cta p strong {
		display: block;
		background: linear-gradient(90deg, #278cff, #a445ff);
		background-clip: text;
		color: transparent;
		font-weight: 600;
	}

	.mobile-drawer-cta > a {
		display: flex;
		min-height: 45px;
		grid-column: 1 / -1;
		align-items: center;
		justify-content: center;
		gap: 10px;
		margin-top: 8px;
		border: 1px solid transparent;
		border-radius: 9px;
		background:
			linear-gradient(#071023, #071023) padding-box,
			linear-gradient(100deg, #245eff, #c83ade) border-box;
		color: #f5f7ff;
		font-size: 0.78rem;
		font-weight: 650;
	}

	.mobile-drawer-cta > a .icon {
		width: 16px;
		height: 16px;
	}

	.mobile-drawer-profile {
		display: grid;
		grid-template-columns: 48px 1fr 37px;
		align-items: center;
		gap: 12px;
		margin-top: 12px;
		padding: 15px 13px;
		border: 1px solid rgba(64, 91, 145, 0.26);
		border-radius: 12px;
		background: rgba(4, 11, 24, 0.78);
	}

	.mobile-drawer-avatar {
		position: relative;
		display: grid;
		width: 48px;
		height: 48px;
		border: 1px solid rgba(122, 139, 181, 0.48);
		border-radius: 50%;
		background: linear-gradient(145deg, #18233c, #070d1d);
		color: #ecf0f8;
		font-size: 0.69rem;
		font-weight: 650;
		place-items: center;
	}

	.mobile-drawer-avatar span {
		position: absolute;
		right: 0;
		bottom: 2px;
		width: 9px;
		height: 9px;
		border: 2px solid #07101f;
		border-radius: 50%;
		background: #23d875;
	}

	.mobile-drawer-profile > div:nth-child(2) {
		display: flex;
		min-width: 0;
		flex-direction: column;
	}

	.mobile-drawer-profile strong {
		color: #f4f6fb;
		font-size: 0.8rem;
	}

	.mobile-drawer-profile small {
		overflow: hidden;
		color: #7d899f;
		font-size: 0.57rem;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-drawer-profile > a {
		display: grid;
		width: 37px;
		height: 37px;
		border: 1px solid rgba(72, 96, 151, 0.28);
		border-radius: 9px;
		color: #9ba9c2;
		place-items: center;
	}

	.mobile-drawer-profile > a .icon {
		width: 17px;
		height: 17px;
	}

	.hero {
		padding-top: calc(var(--header-height) + 30px);
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		padding: 30px 0 5px;
	}

	.hero-visual {
		min-height: 400px;
	}

	.hero-visual > img {
		top: -40px;
		right: 50%;
		width: min(700px, 94vw);
		transform: translateX(50%);
	}

	.data-label-seo {
		right: 5%;
	}

	.data-label-web {
		right: 4%;
	}

	.data-label-strategy {
		bottom: 30px;
		left: 4%;
	}

	.stats-section {
		margin-top: 0;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stat {
		min-height: 90px;
	}

	.stat:nth-child(2) {
		border-right: 0;
	}

	.stat:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.process-list {
		grid-template-columns: 1fr;
		gap: 0;
		margin-left: 6px;
	}

	.process-list::before {
		top: 23px;
		bottom: 45px;
		left: 24px;
		width: 0;
		border-top: 0;
		border-left: 1px dashed rgba(43, 122, 255, 0.72);
	}

	.process-list li {
		display: grid;
		grid-template-columns: 49px 1fr;
		gap: 22px;
		padding: 0 0 28px;
	}

	.process-list p {
		max-width: 450px;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		min-height: 0;
	}

	.cta-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 30px;
	}
}

@media (max-width: 680px) {
	:root {
		--radius: 6px;
	}

	body {
		font-size: 15px;
		background:
			radial-gradient(circle at 55% 13%, rgba(30, 65, 165, 0.13), transparent 22rem),
			var(--bg);
	}

	.site-shell {
		width: min(calc(100% - 28px), 470px);
	}

	.section-grid::before,
	.section-grid::after {
		display: none;
	}

	.brand {
		align-items: flex-start;
	}

	.brand-mark {
		font-size: 1.3rem;
	}

	.brand-sub {
		font-size: 0.42rem;
	}

	.eyebrow {
		font-size: 0.63rem;
	}

	.hero {
		min-height: 0;
		padding-top: calc(var(--header-height) + 18px);
	}

	.hero-copy {
		padding-top: 23px;
	}

	.hero h1 {
		margin-bottom: 18px;
		font-size: clamp(2rem, 10vw, 3rem);
		line-height: 1.18;
	}

	.hero-intro {
		margin-bottom: 22px;
		font-size: 0.83rem;
		line-height: 1.72;
	}

	.hero-actions {
		display: grid;
		gap: 10px;
	}

	.hero-actions .button {
		width: 100%;
	}

	.availability {
		margin-top: 17px;
		font-size: 0.55rem;
	}

	.hero-visual {
		min-height: 320px;
	}

	.hero-visual > img {
		top: -25px;
		width: 590px;
		max-width: 140vw;
	}

	.data-label {
		display: none;
	}

	.stats-section {
		margin-top: -8px;
	}

	.stats-grid {
		gap: 4px;
		border: 0;
		background: none;
		box-shadow: none;
	}

	.stat {
		min-height: 111px;
		flex-direction: column;
		gap: 5px;
		padding: 13px 8px;
		border: 1px solid var(--line) !important;
		border-radius: var(--radius);
		background: linear-gradient(145deg, rgba(12, 20, 39, 0.88), rgba(4, 8, 18, 0.94));
		text-align: center;
	}

	.stat > .icon {
		width: 28px;
		height: 28px;
	}

	.stat strong {
		font-size: 1.32rem;
	}

	.stat span {
		font-size: 0.52rem;
	}

	.content-section {
		padding-top: 52px;
	}

	.section-heading {
		margin-bottom: 20px;
	}

	.section-heading h2 {
		font-size: 1.45rem;
	}

	.desktop-action {
		display: none;
	}

	.mobile-section-action {
		display: flex;
		width: 100%;
		margin-top: 13px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.service-card {
		display: grid;
		min-height: 0;
		grid-template-columns: 38px 1fr 18px;
		column-gap: 12px;
		padding: 15px 14px;
	}

	.service-card::before {
		align-self: center;
		color: var(--blue-light);
		content: "›";
		font-size: 1.3rem;
		grid-column: 3;
		grid-row: 1 / span 3;
		justify-self: end;
	}

	.card-icon {
		width: 38px;
		height: 38px;
		margin: 0;
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.card-icon .icon {
		width: 22px;
		height: 22px;
	}

	.service-card h3 {
		margin: 1px 0 4px;
		font-size: 0.88rem;
		grid-column: 2;
	}

	.service-card > p {
		min-height: 0;
		margin: 0;
		font-size: 0.61rem;
		line-height: 1.55;
		grid-column: 2;
	}

	.service-card ul,
	.service-card .text-link {
		display: none;
	}

	.projects-showcase {
		padding-top: 56px;
	}

	.projects-trust-panel,
	.featured-results-panel {
		width: min(calc(100% + 10px), 500px);
		margin-inline: -5px;
		padding: 24px 14px 18px;
		border-radius: 12px;
	}

	.featured-results-panel {
		margin-top: 14px;
	}

	.projects-heading {
		display: block;
		margin-bottom: 18px;
		padding-inline: 4px;
	}

	.projects-heading h2 {
		font-size: 1.55rem;
	}

	.projects-heading p:not(.eyebrow) {
		font-size: 0.76rem;
	}

	.projects-heading .button {
		width: 100%;
		margin-top: 17px;
	}

	.trusted-project-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.trusted-project-card {
		min-height: 190px;
		grid-template-columns: minmax(122px, 0.92fr) minmax(128px, 1.18fr) 36px;
		grid-template-rows: 1fr auto;
		gap: 8px;
		padding: 13px 11px;
	}

	.trusted-project-brand {
		align-self: center;
		grid-column: 1;
		grid-row: 1;
	}

	.trusted-project-brand img {
		width: 100%;
		height: auto;
		max-height: 94px;
	}

	.trusted-project-image {
		height: 155px;
		align-self: center;
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.trusted-project-result {
		align-self: end;
		grid-column: 1;
		grid-row: 2;
	}

	.trusted-project-result strong {
		font-size: 1.2rem;
	}

	.trusted-project-result span {
		font-size: 0.62rem;
	}

	.trusted-project-arrow {
		width: 36px;
		height: 36px;
		align-self: center;
		grid-column: 3;
		grid-row: 1 / span 2;
	}

	.trusted-project-arrow .icon {
		width: 17px;
		height: 17px;
	}

	.featured-result-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.featured-result-card {
		min-height: 155px;
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
		padding: 14px 12px;
	}

	.featured-result-icon {
		width: 62px;
		height: 62px;
		flex-basis: 62px;
	}

	.featured-result-icon .icon {
		width: 31px;
		height: 31px;
	}

	.featured-result-card strong {
		font-size: 1.4rem;
	}

	.featured-result-card h3 {
		font-size: 0.7rem;
	}

	.featured-result-card p {
		font-size: 0.59rem;
	}

	.tools-section {
		padding-top: 52px;
	}

	.tools-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 7px;
		padding: 0;
	}

	.tool {
		min-height: 90px;
		flex-direction: column;
		gap: 5px;
		padding: 9px 4px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: rgba(9, 15, 30, 0.74);
		text-align: center;
	}

	.tool > span {
		font-size: 0.61rem;
	}

	.tool small {
		font-size: 0.51rem;
	}

	.process-section {
		padding-top: 54px;
	}

	.process-list {
		margin-top: 24px;
	}

	.process-list li {
		gap: 18px;
		padding-bottom: 25px;
	}

	.process-list h3 {
		margin: 2px 0 6px;
		font-size: 0.7rem;
	}

	.process-list p {
		font-size: 0.66rem;
	}

	.testimonial-section {
		padding-top: 45px;
	}

	.testimonial-grid {
		gap: 9px;
	}

	.testimonial-card {
		padding: 23px 18px 20px 46px;
	}

	.quote-icon {
		top: 25px;
		left: 17px;
		width: 19px;
		height: 19px;
	}

	.testimonial-card blockquote {
		min-height: 0;
		font-size: 0.7rem;
	}

	.testimonial-card figcaption {
		grid-template-columns: 33px 1fr;
	}

	.avatar {
		width: 33px;
		height: 33px;
	}

	.stars {
		grid-column: 2;
		margin-top: -5px;
	}

	.cta-section {
		padding: 38px 0 28px;
	}

	.cta-card {
		gap: 14px;
		padding: 25px 20px;
	}

	.cta-card h2 {
		font-size: 1.55rem;
	}

	.cta-card p {
		font-size: 0.72rem;
	}

	.cta-card .button {
		width: 100%;
		min-width: 0;
	}

	.site-footer {
		padding-top: 23px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 28px;
	}

	.footer-brand {
		padding-bottom: 24px;
		border-bottom: 1px solid var(--line);
	}

	.footer-brand p {
		max-width: 290px;
	}

	.footer-title {
		margin-bottom: 12px;
	}

	.footer-links {
		gap: 5px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.footer-bottom nav {
		gap: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
