:root {
	--color-bg: #eef2f8;
	--color-surface: rgba(255, 255, 255, 0.72);
	--color-text: #121926;
	--color-muted: #667085;
	--color-border: rgba(255, 255, 255, 0.28);
	--color-accent: #1463ff;
	--color-accent-dark: #0b42b6;
	--color-heading: #0a1020;
	--shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
	--container: 1180px;
	--radius-lg: 24px;
	--radius-md: 16px;
	--font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
	--font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background: #fff;
	color: var(--color-text);
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.site-title a {
	font-family: var(--font-display);
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

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

.site-content,
.site-footer__shell,
.site-footer__bottom {
	width: min(100% - 2rem, var(--container));
	margin: 0 auto;
}

.site-footer,
.site-main,
.widget-area {
	padding: 1.5rem 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	background: transparent;
	backdrop-filter: none;
	transition: box-shadow 0.25s ease, background-color 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
	padding: 0.75rem 0;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.88);
}

.site-header__inner {
	width: min(100% - 2rem, var(--container));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.18));
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(24px) saturate(160%);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
	justify-self: start;
}

.site-logo img,
.custom-logo {
	display: block;
	max-height: 44px;
	width: auto;
}

.site-branding__text {
	min-width: 0;
}

.site-title,
.site-title a {
	margin: 0;
	color: var(--color-heading);
	font-size: 1.08rem;
	font-weight: 400;
	letter-spacing: -0.03em;
}

.site-description {
	margin: 0.15rem 0 0;
	font-size: 0.84rem;
	color: rgba(18, 25, 38, 0.68);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	justify-self: center;
}

.main-navigation ul,
.footer-navigation ul {
	align-items: center;
}

.main-navigation ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation li {
	margin: 0;
}

.main-navigation > div,
.main-navigation > ul {
	display: flex;
	justify-content: center;
	width: auto;
}

.main-navigation .menu {
	justify-content: center;
}

.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-header__cta {
	display: flex;
	justify-content: flex-end;
	justify-self: end;
	min-width: 0;
}

.main-navigation a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.62rem 1rem;
	color: rgba(10, 16, 32, 0.98);
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.38rem;
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), #5ea6ff);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.22s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--color-accent);
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.34);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.site-footer {
	margin-top: 2rem;
	padding: 0 0 1.5rem;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.18), transparent 18%),
		linear-gradient(145deg, #0d1c35, #13294c 58%, #173867);
	color: rgba(225, 235, 255, 0.82);
}

.site-footer__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.75fr);
	gap: 2rem;
	padding: 3rem 0 2rem;
}

.site-footer__identity {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
	display: block;
	max-height: 56px;
	width: auto;
}

.site-footer__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}

.site-footer__tagline {
	margin: 0.25rem 0 0;
	font-size: 0.92rem;
	color: rgba(225, 235, 255, 0.66);
}

.site-footer__description {
	max-width: 34rem;
	margin: 1.2rem 0 0;
	font-size: 0.98rem;
	line-height: 1.85;
	color: rgba(225, 235, 255, 0.72);
}

.site-footer__heading {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}

.footer-navigation ul {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.7rem;
}

.footer-navigation a {
	color: rgba(225, 235, 255, 0.78);
	font-size: 0.95rem;
}

.footer-navigation a:hover {
	color: #ffd36f;
}

.site-footer__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-footer__contact-list {
	display: grid;
	gap: 0.55rem;
	margin-bottom: 1rem;
}

.site-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(225, 235, 255, 0.82);
	font-size: 0.92rem;
}

.site-footer__contact-item:hover {
	color: #ffd36f;
}

.site-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.site-footer__contact-icon svg {
	width: 0.86rem;
	height: 0.86rem;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: visible;
}

.site-footer__social-link svg {
	width: 1.35rem;
	height: 1.35rem;
	overflow: visible;
}

.site-footer__social-link:hover {
	transform: translateY(-2px);
	background: rgba(255, 211, 111, 0.18);
	color: #ffd36f;
}

.site-footer__bottom {
	padding: 1rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 991px) {
	.site-footer__shell {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.site-footer__shell,
	.site-footer__bottom {
		width: min(100% - 1rem, var(--container));
	}

	.site-footer__shell {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 2.2rem 0 1.5rem;
	}

	.site-footer__identity {
		align-items: flex-start;
	}

	.site-footer__social-list {
		gap: 0.6rem;
	}
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.main-navigation a:focus-visible {
	outline: none;
	color: var(--color-accent);
	background: rgba(255, 255, 255, 0.24);
	border-color: rgba(20, 99, 255, 0.35);
	box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.14);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(20, 99, 255, 0.92), rgba(94, 166, 255, 0.9));
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	box-shadow: 0 14px 30px rgba(20, 99, 255, 0.24);
	white-space: nowrap;
}

.header-cta:hover {
	transform: translateY(-1px);
	background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
	color: #fff;
}

.menu-toggle {
	display: none;
	position: relative;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(18, 25, 38, 0.08);
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--shadow-soft);
	cursor: pointer;
}

.menu-toggle__line {
	position: absolute;
	left: 14px;
	width: 22px;
	height: 2px;
	background: var(--color-heading);
	border-radius: 999px;
	transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle__line:nth-child(1) {
	top: 18px;
}

.menu-toggle__line:nth-child(2) {
	top: 25px;
}

.menu-toggle__line:nth-child(3) {
	top: 32px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
	top: 25px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
	top: 25px;
	transform: rotate(-45deg);
}

.hero,
article,
.widget,
.comments-area,
.no-results {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.site-main--landing {
	grid-column: 1 / -1;
	width: 100%;
	padding-top: 0;
}

.page-title,
.entry-title {
	margin-top: 0;
}

.entry-meta,
.site-description,
.screen-reader-text {
	color: var(--color-muted);
}

.search-form {
	display: flex;
	gap: 0.75rem;
}

.search-field {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--color-border);
}

.search-submit {
	padding: 0.75rem 1rem;
	border: 0;
	background: var(--color-accent);
	color: #fff;
	cursor: pointer;
	border-radius: 12px;
}

@media (min-width: 900px) {
	.site-content {
		display: grid;
		grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
		gap: 2rem;
	}

	.home .site-content,
	.blog .site-content,
	.archive .site-content,
	.search .site-content,
	.single .site-content {
		align-items: start;
	}
}

@media (max-width: 991px) {
	.site-header__inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		row-gap: 0.25rem;
	}

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

	.main-navigation,
	.site-header__cta {
		display: none;
		width: 100%;
	}

	.site-header.menu-open .main-navigation,
	.site-header.menu-open .site-header__cta {
		display: flex;
	}

	.main-navigation,
	.main-navigation ul,
	.site-header__cta {
		width: 100%;
		padding-top: 0.2rem;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

	.main-navigation > div,
	.main-navigation > ul {
		display: block;
		width: 100%;
	}

	.site-header__cta {
		width: 100%;
	}

	.main-navigation a {
		justify-content: space-between;
		min-height: 48px;
		padding: 0.88rem 1rem;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.14);
	}

	.main-navigation a::after {
		left: 1rem;
		right: 1rem;
		bottom: 0.6rem;
	}

	.main-navigation li + li {
		margin-top: 0.2rem;
	}

	.header-cta {
		width: 100%;
	}

	.site-description {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.site-header {
		padding: 0.75rem 0;
	}

	.site-header__inner {
		padding: 0.85rem 1rem;
		gap: 1rem;
	}

	.site-branding {
		max-width: calc(100% - 68px);
	}
}

/* Reference-style header and hero refresh */
.site-header {
	position: relative;
	padding: 0;
	margin-bottom: -3.15rem;
	z-index: 20;
	background: linear-gradient(180deg, #d8e9f3 0%, #dbeaf2 54%, #c7dceb 100%);
	backdrop-filter: none;
}

.home .site-content,
.home .site-main--landing {
	width: 100%;
	max-width: none;
}

.home .site-main--landing {
	padding-top: 0;
	padding-bottom: 0;
}

.home .site-main--landing .agency-hero {
	padding-top: 9.5rem;
	margin-top: 0;
}

.site-header {
	padding: 0 0 1.15rem;
	background: linear-gradient(180deg, #d8e9f3 0%, #dbeaf2 54%, #c7dceb 100%);
	backdrop-filter: none;
}

.site-header.is-scrolled {
	padding: 0 0 1rem;
	background: linear-gradient(180deg, #d8e9f3 0%, #dbeaf2 54%, #c7dceb 100%);
	box-shadow: none;
}

.site-header__announcement {
	padding: 0.85rem 1rem;
	background: linear-gradient(90deg, #f0cf67, #f8b81f);
	text-align: center;
}

.site-header__announcement p {
	margin: 0;
	color: #1f1f1f;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
}

.site-header__inner {
	width: min(100% - 2rem, 920px);
	margin-top: 0;
	padding: 0.5rem 0.55rem 0.5rem 1.1rem;
	border: 1px solid rgba(18, 25, 38, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.site-branding {
	gap: 0.7rem;
}

.site-branding__text {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.site-title,
.site-title a {
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: -0.04em;
}

.site-description {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(18, 25, 38, 0.88);
}

.main-navigation ul {
	gap: 0.2rem;
}

.main-navigation a {
	min-height: 38px;
	padding: 0.45rem 0.8rem;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.main-navigation a::after {
	display: none;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	background: rgba(18, 25, 38, 0.06);
	color: #111;
	transform: none;
}

.header-cta {
	padding: 0.85rem 1.35rem;
	background: #0a0a0a;
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.site-header {
		margin-bottom: -2.6rem;
	}

	.site-header__announcement {
		padding: 0.7rem 0.9rem;
	}

	.site-header__announcement p {
		font-size: 0.84rem;
	}

	.site-header__inner {
		width: min(100% - 1rem, 920px);
		padding: 0.75rem 0.9rem;
		border-radius: 28px;
	}

	.site-branding__text {
		display: block;
	}

	.site-description {
		font-size: 0.8rem;
		margin-top: 0.1rem;
	}

	.main-navigation,
	.site-header__cta {
		background: transparent;
	}

	.main-navigation a {
		border-radius: 14px;
	}

	.header-cta {
		width: 100%;
	}

}

@media (max-width: 640px) {
	.site-header {
		margin-bottom: -2rem;
	}

	.site-header__announcement {
		display: none;
	}

	.site-header__inner {
		margin-top: 0.75rem;
	}

}

body.home {
	background: #fff;
}

.home .site-content {
	width: 100%;
	max-width: none;
	margin: 0;
}

.home .site-header {
	position: relative;
	top: 0;
	margin-bottom: -4.8rem;
	padding: 0 0 0.35rem;
	background: transparent;
	z-index: 30;
}

.home .site-header__announcement {
	padding: 0.82rem 1rem;
	background: linear-gradient(90deg, #e8cd67, #f8bb22);
}

.home .site-header__announcement p {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
}

.home .site-header__inner {
	width: min(100% - 2rem, 820px);
	margin-top: 0.6rem;
	padding: 0.45rem 0.5rem 0.45rem 1.1rem;
	grid-template-columns: auto 1fr auto;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.home .site-branding__text {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.home .site-title,
.home .site-title a {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.04em;
}

.home .site-description {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(18, 25, 38, 0.86);
}

.home .main-navigation {
	justify-self: stretch;
}

.home .main-navigation > div,
.home .main-navigation > ul,
.home .main-navigation .menu {
	width: 100%;
	justify-content: center;
}

.home .main-navigation ul {
	gap: 0.15rem;
}

.home .main-navigation a {
	min-height: 36px;
	padding: 0.45rem 0.72rem;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1d1d1d;
}

.home .main-navigation a::after {
	display: none;
}

.home .main-navigation a:hover,
.home .main-navigation .current-menu-item > a,
.home .main-navigation .current-menu-ancestor > a {
	background: rgba(18, 25, 38, 0.06);
	color: #111;
	transform: none;
	box-shadow: none;
}

.home .site-header__cta {
	justify-self: end;
}

.home .header-cta {
	padding: 0.82rem 1.5rem;
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body:not(.home) .site-header {
	position: relative;
	top: 0;
	margin-bottom: -4.8rem;
	padding: 0 0 0.35rem;
	background: transparent;
	z-index: 30;
}

body:not(.home) .site-content {
	padding-top: 4.8rem;
}

body:not(.home) .site-header__announcement {
	padding: 0.82rem 1rem;
	background: linear-gradient(90deg, #e8cd67, #f8bb22);
}

body:not(.home) .site-header__announcement p {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
}

body:not(.home) .site-header__inner {
	width: min(100% - 2rem, 820px);
	margin-top: 0.6rem;
	padding: 0.45rem 0.5rem 0.45rem 1.1rem;
	grid-template-columns: auto 1fr auto;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body:not(.home) .site-branding__text {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

body:not(.home) .site-title,
body:not(.home) .site-title a {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.04em;
}

body:not(.home) .site-description {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(18, 25, 38, 0.86);
}

body:not(.home) .main-navigation {
	justify-self: stretch;
}

body:not(.home) .main-navigation > div,
body:not(.home) .main-navigation > ul,
body:not(.home) .main-navigation .menu {
	width: 100%;
	justify-content: center;
}

body:not(.home) .main-navigation ul {
	gap: 0.15rem;
}

body:not(.home) .main-navigation a {
	min-height: 36px;
	padding: 0.45rem 0.72rem;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1d1d1d;
}

body:not(.home) .main-navigation a::after {
	display: none;
}

body:not(.home) .main-navigation a:hover,
body:not(.home) .main-navigation .current-menu-item > a,
body:not(.home) .main-navigation .current-menu-ancestor > a {
	background: rgba(18, 25, 38, 0.06);
	color: #111;
	transform: none;
	box-shadow: none;
}

body:not(.home) .site-header__cta {
	justify-self: end;
}

body:not(.home) .header-cta {
	padding: 0.82rem 1.5rem;
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home .site-main--landing {
	padding: 0;
	background:
		radial-gradient(circle at top left, rgba(206, 229, 255, 0.85), transparent 34%),
		linear-gradient(180deg, #f4f8ff 0%, #eef5fb 56%, #ffffff 56%, #ffffff 100%);
}

.agency-hero {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 5.4rem 1.5rem 5rem;
	background:
		radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.75), transparent 18%),
		radial-gradient(circle at 86% 24%, rgba(41, 112, 255, 0.14), transparent 20%),
		linear-gradient(180deg, #edf5ff 0%, #e6f0fb 52%, #f7fbff 100%);
}

.agency-hero__shell {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 2rem;
	align-items: center;
	max-width: 1220px;
	margin: 0 auto;
}

.agency-hero__shell::before {
	content: "";
	position: absolute;
	inset: auto auto -4rem -3rem;
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(39, 111, 255, 0.14), transparent 68%);
}

.agency-hero__copy,
.agency-hero__visual {
	position: relative;
	z-index: 1;
}

.agency-hero__copy {
	max-width: 620px;
}

.agency-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.85rem;
	margin: 0 0 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(20, 92, 255, 0.08);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1f57c4;
}

.agency-hero__title {
	max-width: 10.5ch;
	margin: 0;
	font-size: clamp(3.2rem, 6vw, 5.6rem);
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: -0.05em;
	color: #0d1626;
}

.agency-hero__text {
	max-width: 35rem;
	margin: 1.15rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(13, 22, 38, 0.74);
}

.agency-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.agency-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.9rem 1.25rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.agency-hero__button:hover {
	transform: translateY(-1px);
}

.agency-hero__button--primary {
	background: linear-gradient(135deg, #1760ff, #4d89ff);
	color: #fff;
	box-shadow: 0 18px 36px rgba(23, 96, 255, 0.24);
}

.agency-hero__button--secondary {
	border: 1px solid rgba(13, 22, 38, 0.12);
	background: rgba(255, 255, 255, 0.72);
	color: #13233b;
}

.agency-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	padding: 0;
	margin: 1.4rem 0 0;
	list-style: none;
}

.agency-hero__points li {
	padding: 0.62rem 0.85rem;
	border: 1px solid rgba(13, 22, 38, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.56);
	font-family: var(--font-body);
	font-size: 0.84rem;
	font-weight: 600;
	color: #13233b;
}

.agency-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.agency-hero__stat {
	padding: 1rem;
	border-left: 1px solid rgba(13, 22, 38, 0.12);
	background: transparent;
}

.agency-hero__stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	color: #101d31;
}

.agency-hero__stat span {
	display: block;
	margin-top: 0.35rem;
	font-family: var(--font-body);
	font-size: 0.8rem;
	line-height: 1.55;
	color: rgba(16, 29, 49, 0.66);
}

.agency-hero__visual {
	display: grid;
	gap: 1rem;
	padding-left: 1rem;
}

.agency-hero__card {
	border-radius: 0;
}

.agency-hero__card--main {
	padding: 0 0 1.6rem;
	background: transparent;
	box-shadow: none;
	color: #12233c;
	border-bottom: 1px solid rgba(18, 35, 60, 0.12);
}

.agency-hero__card-kicker {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2b61c7;
}

.agency-hero__card--main h2 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	font-weight: 600;
	line-height: 1;
	color: #10213a;
}

.agency-hero__steps {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 1.4rem 0 0;
	list-style: none;
	counter-reset: hero-steps;
}

.agency-hero__steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: center;
	font-family: var(--font-body);
	font-size: 0.92rem;
	line-height: 1.5;
	color: rgba(16, 33, 58, 0.74);
}

.agency-hero__steps li::before {
	counter-increment: hero-steps;
	content: "0" counter(hero-steps);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(23, 96, 255, 0.08);
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	color: #1b56c4;
}

.agency-hero__card--floating {
	max-width: 240px;
	padding: 0.9rem 0 0.9rem 1.2rem;
	margin-left: auto;
	background: transparent;
	border-left: 2px solid rgba(23, 96, 255, 0.22);
	box-shadow: none;
}

.agency-hero__mini-label {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.58);
}

.agency-hero__mini-value {
	margin: 0.45rem 0 0;
	font-family: var(--font-display);
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1;
	color: #0f1d34;
}

.agency-hero__mini-text {
	margin: 0.45rem 0 0;
	font-family: var(--font-body);
	font-size: 0.84rem;
	line-height: 1.6;
	color: rgba(15, 23, 42, 0.66);
}

.agency-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.agency-hero__proof span {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(15, 23, 42, 0.06);
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #17345f;
}

.agency-hero__proof svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.agency-hero__socials {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	z-index: 3;
}

.agency-hero__socials-label {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(19, 35, 59, 0.58);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.agency-hero__social-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.agency-hero__social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.68);
	color: #17345f;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	overflow: visible;
}

.agency-hero__social-list a:hover {
	transform: translateY(-1px);
	background: #1760ff;
	color: #fff;
}

.agency-hero__social-list a[aria-label="Instagram"] {
	color: #e1306c;
}

.agency-hero__social-list a[aria-label="LinkedIn"] {
	color: #0a66c2;
}

.agency-hero__social-list a[aria-label="Facebook"] {
	color: #1877f2;
}

.agency-hero__social-list a[aria-label="WhatsApp"] {
	color: #25d366;
}

.agency-hero__social-list a[aria-label="TikTok"] {
	color: #111111;
}

.agency-hero__social-list a[aria-label="Email"] {
	color: #ea4335;
}

.agency-hero__social-list svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
	overflow: visible;
}

@media (max-width: 991px) {
	.home .site-header {
		margin-bottom: -3.3rem;
	}

	.home .site-header__inner {
		width: min(100% - 1rem, 950px);
		margin-top: 0.5rem;
		padding: 0.7rem 0.85rem;
		border-radius: 28px;
	}

	.home .site-branding__text {
		display: block;
	}

	.home .site-description {
		margin-top: 0.1rem;
	}

	.home .header-cta {
		width: 100%;
	}

	body:not(.home) .site-header {
		margin-bottom: -3.3rem;
	}

	body:not(.home) .site-content {
		padding-top: 3.3rem;
	}

	body:not(.home) .site-header__inner {
		width: min(100% - 1rem, 950px);
		margin-top: 0.5rem;
		padding: 0.7rem 0.85rem;
		border-radius: 28px;
	}

	body:not(.home) .site-branding__text {
		display: block;
	}

	body:not(.home) .site-description {
		margin-top: 0.1rem;
	}

	body:not(.home) .header-cta {
		width: 100%;
	}

	.agency-hero {
		padding-top: 4.75rem;
		padding-bottom: 3rem;
	}

	.agency-hero__shell {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.agency-hero__copy,
	.agency-hero__title,
	.agency-hero__text {
		max-width: none;
	}

	.agency-hero__visual {
		padding-left: 0;
	}

	.agency-hero__stats {
		grid-template-columns: 1fr;
	}

	.agency-hero__socials {
		right: 0.9rem;
	}

}

@media (max-width: 640px) {
	.home .site-header__announcement {
		display: block;
	}

	.home .site-header__announcement p {
		font-size: 0.78rem;
	}

	.home .site-header {
		margin-bottom: -2.8rem;
	}

	.home .site-header__inner {
		margin-top: 0.4rem;
	}

	body:not(.home) .site-header__announcement {
		display: block;
	}

	body:not(.home) .site-header__announcement p {
		font-size: 0.78rem;
	}

	body:not(.home) .site-header {
		margin-bottom: -2.8rem;
	}

	body:not(.home) .site-content {
		padding-top: 2.8rem;
	}

	body:not(.home) .site-header__inner {
		margin-top: 0.4rem;
	}

	.agency-hero {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding-top: 4.1rem;
		padding-bottom: 2rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.agency-hero__shell {
		gap: 1.2rem;
	}

	.agency-hero__title {
		font-size: clamp(2.5rem, 12vw, 3.5rem);
	}

	.agency-hero__text {
		font-size: 0.94rem;
	}

	.agency-hero__actions {
		flex-direction: column;
	}

	.agency-hero__button {
		width: 100%;
	}

	.agency-hero__points {
		flex-direction: column;
	}

	.agency-hero__points li {
		width: 100%;
	}

	.agency-hero__card--main {
		padding: 1.35rem;
	}

	.agency-hero__card--main h2 {
		max-width: none;
		font-size: clamp(1.7rem, 8vw, 2.2rem);
	}

	.agency-hero__card--floating {
		max-width: none;
		margin-left: 0;
		padding-left: 1rem;
	}

	.agency-hero__socials {
		position: static;
		transform: none;
		flex-direction: row;
		justify-content: flex-start;
		margin-top: 1.2rem;
	}

	.agency-hero__socials-label {
		writing-mode: initial;
		transform: none;
	}

	.agency-hero__social-list {
		flex-direction: row;
	}

}

.about-overview {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 2.5rem 0 5rem;
}

.about-overview__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 3rem;
	align-items: center;
}

.about-overview__content {
	max-width: 680px;
}

.about-overview__eyebrow {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.about-overview__title {
	max-width: 11ch;
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 4.1rem);
	font-weight: 700;
	line-height: 0.94;
	letter-spacing: -0.04em;
	color: #10213a;
}

.about-overview__text {
	max-width: 38rem;
	margin: 1.35rem 0 0;
	font-family: var(--font-body);
	font-size: 1.08rem;
	line-height: 1.95;
	letter-spacing: 0.01em;
	color: rgba(16, 33, 58, 0.76);
}

.about-overview__text-lead {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--font-display);
	font-weight: 600;
	color: #10213a;
}

.about-overview__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(16, 33, 58, 0.1);
}

.about-overview__stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: #10213a;
}

.about-overview__stat span {
	display: block;
	margin-top: 0.45rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(16, 33, 58, 0.68);
}

.about-overview__media {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 500px;
	padding: 0;
	border-radius: 36px;
	background:
		radial-gradient(circle at top right, rgba(255, 214, 130, 0.28), transparent 24%),
		linear-gradient(160deg, #f5f8ff, #dce7fb);
	box-shadow: 0 30px 60px rgba(14, 23, 38, 0.1);
	overflow: hidden;
}

.about-overview__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6.5rem;
	height: 6.5rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
}

.about-overview__image {
	overflow: hidden;
	height: 100%;
	border-radius: 36px;
	background: rgba(255, 255, 255, 0.08);
}

.about-overview__image-tag {
	display: block;
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.about-overview__logo--fallback {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
}

.about-overview__caption {
	position: absolute;
	left: 1.35rem;
	right: 1.35rem;
	bottom: 1.35rem;
	max-width: 18rem;
	padding: 1rem 1.05rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-overview__caption p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(28, 44, 68, 0.82);
}

@media (max-width: 991px) {
	.about-overview {
		padding: 1.2rem 0 3.5rem;
	}

	.about-overview__shell {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-overview__content,
	.about-overview__title,
	.about-overview__text {
		max-width: none;
	}

	.about-overview__stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.about-overview {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.about-overview__media {
		min-height: 320px;
		padding: 1.1rem;
	}

	.about-overview__image-tag {
		height: 220px;
	}
}

.partners-slider {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 0.8rem 0 4rem;
}

.partners-slider__header {
	max-width: 760px;
	margin-bottom: 1rem;
}

.partners-slider__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.partners-slider__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.6vw, 3.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.partners-slider__text {
	margin: 0.9rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.partners-slider__viewport {
	position: relative;
	overflow: hidden;
	padding: 0.45rem 0;
}

.partners-slider__track {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	width: max-content;
	animation: partners-scroll 28s linear infinite;
}

.partners-slider__item {
	flex: 0 0 auto;
}

.partners-slider__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 185px;
	height: 92px;
	padding: 0.9rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.partners-slider__logo {
	display: block;
	width: 100%;
	max-height: 56px;
	object-fit: contain;
	filter: saturate(0.9) contrast(1.02);
}

@keyframes partners-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 991px) {
	.partners-slider {
		padding-bottom: 3.5rem;
	}

	.partners-slider__link {
		width: 160px;
		height: 82px;
	}
}

@media (max-width: 640px) {
	.partners-slider {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.partners-slider__link {
		width: 140px;
		height: 74px;
		border-radius: 14px;
	}

	.partners-slider__logo {
		max-height: 44px;
	}
}

.services-overview {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 4.5rem 0 5.5rem;
	background:
		radial-gradient(circle at top right, rgba(255, 206, 104, 0.22), transparent 18%),
		radial-gradient(circle at left center, rgba(76, 141, 255, 0.18), transparent 24%),
		linear-gradient(145deg, #0d1c35, #13294c 58%, #173867);
}

.services-overview__shell {
	width: min(100% - 2rem, 1280px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
	gap: 2.2rem;
	align-items: stretch;
}

.services-overview__intro {
	position: sticky;
	top: 6.5rem;
	height: 100%;
	padding: 2.6rem 2.2rem;
	border-radius: 30px;
	background:
		radial-gradient(circle at top left, rgba(255, 206, 104, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-overview__eyebrow {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffd36f;
}

.services-overview__title {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(2.2rem, 3.7vw, 3.9rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
}

.services-overview__text {
	max-width: 34rem;
	margin: 1.2rem 0 0;
	font-family: var(--font-body);
	font-size: 1.02rem;
	line-height: 1.85;
	color: rgba(223, 233, 255, 0.72);
}

.services-overview__meta {
	display: grid;
	gap: 0.95rem;
	margin-top: 1.9rem;
}

.services-overview__meta-item {
	padding: 1rem 1rem 1.05rem 1rem;
	border-left: 2px solid rgba(255, 211, 111, 0.42);
	border-radius: 0 18px 18px 0;
	background: linear-gradient(90deg, rgba(255, 211, 111, 0.08), rgba(255, 211, 111, 0));
}

.services-overview__meta-item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.96rem;
	font-weight: 600;
	color: #fff;
}

.services-overview__meta-item span {
	display: block;
	margin-top: 0.35rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(223, 233, 255, 0.68);
}

.services-overview__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.35rem;
	padding: 0.2rem 0;
}

.services-overview__card {
	position: relative;
	padding: 1.7rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(6px);
	box-shadow: 0 18px 36px rgba(7, 14, 28, 0.14);
}

.services-overview__card:nth-child(2),
.services-overview__card:nth-child(4) {
	transform: translateY(1.6rem);
}

.services-overview__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3rem;
	height: 2rem;
	padding: 0 0.75rem;
	border-radius: 999px;
	background: rgba(255, 211, 111, 0.14);
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffd36f;
}

.services-overview__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.8rem;
	height: 3.8rem;
	margin-top: 1.2rem;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255, 211, 111, 0.2), rgba(255, 211, 111, 0.08));
	color: #ffd36f;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.services-overview__icon svg {
	width: 1.7rem;
	height: 1.7rem;
}

.services-overview__card h3 {
	margin: 1.2rem 0 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}

.services-overview__card p {
	margin: 0.8rem 0 0;
	font-family: var(--font-body);
	font-size: 0.94rem;
	line-height: 1.75;
	color: rgba(223, 233, 255, 0.72);
}

.services-overview__card-note {
	padding-top: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(255, 230, 177, 0.84);
}

@media (max-width: 991px) {
	.services-overview {
		padding: 3.5rem 0 4rem;
	}

	.services-overview__shell {
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.services-overview__intro {
		position: static;
	}

	.services-overview__title,
	.services-overview__text {
		max-width: none;
	}

	.services-overview__card:nth-child(2),
	.services-overview__card:nth-child(4) {
		transform: none;
	}
}

@media (max-width: 640px) {
	.services-overview {
		padding: 3rem 0;
	}

	.services-overview__grid {
		grid-template-columns: 1fr;
		padding: 1rem;
	}

	.services-overview__card {
		padding: 1.3rem;
		border-radius: 24px;
	}

	.about-overview__stats {
		grid-template-columns: 1fr;
	}

	.about-overview__media,
	.about-overview__image-tag {
		min-height: 320px;
		height: 320px;
	}

	.about-overview__caption {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}
}

.ceo-note {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 4.5rem 0 5rem;
}

.ceo-note__shell {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
	padding: 2rem;
	border-radius: 34px;
	background:
		radial-gradient(circle at top left, rgba(255, 208, 120, 0.22), transparent 24%),
		linear-gradient(180deg, #fffdf8, #f5f8ff);
	box-shadow: 0 26px 54px rgba(16, 28, 44, 0.08);
}

.ceo-note__media {
	position: relative;
}

.ceo-note__media::after {
	content: "";
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	width: 7rem;
	height: 7rem;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 211, 111, 0.22), rgba(32, 88, 195, 0.18));
	z-index: 0;
}

.ceo-note__image,
.ceo-note__avatar {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 360px;
	border-radius: 28px;
	object-fit: cover;
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.ceo-note__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #163763, #255fcb);
	font-family: var(--font-display);
	font-size: 5rem;
	font-weight: 700;
	color: #fff;
}

.ceo-note__content {
	position: relative;
	padding: 0.4rem 0 0.4rem 1rem;
}

.ceo-note__eyebrow {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2058c3;
}

.ceo-note__quote-mark {
	position: absolute;
	top: -0.95rem;
	left: -0.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: linear-gradient(145deg, rgba(255, 211, 111, 0.22), rgba(255, 211, 111, 0.08));
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(227, 163, 19, 0.92);
	box-shadow: 0 10px 20px rgba(255, 211, 111, 0.2);
	pointer-events: none;
}

.ceo-note__title {
	position: relative;
	margin: 1rem 0 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.2vw, 3.3rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.ceo-note__quote {
	position: relative;
	margin: 1.35rem 0 0;
	padding-left: 1.2rem;
	border-left: 3px solid rgba(255, 211, 111, 0.7);
}

.ceo-note__quote p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.08rem;
	font-style: italic;
	line-height: 1.95;
	color: rgba(16, 33, 58, 0.82);
}

.ceo-note__author {
	margin-top: 1.5rem;
}

.ceo-note__author strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: #10213a;
}

.ceo-note__author span {
	display: block;
	margin-top: 0.25rem;
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: rgba(16, 33, 58, 0.64);
}

@media (max-width: 991px) {
	.ceo-note {
		padding: 3.5rem 0 4rem;
	}

	.ceo-note__shell {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.ceo-note__content {
		padding-left: 0;
	}

	.ceo-note__quote-mark {
		left: -0.1rem;
	}
}

@media (max-width: 640px) {
	.ceo-note {
		width: min(100% - 1rem, 1220px);
		padding: 3rem 0;
	}

	.ceo-note__image,
	.ceo-note__avatar {
		height: 300px;
	}

	.ceo-note__shell {
		border-radius: 28px;
		padding: 1.15rem;
	}

	.ceo-note__quote p {
		font-size: 1rem;
		line-height: 1.85;
	}
}

.reviews-slider {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 0 0 5rem;
}

.reviews-slider__shell {
	display: grid;
	gap: 1.8rem;
}

.reviews-slider__intro {
	max-width: 700px;
}

.reviews-slider__eyebrow {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2058c3;
}

.reviews-slider__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 3.6rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #10213a;
}

.reviews-slider__text {
	max-width: 38rem;
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.72);
}

.reviews-slider__viewport {
	position: relative;
	overflow: hidden;
}

.reviews-slider__track {
	display: flex;
	gap: 1.25rem;
	transition: transform 450ms ease;
	will-change: transform;
}

.reviews-slider__card {
	position: relative;
	flex: 0 0 calc((100% - 2.5rem) / 3);
	padding: 1.6rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.16), transparent 26%),
		linear-gradient(180deg, #ffffff, #f5f8ff);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.07);
}

.reviews-slider__quote-mark {
	position: absolute;
	top: 1rem;
	right: 1.1rem;
	font-family: var(--font-display);
	font-size: 3.5rem;
	line-height: 1;
	color: rgba(255, 211, 111, 0.5);
}

.reviews-slider__header {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding-right: 2rem;
}

.reviews-slider__media,
.reviews-slider__avatar {
	flex: 0 0 4rem;
	width: 4rem;
	height: 4rem;
	border-radius: 20px;
	overflow: hidden;
}

.reviews-slider__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews-slider__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #163763, #255fcb);
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 700;
	color: #fff;
}

.reviews-slider__identity h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 1.2;
	color: #10213a;
}

.reviews-slider__stars {
	display: inline-flex;
	gap: 0.2rem;
	margin-top: 0.4rem;
	font-size: 0.9rem;
	line-height: 1;
	color: #f4b400;
}

.reviews-slider__review {
	margin-top: 1.2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.reviews-slider__review p {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.96rem;
	line-height: 1.82;
	color: rgba(16, 33, 58, 0.74);
}

.reviews-slider__controls {
	display: flex;
	gap: 0.8rem;
	justify-content: flex-end;
	margin-top: 1.2rem;
}

.reviews-slider__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 0;
	border-radius: 999px;
	background: #10213a;
	font-size: 1rem;
	color: #fff;
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease;
}

.reviews-slider__control:hover {
	transform: translateY(-2px);
	background: #2058c3;
}

@media (max-width: 991px) {
	.reviews-slider {
		padding-bottom: 4rem;
	}

	.reviews-slider__card {
		flex-basis: calc((100% - 1.25rem) / 2);
	}
}

@media (max-width: 640px) {
	.reviews-slider {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.reviews-slider__card {
		flex-basis: 100%;
		padding: 1.3rem;
		border-radius: 24px;
	}

	.reviews-slider__controls {
		justify-content: flex-start;
	}
}

.faq-overview {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 0 0 5rem;
}

.faq-overview__shell {
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.faq-overview__intro {
	position: sticky;
	top: 6rem;
}

.faq-overview__eyebrow {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2058c3;
}

.faq-overview__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.6vw, 3.4rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #10213a;
}

.faq-overview__text {
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.72);
}

.faq-overview__list {
	display: grid;
	gap: 1rem;
}

.faq-overview__item {
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

.faq-overview__item[open] {
	box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
}

.faq-overview__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.35rem;
	list-style: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	color: #10213a;
}

.faq-overview__question-text {
	display: block;
}

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

.faq-overview__icon {
	position: relative;
	flex: 0 0 2.3rem;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.08);
}

.faq-overview__icon::before,
.faq-overview__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.8rem;
	height: 2px;
	background: #2058c3;
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.faq-overview__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-overview__item[open] .faq-overview__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-overview__answer {
	padding: 0 1.35rem 1.25rem;
}

.faq-overview__answer-inner {
	padding-top: 0.15rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
	font-family: var(--font-body);
	font-size: 0.96rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.74);
}

.faq-overview__answer-inner p {
	margin: 0.95rem 0 0;
}

.faq-overview__answer-inner p:first-child {
	margin-top: 1rem;
}

@media (max-width: 991px) {
	.faq-overview {
		padding-bottom: 4rem;
	}

	.faq-overview__shell {
		grid-template-columns: 1fr;
	}

	.faq-overview__intro {
		position: static;
	}
}

@media (max-width: 640px) {
	.faq-overview {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.faq-overview__question {
		padding: 1.05rem 1rem;
		font-size: 0.98rem;
	}

	.faq-overview__answer {
		padding: 0 1rem 1rem;
	}
}

.guest-posts {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 2rem 0 5rem;
}

.guest-posts__shell {
	display: grid;
	gap: 1.8rem;
}

.guest-posts__intro {
	max-width: 760px;
}

.guest-posts__eyebrow {
	margin: 0 0 0.9rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-posts__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 3.5rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #10213a;
}

.guest-posts__text {
	max-width: 40rem;
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.72);
}

.guest-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.guest-posts__card {
	display: grid;
	align-content: start;
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.guest-posts__image-link {
	display: block;
	margin: -0.2rem -0.2rem 1rem;
	border-radius: 22px;
	overflow: hidden;
}

.guest-posts__image {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.guest-posts__card:hover .guest-posts__image {
	transform: scale(1.03);
}

.guest-posts__meta {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-posts__card-title {
	margin: 0.75rem 0 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
	color: #10213a;
}

.guest-posts__card-title a {
	color: inherit;
}

.guest-posts__excerpt {
	margin: 0.8rem 0 0;
	font-family: var(--font-body);
	font-size: 0.95rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.guest-posts__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 1rem;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-posts__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1rem;
}

.guest-posts__actions .guest-posts__link {
	margin-top: 0;
	padding: 0.62rem 0.9rem;
	border-radius: 999px;
	border: 1px solid transparent;
}

.guest-posts__link--details {
	background: #10213a;
	color: #fff;
}

.guest-posts__link--inquiry {
	background: rgba(32, 88, 195, 0.08);
	border-color: rgba(32, 88, 195, 0.22);
	color: #2058c3;
}

.guest-posts__link:hover {
	color: #0b42b6;
}

.guest-posts__footer {
	display: flex;
	justify-content: center;
	margin-top: 0.4rem;
}

.guest-posts__archive-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
}

.guest-posts__empty {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	color: rgba(16, 33, 58, 0.64);
}

@media (max-width: 991px) {
	.guest-posts {
		padding-bottom: 4rem;
	}

	.guest-posts__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.guest-posts {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.guest-posts__grid {
		grid-template-columns: 1fr;
	}

	.guest-posts__card {
		padding: 1rem;
		border-radius: 24px;
	}

.guest-posts__image {
		height: 200px;
	}
}

.post-type-archive-guest_post .site-content,
.single-guest_post .site-content {
	display: block;
}

.site-main--guest-posts-archive,
.site-main--guest-post-single {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding-top: 1rem;
	padding-bottom: 4rem;
}

.guest-post-archive__header {
	max-width: 760px;
	margin-bottom: 1.8rem;
}

.guest-post-archive__eyebrow {
	margin: 0 0 0.8rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-archive__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 3.9vw, 3.4rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.guest-post-archive__description {
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.guest-post-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.guest-post-archive__card {
	display: grid;
	align-content: start;
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.guest-post-archive__image-link {
	display: block;
	margin: -0.2rem -0.2rem 1rem;
	border-radius: 22px;
	overflow: hidden;
}

.guest-post-archive__image {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.guest-post-archive__card:hover .guest-post-archive__image {
	transform: scale(1.03);
}

.guest-post-archive__meta {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-archive__card-title {
	margin: 0.75rem 0 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
}

.guest-post-archive__card-title a {
	color: #10213a;
}

.guest-post-archive__excerpt {
	margin: 0.8rem 0 0;
	font-family: var(--font-body);
	font-size: 0.95rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.guest-post-archive__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.guest-post-archive__details,
.guest-post-archive__visit,
.guest-post-archive__inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.62rem 0.9rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.guest-post-archive__details {
	background: #10213a;
	color: #fff;
}

.guest-post-archive__visit {
	background: rgba(32, 88, 195, 0.08);
	color: #2058c3;
}

.guest-post-archive__inquiry {
	background: rgba(32, 88, 195, 0.08);
	color: #2058c3;
}

.guest-post-archive__pagination {
	margin-top: 2rem;
}

.guest-post-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.guest-post-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding: 0 0.7rem;
	border: 1px solid rgba(16, 33, 58, 0.12);
	border-radius: 999px;
	font-size: 0.86rem;
	color: #10213a;
}

.guest-post-archive__pagination .page-numbers.current {
	background: #10213a;
	border-color: #10213a;
	color: #fff;
}

.guest-post-archive__empty {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	color: rgba(16, 33, 58, 0.64);
}

.guest-post-single__shell {
	padding: 1.6rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.guest-post-single__back {
	margin: 0;
}

.guest-post-single__back a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.7rem 0.4rem 0.45rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.08);
	border: 1px solid rgba(32, 88, 195, 0.16);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guest-post-single__back-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.12);
	overflow: visible;
	line-height: 0;
	transition: transform 180ms ease, background-color 180ms ease;
}

.guest-post-single__back-icon svg {
	width: 0.9rem;
	height: 0.9rem;
	display: block;
	overflow: visible;
}

.guest-post-single__back a:hover,
.guest-post-single__back a:focus-visible {
	background: #2058c3;
	border-color: #2058c3;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(32, 88, 195, 0.2);
}

.guest-post-single__back a:hover .guest-post-single__back-icon,
.guest-post-single__back a:focus-visible .guest-post-single__back-icon {
	background: rgba(255, 255, 255, 0.22);
	transform: translateX(-2px);
}

.guest-post-single__back a:focus-visible {
	outline: 0;
}

.guest-post-single__header {
	margin-top: 1rem;
}

.guest-post-single__meta {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-single__title {
	margin: 0.75rem 0 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.9vw, 3.3rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.guest-post-single__notice {
	margin-top: 1rem;
	padding: 0.75rem 0.95rem;
	border-radius: 14px;
	font-size: 0.92rem;
	font-weight: 600;
}

.guest-post-single__notice--success {
	background: rgba(22, 163, 74, 0.12);
	border: 1px solid rgba(22, 163, 74, 0.24);
	color: #166534;
}

.guest-post-single__notice--error {
	background: rgba(220, 38, 38, 0.1);
	border: 1px solid rgba(220, 38, 38, 0.24);
	color: #991b1b;
}

.guest-post-single__media {
	margin: 1.4rem 0 0;
	border-radius: 26px;
	overflow: hidden;
}

.guest-post-single__image {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.guest-post-single__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.3rem;
}

.guest-post-single__highlight-item {
	display: grid;
	gap: 0.45rem;
	padding: 0.9rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
}

.guest-post-single__highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.12);
	color: #2058c3;
	overflow: visible;
	line-height: 0;
}

.guest-post-single__highlight-icon svg {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
	overflow: visible;
}

.guest-post-single__highlight-label {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-single__highlight-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: #10213a;
}

.guest-post-single__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.guest-post-single__description {
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
}

.guest-post-single__description > :first-child {
	margin-top: 0;
}

.guest-post-single__description > :last-child {
	margin-bottom: 0;
}

.guest-post-single__excerpt {
	margin-top: 0;
	font-size: 1.02rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.74);
}

.guest-post-single__notes {
	margin-top: 1.1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.guest-post-single__notes h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: #10213a;
}

.guest-post-single__notes p {
	margin: 0.7rem 0 0;
	font-size: 0.95rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.74);
}

.guest-post-single__sidebar {
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
}

.guest-post-single__sidebar-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: #10213a;
}

.guest-post-single__info-list {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.guest-post-single__info-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(16, 33, 58, 0.08);
}

.guest-post-single__info-list strong {
	position: relative;
	padding-left: 0.95rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-single__info-list strong::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.42rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: #2058c3;
}

.guest-post-single__info-list span {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.1);
	font-size: 0.95rem;
	font-weight: 600;
	color: #10213a;
	word-break: break-word;
	text-align: right;
}

.guest-post-single__info-list a {
	display: inline;
	padding: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.95rem;
	font-weight: 600;
	color: #2058c3;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	word-break: break-word;
	text-align: right;
	transition: color 160ms ease, text-decoration-color 160ms ease;
}

.guest-post-single__info-list a:hover,
.guest-post-single__info-list a:focus-visible {
	color: #0b42b6;
	text-decoration-color: currentColor;
}

.guest-post-single__info-list li:nth-child(4n + 1) strong::before {
	background: #2058c3;
}

.guest-post-single__info-list li:nth-child(4n + 1) span {
	background: rgba(32, 88, 195, 0.12);
	color: #123f93;
}

.guest-post-single__info-list li:nth-child(4n + 2) strong::before {
	background: #0ea5a0;
}

.guest-post-single__info-list li:nth-child(4n + 2) span {
	background: rgba(14, 165, 160, 0.14);
	color: #0c6b68;
}

.guest-post-single__info-list li:nth-child(4n + 3) strong::before {
	background: #f59e0b;
}

.guest-post-single__info-list li:nth-child(4n + 3) span {
	background: rgba(245, 158, 11, 0.16);
	color: #9a5d00;
}

.guest-post-single__info-list li:nth-child(4n + 4) strong::before {
	background: #8b5cf6;
}

.guest-post-single__info-list li:nth-child(4n + 4) span {
	background: rgba(139, 92, 246, 0.16);
	color: #5d36b0;
}

.guest-post-single__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	background: #10213a;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.guest-post-single__inquiry-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 0.7rem;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(32, 88, 195, 0.26);
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.08);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #2058c3;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.guest-post-single__inquiry-trigger:hover {
	background: #2058c3;
	border-color: #2058c3;
	color: #fff;
	transform: translateY(-1px);
}

.guest-post-single__navigation {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.guest-post-single__nav-item a {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

body.guest-inquiry-open {
	overflow: hidden;
}

.guest-post-inquiry-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.guest-post-inquiry-modal[hidden] {
	display: none;
}

.guest-post-inquiry-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.55);
}

.guest-post-inquiry-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	padding: 1.25rem;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 28px 56px rgba(15, 23, 42, 0.24);
}

.guest-post-inquiry-modal__close {
	position: absolute;
	top: 0.6rem;
	right: 0.8rem;
	width: 2.2rem;
	height: 2.2rem;
	border: 0;
	border-radius: 999px;
	background: rgba(16, 33, 58, 0.08);
	font-size: 1.5rem;
	line-height: 1;
	color: #10213a;
	cursor: pointer;
}

.guest-post-inquiry-modal__title {
	margin: 0;
	padding-right: 2.2rem;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: #10213a;
}

.guest-post-inquiry-modal__subtitle {
	margin: 0.6rem 0 0;
	font-size: 0.95rem;
	color: rgba(16, 33, 58, 0.72);
}

.guest-post-inquiry-modal__form {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
}

.guest-post-inquiry-modal__form label {
	display: grid;
	gap: 0.35rem;
}

.guest-post-inquiry-modal__form label span {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2058c3;
}

.guest-post-inquiry-modal__form input,
.guest-post-inquiry-modal__form textarea {
	width: 100%;
	padding: 0.68rem 0.8rem;
	border: 1px solid rgba(16, 33, 58, 0.14);
	border-radius: 12px;
	background: #fff;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: #10213a;
}

.guest-post-inquiry-modal__form textarea {
	resize: vertical;
}

.guest-post-inquiry-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 0.4rem;
	padding: 0.7rem 1rem;
	border: 0;
	border-radius: 999px;
	background: #10213a;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
}

@media (max-width: 640px) {
	.guest-post-inquiry-modal {
		padding: 0.7rem;
	}

	.guest-post-inquiry-modal__dialog {
		padding: 1rem;
		border-radius: 20px;
	}
}

@media (max-width: 991px) {
	.guest-post-archive__grid {
		grid-template-columns: 1fr 1fr;
	}

	.guest-post-single__content {
		grid-template-columns: 1fr;
	}

	.guest-post-single__image {
		height: 320px;
	}

	.guest-post-single__highlights {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.site-main--guest-posts-archive,
	.site-main--guest-post-single {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.guest-post-archive__grid {
		grid-template-columns: 1fr;
	}

	.guest-post-archive__card,
	.guest-post-single__shell,
	.guest-post-single__description,
	.guest-post-single__sidebar {
		padding: 1rem;
		border-radius: 24px;
	}

	.guest-post-single__image {
		height: 240px;
	}

	.guest-post-single__highlights {
		grid-template-columns: 1fr;
	}

	.guest-post-single__navigation {
		flex-direction: column;
	}

	.guest-post-single__info-list li {
		flex-direction: column;
		align-items: flex-start;
	}

.guest-post-single__info-list span,
.guest-post-single__info-list a {
		text-align: left;
	}
}

.site-main--contact {
	grid-column: 1 / -1;
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 1rem 0 4rem;
}

.site-main--blog-archive,
.site-main--blog-single {
	grid-column: 1 / -1;
	width: min(100% - 2rem, 980px);
	margin: 0 auto;
	padding: 1rem 0 4rem;
}

.site-main--about-page {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0;
	padding: 0 0 4rem;
}

.site-main--services-page {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0;
	padding: 0 0 4rem;
}

.site-main--web-development {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0;
	padding: 0 0 4rem;
}

.web-dev-hero,
.web-dev-details,
.web-dev-process,
.web-dev-projects,
.web-dev-packages {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
}

.web-dev-hero {
	padding: 1.2rem 0 2.5rem;
}

.web-dev-hero__shell {
	padding: 2.1rem;
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.2), transparent 24%),
		radial-gradient(circle at left center, rgba(32, 88, 195, 0.14), transparent 24%),
		linear-gradient(145deg, #ffffff, #f4f8ff);
	border: 1px solid rgba(16, 33, 58, 0.08);
	box-shadow: 0 24px 46px rgba(15, 23, 42, 0.08);
}

.web-dev-hero__eyebrow,
.web-dev-projects__eyebrow,
.web-dev-packages__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.web-dev-hero__title {
	max-width: 16ch;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.2vw, 3.9rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #10213a;
}

.web-dev-hero__text {
	max-width: 45rem;
	margin: 1rem 0 0;
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.74);
}

.web-dev-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.web-dev-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.web-dev-hero__button--primary {
	background: #10213a;
	color: #fff;
}

.web-dev-hero__button--secondary {
	background: rgba(32, 88, 195, 0.08);
	color: #2058c3;
	border: 1px solid rgba(32, 88, 195, 0.2);
}

.web-dev-details {
	padding: 0 0 4.2rem;
}

.web-dev-details__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.web-dev-details__intro,
.web-dev-process__header {
	padding: 1.5rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.14), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.web-dev-details__eyebrow,
.web-dev-process__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.web-dev-details__title,
.web-dev-process__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.8vw, 3.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.web-dev-details__text,
.web-dev-process__text {
	margin: 0.9rem 0 0;
	font-size: 0.98rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.74);
}

.web-dev-details__grid,
.web-dev-process__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.web-dev-details__card,
.web-dev-process__step {
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 22px;
	background: #fff;
}

.web-dev-details__card h3,
.web-dev-process__step h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.2;
	color: #10213a;
}

.web-dev-details__card p,
.web-dev-process__step p {
	margin: 0.7rem 0 0;
	font-size: 0.94rem;
	line-height: 1.78;
	color: rgba(16, 33, 58, 0.72);
}

.web-dev-process {
	padding: 0 0 4.2rem;
}

.web-dev-process__header {
	max-width: 760px;
	margin-bottom: 1rem;
}

.web-dev-process__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(32, 88, 195, 0.08);
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #2058c3;
}

.web-dev-projects {
	padding: 0 0 4.2rem;
}

#home-web-projects {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	padding: 2.85rem 0 4.2rem;
	background: #fff;
}

#home-web-projects .web-dev-projects__shell {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
}

#home-web-projects .web-dev-projects__eyebrow {
	color: #2058c3;
}

#home-web-projects .web-dev-projects__card {
	background:
		radial-gradient(circle at top right, rgba(32, 88, 195, 0.08), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	border-color: rgba(32, 88, 195, 0.12);
}

#home-web-projects .web-dev-projects__link {
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
}

.web-dev-projects__header {
	max-width: 760px;
	margin-bottom: 1rem;
}

.web-dev-projects__title,
.web-dev-packages__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.8vw, 3.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.web-dev-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.web-dev-projects__card {
	padding: 1rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.web-dev-projects__media {
	border-radius: 14px;
	overflow: hidden;
}

.web-dev-projects__image {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.web-dev-projects__name {
	margin: 0.85rem 0 0;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.2;
	color: #10213a;
}

.web-dev-projects__desc {
	margin: 0.6rem 0 0;
	font-size: 0.95rem;
	line-height: 1.78;
	color: rgba(16, 33, 58, 0.72);
}

.web-dev-projects__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
	padding: 0.58rem 0.85rem;
	border-radius: 999px;
	background: #10213a;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.web-dev-projects__cta {
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
}

.web-dev-projects__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
}

.web-dev-projects__empty {
	margin: 0;
	font-size: 0.96rem;
	color: rgba(16, 33, 58, 0.64);
}

.web-dev-packages {
	padding: 0 0 2rem;
}

.web-dev-packages__header {
	max-width: 760px;
	margin-bottom: 1rem;
}

.web-dev-packages__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.web-dev-packages__card {
	padding: 1.15rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 22px;
	background: #fff;
}

.web-dev-packages__card--featured {
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.16), transparent 26%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.web-dev-packages__card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.2;
	color: #10213a;
}

.web-dev-packages__card p {
	margin: 0.75rem 0 0;
	font-size: 0.94rem;
	line-height: 1.78;
	color: rgba(16, 33, 58, 0.72);
}

.web-dev-packages__card ul {
	margin: 0.8rem 0 0;
	padding-left: 1rem;
	display: grid;
	gap: 0.35rem;
}

.web-dev-packages__card li {
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(16, 33, 58, 0.74);
}

.web-dev-packages__cta {
	display: flex;
	justify-content: center;
	margin-top: 1.1rem;
}

.web-dev-packages__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #1b64ff, #4d8dff);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
}

.services-page-hero {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 1.2rem 0 2.8rem;
}

.services-page-hero__shell {
	position: relative;
	padding: 2.2rem;
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.2), transparent 26%),
		radial-gradient(circle at left center, rgba(32, 88, 195, 0.14), transparent 24%),
		linear-gradient(145deg, #ffffff, #f4f8ff);
	border: 1px solid rgba(16, 33, 58, 0.08);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.services-page-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.services-page-hero__title {
	max-width: 16ch;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.4vw, 4rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #10213a;
}

.services-page-hero__text {
	max-width: 46rem;
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.74);
}

.services-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.services-page-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.services-page-hero__button--primary {
	background: #10213a;
	color: #fff;
}

.services-page-hero__button--secondary {
	background: rgba(32, 88, 195, 0.08);
	color: #2058c3;
	border: 1px solid rgba(32, 88, 195, 0.2);
}

.about-team {
	width: min(100% - 2rem, 1220px);
	margin: 0 auto;
	padding: 1rem 0 4.5rem;
}

.about-team__header {
	max-width: 760px;
	margin-bottom: 1.3rem;
}

.about-team__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.about-team__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 3.4rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.about-team__text {
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(16, 33, 58, 0.72);
}

.about-team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.about-team__card {
	position: relative;
	padding: 1.1rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(32, 88, 195, 0.14), transparent 24%),
		linear-gradient(180deg, #ffffff, #f8fbff);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.about-team__card::before {
	content: "";
	position: absolute;
	inset: auto 1rem 1rem auto;
	width: 5rem;
	height: 5rem;
	border-radius: 18px;
	background: radial-gradient(circle, rgba(255, 211, 111, 0.25), rgba(255, 211, 111, 0));
	pointer-events: none;
}

.about-team__media {
	border-radius: 16px;
	overflow: hidden;
}

.about-team__image {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.about-team__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 220px;
	border-radius: 16px;
	background: linear-gradient(160deg, #163763, #255fcb);
	font-family: var(--font-display);
	font-size: 3.2rem;
	font-weight: 700;
	color: #fff;
}

.about-team__name {
	margin: 0.9rem 0 0;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	color: #10213a;
}

.about-team__role {
	margin: 0.45rem 0 0;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.about-team__bio {
	margin: 0.7rem 0 0;
	font-family: var(--font-body);
	font-size: 0.95rem;
	line-height: 1.78;
	color: rgba(16, 33, 58, 0.72);
}

.about-team__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.9rem;
}

.about-team__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.08);
	color: #2058c3;
	border: 1px solid rgba(32, 88, 195, 0.16);
}

.about-team__socials a svg {
	width: 1rem;
	height: 1rem;
	display: block;
	overflow: visible;
}

.about-team__socials a[aria-label="Facebook"] {
	color: #1877f2;
	background: rgba(24, 119, 242, 0.12);
	border-color: rgba(24, 119, 242, 0.28);
}

.about-team__socials a[aria-label="WhatsApp"] {
	color: #25d366;
	background: rgba(37, 211, 102, 0.14);
	border-color: rgba(37, 211, 102, 0.3);
}

.about-team__socials a[aria-label="Email"] {
	color: #ea4335;
	background: rgba(234, 67, 53, 0.14);
	border-color: rgba(234, 67, 53, 0.3);
}

.about-team__socials a[aria-label="Facebook"]:hover {
	background: #1877f2;
	color: #fff;
}

.about-team__socials a[aria-label="WhatsApp"]:hover {
	background: #25d366;
	color: #fff;
}

.about-team__socials a[aria-label="Email"]:hover {
	background: #ea4335;
	color: #fff;
}

.about-team__empty {
	margin: 0;
	font-size: 0.96rem;
	color: rgba(16, 33, 58, 0.64);
}

.blog-archive__header {
	max-width: 760px;
	margin-bottom: 1.4rem;
}

.blog-archive__eyebrow {
	margin: 0 0 0.6rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.blog-archive__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.8vw, 3.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.blog-archive__text {
	margin: 0.9rem 0 0;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.blog-archive__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem;
}

.blog-archive__item {
	display: grid;
	align-content: start;
	padding: 1rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.12), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.blog-archive__item-media {
	display: block;
	margin: -0.2rem -0.2rem 0.95rem;
	border-radius: 16px;
	overflow: hidden;
}

.blog-archive__item-image {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.blog-archive__item:hover .blog-archive__item-image {
	transform: scale(1.03);
}

.blog-archive__item-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1.2;
}

.blog-archive__item-title a {
	color: #10213a;
}

.blog-archive__item-meta {
	margin-top: 0.45rem;
	font-size: 0.88rem;
	color: rgba(16, 33, 58, 0.62);
}

.blog-archive__item-excerpt {
	margin-top: 0.8rem;
	font-size: 0.98rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.74);
}

.blog-archive__item-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.8rem;
	padding: 0.62rem 0.9rem;
	border-radius: 999px;
	background: #10213a;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.blog-archive__pagination {
	margin-top: 1.4rem;
}

.blog-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.blog-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding: 0 0.7rem;
	border: 1px solid rgba(16, 33, 58, 0.12);
	border-radius: 999px;
	font-size: 0.86rem;
	color: #10213a;
}

.blog-archive__pagination .page-numbers.current {
	background: #10213a;
	border-color: #10213a;
	color: #fff;
}

.blog-single__header {
	max-width: 760px;
}

.blog-single__eyebrow {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.blog-single__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.blog-single__meta {
	margin-top: 0.7rem;
	font-size: 0.9rem;
	color: rgba(16, 33, 58, 0.62);
}

.blog-single__media {
	margin: 1.2rem 0 0;
	border-radius: 20px;
	overflow: hidden;
}

.blog-single__image {
	display: block;
	width: 100%;
	height: auto;
}

.blog-single__content {
	margin-top: 1.2rem;
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 18px;
	background: #fff;
}

.blog-single__content p {
	line-height: 1.9;
	color: rgba(16, 33, 58, 0.82);
}

.blog-single__navigation {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}

.blog-single__navigation a {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2058c3;
}

.blog-single__related {
	margin-top: 1.3rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.blog-single__related-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: #10213a;
}

.blog-single__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.blog-single__related-item {
	padding: 0.8rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 16px;
	background: #fff;
}

.blog-single__related-media {
	display: block;
	margin: -0.15rem -0.15rem 0.7rem;
	border-radius: 12px;
	overflow: hidden;
}

.blog-single__related-image {
	display: block;
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.blog-single__related-item h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.3;
}

.blog-single__related-item h3 a {
	color: #10213a;
}

.blog-single__related-item p {
	margin: 0.55rem 0 0;
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(16, 33, 58, 0.72);
}

.contact-page {
	display: grid;
	gap: 1.3rem;
}

.contact-page__hero {
	max-width: 820px;
}

.contact-page__eyebrow {
	margin: 0 0 0.7rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2058c3;
}

.contact-page__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4vw, 3.6rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #10213a;
}

.contact-page__subtitle {
	margin: 1rem 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(16, 33, 58, 0.72);
}

.contact-page__notice {
	padding: 0.78rem 0.95rem;
	border-radius: 14px;
	font-size: 0.92rem;
	font-weight: 600;
}

.contact-page__notice--success {
	background: rgba(22, 163, 74, 0.12);
	border: 1px solid rgba(22, 163, 74, 0.24);
	color: #166534;
}

.contact-page__notice--error {
	background: rgba(220, 38, 38, 0.1);
	border: 1px solid rgba(220, 38, 38, 0.24);
	color: #991b1b;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 1.2rem;
}

.contact-page__panel {
	padding: 1.2rem;
	border: 1px solid rgba(16, 33, 58, 0.08);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(255, 211, 111, 0.1), transparent 24%),
		linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.contact-page__panel h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: #10213a;
}

.contact-page__form {
	display: grid;
	gap: 0.8rem;
	margin-top: 0.9rem;
}

.contact-page__form label {
	display: grid;
	gap: 0.35rem;
}

.contact-page__form label span {
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2058c3;
}

.contact-page__form input,
.contact-page__form textarea {
	width: 100%;
	padding: 0.7rem 0.8rem;
	border: 1px solid rgba(16, 33, 58, 0.14);
	border-radius: 12px;
	background: #fff;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: #10213a;
}

.contact-page__form textarea {
	resize: vertical;
}

.contact-page__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 0.35rem;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 999px;
	background: #10213a;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
}

.contact-page__location,
.contact-page__social {
	margin-top: 0.95rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.contact-page__reach-list {
	display: grid;
	gap: 0.6rem;
	margin-top: 0.95rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.contact-page__reach-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #10213a;
}

.contact-page__reach-item:hover {
	color: #2058c3;
}

.contact-page__reach-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 999px;
	background: rgba(32, 88, 195, 0.1);
	color: #2058c3;
	line-height: 0;
	overflow: visible;
}

.contact-page__reach-icon svg {
	display: block;
	width: 0.9rem;
	height: 0.9rem;
	overflow: visible;
}

.contact-page__location h3,
.contact-page__social h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #2058c3;
}

.contact-page__location p {
	margin: 0.55rem 0 0;
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(16, 33, 58, 0.74);
}

.contact-page__location p strong {
	color: #10213a;
}

.contact-page__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 0.8rem;
}

.contact-page__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(16, 33, 58, 0.06);
	color: #10213a;
	border: 1px solid rgba(16, 33, 58, 0.1);
	line-height: 0;
	overflow: visible;
}

.contact-page__social-link svg {
	display: block;
	width: 1.15rem;
	height: 1.15rem;
	overflow: visible;
}

.contact-page__social-link:hover {
	background: rgba(32, 88, 195, 0.12);
	color: #2058c3;
}

.contact-page__panel--map {
	padding: 0;
	overflow: hidden;
}

.contact-page__panel--map iframe {
	display: block;
}

@media (max-width: 991px) {
	.contact-page__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.site-main--contact {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.site-main--blog-archive,
	.site-main--blog-single {
		width: min(100% - 1rem, 980px);
		padding-bottom: 3rem;
	}

	.about-team {
		width: min(100% - 1rem, 1220px);
		padding-bottom: 3rem;
	}

	.services-page-hero {
		width: min(100% - 1rem, 1220px);
	}

	.web-dev-hero,
	.web-dev-details,
	.web-dev-process,
	.web-dev-projects,
	.web-dev-packages {
		width: min(100% - 1rem, 1220px);
	}

	.services-page-hero__shell {
		padding: 1.25rem;
		border-radius: 24px;
	}

	.web-dev-hero__shell {
		padding: 1.25rem;
		border-radius: 24px;
	}

	.services-page-hero__title,
	.services-page-hero__text {
		max-width: none;
	}

	.web-dev-hero__title,
	.web-dev-hero__text {
		max-width: none;
	}

	.web-dev-details__shell {
		grid-template-columns: 1fr;
	}

	.about-team__grid {
		grid-template-columns: 1fr;
	}

	.web-dev-details__grid,
	.web-dev-process__grid,
	.web-dev-projects__grid,
	.web-dev-packages__grid {
		grid-template-columns: 1fr;
	}

	.contact-page__panel {
		padding: 1rem;
		border-radius: 20px;
	}

	.blog-archive__item,
	.blog-single__content {
		padding: 1rem;
	}

	.blog-archive__list {
		grid-template-columns: 1fr;
	}

	.blog-single__navigation {
		flex-direction: column;
	}

	.blog-single__related-grid {
		grid-template-columns: 1fr;
	}
}

/* Multi-level menu support */
.main-navigation .menu-item-has-children {
	position: relative;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1200;
	min-width: 220px;
	padding: 0.45rem;
	border: 1px solid rgba(16, 33, 58, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.main-navigation .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children.submenu-open > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.main-navigation .sub-menu li {
	width: 100%;
}

.main-navigation .sub-menu a {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	padding: 0.55rem 0.75rem;
	border-radius: 10px;
	font-size: 0.8rem;
	text-transform: none;
	letter-spacing: 0.01em;
}

.main-navigation .sub-menu a:hover {
	background: rgba(16, 33, 58, 0.08);
}

.main-navigation .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	padding-right: 0.12rem;
	font-size: 0.8rem;
}

.submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.9rem;
	height: 0.9rem;
	margin-left: -0.14rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}

.submenu-toggle__icon {
	display: inline-block;
	width: 0.34rem;
	height: 0.34rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 150ms ease;
}

.submenu-toggle[aria-expanded="true"] .submenu-toggle__icon,
.main-navigation .menu-item-has-children:hover > .submenu-toggle .submenu-toggle__icon {
	transform: rotate(-135deg) translateY(-1px);
}

@media (max-width: 991px) {
	.main-navigation .sub-menu {
		position: static;
		min-width: 0;
		margin-top: 0.2rem;
		padding: 0.2rem 0 0.1rem 0.75rem;
		border: 0;
		border-left: 2px solid rgba(32, 88, 195, 0.2);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		display: none;
	}

	.main-navigation .menu-item-has-children {
		display: block;
	}

	.main-navigation .menu-item-has-children > a {
		width: auto;
	}

	.main-navigation .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.submenu-toggle {
		width: 1.1rem;
		height: 1.1rem;
		margin-left: 0.12rem;
	}

	.submenu-toggle__icon {
		width: 0.4rem;
		height: 0.4rem;
	}
}
