:root {
	--syntex-navy: #123057;
	--syntex-navy-deep: #0a1c33;
	--syntex-blue: #2b67b1;
	--syntex-blue-soft: #d8e6f8;
	--syntex-gold: #c7a35a;
	--syntex-gold-soft: #f3ead8;
	--syntex-text: #24344a;
	--syntex-text-soft: #66758b;
	--syntex-line: #d6e0eb;
	--syntex-panel: #ffffff;
	--syntex-panel-soft: #f5f8fc;
	--syntex-shadow: 0 18px 50px rgba(14, 35, 62, 0.08);
	--syntex-shadow-soft: 0 12px 32px rgba(14, 35, 62, 0.06);
	--syntex-radius-lg: 28px;
	--syntex-radius-md: 20px;
	--syntex-radius-sm: 14px;
	--syntex-transition: 0.28s ease;
}

html {
	scroll-behavior: smooth;
}

body.syntex-refresh {
	background:
		radial-gradient(circle at top left, rgba(216, 230, 248, 0.55), transparent 34%),
		linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
	color: var(--syntex-text);
	font-family: "Source Sans Pro", sans-serif;
	line-height: 1.72;
}

body.syntex-refresh h1,
body.syntex-refresh h2,
body.syntex-refresh h3,
body.syntex-refresh h4,
body.syntex-refresh h5,
body.syntex-refresh h6,
body.syntex-refresh .site-title,
body.syntex-refresh .vw-page-title {
	color: var(--syntex-navy-deep);
	font-family: "Merriweather", serif;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

body.syntex-refresh a {
	color: var(--syntex-blue);
	text-decoration: none;
	transition: color var(--syntex-transition), opacity var(--syntex-transition), transform var(--syntex-transition);
}

body.syntex-refresh a:hover,
body.syntex-refresh a:focus {
	color: var(--syntex-navy-deep);
}

body.syntex-refresh img {
	display: block;
	height: auto;
	max-width: 100%;
}

body.syntex-refresh .container {
	max-width: 1220px;
}

body.syntex-refresh .home-page-header {
	background: transparent;
	position: relative;
	z-index: 20;
}

body.syntex-refresh .top-bar.syntex-topbar {
	background: var(--syntex-navy-deep);
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	padding: 12px 0;
}

.syntex-topbar-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	justify-content: space-between;
}

.syntex-topbar-item {
	align-items: center;
	display: inline-flex;
	gap: 10px;
}

.syntex-topbar-item i {
	color: var(--syntex-gold);
	font-size: 14px;
}

.syntex-topbar-item a {
	color: rgba(255, 255, 255, 0.9);
}

.syntex-topbar-item a:hover,
.syntex-topbar-item a:focus {
	color: #ffffff;
}

.syntex-topbar-item-wide {
	flex: 1 1 320px;
}

body.syntex-refresh .middle-header.syntex-site-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(18, 48, 87, 0.08);
	box-shadow: 0 10px 30px rgba(16, 39, 70, 0.04);
}

.syntex-site-header.header-fixed {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
}

body.admin-bar .syntex-site-header.header-fixed {
	top: 32px;
}

.syntex-header-shell {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	padding: 18px 0;
}

.syntex-brand {
	flex: 0 0 auto;
	margin: 0;
}

.syntex-brand .custom-logo-link {
	align-items: center;
	display: inline-flex;
}

.syntex-brand .custom-logo {
	height: auto;
	max-height: 72px;
	max-width: 240px;
	width: auto;
}

.syntex-navigation-shell {
	flex: 1 1 auto;
	min-width: 0;
}

.syntex-header-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
}

.syntex-phone-link {
	background: linear-gradient(135deg, #eff4fb 0%, #ffffff 100%);
	border: 1px solid var(--syntex-line);
	border-radius: 999px;
	box-shadow: var(--syntex-shadow-soft);
	color: var(--syntex-navy-deep);
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 18px;
}

.syntex-phone-link strong {
	color: var(--syntex-navy-deep);
	font-size: 18px;
	line-height: 1.1;
}

.syntex-action-label {
	color: var(--syntex-text-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.syntex-btn {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	padding: 14px 24px;
	text-align: center;
}

.syntex-btn:hover,
.syntex-btn:focus {
	transform: translateY(-1px);
}

.syntex-btn-primary {
	background: linear-gradient(135deg, var(--syntex-blue) 0%, var(--syntex-navy) 100%);
	box-shadow: 0 14px 28px rgba(26, 79, 147, 0.22);
	color: #ffffff;
}

.syntex-btn-primary:hover,
.syntex-btn-primary:focus {
	color: #ffffff;
}

.syntex-btn-secondary {
	background: var(--syntex-panel);
	border: 1px solid var(--syntex-line);
	box-shadow: var(--syntex-shadow-soft);
	color: var(--syntex-navy-deep);
}

.syntex-btn-light {
	background: #ffffff;
	color: var(--syntex-navy-deep);
}

.syntex-btn-outline-light {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #ffffff;
}

.syntex-btn-text {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 600;
	padding: 0;
}

.syntex-contact-cta {
	min-width: 138px;
}

.syntex-main-nav {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.syntex-desktop-nav {
	flex: 1 1 auto;
}

.syntex-desktop-navigation .main-menu > ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.syntex-desktop-navigation .main-menu > ul > li {
	position: relative;
}

.syntex-desktop-navigation .main-menu > ul > li > a {
	border-radius: 999px;
	color: var(--syntex-navy-deep);
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	padding: 12px 16px;
}

.syntex-desktop-navigation .main-menu > ul > li > a:hover,
.syntex-desktop-navigation .main-menu > ul > li.current-menu-item > a,
.syntex-desktop-navigation .main-menu > ul > li.current_page_item > a {
	background: rgba(43, 103, 177, 0.08);
	color: var(--syntex-blue);
}

.syntex-desktop-navigation .main-menu ul ul {
	background: #ffffff;
	border: 1px solid rgba(18, 48, 87, 0.1);
	border-radius: 18px;
	box-shadow: var(--syntex-shadow);
	left: 0;
	min-width: 240px;
	padding: 10px;
	top: calc(100% + 10px);
}

.syntex-desktop-navigation .main-menu ul ul li {
	display: block;
	float: none;
}

.syntex-desktop-navigation .main-menu ul ul a {
	border-radius: 12px;
	display: block;
	font-size: 15px;
	font-weight: 600;
	padding: 11px 14px;
}

.syntex-desktop-navigation .main-menu ul ul a:hover {
	background: rgba(43, 103, 177, 0.08);
}

.toggle-nav.mobile-menu {
	display: none;
}

#mySidenav.sidenav {
	background: rgba(8, 21, 39, 0.58);
	display: flex;
	justify-content: flex-end;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity var(--syntex-transition), visibility var(--syntex-transition);
	visibility: hidden;
	z-index: 1001;
}

#mySidenav.sidenav.show {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.syntex-mobile-nav-panel {
	background: #ffffff;
	box-shadow: -20px 0 50px rgba(10, 28, 51, 0.16);
	display: flex;
	flex-direction: column;
	gap: 28px;
	height: 100%;
	margin-left: auto;
	max-width: 420px;
	overflow: auto;
	padding: 24px;
	transform: translateX(100%);
	transition: transform var(--syntex-transition);
	width: 100%;
}

#mySidenav.sidenav.show .syntex-mobile-nav-panel {
	transform: translateX(0);
}

.syntex-mobile-nav-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.syntex-mobile-nav-eyebrow {
	color: var(--syntex-text-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.syntex-mobile-nav-head strong {
	color: var(--syntex-navy-deep);
	font-family: "Merriweather", serif;
	font-size: 24px;
}

.syntex-mobile-nav-head .closebtn {
	align-items: center;
	border: 1px solid var(--syntex-line);
	border-radius: 999px;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.syntex-mobile-navigation .main-menu > ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.syntex-mobile-navigation .main-menu > ul > li > a,
.syntex-mobile-navigation .main-menu ul ul a {
	border-radius: 14px;
	display: block;
	font-size: 18px;
	font-weight: 700;
	padding: 12px 14px;
}

.syntex-mobile-navigation .main-menu ul ul {
	border-left: 2px solid rgba(43, 103, 177, 0.12);
	box-shadow: none;
	margin: 8px 0 0 10px;
	padding: 0 0 0 12px;
	position: static;
}

.syntex-mobile-navigation .main-menu ul ul a {
	font-size: 15px;
	font-weight: 600;
	padding: 10px 12px;
}

.syntex-mobile-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.syntex-front-page {
	overflow: hidden;
	padding-bottom: 80px;
}

.syntex-hero {
	padding: 42px 0 12px;
}

.syntex-hero-grid {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.syntex-hero-copy {
	position: relative;
	z-index: 1;
}

.syntex-eyebrow {
	color: var(--syntex-blue);
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.syntex-hero h1 {
	font-size: clamp(40px, 5vw, 66px);
	margin-bottom: 18px;
	max-width: 12ch;
}

.syntex-hero p {
	color: var(--syntex-text-soft);
	font-size: 20px;
	margin-bottom: 0;
	max-width: 34em;
}

.syntex-hero-points {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 28px 0;
	padding: 0;
}

.syntex-hero-points li {
	align-items: center;
	color: var(--syntex-navy-deep);
	display: inline-flex;
	font-size: 18px;
	font-weight: 600;
	gap: 12px;
}

.syntex-hero-points li::before {
	background: var(--syntex-gold-soft);
	border-radius: 999px;
	color: var(--syntex-gold);
	content: "\f00c";
	display: inline-flex;
	font-family: "Font Awesome 5 Free";
	font-size: 12px;
	font-weight: 900;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.syntex-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}

.syntex-hero-trust {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.syntex-hero-trust-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-md);
	box-shadow: var(--syntex-shadow-soft);
	padding: 18px 20px;
}

.syntex-hero-trust-card strong {
	color: var(--syntex-navy-deep);
	display: block;
	font-size: 18px;
	margin-bottom: 4px;
}

.syntex-hero-trust-card span {
	color: var(--syntex-text-soft);
	display: block;
	font-size: 15px;
}

.syntex-hero-media {
	position: relative;
}

.syntex-hero-visual,
.syntex-local-visual {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 242, 249, 0.96) 100%);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-lg);
	box-shadow: var(--syntex-shadow);
	overflow: hidden;
	padding: 18px;
	position: relative;
}

.syntex-hero-visual img,
.syntex-local-visual img {
	border-radius: calc(var(--syntex-radius-lg) - 10px);
	width: 100%;
}

.syntex-visual-note {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: 14px;
	bottom: 24px;
	box-shadow: var(--syntex-shadow-soft);
	color: var(--syntex-text);
	font-size: 14px;
	left: 24px;
	max-width: 320px;
	padding: 12px 14px;
	position: absolute;
}

.syntex-section {
	padding: 50px 0;
}

.syntex-section-heading {
	margin: 0 auto 28px;
	max-width: 760px;
	text-align: center;
}

.syntex-section-heading-left {
	margin-left: 0;
	max-width: 660px;
	text-align: left;
}

.syntex-section-heading h2 {
	font-size: clamp(30px, 4vw, 48px);
	margin-bottom: 14px;
}

.syntex-section-heading p {
	color: var(--syntex-text-soft);
	font-size: 19px;
	margin: 0;
}

.syntex-service-grid,
.syntex-audience-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.syntex-service-card,
.syntex-audience-card,
.syntex-benefit-card {
	background: var(--syntex-panel);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-md);
	box-shadow: var(--syntex-shadow-soft);
	padding: 28px;
	position: relative;
}

.syntex-service-card:hover,
.syntex-audience-card:hover,
.syntex-benefit-card:hover {
	box-shadow: var(--syntex-shadow);
	transform: translateY(-4px);
}

.syntex-card-icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(18, 48, 87, 0.1), rgba(199, 163, 90, 0.14));
	border-radius: 18px;
	color: var(--syntex-blue);
	display: inline-flex;
	font-size: 22px;
	height: 56px;
	justify-content: center;
	margin-bottom: 22px;
	width: 56px;
}

.syntex-service-card h3,
.syntex-audience-card h3,
.syntex-benefit-card h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.syntex-service-card p,
.syntex-audience-card p,
.syntex-benefit-card p {
	color: var(--syntex-text-soft);
	font-size: 18px;
	margin-bottom: 0;
}

.syntex-service-card a,
.syntex-audience-card a {
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	margin-top: 18px;
}

.syntex-service-card a::after,
.syntex-audience-card a::after {
	content: "→";
	margin-left: 8px;
}

.syntex-benefits {
	position: relative;
}

.syntex-benefits-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.syntex-benefit-list {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.syntex-benefit-number {
	color: var(--syntex-gold);
	display: block;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.syntex-photo-stack {
	display: grid;
	gap: 18px;
}

.syntex-photo-placeholder {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.95) 100%);
	border: 1px dashed rgba(18, 48, 87, 0.24);
	border-radius: var(--syntex-radius-md);
	box-shadow: var(--syntex-shadow-soft);
	min-height: 220px;
	padding: 28px;
	position: relative;
}

.syntex-photo-placeholder::before {
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: 18px;
	content: "";
	inset: 18px;
	position: absolute;
}

.syntex-photo-placeholder span,
.syntex-photo-placeholder strong {
	display: block;
	position: relative;
	z-index: 1;
}

.syntex-photo-placeholder span {
	color: var(--syntex-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.syntex-photo-placeholder strong {
	color: var(--syntex-navy-deep);
	font-family: "Merriweather", serif;
	font-size: 28px;
	line-height: 1.35;
	max-width: 12ch;
}

.syntex-local-layout {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.syntex-local-copy {
	align-self: center;
}

.syntex-local-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.syntex-local-links a {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(18, 48, 87, 0.1);
	border-radius: 999px;
	box-shadow: var(--syntex-shadow-soft);
	color: var(--syntex-navy-deep);
	font-size: 16px;
	font-weight: 700;
	padding: 11px 18px;
}

.syntex-local-links a:hover,
.syntex-local-links a:focus {
	background: rgba(43, 103, 177, 0.08);
	color: var(--syntex-blue);
}

.syntex-local-note {
	align-items: center;
	color: var(--syntex-text-soft);
	display: inline-flex;
	font-size: 17px;
	gap: 10px;
	margin-top: 20px;
}

.syntex-local-note i {
	color: var(--syntex-gold);
}

.syntex-cta {
	padding-bottom: 20px;
}

.syntex-cta-shell {
	align-items: center;
	background: linear-gradient(135deg, var(--syntex-navy-deep) 0%, var(--syntex-navy) 70%, #204f8d 100%);
	border-radius: var(--syntex-radius-lg);
	box-shadow: var(--syntex-shadow);
	color: #ffffff;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 42px;
}

.syntex-cta-shell .syntex-eyebrow,
.syntex-cta-shell h2,
.syntex-cta-shell p,
.syntex-cta-shell a {
	color: #ffffff;
}

.syntex-cta-shell p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	margin: 0;
	max-width: 36em;
}

.syntex-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 240px;
}

.syntex-site-footer {
	margin-top: 40px;
}

.syntex-footer-main {
	background: var(--syntex-navy-deep);
	color: rgba(255, 255, 255, 0.76);
	padding: 58px 0 36px;
}

.syntex-footer-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
}

.syntex-footer-column h3 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 18px;
}

.syntex-footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.syntex-footer-column li + li {
	margin-top: 12px;
}

.syntex-footer-column a,
.syntex-footer-column span,
.syntex-footer-main p {
	color: rgba(255, 255, 255, 0.76);
}

.syntex-footer-column a:hover,
.syntex-footer-column a:focus {
	color: #ffffff;
}

.syntex-footer-brand p {
	font-size: 18px;
	margin-top: 20px;
	max-width: 30ch;
}

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

.syntex-footer-contact-list i {
	color: var(--syntex-gold);
	margin-top: 4px;
	min-width: 16px;
}

.syntex-footer-bottom {
	background: #081527;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.74);
	padding: 18px 0;
}

.syntex-footer-bottom-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	justify-content: space-between;
}

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

.syntex-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.syntex-footer-legal a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 15px;
}

.syntex-footer-legal a:hover,
.syntex-footer-legal a:focus {
	color: #ffffff;
}

body.syntex-refresh .scrollup {
	margin-left: auto;
}

body.syntex-refresh .scrollup i {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	line-height: 44px;
	visibility: visible;
	width: 44px;
}

body.syntex-refresh .middle-align.container {
	padding-bottom: 72px;
	padding-top: 56px;
}

body.syntex-refresh .content-vw {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-lg);
	box-shadow: var(--syntex-shadow-soft);
	padding: 34px;
}

body.syntex-refresh .content-vw > hr {
	border-top-color: rgba(18, 48, 87, 0.08);
	margin: 24px 0;
}

body.syntex-refresh .vw-page-title {
	font-size: clamp(32px, 4vw, 52px);
	margin-bottom: 18px;
}

body.syntex-refresh .entry-content {
	color: var(--syntex-text);
	font-size: 19px;
}

body.syntex-refresh .entry-content p,
body.syntex-refresh .entry-content ul,
body.syntex-refresh .entry-content ol {
	margin-bottom: 1.1em;
}

body.syntex-refresh .entry-content h2,
body.syntex-refresh .entry-content h3 {
	margin-bottom: 0.55em;
	margin-top: 1.35em;
}

body.syntex-refresh .entry-content a[href^="tel:"],
body.syntex-refresh .entry-content a[href^="mailto:"] {
	font-weight: 700;
}

body.syntex-refresh .entry-content .wp-block-button__link,
body.syntex-refresh .entry-content .btn,
body.syntex-refresh .entry-content a[href*="/kontakt/"] {
	border-radius: 999px;
}

body.syntex-refresh .entry-content .has-background {
	border-radius: 18px;
	padding: 18px 20px;
}

body.syntex-refresh .entry-content .wp-block-columns {
	gap: 24px;
}

body.syntex-refresh .entry-content .wp-block-column,
body.syntex-refresh .entry-content .border,
body.syntex-refresh .entry-content .list-group {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(18, 48, 87, 0.1) !important;
	border-radius: 20px !important;
	box-shadow: var(--syntex-shadow-soft);
}

body.syntex-refresh .entry-content .row.g-4 > div,
body.syntex-refresh .entry-content .row.g-5 > div {
	display: flex;
}

body.syntex-refresh .entry-content .row.g-4 > div > *,
body.syntex-refresh .entry-content .row.g-5 > div > * {
	width: 100%;
}

body.syntex-refresh .entry-content .list-group-item {
	border-color: rgba(18, 48, 87, 0.08);
	padding: 14px 18px;
}

body.syntex-refresh .entry-content section {
	margin: 20px 0;
}

@media screen and (max-width: 1199px) {
	.syntex-header-shell {
		gap: 18px;
	}

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

	.syntex-benefits-layout,
	.syntex-local-layout,
	.syntex-cta-shell {
		grid-template-columns: 1fr;
	}

	.syntex-cta-actions {
		flex-direction: row;
		flex-wrap: wrap;
		min-width: 0;
	}
}

@media screen and (max-width: 1099px) {
	.syntex-topbar-inner {
		justify-content: flex-start;
	}

	.syntex-desktop-nav {
		display: none;
	}

	.toggle-nav.mobile-menu {
		display: block;
	}

	.toggle-nav.mobile-menu .responsivetoggle {
		align-items: center;
		background: var(--syntex-panel);
		border: 1px solid var(--syntex-line);
		border-radius: 999px;
		box-shadow: var(--syntex-shadow-soft);
		color: var(--syntex-navy-deep);
		display: inline-flex;
		height: 48px;
		justify-content: center;
		width: 48px;
	}

	.syntex-header-shell {
		flex-wrap: wrap;
	}

	.syntex-navigation-shell {
		display: flex;
		justify-content: flex-end;
		order: 3;
	}

	.syntex-header-actions {
		margin-left: auto;
	}
}

@media screen and (max-width: 991px) {
	body.admin-bar .syntex-site-header.header-fixed {
		top: 46px;
	}

	.syntex-hero-grid,
	.syntex-local-layout {
		grid-template-columns: 1fr;
	}

	.syntex-hero {
		padding-top: 28px;
	}

	.syntex-hero h1 {
		max-width: none;
	}

	.syntex-hero-trust {
		grid-template-columns: 1fr;
	}

	.syntex-benefit-list {
		grid-template-columns: 1fr;
	}

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

@media screen and (max-width: 767px) {
	body.syntex-refresh .top-bar.syntex-topbar {
		font-size: 14px;
		padding: 10px 0;
	}

	.syntex-topbar-inner {
		gap: 10px 14px;
	}

	.syntex-header-shell {
		align-items: start;
		padding: 16px 0;
	}

	.syntex-brand .custom-logo {
		max-height: 58px;
		max-width: 180px;
	}

	.syntex-phone-link {
		padding: 10px 14px;
	}

	.syntex-phone-link strong {
		font-size: 16px;
	}

	.syntex-contact-cta {
		min-width: 120px;
	}

	.syntex-header-actions {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: flex-end;
	}

	.syntex-service-grid,
	.syntex-audience-grid,
	.syntex-footer-grid {
		grid-template-columns: 1fr;
	}

	.syntex-section {
		padding: 38px 0;
	}

	.syntex-section-heading h2,
	.syntex-photo-placeholder strong {
		font-size: 32px;
	}

	.syntex-service-card,
	.syntex-audience-card,
	.syntex-benefit-card,
	body.syntex-refresh .content-vw {
		padding: 24px;
	}

	.syntex-visual-note {
		font-size: 13px;
		left: 16px;
		max-width: calc(100% - 32px);
		right: 16px;
	}

	.syntex-cta-shell {
		padding: 28px;
	}

	.syntex-cta-actions {
		flex-direction: column;
	}

	body.syntex-refresh .middle-align.container {
		padding-bottom: 56px;
		padding-top: 38px;
	}
}

@media screen and (max-width: 575px) {
	.syntex-topbar-item-wide {
		flex-basis: 100%;
	}

	.syntex-header-shell {
		gap: 14px;
	}

	.syntex-header-actions {
		align-items: stretch;
		width: 100%;
	}

	.syntex-phone-link,
	.syntex-contact-cta {
		flex: 1 1 100%;
	}

	.syntex-navigation-shell {
		width: auto;
	}

	.syntex-hero-actions {
		flex-direction: column;
	}

	.syntex-btn,
	.syntex-local-links a {
		width: 100%;
	}

	.syntex-hero p,
	.syntex-section-heading p,
	.syntex-service-card p,
	.syntex-audience-card p,
	.syntex-benefit-card p,
	.syntex-cta-shell p,
	body.syntex-refresh .entry-content {
		font-size: 17px;
	}

	.syntex-photo-placeholder {
		min-height: 190px;
	}

	.syntex-photo-placeholder strong {
		font-size: 26px;
	}
}

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

.syntex-counter-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 100%;
}

.syntex-counter-label {
	color: var(--syntex-blue);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.syntex-counter-card strong {
	color: var(--syntex-navy-deep);
	display: flex;
	align-items: flex-end;
	font-family: "Merriweather", serif;
	font-size: clamp(34px, 4vw, 56px);
	gap: 2px;
	line-height: 0.95;
	margin: 0;
}

.syntex-counter-card p {
	color: var(--syntex-text-soft);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.syntex-visual-badge {
	background: rgba(18, 48, 87, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	bottom: 24px;
	box-shadow: var(--syntex-shadow);
	left: 24px;
	max-width: 360px;
	padding: 16px 18px;
	position: absolute;
}

.syntex-visual-badge span,
.syntex-visual-badge strong {
	display: block;
}

.syntex-visual-badge span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.syntex-visual-badge strong {
	color: #fff;
	font-family: "Merriweather", serif;
	font-size: 22px;
	line-height: 1.45;
}

.syntex-photo-card {
	background: var(--syntex-panel);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-md);
	box-shadow: var(--syntex-shadow);
	overflow: hidden;
}

.syntex-photo-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.syntex-proof-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 252, 0.96) 100%);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: var(--syntex-radius-md);
	box-shadow: var(--syntex-shadow-soft);
	padding: 28px;
	position: relative;
}

.syntex-proof-card span,
.syntex-proof-card strong {
	display: block;
}

.syntex-proof-card span {
	color: var(--syntex-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.syntex-proof-card strong {
	color: var(--syntex-navy-deep);
	font-family: "Merriweather", serif;
	font-size: 28px;
	line-height: 1.45;
}

.syntex-proof-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.syntex-proof-list li {
	color: var(--syntex-text-soft);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 10px;
	padding-left: 22px;
	position: relative;
}

.syntex-proof-list li::before {
	background: linear-gradient(135deg, var(--syntex-blue), var(--syntex-gold));
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 11px;
	width: 8px;
}

@media screen and (max-width: 1199px) {
	.syntex-hero-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 991px) {
	.syntex-visual-badge {
		left: 18px;
		max-width: calc(100% - 36px);
		right: 18px;
	}
}

@media screen and (max-width: 767px) {
	.syntex-hero-trust {
		grid-template-columns: 1fr;
	}

	.syntex-counter-card strong,
	.syntex-proof-card strong {
		font-size: 34px;
	}

	.syntex-visual-badge strong {
		font-size: 18px;
	}

	.syntex-proof-card {
		padding: 24px;
	}
}

body.syntex-refresh {
	font-family: "Nunito Sans", sans-serif;
}

body.syntex-refresh .container {
	max-width: 1280px;
}

body.syntex-refresh h1,
body.syntex-refresh h2,
body.syntex-refresh h3,
body.syntex-refresh h4,
body.syntex-refresh h5,
body.syntex-refresh h6,
body.syntex-refresh .site-title,
body.syntex-refresh .vw-page-title {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.syntex-btn,
.syntex-action-label,
.syntex-phone-link strong,
.syntex-topbar-item,
.syntex-desktop-navigation .main-menu > ul > li > a,
.syntex-mobile-navigation .main-menu > ul > li > a,
.syntex-mobile-navigation .main-menu ul ul a {
	font-family: "Nunito Sans", sans-serif;
}

.syntex-highlight {
	color: var(--syntex-gold);
	position: relative;
}

.syntex-highlight::after {
	background: linear-gradient(90deg, rgba(199, 163, 90, 0.18), rgba(199, 163, 90, 0.34));
	border-radius: 999px;
	bottom: 0.08em;
	content: "";
	height: 0.28em;
	left: -0.04em;
	position: absolute;
	right: -0.04em;
	z-index: -1;
}

.syntex-metrics-shell .syntex-highlight,
.syntex-inline-cta-secondary .syntex-highlight,
.syntex-cta-shell .syntex-highlight,
.syntex-visual-badge .syntex-highlight {
	color: #f4d69a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 0 18px rgba(255, 255, 255, 0.14);
}

.syntex-metrics-shell .syntex-highlight::after,
.syntex-inline-cta-secondary .syntex-highlight::after,
.syntex-cta-shell .syntex-highlight::after,
.syntex-visual-badge .syntex-highlight::after {
	background: linear-gradient(90deg, rgba(244, 214, 154, 0.16), rgba(244, 214, 154, 0.28));
}

.syntex-hero {
	padding: 56px 0 18px;
}

.syntex-hero-grid {
	gap: 56px;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.syntex-hero h1 {
	font-size: clamp(58px, 7vw, 94px);
	line-height: 0.95;
	margin-bottom: 22px;
	max-width: 11ch;
}

.syntex-hero p {
	font-size: clamp(20px, 2vw, 24px);
	max-width: 29em;
}

.syntex-hero-actions {
	margin-bottom: 22px;
}

.syntex-btn-ghost {
	background: transparent;
	border: 1px solid rgba(18, 48, 87, 0.16);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
	color: var(--syntex-navy-deep);
}

.syntex-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.syntex-hero-meta span {
	align-items: center;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(18, 48, 87, 0.08);
	border-radius: 999px;
	box-shadow: var(--syntex-shadow-soft);
	color: var(--syntex-navy-deep);
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	padding: 12px 16px;
}

.syntex-hero-meta i {
	color: var(--syntex-gold);
}

.syntex-hero-media::before {
	background: radial-gradient(circle, rgba(199, 163, 90, 0.26), transparent 72%);
	content: "";
	filter: blur(6px);
	height: 180px;
	inset: 8% auto auto -8%;
	position: absolute;
	width: 180px;
	z-index: 0;
}

.syntex-hero-visual {
	padding: 20px;
}

.syntex-hero-visual img {
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.syntex-visual-badge {
	background: linear-gradient(135deg, rgba(17, 40, 71, 0.92), rgba(22, 59, 104, 0.9));
	max-width: 380px;
}

.syntex-visual-badge strong {
	color: #ffffff;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.25;
	-webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.22);
	paint-order: stroke fill;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.syntex-section {
	padding: 64px 0;
}

.syntex-section-heading {
	margin: 0 auto 32px;
	max-width: 900px;
}

.syntex-section-heading h2 {
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.04;
	margin-bottom: 16px;
}

.syntex-section-heading p {
	font-size: 20px;
	margin: 0 auto;
	max-width: 40em;
}

.syntex-section-heading-left p {
	margin: 0;
}

.syntex-metrics {
	padding-top: 12px;
}

.syntex-metrics-shell {
	background: linear-gradient(135deg, #0b1d35 0%, #123057 66%, #1b4c86 100%);
	border-radius: 36px;
	box-shadow: 0 28px 70px rgba(10, 28, 51, 0.18);
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	overflow: hidden;
	padding: 42px;
	position: relative;
}

.syntex-metrics-shell::before {
	background:
		radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
		radial-gradient(circle at 100% 100%, rgba(244, 214, 154, 0.16), transparent 34%);
	content: "";
	inset: 0;
	position: absolute;
}

.syntex-metrics-copy,
.syntex-metric-grid {
	position: relative;
	z-index: 1;
}

.syntex-metrics-copy .syntex-eyebrow,
.syntex-metrics-copy h2,
.syntex-metrics-copy p {
	color: #ffffff;
}

.syntex-metrics-copy p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 19px;
	max-width: 34em;
}

.syntex-metrics-copy h2 {
	font-size: clamp(42px, 4.5vw, 64px);
	line-height: 1.03;
	margin-bottom: 16px;
	-webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.18);
	paint-order: stroke fill;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.syntex-metric-grid {
	align-items: start;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.syntex-metric-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 22px 18px;
	text-align: center;
}

.syntex-metric-ring {
	--metric-progress: 0%;
	aspect-ratio: 1;
	background: conic-gradient(from -90deg, #f4d69a 0 var(--metric-progress), rgba(255, 255, 255, 0.14) var(--metric-progress) 100%);
	border-radius: 50%;
	display: grid;
	margin: 0 auto 18px;
	place-items: center;
	position: relative;
	width: min(100%, 156px);
}

.syntex-metric-ring::before {
	background: linear-gradient(145deg, rgba(9, 23, 42, 0.98), rgba(16, 42, 76, 0.94));
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	content: "";
	inset: 10px;
	position: absolute;
}

.syntex-metric-ring::after {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	inset: 24px;
	position: absolute;
}

.syntex-metric-ring-core {
	display: grid;
	gap: 6px;
	justify-items: center;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.syntex-metric-ring-core strong {
	align-items: flex-start;
	color: #ffffff;
	display: flex;
	font-family: "Poppins", sans-serif;
	font-size: clamp(34px, 2.4vw, 48px);
	gap: 2px;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0;
}

.syntex-counter-suffix {
	font-size: 0.55em;
	line-height: 1;
	margin-top: 0.12em;
}

.syntex-metric-ring-core > span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.syntex-metric-card p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

.syntex-metric-card.is-active .syntex-metric-ring {
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 18px 40px rgba(2, 8, 17, 0.22);
}

.syntex-service-grid,
.syntex-audience-grid {
	gap: 24px;
}

.syntex-service-card,
.syntex-audience-card,
.syntex-benefit-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px;
}

.syntex-service-card h3,
.syntex-audience-card h3,
.syntex-benefit-card h3 {
	font-size: 26px;
	line-height: 1.25;
}

.syntex-service-card a,
.syntex-audience-card a {
	margin-top: auto;
	padding-top: 18px;
}

.syntex-benefits-layout {
	gap: 34px;
}

.syntex-benefit-number {
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.16em;
}

.syntex-photo-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.syntex-proof-card strong {
	font-size: clamp(32px, 3vw, 40px);
	line-height: 1.26;
}

.syntex-inline-cta {
	padding-bottom: 12px;
	padding-top: 12px;
}

.syntex-inline-cta-shell {
	align-items: center;
	border-radius: 32px;
	box-shadow: var(--syntex-shadow);
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
	overflow: hidden;
	padding: 34px 38px;
	position: relative;
}

.syntex-inline-cta-copy h2 {
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.04;
	margin: 0 0 12px;
}

.syntex-inline-cta-copy p {
	font-size: 19px;
	margin: 0;
	max-width: 42em;
}

.syntex-inline-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.syntex-inline-cta-primary .syntex-inline-cta-shell {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
	border: 1px solid rgba(18, 48, 87, 0.08);
}

.syntex-inline-cta-primary .syntex-inline-cta-shell::after {
	background: radial-gradient(circle, rgba(199, 163, 90, 0.18), transparent 70%);
	content: "";
	height: 220px;
	position: absolute;
	right: -80px;
	top: -40px;
	width: 220px;
}

.syntex-inline-cta-secondary .syntex-inline-cta-shell {
	background: linear-gradient(135deg, #0c1e37 0%, #123057 62%, #1d4f89 100%);
	color: #ffffff;
}

.syntex-inline-cta-secondary .syntex-eyebrow,
.syntex-inline-cta-secondary h2,
.syntex-inline-cta-secondary p {
	color: #ffffff;
}

.syntex-inline-cta-secondary p {
	color: rgba(255, 255, 255, 0.82);
}

.syntex-inline-cta-secondary h2 {
	-webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.2);
	paint-order: stroke fill;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.syntex-local-visual img {
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.syntex-cta-shell {
	align-items: center;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 42px 44px;
}

.syntex-cta-shell h2 {
	font-size: clamp(38px, 4.4vw, 62px);
	line-height: 1.02;
	margin-bottom: 14px;
	-webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.2);
	paint-order: stroke fill;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.syntex-cta-note {
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px !important;
	margin-top: 14px !important;
}

.syntex-cta-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
	min-width: 0;
}

.syntex-cta .syntex-btn-outline-light {
	background: rgba(255, 255, 255, 0.04);
}

@media screen and (max-width: 1199px) {
	.syntex-hero h1 {
		font-size: clamp(52px, 7vw, 82px);
		max-width: none;
	}

	.syntex-metrics-shell {
		grid-template-columns: 1fr;
		padding: 36px;
	}

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

@media screen and (max-width: 991px) {
	.syntex-hero-grid,
	.syntex-inline-cta-shell,
	.syntex-cta-shell {
		grid-template-columns: 1fr;
	}

	.syntex-inline-cta-actions,
	.syntex-cta-actions {
		justify-content: flex-start;
	}

	.syntex-section-heading h2,
	.syntex-inline-cta-copy h2,
	.syntex-metrics-copy h2,
	.syntex-cta-shell h2 {
		font-size: clamp(36px, 7vw, 56px);
	}
}

@media screen and (max-width: 767px) {
	.syntex-hero {
		padding-top: 32px;
	}

	.syntex-hero h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.syntex-hero-meta span,
	.syntex-inline-cta-actions .syntex-btn,
	.syntex-cta-actions .syntex-btn {
		width: 100%;
	}

	.syntex-metrics-shell,
	.syntex-inline-cta-shell,
	.syntex-cta-shell {
		border-radius: 28px;
		padding: 28px 24px;
	}

	.syntex-metric-grid {
		grid-template-columns: 1fr;
	}

	.syntex-metric-ring {
		width: 144px;
	}

	.syntex-visual-badge strong {
		font-size: 22px;
	}
}
