:root {
	--primary-color: #086ad8;
	--secondary-color: #12b981;
	--dark-color: #061936;
	--text-color: #65758b;
	--light-bg: #f4f8fc;
	--border-color: #dde7f3;
	--white: #ffffff;
	--accent-color: #f6a923;
	--heading-font: "Inter", "Segoe UI", Arial, sans-serif;
	--body-font: "Inter", "Segoe UI", Arial, sans-serif;
	--shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
	--radius: 8px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text-color);
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 1.7;
	background: var(--white);
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

p {
	margin: 0 0 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 18px;
	color: var(--dark-color);
	font-family: var(--heading-font);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0;
}

h1 {
	font-size: 64px;
}

h2 {
	font-size: 44px;
}

h3 {
	font-size: 22px;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--dark-color);
	color: var(--white);
	z-index: 10000;
	border-radius: var(--radius);
}

.ts-container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.section {
	padding: 104px 0;
	position: relative;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0;
}

.section-label::before {
	content: "";
	width: 26px;
	height: 3px;
	border-radius: 999px;
	background: var(--secondary-color);
}

.section-heading {
	max-width: 620px;
	margin-bottom: 46px;
}

.section-heading.centered {
	margin-inline: auto;
	text-align: center;
}

.section-heading.centered .section-label {
	justify-content: center;
}

.ts-svg-icon {
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
}

.ts-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 24px;
	border-radius: var(--radius);
	background: var(--primary-color);
	color: var(--white);
	font-weight: 800;
	box-shadow: 0 12px 26px rgba(11, 107, 255, 0.26);
	border: 1px solid transparent;
}

.ts-button:hover,
.ts-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	color: var(--white);
	background: var(--dark-color);
	transform: translateY(-2px);
}

.ts-button-small {
	min-height: 46px;
	padding: 11px 18px;
}

.top-contact-bar {
	background: var(--dark-color);
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.top-contact-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 48px;
}

.top-contact-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.top-contact-list li,
.top-contact-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top-contact-list .ts-svg-icon {
	color: var(--secondary-color);
	font-size: 16px;
}

.top-social-links,
.footer-social-links,
.team-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-social-links a,
.footer-social-links a,
.team-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
}

.top-social-links a:hover,
.footer-social-links a:hover,
.team-social a:hover {
	background: var(--secondary-color);
	color: var(--white);
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.main-header.is-stuck {
	border-color: var(--border-color);
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.main-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--dark-color);
	font-weight: 900;
	font-size: 20px;
}

.site-logo img,
.custom-logo-link img,
.footer-logo img {
	width: auto;
	max-height: 54px;
}

.site-logo img {
	max-width: 170px;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	display: inline-flex;
	align-items: center;
	padding: 34px 0;
	color: var(--dark-color);
	font-weight: 800;
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a {
	color: var(--primary-color);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 370px;
	padding: 12px;
	margin: 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-navigation .sub-menu a {
	width: 100%;
	padding: 9px 10px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.35;
	white-space: nowrap;
}

.primary-navigation .sub-menu a:hover {
	background: var(--light-bg);
}

.submenu-toggle {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.mobile-menu-toggle span:not(.screen-reader-text) {
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: var(--dark-color);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
	position: relative;
	padding: 118px 0 112px;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 24%, rgba(18, 185, 129, 0.14), transparent 24%),
		radial-gradient(circle at 88% 16%, rgba(8, 106, 216, 0.16), transparent 28%),
		linear-gradient(135deg, rgba(8, 106, 216, 0.1), rgba(18, 185, 129, 0.07)),
		var(--light-bg);
}

.hero-shape {
	position: absolute;
	border: 2px dashed rgba(11, 107, 255, 0.18);
	border-radius: 50%;
	pointer-events: none;
}

.hero-shape-one {
	width: 220px;
	height: 220px;
	left: -80px;
	top: 80px;
}

.hero-shape-two {
	width: 160px;
	height: 160px;
	right: 8%;
	bottom: 50px;
	border-color: rgba(21, 185, 133, 0.22);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
	align-items: center;
	gap: 74px;
	z-index: 1;
}

.hero-content {
	max-width: 650px;
}

.hero-content h1 {
	margin-bottom: 24px;
}

.hero-subtitle {
	max-width: 560px;
	font-size: 18px;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 32px;
}

.video-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--dark-color);
	font-weight: 800;
}

.video-link span,
.play-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--white);
	color: var(--primary-color);
	box-shadow: var(--shadow-sm);
}

.hero-visual {
	position: relative;
	min-height: 480px;
}

.hero-main-image {
	width: 100%;
	min-height: 470px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 36px -24px -24px 48px;
	border: 2px solid rgba(11, 107, 255, 0.25);
	border-radius: var(--radius);
	z-index: -1;
}

.hero-photo-card {
	position: absolute;
	width: 238px;
	padding: 10px;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.hero-photo-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 6px;
}

.hero-photo-card strong {
	display: block;
	padding: 10px 6px 2px;
	color: var(--dark-color);
	font-size: 14px;
	line-height: 1.2;
}

.hero-photo-top {
	top: 24px;
	left: -46px;
}

.hero-photo-bottom {
	right: -36px;
	bottom: 36px;
}

.about-grid,
.why-grid,
.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
	align-items: center;
	gap: 70px;
}

.about-image-wrap {
	position: relative;
}

.about-image-wrap img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.experience-badge {
	position: absolute;
	right: -24px;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 220px;
	padding: 18px;
	border-radius: var(--radius);
	background: var(--dark-color);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.experience-badge strong {
	font-size: 36px;
	line-height: 1;
}

.experience-badge span {
	font-weight: 800;
	line-height: 1.25;
}

.about-content > p:not(.section-label),
.why-content > p {
	font-size: 17px;
}

.feature-card-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 30px 0;
}

.mini-feature-card,
.service-card,
.process-card,
.team-card,
.blog-card,
.post-card,
.entry-content-wrap,
.empty-state,
.not-found {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.mini-feature-card {
	padding: 24px;
}

.mini-feature-card span,
.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: var(--radius);
	background: rgba(21, 185, 133, 0.12);
	color: var(--secondary-color);
	font-size: 28px;
}

.mini-feature-card h3,
.service-card h3,
.process-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.mini-feature-card p,
.service-card p,
.process-card p {
	margin-bottom: 0;
}

.founder-signature {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 28px;
}

.signature-mark {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 900;
	font-style: italic;
}

.founder-signature strong,
.founder-signature span {
	display: block;
}

.founder-signature strong {
	color: var(--dark-color);
}

.why-section,
.process-section,
.blog-section {
	background: var(--light-bg);
}

.why-feature-list {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.why-feature {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
}

.why-feature > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(11, 107, 255, 0.1);
	color: var(--primary-color);
}

.why-feature h3 {
	margin-bottom: 4px;
	font-size: 18px;
}

.why-feature p {
	margin-bottom: 0;
}

.video-showcase {
	position: relative;
	min-height: 460px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--dark-color);
	box-shadow: var(--shadow-md);
}

.video-showcase img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.62;
}

.play-button {
	position: relative;
	width: 84px;
	height: 84px;
	font-size: 30px;
	z-index: 1;
}

.play-button::after {
	content: "";
	position: absolute;
	inset: -14px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.55);
	animation: ts-pulse 1.8s infinite;
}

.video-caption {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 1;
	color: var(--white);
}

.video-caption strong,
.video-caption span {
	display: block;
}

.video-caption strong {
	font-size: 22px;
	color: var(--white);
}

@keyframes ts-pulse {
	0% {
		transform: scale(0.92);
		opacity: 0.95;
	}
	100% {
		transform: scale(1.28);
		opacity: 0;
	}
}

.services-grid,
.process-grid,
.team-grid,
.blog-grid,
.devices-grid,
.testimonial-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.service-card {
	position: relative;
	padding: 34px 30px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
	content: "";
	position: absolute;
	right: -36px;
	bottom: -36px;
	width: 110px;
	height: 110px;
	border: 18px solid rgba(11, 107, 255, 0.08);
	border-radius: 50%;
}

.service-card:hover,
.process-card:hover,
.blog-card:hover,
.team-card:hover,
.post-card:hover {
	transform: translateY(-6px);
	border-color: rgba(11, 107, 255, 0.28);
	box-shadow: var(--shadow-md);
}

.service-card h3 a:hover,
.blog-card h3 a:hover,
.post-card h2 a:hover {
	color: var(--primary-color);
}

.card-link,
.read-more-link,
.outline-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--primary-color);
	font-weight: 800;
}

.card-link:hover,
.read-more-link:hover,
.outline-link:hover {
	color: var(--secondary-color);
}

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

.process-card {
	position: relative;
	padding: 30px;
	min-height: 230px;
}

.process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white);
	font-weight: 900;
	box-shadow: 0 12px 26px rgba(11, 107, 255, 0.25);
}

.stats-section {
	position: relative;
	padding: 78px 0;
	background: var(--dark-color);
	color: rgba(255, 255, 255, 0.78);
	overflow: hidden;
}

.stats-section::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
}

.stats-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.stat-card {
	text-align: center;
}

.stat-card strong {
	display: block;
	color: var(--white);
	font-size: 48px;
	line-height: 1;
	margin-bottom: 10px;
}

.devices-section {
	background: var(--light-bg);
}

.device-card {
	display: grid;
	place-items: center;
	min-height: 220px;
	padding: 34px 24px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.device-card:hover {
	transform: translateY(-6px);
	border-color: rgba(8, 106, 216, 0.28);
	box-shadow: var(--shadow-md);
}

.device-card img {
	width: 92px;
	height: 92px;
	object-fit: contain;
	margin-bottom: 18px;
}

.device-card h3 {
	margin-bottom: 0;
	font-size: 20px;
}

.brands-section {
	padding: 92px 0;
	background: var(--white);
}

.brands-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
	align-items: end;
	gap: 42px;
	margin-bottom: 38px;
}

.brands-heading h2 {
	margin-bottom: 0;
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.brand-card {
	display: grid;
	place-items: center;
	min-height: 108px;
	padding: 18px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--light-bg);
}

.brand-card img {
	max-width: 150px;
	max-height: 72px;
	object-fit: contain;
}

.testimonials-section {
	background: var(--light-bg);
}

.testimonial-card {
	padding: 30px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.testimonial-stars {
	margin-bottom: 16px;
	color: var(--accent-color);
	letter-spacing: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
}

.testimonial-author > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white);
	font-weight: 900;
	text-transform: uppercase;
}

.testimonial-author h3 {
	margin-bottom: 2px;
	font-size: 18px;
}

.testimonial-author small {
	color: var(--text-color);
}

.stat-card span {
	font-weight: 800;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.case-card {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--dark-color);
	box-shadow: var(--shadow-sm);
}

.case-card img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.case-card:hover img {
	transform: scale(1.06);
}

.case-overlay {
	position: absolute;
	inset: auto 18px 18px 18px;
	padding: 20px;
	border-radius: var(--radius);
	background: rgba(6, 25, 54, 0.88);
	color: var(--white);
	transform: translateY(8px);
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.case-card:hover .case-overlay {
	transform: translateY(0);
	background: var(--primary-color);
}

.case-overlay span {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.case-overlay h3 {
	color: var(--white);
	margin-bottom: 0;
	font-size: 20px;
}

.team-section {
	background:
		linear-gradient(180deg, var(--white) 0%, var(--white) 58%, var(--light-bg) 58%, var(--light-bg) 100%);
}

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

.team-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.team-card-body {
	padding: 24px;
	text-align: center;
}

.team-card-body h3 {
	margin-bottom: 6px;
}

.team-card-body p {
	margin-bottom: 18px;
}

.team-social {
	justify-content: center;
}

.team-social a {
	background: var(--light-bg);
	color: var(--dark-color);
}

.faq-grid {
	grid-template-columns: 0.85fr 1.15fr;
	align-items: start;
}

.faq-copy {
	position: sticky;
	top: 120px;
}

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

.faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	color: var(--dark-color);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-question strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--light-bg);
	color: var(--primary-color);
	flex: 0 0 auto;
}

.faq-answer {
	display: none;
	padding: 0 24px 22px;
}

.faq-item.is-active .faq-answer {
	display: block;
}

.faq-item.is-active .faq-question strong {
	background: var(--primary-color);
	color: var(--white);
}

.blog-card,
.post-card {
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-image img,
.post-card-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.blog-card-body,
.post-card-body {
	padding: 26px;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 16px;
	margin-bottom: 12px;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 800;
}

.blog-card h3,
.post-card h2 {
	font-size: 22px;
	margin-bottom: 12px;
}

.site-footer {
	background: var(--dark-color);
	color: rgba(255, 255, 255, 0.75);
}

.footer-main {
	padding: 90px 0 64px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
	gap: 46px;
}

.footer-brand p {
	margin: 22px 0;
	max-width: 330px;
}

.footer-column h3 {
	color: var(--white);
	font-size: 20px;
	margin-bottom: 22px;
}

.footer-menu,
.footer-contact ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li + li,
.footer-contact li + li {
	margin-top: 12px;
}

.footer-menu a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
	color: var(--secondary-color);
}

.footer-contact li,
.footer-contact a {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-contact .ts-svg-icon {
	margin-top: 4px;
	color: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 72px;
}

.footer-bottom p {
	margin-bottom: 0;
}

.footer-bottom nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.page-shell {
	padding: 90px 0;
	background: var(--light-bg);
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}

.content-column {
	display: grid;
	gap: 28px;
}

.sidebar-column {
	display: grid;
	gap: 24px;
}

.widget {
	padding: 24px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.widget-title {
	font-size: 20px;
}

.narrow-content {
	max-width: 900px;
}

.entry-content-wrap,
.empty-state,
.not-found {
	padding: 38px;
}

.entry-header h1,
.archive-header h1,
.not-found h1 {
	font-size: 46px;
}

.entry-featured-image {
	margin: 28px 0;
	border-radius: var(--radius);
	overflow: hidden;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content {
	overflow-wrap: break-word;
}

.entry-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.entry-content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.entry-content table {
	display: block;
	width: max-content;
	max-width: 100%;
	border-collapse: collapse;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.entry-content .wp-block-table table {
	display: table;
	width: max-content;
	min-width: 100%;
	max-width: none;
	overflow: visible;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--border-color);
}

.archive-header {
	max-width: 780px;
	margin-bottom: 38px;
}

.nav-links,
.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.nav-links a,
.nav-links span,
.page-links a,
.page-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--dark-color);
	font-weight: 800;
}

.nav-links .current,
.nav-links a:hover,
.page-links a:hover {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.search-form {
	display: flex;
	gap: 10px;
	margin: 24px 0;
}

.search-form label {
	flex: 1 1 auto;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
}

.search-submit {
	min-height: 48px;
	padding: 10px 18px;
	border: 0;
	border-radius: var(--radius);
	background: var(--primary-color);
	color: var(--white);
	font-weight: 800;
	cursor: pointer;
}

.full-width-page {
	background: var(--white);
}

.ng-page-hero {
	position: relative;
	padding: 98px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 24%, rgba(18, 185, 129, 0.14), transparent 26%),
		linear-gradient(135deg, rgba(8, 106, 216, 0.12), rgba(18, 185, 129, 0.08)),
		var(--light-bg);
}

.ng-page-hero::after {
	content: "";
	position: absolute;
	right: -60px;
	top: 44px;
	width: 210px;
	height: 210px;
	border: 2px dashed rgba(8, 106, 216, 0.22);
	border-radius: 50%;
}

.ng-page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
}

.ng-page-hero h1 {
	margin-bottom: 16px;
}

.ng-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
	color: var(--dark-color);
	font-weight: 800;
}

.ng-breadcrumb a {
	color: var(--primary-color);
}

.ng-content-section {
	padding: 90px 0;
}

.ng-content-section.alt {
	background: var(--light-bg);
}

.ng-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
	gap: 64px;
	align-items: center;
}

.ng-copy-card,
.ng-panel-card,
.ng-card,
.ng-contact-card {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.ng-copy-card,
.ng-panel-card {
	padding: 36px;
}

.ng-copy-card h2,
.ng-panel-card h2 {
	margin-bottom: 18px;
}

.ng-copy-card p:last-child,
.ng-panel-card p:last-child,
.ng-card p:last-child {
	margin-bottom: 0;
}

.ng-image-stack {
	position: relative;
}

.ng-image-stack img {
	width: 100%;
	min-height: 360px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.ng-image-stack::before {
	content: "";
	position: absolute;
	inset: 34px -18px -18px 48px;
	border: 2px solid rgba(8, 106, 216, 0.24);
	border-radius: var(--radius);
	z-index: -1;
}

.ng-card-grid,
.ng-contact-grid,
.ng-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ng-card {
	padding: 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ng-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.ng-card h3 {
	font-size: 20px;
}

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

.ng-service-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
}

.ng-service-list li::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-top: 10px;
	border-radius: 50%;
	background: var(--secondary-color);
	flex: 0 0 auto;
}

.ng-service-list li:last-child {
	border-bottom: 0;
}

.ng-cta-band {
	padding: 70px 0;
	background: var(--dark-color);
	color: rgba(255, 255, 255, 0.78);
}

.ng-cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
}

.ng-cta-inner h2 {
	color: var(--white);
	margin-bottom: 10px;
}

.ng-cta-inner p {
	margin-bottom: 0;
}

.ng-contact-card {
	padding: 28px;
}

.ng-contact-card .ts-svg-icon {
	margin-bottom: 18px;
	color: var(--primary-color);
	font-size: 34px;
}
